2 * Arm PrimeCell PL022 Synchronous Serial Port
4 * Copyright (c) 2007 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licensed under the GPL.
10 #include "hw/sysbus.h"
13 //#define DEBUG_PL022 1
16 #define DPRINTF(fmt, ...) \
17 do { printf("pl022: " fmt , ## __VA_ARGS__); } while (0)
18 #define BADF(fmt, ...) \
19 do { fprintf(stderr, "pl022: error: " fmt , ## __VA_ARGS__); exit(1);} while (0)
21 #define DPRINTF(fmt, ...) do {} while(0)
22 #define BADF(fmt, ...) \
23 do { fprintf(stderr, "pl022: error: " fmt , ## __VA_ARGS__);} while (0)
26 #define PL022_CR1_LBM 0x01
27 #define PL022_CR1_SSE 0x02
28 #define PL022_CR1_MS 0x04
29 #define PL022_CR1_SDO 0x08
31 #define PL022_SR_TFE 0x01
32 #define PL022_SR_TNF 0x02
33 #define PL022_SR_RNE 0x04
34 #define PL022_SR_RFF 0x08
35 #define PL022_SR_BSY 0x10
37 #define PL022_INT_ROR 0x01
38 #define PL022_INT_RT 0x04
39 #define PL022_INT_RX 0x04
40 #define PL022_INT_TX 0x08
42 #define TYPE_PL022 "pl022"
43 #define PL022(obj) OBJECT_CHECK(PL022State, (obj), TYPE_PL022)
45 typedef struct PL022State
{
46 SysBusDevice parent_obj
;
56 /* The FIFO head points to the next empty entry. */
67 static const unsigned char pl022_id
[8] =
68 { 0x22, 0x10, 0x04, 0x00, 0x0d, 0xf0, 0x05, 0xb1 };
70 static void pl022_update(PL022State
*s
)
73 if (s
->tx_fifo_len
== 0)
74 s
->sr
|= PL022_SR_TFE
;
75 if (s
->tx_fifo_len
!= 8)
76 s
->sr
|= PL022_SR_TNF
;
77 if (s
->rx_fifo_len
!= 0)
78 s
->sr
|= PL022_SR_RNE
;
79 if (s
->rx_fifo_len
== 8)
80 s
->sr
|= PL022_SR_RFF
;
82 s
->sr
|= PL022_SR_BSY
;
84 if (s
->rx_fifo_len
>= 4)
85 s
->is
|= PL022_INT_RX
;
86 if (s
->tx_fifo_len
<= 4)
87 s
->is
|= PL022_INT_TX
;
89 qemu_set_irq(s
->irq
, (s
->is
& s
->im
) != 0);
92 static void pl022_xfer(PL022State
*s
)
98 if ((s
->cr1
& PL022_CR1_SSE
) == 0) {
100 DPRINTF("Disabled\n");
104 DPRINTF("Maybe xfer %d/%d\n", s
->tx_fifo_len
, s
->rx_fifo_len
);
105 i
= (s
->tx_fifo_head
- s
->tx_fifo_len
) & 7;
107 /* ??? We do not emulate the line speed.
108 This may break some applications. The are two problematic cases:
109 (a) A driver feeds data into the TX FIFO until it is full,
110 and only then drains the RX FIFO. On real hardware the CPU can
111 feed data fast enough that the RX fifo never gets chance to overflow.
112 (b) A driver transmits data, deliberately allowing the RX FIFO to
113 overflow because it ignores the RX data anyway.
115 We choose to support (a) by stalling the transmit engine if it would
116 cause the RX FIFO to overflow. In practice much transmit-only code
117 falls into (a) because it flushes the RX FIFO to determine when
118 the transfer has completed. */
119 while (s
->tx_fifo_len
&& s
->rx_fifo_len
< 8) {
122 if (s
->cr1
& PL022_CR1_LBM
) {
125 val
= ssi_transfer(s
->ssi
, val
);
127 s
->rx_fifo
[o
] = val
& s
->bitmask
;
137 static uint64_t pl022_read(void *opaque
, hwaddr offset
,
140 PL022State
*s
= (PL022State
*)opaque
;
143 if (offset
>= 0xfe0 && offset
< 0x1000) {
144 return pl022_id
[(offset
- 0xfe0) >> 2];
152 if (s
->rx_fifo_len
) {
153 val
= s
->rx_fifo
[(s
->rx_fifo_head
- s
->rx_fifo_len
) & 7];
154 DPRINTF("RX %02x\n", val
);
163 case 0x10: /* CPSR */
165 case 0x14: /* IMSC */
170 return s
->im
& s
->is
;
171 case 0x20: /* DMACR */
172 /* Not implemented. */
175 qemu_log_mask(LOG_GUEST_ERROR
,
176 "pl022_read: Bad offset %x\n", (int)offset
);
181 static void pl022_write(void *opaque
, hwaddr offset
,
182 uint64_t value
, unsigned size
)
184 PL022State
*s
= (PL022State
*)opaque
;
189 /* Clock rate and format are ignored. */
190 s
->bitmask
= (1 << ((value
& 15) + 1)) - 1;
194 if ((s
->cr1
& (PL022_CR1_MS
| PL022_CR1_SSE
))
195 == (PL022_CR1_MS
| PL022_CR1_SSE
)) {
196 BADF("SPI slave mode not implemented\n");
201 if (s
->tx_fifo_len
< 8) {
202 DPRINTF("TX %02x\n", (unsigned)value
);
203 s
->tx_fifo
[s
->tx_fifo_head
] = value
& s
->bitmask
;
204 s
->tx_fifo_head
= (s
->tx_fifo_head
+ 1) & 7;
209 case 0x10: /* CPSR */
210 /* Prescaler. Ignored. */
211 s
->cpsr
= value
& 0xff;
213 case 0x14: /* IMSC */
217 case 0x20: /* DMACR */
219 qemu_log_mask(LOG_UNIMP
, "pl022: DMA not implemented\n");
223 qemu_log_mask(LOG_GUEST_ERROR
,
224 "pl022_write: Bad offset %x\n", (int)offset
);
228 static void pl022_reset(PL022State
*s
)
233 s
->is
= PL022_INT_TX
;
234 s
->sr
= PL022_SR_TFE
| PL022_SR_TNF
;
237 static const MemoryRegionOps pl022_ops
= {
239 .write
= pl022_write
,
240 .endianness
= DEVICE_NATIVE_ENDIAN
,
243 static int pl022_post_load(void *opaque
, int version_id
)
245 PL022State
*s
= opaque
;
247 if (s
->tx_fifo_head
< 0 ||
248 s
->tx_fifo_head
>= ARRAY_SIZE(s
->tx_fifo
) ||
249 s
->rx_fifo_head
< 0 ||
250 s
->rx_fifo_head
>= ARRAY_SIZE(s
->rx_fifo
)) {
256 static const VMStateDescription vmstate_pl022
= {
259 .minimum_version_id
= 1,
260 .minimum_version_id_old
= 1,
261 .post_load
= pl022_post_load
,
262 .fields
= (VMStateField
[]) {
263 VMSTATE_UINT32(cr0
, PL022State
),
264 VMSTATE_UINT32(cr1
, PL022State
),
265 VMSTATE_UINT32(bitmask
, PL022State
),
266 VMSTATE_UINT32(sr
, PL022State
),
267 VMSTATE_UINT32(cpsr
, PL022State
),
268 VMSTATE_UINT32(is
, PL022State
),
269 VMSTATE_UINT32(im
, PL022State
),
270 VMSTATE_INT32(tx_fifo_head
, PL022State
),
271 VMSTATE_INT32(rx_fifo_head
, PL022State
),
272 VMSTATE_INT32(tx_fifo_len
, PL022State
),
273 VMSTATE_INT32(rx_fifo_len
, PL022State
),
274 VMSTATE_UINT16(tx_fifo
[0], PL022State
),
275 VMSTATE_UINT16(rx_fifo
[0], PL022State
),
276 VMSTATE_UINT16(tx_fifo
[1], PL022State
),
277 VMSTATE_UINT16(rx_fifo
[1], PL022State
),
278 VMSTATE_UINT16(tx_fifo
[2], PL022State
),
279 VMSTATE_UINT16(rx_fifo
[2], PL022State
),
280 VMSTATE_UINT16(tx_fifo
[3], PL022State
),
281 VMSTATE_UINT16(rx_fifo
[3], PL022State
),
282 VMSTATE_UINT16(tx_fifo
[4], PL022State
),
283 VMSTATE_UINT16(rx_fifo
[4], PL022State
),
284 VMSTATE_UINT16(tx_fifo
[5], PL022State
),
285 VMSTATE_UINT16(rx_fifo
[5], PL022State
),
286 VMSTATE_UINT16(tx_fifo
[6], PL022State
),
287 VMSTATE_UINT16(rx_fifo
[6], PL022State
),
288 VMSTATE_UINT16(tx_fifo
[7], PL022State
),
289 VMSTATE_UINT16(rx_fifo
[7], PL022State
),
290 VMSTATE_END_OF_LIST()
294 static int pl022_init(SysBusDevice
*sbd
)
296 DeviceState
*dev
= DEVICE(sbd
);
297 PL022State
*s
= PL022(dev
);
299 memory_region_init_io(&s
->iomem
, OBJECT(s
), &pl022_ops
, s
, "pl022", 0x1000);
300 sysbus_init_mmio(sbd
, &s
->iomem
);
301 sysbus_init_irq(sbd
, &s
->irq
);
302 s
->ssi
= ssi_create_bus(dev
, "ssi");
304 vmstate_register(dev
, -1, &vmstate_pl022
, s
);
308 static void pl022_class_init(ObjectClass
*klass
, void *data
)
310 SysBusDeviceClass
*sdc
= SYS_BUS_DEVICE_CLASS(klass
);
312 sdc
->init
= pl022_init
;
315 static const TypeInfo pl022_info
= {
317 .parent
= TYPE_SYS_BUS_DEVICE
,
318 .instance_size
= sizeof(PL022State
),
319 .class_init
= pl022_class_init
,
322 static void pl022_register_types(void)
324 type_register_static(&pl022_info
);
327 type_init(pl022_register_types
)