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"
26 #ifndef DEBUG_IMX_UART
27 #define DEBUG_IMX_UART 0
30 #define DPRINTF(fmt, args...) \
32 if (DEBUG_IMX_UART) { \
33 fprintf(stderr, "[%s]%s: " fmt , TYPE_IMX_SERIAL, \
38 static const VMStateDescription vmstate_imx_serial
= {
39 .name
= TYPE_IMX_SERIAL
,
41 .minimum_version_id
= 2,
42 .fields
= (VMStateField
[]) {
43 VMSTATE_INT32(readbuff
, IMXSerialState
),
44 VMSTATE_UINT32(usr1
, IMXSerialState
),
45 VMSTATE_UINT32(usr2
, IMXSerialState
),
46 VMSTATE_UINT32(ucr1
, IMXSerialState
),
47 VMSTATE_UINT32(uts1
, IMXSerialState
),
48 VMSTATE_UINT32(onems
, IMXSerialState
),
49 VMSTATE_UINT32(ufcr
, IMXSerialState
),
50 VMSTATE_UINT32(ubmr
, IMXSerialState
),
51 VMSTATE_UINT32(ubrc
, IMXSerialState
),
52 VMSTATE_UINT32(ucr3
, IMXSerialState
),
53 VMSTATE_UINT32(ucr4
, IMXSerialState
),
58 static void imx_update(IMXSerialState
*s
)
65 * Lucky for us TRDY and RRDY has the same offset in both USR1 and
66 * UCR1, so we can get away with something as simple as the
69 usr1
= s
->usr1
& s
->ucr1
& (USR1_TRDY
| USR1_RRDY
);
71 * Bits that we want in USR2 are not as conveniently laid out,
74 mask
= (s
->ucr1
& UCR1_TXMPTYEN
) ? USR2_TXFE
: 0;
76 * TCEN and TXDC are both bit 3
77 * RDR and DREN are both bit 0
79 mask
|= s
->ucr4
& (UCR4_TCEN
| UCR4_DREN
);
81 usr2
= s
->usr2
& mask
;
83 qemu_set_irq(s
->irq
, usr1
|| usr2
);
86 static void imx_serial_reset(IMXSerialState
*s
)
89 s
->usr1
= USR1_TRDY
| USR1_RXDS
;
91 * Fake attachment of a terminal: assert RTS.
94 s
->usr2
= USR2_TXFE
| USR2_TXDC
| USR2_DCDIN
;
95 s
->uts1
= UTS1_RXEMPTY
| UTS1_TXEMPTY
;
101 s
->readbuff
= URXD_ERR
;
104 static void imx_serial_reset_at_boot(DeviceState
*dev
)
106 IMXSerialState
*s
= IMX_SERIAL(dev
);
111 * enable the uart on boot, so messages from the linux decompresser
112 * are visible. On real hardware this is done by the boot rom
113 * before anything else is loaded.
115 s
->ucr1
= UCR1_UARTEN
;
120 static uint64_t imx_serial_read(void *opaque
, hwaddr offset
,
123 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
126 DPRINTF("read(offset=0x%" HWADDR_PRIx
")\n", offset
);
128 switch (offset
>> 2) {
131 if (!(s
->uts1
& UTS1_RXEMPTY
)) {
132 /* Character is valid */
134 s
->usr1
&= ~USR1_RRDY
;
135 s
->usr2
&= ~USR2_RDR
;
136 s
->uts1
|= UTS1_RXEMPTY
;
138 qemu_chr_fe_accept_input(&s
->chr
);
142 case 0x20: /* UCR1 */
145 case 0x21: /* UCR2 */
148 case 0x25: /* USR1 */
151 case 0x26: /* USR2 */
154 case 0x2A: /* BRM Modulator */
157 case 0x2B: /* Baud Rate Count */
160 case 0x2d: /* Test register */
163 case 0x24: /* UFCR */
169 case 0x22: /* UCR3 */
172 case 0x23: /* UCR4 */
175 case 0x29: /* BRM Incremental */
176 return 0x0; /* TODO */
179 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad register at offset 0x%"
180 HWADDR_PRIx
"\n", TYPE_IMX_SERIAL
, __func__
, offset
);
185 static void imx_serial_write(void *opaque
, hwaddr offset
,
186 uint64_t value
, unsigned size
)
188 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
189 Chardev
*chr
= qemu_chr_fe_get_driver(&s
->chr
);
192 DPRINTF("write(offset=0x%" HWADDR_PRIx
", value = 0x%x) to %s\n",
193 offset
, (unsigned int)value
, chr
? chr
->label
: "NODEV");
195 switch (offset
>> 2) {
196 case 0x10: /* UTXD */
198 if (s
->ucr2
& UCR2_TXEN
) {
199 /* XXX this blocks entire thread. Rewrite to use
200 * qemu_chr_fe_write and background I/O callbacks */
201 qemu_chr_fe_write_all(&s
->chr
, &ch
, 1);
202 s
->usr1
&= ~USR1_TRDY
;
203 s
->usr2
&= ~USR2_TXDC
;
205 s
->usr1
|= USR1_TRDY
;
206 s
->usr2
|= USR2_TXDC
;
211 case 0x20: /* UCR1 */
212 s
->ucr1
= value
& 0xffff;
214 DPRINTF("write(ucr1=%x)\n", (unsigned int)value
);
219 case 0x21: /* UCR2 */
221 * Only a few bits in control register 2 are implemented as yet.
222 * If it's intended to use a real serial device as a back-end, this
223 * register will have to be implemented more fully.
225 if (!(value
& UCR2_SRST
)) {
230 if (value
& UCR2_RXEN
) {
231 if (!(s
->ucr2
& UCR2_RXEN
)) {
232 qemu_chr_fe_accept_input(&s
->chr
);
235 s
->ucr2
= value
& 0xffff;
238 case 0x25: /* USR1 */
239 value
&= USR1_AWAKE
| USR1_AIRINT
| USR1_DTRD
| USR1_AGTIM
|
240 USR1_FRAMERR
| USR1_ESCF
| USR1_RTSD
| USR1_PARTYER
;
244 case 0x26: /* USR2 */
246 * Writing 1 to some bits clears them; all other
249 value
&= USR2_ADET
| USR2_DTRF
| USR2_IDLE
| USR2_ACST
|
250 USR2_RIDELT
| USR2_IRINT
| USR2_WAKE
|
251 USR2_DCDDELT
| USR2_RTSF
| USR2_BRCD
| USR2_ORE
;
256 * Linux expects to see what it writes to these registers
257 * We don't currently alter the baud rate
259 case 0x29: /* UBIR */
260 s
->ubrc
= value
& 0xffff;
263 case 0x2a: /* UBMR */
264 s
->ubmr
= value
& 0xffff;
267 case 0x2c: /* One ms reg */
268 s
->onems
= value
& 0xffff;
271 case 0x24: /* FIFO control register */
272 s
->ufcr
= value
& 0xffff;
275 case 0x22: /* UCR3 */
276 s
->ucr3
= value
& 0xffff;
279 case 0x23: /* UCR4 */
280 s
->ucr4
= value
& 0xffff;
284 case 0x2d: /* UTS1 */
285 qemu_log_mask(LOG_UNIMP
, "[%s]%s: Unimplemented reg 0x%"
286 HWADDR_PRIx
"\n", TYPE_IMX_SERIAL
, __func__
, offset
);
291 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad register at offset 0x%"
292 HWADDR_PRIx
"\n", TYPE_IMX_SERIAL
, __func__
, offset
);
296 static int imx_can_receive(void *opaque
)
298 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
299 return !(s
->usr1
& USR1_RRDY
);
302 static void imx_put_data(void *opaque
, uint32_t value
)
304 IMXSerialState
*s
= (IMXSerialState
*)opaque
;
306 DPRINTF("received char\n");
308 s
->usr1
|= USR1_RRDY
;
310 s
->uts1
&= ~UTS1_RXEMPTY
;
312 if (value
& URXD_BRK
) {
313 s
->usr2
|= USR2_BRCD
;
318 static void imx_receive(void *opaque
, const uint8_t *buf
, int size
)
320 imx_put_data(opaque
, *buf
);
323 static void imx_event(void *opaque
, int event
)
325 if (event
== CHR_EVENT_BREAK
) {
326 imx_put_data(opaque
, URXD_BRK
| URXD_FRMERR
| URXD_ERR
);
331 static const struct MemoryRegionOps imx_serial_ops
= {
332 .read
= imx_serial_read
,
333 .write
= imx_serial_write
,
334 .endianness
= DEVICE_NATIVE_ENDIAN
,
337 static void imx_serial_realize(DeviceState
*dev
, Error
**errp
)
339 IMXSerialState
*s
= IMX_SERIAL(dev
);
341 DPRINTF("char dev for uart: %p\n", qemu_chr_fe_get_driver(&s
->chr
));
343 qemu_chr_fe_set_handlers(&s
->chr
, imx_can_receive
, imx_receive
,
344 imx_event
, NULL
, s
, NULL
, true);
347 static void imx_serial_init(Object
*obj
)
349 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
350 IMXSerialState
*s
= IMX_SERIAL(obj
);
352 memory_region_init_io(&s
->iomem
, obj
, &imx_serial_ops
, s
,
353 TYPE_IMX_SERIAL
, 0x1000);
354 sysbus_init_mmio(sbd
, &s
->iomem
);
355 sysbus_init_irq(sbd
, &s
->irq
);
358 static Property imx_serial_properties
[] = {
359 DEFINE_PROP_CHR("chardev", IMXSerialState
, chr
),
360 DEFINE_PROP_END_OF_LIST(),
363 static void imx_serial_class_init(ObjectClass
*klass
, void *data
)
365 DeviceClass
*dc
= DEVICE_CLASS(klass
);
367 dc
->realize
= imx_serial_realize
;
368 dc
->vmsd
= &vmstate_imx_serial
;
369 dc
->reset
= imx_serial_reset_at_boot
;
370 set_bit(DEVICE_CATEGORY_INPUT
, dc
->categories
);
371 dc
->desc
= "i.MX series UART";
372 dc
->props
= imx_serial_properties
;
375 static const TypeInfo imx_serial_info
= {
376 .name
= TYPE_IMX_SERIAL
,
377 .parent
= TYPE_SYS_BUS_DEVICE
,
378 .instance_size
= sizeof(IMXSerialState
),
379 .instance_init
= imx_serial_init
,
380 .class_init
= imx_serial_class_init
,
383 static void imx_serial_register_types(void)
385 type_register_static(&imx_serial_info
);
388 type_init(imx_serial_register_types
)