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 "hw/sysbus.h"
13 //#define DEBUG_PL061 1
16 #define DPRINTF(fmt, ...) \
17 do { printf("pl061: " fmt , ## __VA_ARGS__); } while (0)
18 #define BADF(fmt, ...) \
19 do { fprintf(stderr, "pl061: error: " fmt , ## __VA_ARGS__); exit(1);} while (0)
21 #define DPRINTF(fmt, ...) do {} while(0)
22 #define BADF(fmt, ...) \
23 do { fprintf(stderr, "pl061: error: " fmt , ## __VA_ARGS__);} while (0)
26 static const uint8_t pl061_id
[12] =
27 { 0x00, 0x00, 0x00, 0x00, 0x61, 0x10, 0x04, 0x00, 0x0d, 0xf0, 0x05, 0xb1 };
28 static const uint8_t pl061_id_luminary
[12] =
29 { 0x00, 0x00, 0x00, 0x00, 0x61, 0x00, 0x18, 0x01, 0x0d, 0xf0, 0x05, 0xb1 };
31 #define TYPE_PL061 "pl061"
32 #define PL061(obj) OBJECT_CHECK(PL061State, (obj), TYPE_PL061)
34 typedef struct PL061State
{
35 SysBusDevice parent_obj
;
61 const unsigned char *id
;
64 static const VMStateDescription vmstate_pl061
= {
67 .minimum_version_id
= 1,
68 .fields
= (VMStateField
[]) {
69 VMSTATE_UINT32(locked
, PL061State
),
70 VMSTATE_UINT32(data
, PL061State
),
71 VMSTATE_UINT32(old_data
, PL061State
),
72 VMSTATE_UINT32(dir
, PL061State
),
73 VMSTATE_UINT32(isense
, PL061State
),
74 VMSTATE_UINT32(ibe
, PL061State
),
75 VMSTATE_UINT32(iev
, PL061State
),
76 VMSTATE_UINT32(im
, PL061State
),
77 VMSTATE_UINT32(istate
, PL061State
),
78 VMSTATE_UINT32(afsel
, PL061State
),
79 VMSTATE_UINT32(dr2r
, PL061State
),
80 VMSTATE_UINT32(dr4r
, PL061State
),
81 VMSTATE_UINT32(dr8r
, PL061State
),
82 VMSTATE_UINT32(odr
, PL061State
),
83 VMSTATE_UINT32(pur
, PL061State
),
84 VMSTATE_UINT32(pdr
, PL061State
),
85 VMSTATE_UINT32(slr
, PL061State
),
86 VMSTATE_UINT32(den
, PL061State
),
87 VMSTATE_UINT32(cr
, PL061State
),
88 VMSTATE_UINT32(float_high
, PL061State
),
89 VMSTATE_UINT32_V(amsel
, PL061State
, 2),
94 static void pl061_update(PL061State
*s
)
101 /* Outputs float high. */
102 /* FIXME: This is board dependent. */
103 out
= (s
->data
& s
->dir
) | ~s
->dir
;
104 changed
= s
->old_data
^ out
;
109 for (i
= 0; i
< 8; i
++) {
111 if (changed
& mask
) {
112 DPRINTF("Set output %d = %d\n", i
, (out
& mask
) != 0);
113 qemu_set_irq(s
->out
[i
], (out
& mask
) != 0);
117 /* FIXME: Implement input interrupts. */
120 static uint64_t pl061_read(void *opaque
, hwaddr offset
,
123 PL061State
*s
= (PL061State
*)opaque
;
125 if (offset
>= 0xfd0 && offset
< 0x1000) {
126 return s
->id
[(offset
- 0xfd0) >> 2];
128 if (offset
< 0x400) {
129 return s
->data
& (offset
>> 2);
132 case 0x400: /* Direction */
134 case 0x404: /* Interrupt sense */
136 case 0x408: /* Interrupt both edges */
138 case 0x40c: /* Interrupt event */
140 case 0x410: /* Interrupt mask */
142 case 0x414: /* Raw interrupt status */
144 case 0x418: /* Masked interrupt status */
145 return s
->istate
| s
->im
;
146 case 0x420: /* Alternate function select */
148 case 0x500: /* 2mA drive */
150 case 0x504: /* 4mA drive */
152 case 0x508: /* 8mA drive */
154 case 0x50c: /* Open drain */
156 case 0x510: /* Pull-up */
158 case 0x514: /* Pull-down */
160 case 0x518: /* Slew rate control */
162 case 0x51c: /* Digital enable */
164 case 0x520: /* Lock */
166 case 0x524: /* Commit */
168 case 0x528: /* Analog mode select */
171 qemu_log_mask(LOG_GUEST_ERROR
,
172 "pl061_read: Bad offset %x\n", (int)offset
);
177 static void pl061_write(void *opaque
, hwaddr offset
,
178 uint64_t value
, unsigned size
)
180 PL061State
*s
= (PL061State
*)opaque
;
183 if (offset
< 0x400) {
184 mask
= (offset
>> 2) & s
->dir
;
185 s
->data
= (s
->data
& ~mask
) | (value
& mask
);
190 case 0x400: /* Direction */
191 s
->dir
= value
& 0xff;
193 case 0x404: /* Interrupt sense */
194 s
->isense
= value
& 0xff;
196 case 0x408: /* Interrupt both edges */
197 s
->ibe
= value
& 0xff;
199 case 0x40c: /* Interrupt event */
200 s
->iev
= value
& 0xff;
202 case 0x410: /* Interrupt mask */
203 s
->im
= value
& 0xff;
205 case 0x41c: /* Interrupt clear */
208 case 0x420: /* Alternate function select */
210 s
->afsel
= (s
->afsel
& ~mask
) | (value
& mask
);
212 case 0x500: /* 2mA drive */
213 s
->dr2r
= value
& 0xff;
215 case 0x504: /* 4mA drive */
216 s
->dr4r
= value
& 0xff;
218 case 0x508: /* 8mA drive */
219 s
->dr8r
= value
& 0xff;
221 case 0x50c: /* Open drain */
222 s
->odr
= value
& 0xff;
224 case 0x510: /* Pull-up */
225 s
->pur
= value
& 0xff;
227 case 0x514: /* Pull-down */
228 s
->pdr
= value
& 0xff;
230 case 0x518: /* Slew rate control */
231 s
->slr
= value
& 0xff;
233 case 0x51c: /* Digital enable */
234 s
->den
= value
& 0xff;
236 case 0x520: /* Lock */
237 s
->locked
= (value
!= 0xacce551);
239 case 0x524: /* Commit */
241 s
->cr
= value
& 0xff;
244 s
->amsel
= value
& 0xff;
247 qemu_log_mask(LOG_GUEST_ERROR
,
248 "pl061_write: Bad offset %x\n", (int)offset
);
253 static void pl061_reset(PL061State
*s
)
259 static void pl061_set_irq(void * opaque
, int irq
, int level
)
261 PL061State
*s
= (PL061State
*)opaque
;
265 if ((s
->dir
& mask
) == 0) {
273 static const MemoryRegionOps pl061_ops
= {
275 .write
= pl061_write
,
276 .endianness
= DEVICE_NATIVE_ENDIAN
,
279 static int pl061_initfn(SysBusDevice
*sbd
)
281 DeviceState
*dev
= DEVICE(sbd
);
282 PL061State
*s
= PL061(dev
);
284 memory_region_init_io(&s
->iomem
, OBJECT(s
), &pl061_ops
, s
, "pl061", 0x1000);
285 sysbus_init_mmio(sbd
, &s
->iomem
);
286 sysbus_init_irq(sbd
, &s
->irq
);
287 qdev_init_gpio_in(dev
, pl061_set_irq
, 8);
288 qdev_init_gpio_out(dev
, s
->out
, 8);
293 static void pl061_luminary_init(Object
*obj
)
295 PL061State
*s
= PL061(obj
);
297 s
->id
= pl061_id_luminary
;
300 static void pl061_init(Object
*obj
)
302 PL061State
*s
= PL061(obj
);
307 static void pl061_class_init(ObjectClass
*klass
, void *data
)
309 DeviceClass
*dc
= DEVICE_CLASS(klass
);
310 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
312 k
->init
= pl061_initfn
;
313 dc
->vmsd
= &vmstate_pl061
;
316 static const TypeInfo pl061_info
= {
318 .parent
= TYPE_SYS_BUS_DEVICE
,
319 .instance_size
= sizeof(PL061State
),
320 .instance_init
= pl061_init
,
321 .class_init
= pl061_class_init
,
324 static const TypeInfo pl061_luminary_info
= {
325 .name
= "pl061_luminary",
326 .parent
= TYPE_PL061
,
327 .instance_init
= pl061_luminary_init
,
330 static void pl061_register_types(void)
332 type_register_static(&pl061_info
);
333 type_register_static(&pl061_luminary_info
);
336 type_init(pl061_register_types
)