| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * IMX31 UARTS | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2008 OKL | 
					
						
							|  |  |  |  * Originally Written by Hans Jiang | 
					
						
							|  |  |  |  * Copyright (c) 2011 NICTA Pty Ltd. | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |  * Updated by Jean-Christophe Dubois <jcd@tribudubois.net> | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This work is licensed under the terms of the GNU GPL, version 2 or later. | 
					
						
							|  |  |  |  * See the COPYING file in the top-level directory. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is a `bare-bones' implementation of the IMX series serial ports. | 
					
						
							|  |  |  |  * TODO: | 
					
						
							|  |  |  |  *  -- implement FIFOs.  The real hardware has 32 word transmit | 
					
						
							|  |  |  |  *                       and receive FIFOs; we currently use a 1-char buffer | 
					
						
							|  |  |  |  *  -- implement DMA | 
					
						
							|  |  |  |  *  -- implement BAUD-rate and modem lines, for when the backend | 
					
						
							|  |  |  |  *     is a real serial device. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:05 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  | #include "hw/char/imx_serial.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:42 +02:00
										 |  |  | #include "hw/irq.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:51 +02:00
										 |  |  | #include "hw/qdev-properties.h"
 | 
					
						
							| 
									
										
										
										
											2020-12-11 17:05:12 -05:00
										 |  |  | #include "hw/qdev-properties-system.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:45 +02:00
										 |  |  | #include "migration/vmstate.h"
 | 
					
						
							| 
									
										
										
										
											2015-12-15 13:16:16 +01:00
										 |  |  | #include "qemu/log.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  | #ifndef DEBUG_IMX_UART
 | 
					
						
							|  |  |  | #define DEBUG_IMX_UART 0
 | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  | #define DPRINTF(fmt, args...) \
 | 
					
						
							|  |  |  |     do { \ | 
					
						
							|  |  |  |         if (DEBUG_IMX_UART) { \ | 
					
						
							|  |  |  |             fprintf(stderr, "[%s]%s: " fmt , TYPE_IMX_SERIAL, \ | 
					
						
							|  |  |  |                                              __func__, ##args); \ | 
					
						
							|  |  |  |         } \ | 
					
						
							|  |  |  |     } while (0) | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const VMStateDescription vmstate_imx_serial = { | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |     .name = TYPE_IMX_SERIAL, | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:41 -07:00
										 |  |  |     .version_id = 2, | 
					
						
							|  |  |  |     .minimum_version_id = 2, | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     .fields = (VMStateField[]) { | 
					
						
							|  |  |  |         VMSTATE_INT32(readbuff, IMXSerialState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(usr1, IMXSerialState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(usr2, IMXSerialState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(ucr1, IMXSerialState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(uts1, IMXSerialState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(onems, IMXSerialState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(ufcr, IMXSerialState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(ubmr, IMXSerialState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(ubrc, IMXSerialState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(ucr3, IMXSerialState), | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:41 -07:00
										 |  |  |         VMSTATE_UINT32(ucr4, IMXSerialState), | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void imx_update(IMXSerialState *s) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:40 -07:00
										 |  |  |     uint32_t usr1; | 
					
						
							|  |  |  |     uint32_t usr2; | 
					
						
							|  |  |  |     uint32_t mask; | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:40 -07:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Lucky for us TRDY and RRDY has the same offset in both USR1 and | 
					
						
							|  |  |  |      * UCR1, so we can get away with something as simple as the | 
					
						
							|  |  |  |      * following: | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     usr1 = s->usr1 & s->ucr1 & (USR1_TRDY | USR1_RRDY); | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Bits that we want in USR2 are not as conveniently laid out, | 
					
						
							|  |  |  |      * unfortunately. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     mask = (s->ucr1 & UCR1_TXMPTYEN) ? USR2_TXFE : 0; | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:41 -07:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * TCEN and TXDC are both bit 3 | 
					
						
							| 
									
										
										
										
											2018-08-20 11:24:31 +01:00
										 |  |  |      * RDR and DREN are both bit 0 | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:41 -07:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-06-15 15:22:56 +01:00
										 |  |  |     mask |= s->ucr4 & (UCR4_WKEN | UCR4_TCEN | UCR4_DREN); | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:41 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:40 -07:00
										 |  |  |     usr2 = s->usr2 & mask; | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:40 -07:00
										 |  |  |     qemu_set_irq(s->irq, usr1 || usr2); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void imx_serial_reset(IMXSerialState *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->usr1 = USR1_TRDY | USR1_RXDS; | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Fake attachment of a terminal: assert RTS. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     s->usr1 |= USR1_RTSS; | 
					
						
							|  |  |  |     s->usr2 = USR2_TXFE | USR2_TXDC | USR2_DCDIN; | 
					
						
							|  |  |  |     s->uts1 = UTS1_RXEMPTY | UTS1_TXEMPTY; | 
					
						
							|  |  |  |     s->ucr1 = 0; | 
					
						
							|  |  |  |     s->ucr2 = UCR2_SRST; | 
					
						
							|  |  |  |     s->ucr3 = 0x700; | 
					
						
							|  |  |  |     s->ubmr = 0; | 
					
						
							|  |  |  |     s->ubrc = 4; | 
					
						
							|  |  |  |     s->readbuff = URXD_ERR; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void imx_serial_reset_at_boot(DeviceState *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-07-24 22:43:22 +02:00
										 |  |  |     IMXSerialState *s = IMX_SERIAL(dev); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     imx_serial_reset(s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * enable the uart on boot, so messages from the linux decompresser | 
					
						
							|  |  |  |      * are visible.  On real hardware this is done by the boot rom | 
					
						
							|  |  |  |      * before anything else is loaded. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     s->ucr1 = UCR1_UARTEN; | 
					
						
							|  |  |  |     s->ucr2 = UCR2_TXEN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static uint64_t imx_serial_read(void *opaque, hwaddr offset, | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |                                 unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     IMXSerialState *s = (IMXSerialState *)opaque; | 
					
						
							|  |  |  |     uint32_t c; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  |     DPRINTF("read(offset=0x%" HWADDR_PRIx ")\n", offset); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     switch (offset >> 2) { | 
					
						
							|  |  |  |     case 0x0: /* URXD */ | 
					
						
							|  |  |  |         c = s->readbuff; | 
					
						
							|  |  |  |         if (!(s->uts1 & UTS1_RXEMPTY)) { | 
					
						
							|  |  |  |             /* Character is valid */ | 
					
						
							|  |  |  |             c |= URXD_CHARRDY; | 
					
						
							|  |  |  |             s->usr1 &= ~USR1_RRDY; | 
					
						
							|  |  |  |             s->usr2 &= ~USR2_RDR; | 
					
						
							|  |  |  |             s->uts1 |= UTS1_RXEMPTY; | 
					
						
							|  |  |  |             imx_update(s); | 
					
						
							| 
									
										
										
										
											2016-10-22 12:52:59 +03:00
										 |  |  |             qemu_chr_fe_accept_input(&s->chr); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         return c; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x20: /* UCR1 */ | 
					
						
							|  |  |  |         return s->ucr1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x21: /* UCR2 */ | 
					
						
							|  |  |  |         return s->ucr2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x25: /* USR1 */ | 
					
						
							|  |  |  |         return s->usr1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x26: /* USR2 */ | 
					
						
							|  |  |  |         return s->usr2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x2A: /* BRM Modulator */ | 
					
						
							|  |  |  |         return s->ubmr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x2B: /* Baud Rate Count */ | 
					
						
							|  |  |  |         return s->ubrc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x2d: /* Test register */ | 
					
						
							|  |  |  |         return s->uts1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x24: /* UFCR */ | 
					
						
							|  |  |  |         return s->ufcr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x2c: | 
					
						
							|  |  |  |         return s->onems; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x22: /* UCR3 */ | 
					
						
							|  |  |  |         return s->ucr3; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x23: /* UCR4 */ | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:41 -07:00
										 |  |  |         return s->ucr4; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     case 0x29: /* BRM Incremental */ | 
					
						
							|  |  |  |         return 0x0; /* TODO */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  |         qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad register at offset 0x%" | 
					
						
							|  |  |  |                       HWADDR_PRIx "\n", TYPE_IMX_SERIAL, __func__, offset); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static void imx_serial_write(void *opaque, hwaddr offset, | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |                              uint64_t value, unsigned size) | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     IMXSerialState *s = (IMXSerialState *)opaque; | 
					
						
							| 
									
										
										
										
											2016-12-07 16:20:22 +03:00
										 |  |  |     Chardev *chr = qemu_chr_fe_get_driver(&s->chr); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     unsigned char ch; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  |     DPRINTF("write(offset=0x%" HWADDR_PRIx ", value = 0x%x) to %s\n", | 
					
						
							| 
									
										
										
										
											2016-10-22 12:52:55 +03:00
										 |  |  |             offset, (unsigned int)value, chr ? chr->label : "NODEV"); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch (offset >> 2) { | 
					
						
							|  |  |  |     case 0x10: /* UTXD */ | 
					
						
							|  |  |  |         ch = value; | 
					
						
							|  |  |  |         if (s->ucr2 & UCR2_TXEN) { | 
					
						
							| 
									
										
										
										
											2016-10-22 12:52:59 +03:00
										 |  |  |             /* XXX this blocks entire thread. Rewrite to use
 | 
					
						
							|  |  |  |              * qemu_chr_fe_write and background I/O callbacks */ | 
					
						
							|  |  |  |             qemu_chr_fe_write_all(&s->chr, &ch, 1); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |             s->usr1 &= ~USR1_TRDY; | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:41 -07:00
										 |  |  |             s->usr2 &= ~USR2_TXDC; | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |             imx_update(s); | 
					
						
							|  |  |  |             s->usr1 |= USR1_TRDY; | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:41 -07:00
										 |  |  |             s->usr2 |= USR2_TXDC; | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |             imx_update(s); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x20: /* UCR1 */ | 
					
						
							|  |  |  |         s->ucr1 = value & 0xffff; | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |         DPRINTF("write(ucr1=%x)\n", (unsigned int)value); | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |         imx_update(s); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x21: /* UCR2 */ | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Only a few bits in control register 2 are implemented as yet. | 
					
						
							|  |  |  |          * If it's intended to use a real serial device as a back-end, this | 
					
						
							|  |  |  |          * register will have to be implemented more fully. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (!(value & UCR2_SRST)) { | 
					
						
							|  |  |  |             imx_serial_reset(s); | 
					
						
							|  |  |  |             imx_update(s); | 
					
						
							|  |  |  |             value |= UCR2_SRST; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (value & UCR2_RXEN) { | 
					
						
							|  |  |  |             if (!(s->ucr2 & UCR2_RXEN)) { | 
					
						
							| 
									
										
										
										
											2016-10-22 12:52:59 +03:00
										 |  |  |                 qemu_chr_fe_accept_input(&s->chr); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         s->ucr2 = value & 0xffff; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x25: /* USR1 */ | 
					
						
							|  |  |  |         value &= USR1_AWAKE | USR1_AIRINT | USR1_DTRD | USR1_AGTIM | | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |                  USR1_FRAMERR | USR1_ESCF | USR1_RTSD | USR1_PARTYER; | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |         s->usr1 &= ~value; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x26: /* USR2 */ | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Writing 1 to some bits clears them; all other | 
					
						
							|  |  |  |          * values are ignored | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |         value &= USR2_ADET | USR2_DTRF | USR2_IDLE | USR2_ACST | | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |                  USR2_RIDELT | USR2_IRINT | USR2_WAKE | | 
					
						
							|  |  |  |                  USR2_DCDDELT | USR2_RTSF | USR2_BRCD | USR2_ORE; | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |         s->usr2 &= ~value; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Linux expects to see what it writes to these registers | 
					
						
							|  |  |  |      * We don't currently alter the baud rate | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     case 0x29: /* UBIR */ | 
					
						
							|  |  |  |         s->ubrc = value & 0xffff; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x2a: /* UBMR */ | 
					
						
							|  |  |  |         s->ubmr = value & 0xffff; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x2c: /* One ms reg */ | 
					
						
							|  |  |  |         s->onems = value & 0xffff; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x24: /* FIFO control register */ | 
					
						
							|  |  |  |         s->ufcr = value & 0xffff; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x22: /* UCR3 */ | 
					
						
							|  |  |  |         s->ucr3 = value & 0xffff; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x23: /* UCR4 */ | 
					
						
							| 
									
										
										
										
											2018-03-15 12:11:41 -07:00
										 |  |  |         s->ucr4 = value & 0xffff; | 
					
						
							|  |  |  |         imx_update(s); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x2d: /* UTS1 */ | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  |         qemu_log_mask(LOG_UNIMP, "[%s]%s: Unimplemented reg 0x%" | 
					
						
							|  |  |  |                       HWADDR_PRIx "\n", TYPE_IMX_SERIAL, __func__, offset); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |         /* TODO */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  |         qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad register at offset 0x%" | 
					
						
							|  |  |  |                       HWADDR_PRIx "\n", TYPE_IMX_SERIAL, __func__, offset); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int imx_can_receive(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     IMXSerialState *s = (IMXSerialState *)opaque; | 
					
						
							|  |  |  |     return !(s->usr1 & USR1_RRDY); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void imx_put_data(void *opaque, uint32_t value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     IMXSerialState *s = (IMXSerialState *)opaque; | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     DPRINTF("received char\n"); | 
					
						
							| 
									
										
										
										
											2015-10-25 15:16:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     s->usr1 |= USR1_RRDY; | 
					
						
							|  |  |  |     s->usr2 |= USR2_RDR; | 
					
						
							|  |  |  |     s->uts1 &= ~UTS1_RXEMPTY; | 
					
						
							|  |  |  |     s->readbuff = value; | 
					
						
							| 
									
										
										
										
											2018-03-23 18:26:45 +00:00
										 |  |  |     if (value & URXD_BRK) { | 
					
						
							|  |  |  |         s->usr2 |= USR2_BRCD; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     imx_update(s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void imx_receive(void *opaque, const uint8_t *buf, int size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-06-15 15:22:56 +01:00
										 |  |  |     IMXSerialState *s = (IMXSerialState *)opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->usr2 |= USR2_WAKE; | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     imx_put_data(opaque, *buf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												chardev: Use QEMUChrEvent enum in IOEventHandler typedef
The Chardev events are listed in the QEMUChrEvent enum.
By using the enum in the IOEventHandler typedef we:
- make the IOEventHandler type more explicit (this handler
  process out-of-band information, while the IOReadHandler
  is in-band),
- help static code analyzers.
This patch was produced with the following spatch script:
  @match@
  expression backend, opaque, context, set_open;
  identifier fd_can_read, fd_read, fd_event, be_change;
  @@
  qemu_chr_fe_set_handlers(backend, fd_can_read, fd_read, fd_event,
                           be_change, opaque, context, set_open);
  @depends on match@
  identifier opaque, event;
  identifier match.fd_event;
  @@
   static
  -void fd_event(void *opaque, int event)
  +void fd_event(void *opaque, QEMUChrEvent event)
   {
   ...
   }
Then the typedef was modified manually in
include/chardev/char-fe.h.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Acked-by: Corey Minyard <cminyard@mvista.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20191218172009.8868-15-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
											
										 
											2019-12-18 18:20:09 +01:00
										 |  |  | static void imx_event(void *opaque, QEMUChrEvent event) | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     if (event == CHR_EVENT_BREAK) { | 
					
						
							| 
									
										
										
										
											2018-03-23 18:26:45 +00:00
										 |  |  |         imx_put_data(opaque, URXD_BRK | URXD_FRMERR | URXD_ERR); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct MemoryRegionOps imx_serial_ops = { | 
					
						
							|  |  |  |     .read = imx_serial_read, | 
					
						
							|  |  |  |     .write = imx_serial_write, | 
					
						
							|  |  |  |     .endianness = DEVICE_NATIVE_ENDIAN, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  | static void imx_serial_realize(DeviceState *dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-07-24 22:43:22 +02:00
										 |  |  |     IMXSerialState *s = IMX_SERIAL(dev); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-22 12:52:59 +03:00
										 |  |  |     DPRINTF("char dev for uart: %p\n", qemu_chr_fe_get_driver(&s->chr)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qemu_chr_fe_set_handlers(&s->chr, imx_can_receive, imx_receive, | 
					
						
							| 
									
										
										
										
											2017-07-06 15:08:49 +03:00
										 |  |  |                              imx_event, NULL, s, NULL, true); | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void imx_serial_init(Object *obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SysBusDevice *sbd = SYS_BUS_DEVICE(obj); | 
					
						
							|  |  |  |     IMXSerialState *s = IMX_SERIAL(obj); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |     memory_region_init_io(&s->iomem, obj, &imx_serial_ops, s, | 
					
						
							|  |  |  |                           TYPE_IMX_SERIAL, 0x1000); | 
					
						
							|  |  |  |     sysbus_init_mmio(sbd, &s->iomem); | 
					
						
							|  |  |  |     sysbus_init_irq(sbd, &s->irq); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  | static Property imx_serial_properties[] = { | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     DEFINE_PROP_CHR("chardev", IMXSerialState, chr), | 
					
						
							|  |  |  |     DEFINE_PROP_END_OF_LIST(), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void imx_serial_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |     dc->realize = imx_serial_realize; | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     dc->vmsd = &vmstate_imx_serial; | 
					
						
							|  |  |  |     dc->reset = imx_serial_reset_at_boot; | 
					
						
							| 
									
										
										
										
											2013-07-29 17:17:45 +03:00
										 |  |  |     set_bit(DEVICE_CATEGORY_INPUT, dc->categories); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  |     dc->desc = "i.MX series UART"; | 
					
						
							| 
									
										
										
										
											2020-01-10 19:30:32 +04:00
										 |  |  |     device_class_set_props(dc, imx_serial_properties); | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:19:07 +01:00
										 |  |  | static const TypeInfo imx_serial_info = { | 
					
						
							| 
									
										
										
										
											2015-08-13 11:26:19 +01:00
										 |  |  |     .name           = TYPE_IMX_SERIAL, | 
					
						
							|  |  |  |     .parent         = TYPE_SYS_BUS_DEVICE, | 
					
						
							|  |  |  |     .instance_size  = sizeof(IMXSerialState), | 
					
						
							|  |  |  |     .instance_init  = imx_serial_init, | 
					
						
							|  |  |  |     .class_init     = imx_serial_class_init, | 
					
						
							| 
									
										
										
										
											2012-07-04 10:43:33 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void imx_serial_register_types(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     type_register_static(&imx_serial_info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type_init(imx_serial_register_types) |