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
;
125 qemu_chr_accept_input(s
->chr
);
130 case 0x20: /* UCR1 */
133 case 0x21: /* UCR2 */
136 case 0x25: /* USR1 */
139 case 0x26: /* USR2 */
142 case 0x2A: /* BRM Modulator */
145 case 0x2B: /* Baud Rate Count */
148 case 0x2d: /* Test register */
151 case 0x24: /* UFCR */
157 case 0x22: /* UCR3 */
160 case 0x23: /* UCR4 */
161 case 0x29: /* BRM Incremental */
162 return 0x0; /* TODO */
165 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad register at offset 0x%"
166 HWADDR_PRIx
"\n", TYPE_IMX_SERIAL
, __func__
, offset
);
171 static void imx_serial_write(void *opaque
, hwaddr offset
,
172 uint64_t value
, unsigned size
)
174 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
177 DPRINTF("write(offset=0x%" HWADDR_PRIx
", value = 0x%x) to %s\n",
178 offset
, (unsigned int)value
, s
->chr
? s
->chr
->label
: "NODEV");
180 switch (offset
>> 2) {
181 case 0x10: /* UTXD */
183 if (s
->ucr2
& UCR2_TXEN
) {
185 /* XXX this blocks entire thread. Rewrite to use
186 * qemu_chr_fe_write and background I/O callbacks */
187 qemu_chr_fe_write_all(s
->chr
, &ch
, 1);
189 s
->usr1
&= ~USR1_TRDY
;
191 s
->usr1
|= USR1_TRDY
;
196 case 0x20: /* UCR1 */
197 s
->ucr1
= value
& 0xffff;
199 DPRINTF("write(ucr1=%x)\n", (unsigned int)value
);
204 case 0x21: /* UCR2 */
206 * Only a few bits in control register 2 are implemented as yet.
207 * If it's intended to use a real serial device as a back-end, this
208 * register will have to be implemented more fully.
210 if (!(value
& UCR2_SRST
)) {
215 if (value
& UCR2_RXEN
) {
216 if (!(s
->ucr2
& UCR2_RXEN
)) {
218 qemu_chr_accept_input(s
->chr
);
222 s
->ucr2
= value
& 0xffff;
225 case 0x25: /* USR1 */
226 value
&= USR1_AWAKE
| USR1_AIRINT
| USR1_DTRD
| USR1_AGTIM
|
227 USR1_FRAMERR
| USR1_ESCF
| USR1_RTSD
| USR1_PARTYER
;
231 case 0x26: /* USR2 */
233 * Writing 1 to some bits clears them; all other
236 value
&= USR2_ADET
| USR2_DTRF
| USR2_IDLE
| USR2_ACST
|
237 USR2_RIDELT
| USR2_IRINT
| USR2_WAKE
|
238 USR2_DCDDELT
| USR2_RTSF
| USR2_BRCD
| USR2_ORE
;
243 * Linux expects to see what it writes to these registers
244 * We don't currently alter the baud rate
246 case 0x29: /* UBIR */
247 s
->ubrc
= value
& 0xffff;
250 case 0x2a: /* UBMR */
251 s
->ubmr
= value
& 0xffff;
254 case 0x2c: /* One ms reg */
255 s
->onems
= value
& 0xffff;
258 case 0x24: /* FIFO control register */
259 s
->ufcr
= value
& 0xffff;
262 case 0x22: /* UCR3 */
263 s
->ucr3
= value
& 0xffff;
266 case 0x2d: /* UTS1 */
267 case 0x23: /* UCR4 */
268 qemu_log_mask(LOG_UNIMP
, "[%s]%s: Unimplemented reg 0x%"
269 HWADDR_PRIx
"\n", TYPE_IMX_SERIAL
, __func__
, offset
);
274 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad register at offset 0x%"
275 HWADDR_PRIx
"\n", TYPE_IMX_SERIAL
, __func__
, offset
);
279 static int imx_can_receive(void *opaque
)
281 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
282 return !(s
->usr1
& USR1_RRDY
);
285 static void imx_put_data(void *opaque
, uint32_t value
)
287 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
289 DPRINTF("received char\n");
291 s
->usr1
|= USR1_RRDY
;
293 s
->uts1
&= ~UTS1_RXEMPTY
;
298 static void imx_receive(void *opaque
, const uint8_t *buf
, int size
)
300 imx_put_data(opaque
, *buf
);
303 static void imx_event(void *opaque
, int event
)
305 if (event
== CHR_EVENT_BREAK
) {
306 imx_put_data(opaque
, URXD_BRK
);
311 static const struct MemoryRegionOps imx_serial_ops
= {
312 .read
= imx_serial_read
,
313 .write
= imx_serial_write
,
314 .endianness
= DEVICE_NATIVE_ENDIAN
,
317 static void imx_serial_realize(DeviceState
*dev
, Error
**errp
)
319 IMXSerialState
*s
= IMX_SERIAL(dev
);
322 qemu_chr_add_handlers(s
->chr
, imx_can_receive
, imx_receive
,
325 DPRINTF("No char dev for uart\n");
329 static void imx_serial_init(Object
*obj
)
331 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
332 IMXSerialState
*s
= IMX_SERIAL(obj
);
334 memory_region_init_io(&s
->iomem
, obj
, &imx_serial_ops
, s
,
335 TYPE_IMX_SERIAL
, 0x1000);
336 sysbus_init_mmio(sbd
, &s
->iomem
);
337 sysbus_init_irq(sbd
, &s
->irq
);
340 static Property imx_serial_properties
[] = {
341 DEFINE_PROP_CHR("chardev", IMXSerialState
, chr
),
342 DEFINE_PROP_END_OF_LIST(),
345 static void imx_serial_class_init(ObjectClass
*klass
, void *data
)
347 DeviceClass
*dc
= DEVICE_CLASS(klass
);
349 dc
->realize
= imx_serial_realize
;
350 dc
->vmsd
= &vmstate_imx_serial
;
351 dc
->reset
= imx_serial_reset_at_boot
;
352 set_bit(DEVICE_CATEGORY_INPUT
, dc
->categories
);
353 dc
->desc
= "i.MX series UART";
354 dc
->props
= imx_serial_properties
;
357 static const TypeInfo imx_serial_info
= {
358 .name
= TYPE_IMX_SERIAL
,
359 .parent
= TYPE_SYS_BUS_DEVICE
,
360 .instance_size
= sizeof(IMXSerialState
),
361 .instance_init
= imx_serial_init
,
362 .class_init
= imx_serial_class_init
,
365 static void imx_serial_register_types(void)
367 type_register_static(&imx_serial_info
);
370 type_init(imx_serial_register_types
)