2 * Arm PrimeCell PL061 General Purpose IO with additional
3 * Luminary Micro Stellaris bits.
5 * Copyright (c) 2007 CodeSourcery.
6 * Written by Paul Brook
8 * This code is licensed under the GPL.
11 #include "qemu/osdep.h"
13 #include "hw/sysbus.h"
14 #include "migration/vmstate.h"
16 #include "qemu/module.h"
18 //#define DEBUG_PL061 1
21 #define DPRINTF(fmt, ...) \
22 do { printf("pl061: " fmt , ## __VA_ARGS__); } while (0)
23 #define BADF(fmt, ...) \
24 do { fprintf(stderr, "pl061: error: " fmt , ## __VA_ARGS__); exit(1);} while (0)
26 #define DPRINTF(fmt, ...) do {} while(0)
27 #define BADF(fmt, ...) \
28 do { fprintf(stderr, "pl061: error: " fmt , ## __VA_ARGS__);} while (0)
31 static const uint8_t pl061_id
[12] =
32 { 0x00, 0x00, 0x00, 0x00, 0x61, 0x10, 0x04, 0x00, 0x0d, 0xf0, 0x05, 0xb1 };
33 static const uint8_t pl061_id_luminary
[12] =
34 { 0x00, 0x00, 0x00, 0x00, 0x61, 0x00, 0x18, 0x01, 0x0d, 0xf0, 0x05, 0xb1 };
36 #define TYPE_PL061 "pl061"
37 #define PL061(obj) OBJECT_CHECK(PL061State, (obj), TYPE_PL061)
41 typedef struct PL061State
{
42 SysBusDevice parent_obj
;
47 uint32_t old_out_data
;
67 qemu_irq out
[N_GPIOS
];
68 const unsigned char *id
;
69 uint32_t rsvd_start
; /* reserved area: [rsvd_start, 0xfcc] */
72 static const VMStateDescription vmstate_pl061
= {
75 .minimum_version_id
= 4,
76 .fields
= (VMStateField
[]) {
77 VMSTATE_UINT32(locked
, PL061State
),
78 VMSTATE_UINT32(data
, PL061State
),
79 VMSTATE_UINT32(old_out_data
, PL061State
),
80 VMSTATE_UINT32(old_in_data
, PL061State
),
81 VMSTATE_UINT32(dir
, PL061State
),
82 VMSTATE_UINT32(isense
, PL061State
),
83 VMSTATE_UINT32(ibe
, PL061State
),
84 VMSTATE_UINT32(iev
, PL061State
),
85 VMSTATE_UINT32(im
, PL061State
),
86 VMSTATE_UINT32(istate
, PL061State
),
87 VMSTATE_UINT32(afsel
, PL061State
),
88 VMSTATE_UINT32(dr2r
, PL061State
),
89 VMSTATE_UINT32(dr4r
, PL061State
),
90 VMSTATE_UINT32(dr8r
, PL061State
),
91 VMSTATE_UINT32(odr
, PL061State
),
92 VMSTATE_UINT32(pur
, PL061State
),
93 VMSTATE_UINT32(pdr
, PL061State
),
94 VMSTATE_UINT32(slr
, PL061State
),
95 VMSTATE_UINT32(den
, PL061State
),
96 VMSTATE_UINT32(cr
, PL061State
),
97 VMSTATE_UINT32_V(amsel
, PL061State
, 2),
102 static void pl061_update(PL061State
*s
)
109 DPRINTF("dir = %d, data = %d\n", s
->dir
, s
->data
);
111 /* Outputs float high. */
112 /* FIXME: This is board dependent. */
113 out
= (s
->data
& s
->dir
) | ~s
->dir
;
114 changed
= s
->old_out_data
^ out
;
116 s
->old_out_data
= out
;
117 for (i
= 0; i
< N_GPIOS
; i
++) {
119 if (changed
& mask
) {
120 DPRINTF("Set output %d = %d\n", i
, (out
& mask
) != 0);
121 qemu_set_irq(s
->out
[i
], (out
& mask
) != 0);
127 changed
= (s
->old_in_data
^ s
->data
) & ~s
->dir
;
129 s
->old_in_data
= s
->data
;
130 for (i
= 0; i
< N_GPIOS
; i
++) {
132 if (changed
& mask
) {
133 DPRINTF("Changed input %d = %d\n", i
, (s
->data
& mask
) != 0);
135 if (!(s
->isense
& mask
)) {
138 /* Any edge triggers the interrupt */
141 /* Edge is selected by IEV */
142 s
->istate
|= ~(s
->data
^ s
->iev
) & mask
;
149 /* Level interrupt */
150 s
->istate
|= ~(s
->data
^ s
->iev
) & s
->isense
;
152 DPRINTF("istate = %02X\n", s
->istate
);
154 qemu_set_irq(s
->irq
, (s
->istate
& s
->im
) != 0);
157 static uint64_t pl061_read(void *opaque
, hwaddr offset
,
160 PL061State
*s
= (PL061State
*)opaque
;
162 if (offset
< 0x400) {
163 return s
->data
& (offset
>> 2);
165 if (offset
>= s
->rsvd_start
&& offset
<= 0xfcc) {
168 if (offset
>= 0xfd0 && offset
< 0x1000) {
169 return s
->id
[(offset
- 0xfd0) >> 2];
172 case 0x400: /* Direction */
174 case 0x404: /* Interrupt sense */
176 case 0x408: /* Interrupt both edges */
178 case 0x40c: /* Interrupt event */
180 case 0x410: /* Interrupt mask */
182 case 0x414: /* Raw interrupt status */
184 case 0x418: /* Masked interrupt status */
185 return s
->istate
& s
->im
;
186 case 0x420: /* Alternate function select */
188 case 0x500: /* 2mA drive */
190 case 0x504: /* 4mA drive */
192 case 0x508: /* 8mA drive */
194 case 0x50c: /* Open drain */
196 case 0x510: /* Pull-up */
198 case 0x514: /* Pull-down */
200 case 0x518: /* Slew rate control */
202 case 0x51c: /* Digital enable */
204 case 0x520: /* Lock */
206 case 0x524: /* Commit */
208 case 0x528: /* Analog mode select */
214 qemu_log_mask(LOG_GUEST_ERROR
,
215 "pl061_read: Bad offset %x\n", (int)offset
);
219 static void pl061_write(void *opaque
, hwaddr offset
,
220 uint64_t value
, unsigned size
)
222 PL061State
*s
= (PL061State
*)opaque
;
225 if (offset
< 0x400) {
226 mask
= (offset
>> 2) & s
->dir
;
227 s
->data
= (s
->data
& ~mask
) | (value
& mask
);
231 if (offset
>= s
->rsvd_start
) {
235 case 0x400: /* Direction */
236 s
->dir
= value
& 0xff;
238 case 0x404: /* Interrupt sense */
239 s
->isense
= value
& 0xff;
241 case 0x408: /* Interrupt both edges */
242 s
->ibe
= value
& 0xff;
244 case 0x40c: /* Interrupt event */
245 s
->iev
= value
& 0xff;
247 case 0x410: /* Interrupt mask */
248 s
->im
= value
& 0xff;
250 case 0x41c: /* Interrupt clear */
253 case 0x420: /* Alternate function select */
255 s
->afsel
= (s
->afsel
& ~mask
) | (value
& mask
);
257 case 0x500: /* 2mA drive */
258 s
->dr2r
= value
& 0xff;
260 case 0x504: /* 4mA drive */
261 s
->dr4r
= value
& 0xff;
263 case 0x508: /* 8mA drive */
264 s
->dr8r
= value
& 0xff;
266 case 0x50c: /* Open drain */
267 s
->odr
= value
& 0xff;
269 case 0x510: /* Pull-up */
270 s
->pur
= value
& 0xff;
272 case 0x514: /* Pull-down */
273 s
->pdr
= value
& 0xff;
275 case 0x518: /* Slew rate control */
276 s
->slr
= value
& 0xff;
278 case 0x51c: /* Digital enable */
279 s
->den
= value
& 0xff;
281 case 0x520: /* Lock */
282 s
->locked
= (value
!= 0xacce551);
284 case 0x524: /* Commit */
286 s
->cr
= value
& 0xff;
289 s
->amsel
= value
& 0xff;
297 qemu_log_mask(LOG_GUEST_ERROR
,
298 "pl061_write: Bad offset %x\n", (int)offset
);
301 static void pl061_reset(DeviceState
*dev
)
303 PL061State
*s
= PL061(dev
);
305 /* reset values from PL061 TRM, Stellaris LM3S5P31 & LM3S8962 Data Sheet */
329 static void pl061_set_irq(void * opaque
, int irq
, int level
)
331 PL061State
*s
= (PL061State
*)opaque
;
335 if ((s
->dir
& mask
) == 0) {
343 static const MemoryRegionOps pl061_ops
= {
345 .write
= pl061_write
,
346 .endianness
= DEVICE_NATIVE_ENDIAN
,
349 static void pl061_luminary_init(Object
*obj
)
351 PL061State
*s
= PL061(obj
);
353 s
->id
= pl061_id_luminary
;
354 s
->rsvd_start
= 0x52c;
357 static void pl061_init(Object
*obj
)
359 PL061State
*s
= PL061(obj
);
360 DeviceState
*dev
= DEVICE(obj
);
361 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
364 s
->rsvd_start
= 0x424;
366 memory_region_init_io(&s
->iomem
, obj
, &pl061_ops
, s
, "pl061", 0x1000);
367 sysbus_init_mmio(sbd
, &s
->iomem
);
368 sysbus_init_irq(sbd
, &s
->irq
);
369 qdev_init_gpio_in(dev
, pl061_set_irq
, N_GPIOS
);
370 qdev_init_gpio_out(dev
, s
->out
, N_GPIOS
);
373 static void pl061_class_init(ObjectClass
*klass
, void *data
)
375 DeviceClass
*dc
= DEVICE_CLASS(klass
);
377 dc
->vmsd
= &vmstate_pl061
;
378 dc
->reset
= &pl061_reset
;
381 static const TypeInfo pl061_info
= {
383 .parent
= TYPE_SYS_BUS_DEVICE
,
384 .instance_size
= sizeof(PL061State
),
385 .instance_init
= pl061_init
,
386 .class_init
= pl061_class_init
,
389 static const TypeInfo pl061_luminary_info
= {
390 .name
= "pl061_luminary",
391 .parent
= TYPE_PL061
,
392 .instance_init
= pl061_luminary_init
,
395 static void pl061_register_types(void)
397 type_register_static(&pl061_info
);
398 type_register_static(&pl061_luminary_info
);
401 type_init(pl061_register_types
)