4 * Copyright (c) 2008 OKL
5 * Originally Written by Hans Jiang
6 * Copyright (c) 2011 NICTA Pty Ltd.
7 * Updated by Jean-Christophe Dubois <jcd@tribudubois.net>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
12 * This is a `bare-bones' implementation of the IMX series serial ports.
14 * -- implement FIFOs. The real hardware has 32 word transmit
15 * and receive FIFOs; we currently use a 1-char buffer
17 * -- implement BAUD-rate and modem lines, for when the backend
18 * is a real serial device.
21 #include "qemu/osdep.h"
22 #include "hw/char/imx_serial.h"
23 #include "sysemu/sysemu.h"
24 #include "sysemu/char.h"
27 #ifndef DEBUG_IMX_UART
28 #define DEBUG_IMX_UART 0
31 #define DPRINTF(fmt, args...) \
33 if (DEBUG_IMX_UART) { \
34 fprintf(stderr, "[%s]%s: " fmt , TYPE_IMX_SERIAL, \
39 static const VMStateDescription vmstate_imx_serial
= {
40 .name
= TYPE_IMX_SERIAL
,
42 .minimum_version_id
= 1,
43 .fields
= (VMStateField
[]) {
44 VMSTATE_INT32(readbuff
, IMXSerialState
),
45 VMSTATE_UINT32(usr1
, IMXSerialState
),
46 VMSTATE_UINT32(usr2
, IMXSerialState
),
47 VMSTATE_UINT32(ucr1
, IMXSerialState
),
48 VMSTATE_UINT32(uts1
, IMXSerialState
),
49 VMSTATE_UINT32(onems
, IMXSerialState
),
50 VMSTATE_UINT32(ufcr
, IMXSerialState
),
51 VMSTATE_UINT32(ubmr
, IMXSerialState
),
52 VMSTATE_UINT32(ubrc
, IMXSerialState
),
53 VMSTATE_UINT32(ucr3
, IMXSerialState
),
58 static void imx_update(IMXSerialState
*s
)
62 flags
= (s
->usr1
& s
->ucr1
) & (USR1_TRDY
|USR1_RRDY
);
63 if (s
->ucr1
& UCR1_TXMPTYEN
) {
64 flags
|= (s
->uts1
& UTS1_TXEMPTY
);
69 qemu_set_irq(s
->irq
, !!flags
);
72 static void imx_serial_reset(IMXSerialState
*s
)
75 s
->usr1
= USR1_TRDY
| USR1_RXDS
;
77 * Fake attachment of a terminal: assert RTS.
80 s
->usr2
= USR2_TXFE
| USR2_TXDC
| USR2_DCDIN
;
81 s
->uts1
= UTS1_RXEMPTY
| UTS1_TXEMPTY
;
87 s
->readbuff
= URXD_ERR
;
90 static void imx_serial_reset_at_boot(DeviceState
*dev
)
92 IMXSerialState
*s
= IMX_SERIAL(dev
);
97 * enable the uart on boot, so messages from the linux decompresser
98 * are visible. On real hardware this is done by the boot rom
99 * before anything else is loaded.
101 s
->ucr1
= UCR1_UARTEN
;
106 static uint64_t imx_serial_read(void *opaque
, hwaddr offset
,
109 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
112 DPRINTF("read(offset=0x%" HWADDR_PRIx
")\n", offset
);
114 switch (offset
>> 2) {
117 if (!(s
->uts1
& UTS1_RXEMPTY
)) {
118 /* Character is valid */
120 s
->usr1
&= ~USR1_RRDY
;
121 s
->usr2
&= ~USR2_RDR
;
122 s
->uts1
|= UTS1_RXEMPTY
;
124 qemu_chr_fe_accept_input(&s
->chr
);
128 case 0x20: /* UCR1 */
131 case 0x21: /* UCR2 */
134 case 0x25: /* USR1 */
137 case 0x26: /* USR2 */
140 case 0x2A: /* BRM Modulator */
143 case 0x2B: /* Baud Rate Count */
146 case 0x2d: /* Test register */
149 case 0x24: /* UFCR */
155 case 0x22: /* UCR3 */
158 case 0x23: /* UCR4 */
159 case 0x29: /* BRM Incremental */
160 return 0x0; /* TODO */
163 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad register at offset 0x%"
164 HWADDR_PRIx
"\n", TYPE_IMX_SERIAL
, __func__
, offset
);
169 static void imx_serial_write(void *opaque
, hwaddr offset
,
170 uint64_t value
, unsigned size
)
172 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
173 Chardev
*chr
= qemu_chr_fe_get_driver(&s
->chr
);
176 DPRINTF("write(offset=0x%" HWADDR_PRIx
", value = 0x%x) to %s\n",
177 offset
, (unsigned int)value
, chr
? chr
->label
: "NODEV");
179 switch (offset
>> 2) {
180 case 0x10: /* UTXD */
182 if (s
->ucr2
& UCR2_TXEN
) {
183 /* XXX this blocks entire thread. Rewrite to use
184 * qemu_chr_fe_write and background I/O callbacks */
185 qemu_chr_fe_write_all(&s
->chr
, &ch
, 1);
186 s
->usr1
&= ~USR1_TRDY
;
188 s
->usr1
|= USR1_TRDY
;
193 case 0x20: /* UCR1 */
194 s
->ucr1
= value
& 0xffff;
196 DPRINTF("write(ucr1=%x)\n", (unsigned int)value
);
201 case 0x21: /* UCR2 */
203 * Only a few bits in control register 2 are implemented as yet.
204 * If it's intended to use a real serial device as a back-end, this
205 * register will have to be implemented more fully.
207 if (!(value
& UCR2_SRST
)) {
212 if (value
& UCR2_RXEN
) {
213 if (!(s
->ucr2
& UCR2_RXEN
)) {
214 qemu_chr_fe_accept_input(&s
->chr
);
217 s
->ucr2
= value
& 0xffff;
220 case 0x25: /* USR1 */
221 value
&= USR1_AWAKE
| USR1_AIRINT
| USR1_DTRD
| USR1_AGTIM
|
222 USR1_FRAMERR
| USR1_ESCF
| USR1_RTSD
| USR1_PARTYER
;
226 case 0x26: /* USR2 */
228 * Writing 1 to some bits clears them; all other
231 value
&= USR2_ADET
| USR2_DTRF
| USR2_IDLE
| USR2_ACST
|
232 USR2_RIDELT
| USR2_IRINT
| USR2_WAKE
|
233 USR2_DCDDELT
| USR2_RTSF
| USR2_BRCD
| USR2_ORE
;
238 * Linux expects to see what it writes to these registers
239 * We don't currently alter the baud rate
241 case 0x29: /* UBIR */
242 s
->ubrc
= value
& 0xffff;
245 case 0x2a: /* UBMR */
246 s
->ubmr
= value
& 0xffff;
249 case 0x2c: /* One ms reg */
250 s
->onems
= value
& 0xffff;
253 case 0x24: /* FIFO control register */
254 s
->ufcr
= value
& 0xffff;
257 case 0x22: /* UCR3 */
258 s
->ucr3
= value
& 0xffff;
261 case 0x2d: /* UTS1 */
262 case 0x23: /* UCR4 */
263 qemu_log_mask(LOG_UNIMP
, "[%s]%s: Unimplemented reg 0x%"
264 HWADDR_PRIx
"\n", TYPE_IMX_SERIAL
, __func__
, offset
);
269 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad register at offset 0x%"
270 HWADDR_PRIx
"\n", TYPE_IMX_SERIAL
, __func__
, offset
);
274 static int imx_can_receive(void *opaque
)
276 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
277 return !(s
->usr1
& USR1_RRDY
);
280 static void imx_put_data(void *opaque
, uint32_t value
)
282 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
284 DPRINTF("received char\n");
286 s
->usr1
|= USR1_RRDY
;
288 s
->uts1
&= ~UTS1_RXEMPTY
;
293 static void imx_receive(void *opaque
, const uint8_t *buf
, int size
)
295 imx_put_data(opaque
, *buf
);
298 static void imx_event(void *opaque
, int event
)
300 if (event
== CHR_EVENT_BREAK
) {
301 imx_put_data(opaque
, URXD_BRK
);
306 static const struct MemoryRegionOps imx_serial_ops
= {
307 .read
= imx_serial_read
,
308 .write
= imx_serial_write
,
309 .endianness
= DEVICE_NATIVE_ENDIAN
,
312 static void imx_serial_realize(DeviceState
*dev
, Error
**errp
)
314 IMXSerialState
*s
= IMX_SERIAL(dev
);
316 DPRINTF("char dev for uart: %p\n", qemu_chr_fe_get_driver(&s
->chr
));
318 qemu_chr_fe_set_handlers(&s
->chr
, imx_can_receive
, imx_receive
,
319 imx_event
, s
, NULL
, true);
322 static void imx_serial_init(Object
*obj
)
324 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
325 IMXSerialState
*s
= IMX_SERIAL(obj
);
327 memory_region_init_io(&s
->iomem
, obj
, &imx_serial_ops
, s
,
328 TYPE_IMX_SERIAL
, 0x1000);
329 sysbus_init_mmio(sbd
, &s
->iomem
);
330 sysbus_init_irq(sbd
, &s
->irq
);
333 static Property imx_serial_properties
[] = {
334 DEFINE_PROP_CHR("chardev", IMXSerialState
, chr
),
335 DEFINE_PROP_END_OF_LIST(),
338 static void imx_serial_class_init(ObjectClass
*klass
, void *data
)
340 DeviceClass
*dc
= DEVICE_CLASS(klass
);
342 dc
->realize
= imx_serial_realize
;
343 dc
->vmsd
= &vmstate_imx_serial
;
344 dc
->reset
= imx_serial_reset_at_boot
;
345 set_bit(DEVICE_CATEGORY_INPUT
, dc
->categories
);
346 dc
->desc
= "i.MX series UART";
347 dc
->props
= imx_serial_properties
;
350 static const TypeInfo imx_serial_info
= {
351 .name
= TYPE_IMX_SERIAL
,
352 .parent
= TYPE_SYS_BUS_DEVICE
,
353 .instance_size
= sizeof(IMXSerialState
),
354 .instance_init
= imx_serial_init
,
355 .class_init
= imx_serial_class_init
,
358 static void imx_serial_register_types(void)
360 type_register_static(&imx_serial_info
);
363 type_init(imx_serial_register_types
)