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 const VMStateDescription vmstate_pl022
= {
246 .minimum_version_id
= 1,
247 .minimum_version_id_old
= 1,
248 .fields
= (VMStateField
[]) {
249 VMSTATE_UINT32(cr0
, PL022State
),
250 VMSTATE_UINT32(cr1
, PL022State
),
251 VMSTATE_UINT32(bitmask
, PL022State
),
252 VMSTATE_UINT32(sr
, PL022State
),
253 VMSTATE_UINT32(cpsr
, PL022State
),
254 VMSTATE_UINT32(is
, PL022State
),
255 VMSTATE_UINT32(im
, PL022State
),
256 VMSTATE_INT32(tx_fifo_head
, PL022State
),
257 VMSTATE_INT32(rx_fifo_head
, PL022State
),
258 VMSTATE_INT32(tx_fifo_len
, PL022State
),
259 VMSTATE_INT32(rx_fifo_len
, PL022State
),
260 VMSTATE_UINT16(tx_fifo
[0], PL022State
),
261 VMSTATE_UINT16(rx_fifo
[0], PL022State
),
262 VMSTATE_UINT16(tx_fifo
[1], PL022State
),
263 VMSTATE_UINT16(rx_fifo
[1], PL022State
),
264 VMSTATE_UINT16(tx_fifo
[2], PL022State
),
265 VMSTATE_UINT16(rx_fifo
[2], PL022State
),
266 VMSTATE_UINT16(tx_fifo
[3], PL022State
),
267 VMSTATE_UINT16(rx_fifo
[3], PL022State
),
268 VMSTATE_UINT16(tx_fifo
[4], PL022State
),
269 VMSTATE_UINT16(rx_fifo
[4], PL022State
),
270 VMSTATE_UINT16(tx_fifo
[5], PL022State
),
271 VMSTATE_UINT16(rx_fifo
[5], PL022State
),
272 VMSTATE_UINT16(tx_fifo
[6], PL022State
),
273 VMSTATE_UINT16(rx_fifo
[6], PL022State
),
274 VMSTATE_UINT16(tx_fifo
[7], PL022State
),
275 VMSTATE_UINT16(rx_fifo
[7], PL022State
),
276 VMSTATE_END_OF_LIST()
280 static int pl022_init(SysBusDevice
*sbd
)
282 DeviceState
*dev
= DEVICE(sbd
);
283 PL022State
*s
= PL022(dev
);
285 memory_region_init_io(&s
->iomem
, OBJECT(s
), &pl022_ops
, s
, "pl022", 0x1000);
286 sysbus_init_mmio(sbd
, &s
->iomem
);
287 sysbus_init_irq(sbd
, &s
->irq
);
288 s
->ssi
= ssi_create_bus(dev
, "ssi");
290 vmstate_register(dev
, -1, &vmstate_pl022
, s
);
294 static void pl022_class_init(ObjectClass
*klass
, void *data
)
296 SysBusDeviceClass
*sdc
= SYS_BUS_DEVICE_CLASS(klass
);
298 sdc
->init
= pl022_init
;
301 static const TypeInfo pl022_info
= {
303 .parent
= TYPE_SYS_BUS_DEVICE
,
304 .instance_size
= sizeof(PL022State
),
305 .class_init
= pl022_class_init
,
308 static void pl022_register_types(void)
310 type_register_static(&pl022_info
);
313 type_init(pl022_register_types
)