]> Git Repo - qemu.git/blame - hw/arm/integratorcp.c
hw: Fix qemu_allocate_irqs() leaks
[qemu.git] / hw / arm / integratorcp.c
CommitLineData
5fafdf24 1/*
b5ff1b31
FB
2 * ARM Integrator CP System emulation.
3 *
a1bb27b1 4 * Copyright (c) 2005-2007 CodeSourcery.
b5ff1b31
FB
5 * Written by Paul Brook
6 *
8e31bf38 7 * This code is licensed under the GPL
b5ff1b31
FB
8 */
9
83c9f4ca 10#include "hw/sysbus.h"
bd2be150 11#include "hw/devices.h"
83c9f4ca 12#include "hw/boards.h"
bd2be150 13#include "hw/arm/arm.h"
b8616055 14#include "hw/misc/arm_integrator_debug.h"
1422e32d 15#include "net/net.h"
022c62cb 16#include "exec/address-spaces.h"
9c17d615 17#include "sysemu/sysemu.h"
b5ff1b31 18
257ec289
AF
19#define TYPE_INTEGRATOR_CM "integrator_core"
20#define INTEGRATOR_CM(obj) \
21 OBJECT_CHECK(IntegratorCMState, (obj), TYPE_INTEGRATOR_CM)
22
23typedef struct IntegratorCMState {
24 /*< private >*/
25 SysBusDevice parent_obj;
26 /*< public >*/
27
71d9bc50 28 MemoryRegion iomem;
ee6847d1 29 uint32_t memsz;
211adf4d 30 MemoryRegion flash;
b5ff1b31
FB
31 uint32_t cm_osc;
32 uint32_t cm_ctrl;
33 uint32_t cm_lock;
34 uint32_t cm_auxosc;
35 uint32_t cm_sdram;
36 uint32_t cm_init;
37 uint32_t cm_flags;
38 uint32_t cm_nvflags;
f53977f7 39 uint32_t cm_refcnt_offset;
b5ff1b31
FB
40 uint32_t int_level;
41 uint32_t irq_enabled;
42 uint32_t fiq_enabled;
257ec289 43} IntegratorCMState;
b5ff1b31
FB
44
45static uint8_t integrator_spd[128] = {
46 128, 8, 4, 11, 9, 1, 64, 0, 2, 0xa0, 0xa0, 0, 0, 8, 0, 1,
47 0xe, 4, 0x1c, 1, 2, 0x20, 0xc0, 0, 0, 0, 0, 0x30, 0x28, 0x30, 0x28, 0x40
48};
49
a8170e5e 50static uint64_t integratorcm_read(void *opaque, hwaddr offset,
71d9bc50 51 unsigned size)
b5ff1b31 52{
257ec289 53 IntegratorCMState *s = opaque;
b5ff1b31
FB
54 if (offset >= 0x100 && offset < 0x200) {
55 /* CM_SPD */
56 if (offset >= 0x180)
57 return 0;
58 return integrator_spd[offset >> 2];
59 }
60 switch (offset >> 2) {
61 case 0: /* CM_ID */
62 return 0x411a3001;
63 case 1: /* CM_PROC */
64 return 0;
65 case 2: /* CM_OSC */
66 return s->cm_osc;
67 case 3: /* CM_CTRL */
68 return s->cm_ctrl;
69 case 4: /* CM_STAT */
70 return 0x00100000;
71 case 5: /* CM_LOCK */
72 if (s->cm_lock == 0xa05f) {
73 return 0x1a05f;
74 } else {
75 return s->cm_lock;
76 }
77 case 6: /* CM_LMBUSCNT */
78 /* ??? High frequency timer. */
2ac71179 79 hw_error("integratorcm_read: CM_LMBUSCNT");
b5ff1b31
FB
80 case 7: /* CM_AUXOSC */
81 return s->cm_auxosc;
82 case 8: /* CM_SDRAM */
83 return s->cm_sdram;
84 case 9: /* CM_INIT */
85 return s->cm_init;
f53977f7
JP
86 case 10: /* CM_REFCNT */
87 /* This register, CM_REFCNT, provides a 32-bit count value.
88 * The count increments at the fixed reference clock frequency of 24MHz
89 * and can be used as a real-time counter.
90 */
91 return (uint32_t)muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL), 24,
92 1000) - s->cm_refcnt_offset;
b5ff1b31
FB
93 case 12: /* CM_FLAGS */
94 return s->cm_flags;
95 case 14: /* CM_NVFLAGS */
96 return s->cm_nvflags;
97 case 16: /* CM_IRQ_STAT */
98 return s->int_level & s->irq_enabled;
99 case 17: /* CM_IRQ_RSTAT */
100 return s->int_level;
101 case 18: /* CM_IRQ_ENSET */
102 return s->irq_enabled;
103 case 20: /* CM_SOFT_INTSET */
104 return s->int_level & 1;
105 case 24: /* CM_FIQ_STAT */
106 return s->int_level & s->fiq_enabled;
107 case 25: /* CM_FIQ_RSTAT */
108 return s->int_level;
109 case 26: /* CM_FIQ_ENSET */
110 return s->fiq_enabled;
111 case 32: /* CM_VOLTAGE_CTL0 */
112 case 33: /* CM_VOLTAGE_CTL1 */
113 case 34: /* CM_VOLTAGE_CTL2 */
114 case 35: /* CM_VOLTAGE_CTL3 */
115 /* ??? Voltage control unimplemented. */
116 return 0;
117 default:
2ac71179
PB
118 hw_error("integratorcm_read: Unimplemented offset 0x%x\n",
119 (int)offset);
b5ff1b31
FB
120 return 0;
121 }
122}
123
257ec289 124static void integratorcm_do_remap(IntegratorCMState *s)
b5ff1b31 125{
563c2bf3
PM
126 /* Sync memory region state with CM_CTRL REMAP bit:
127 * bit 0 => flash at address 0; bit 1 => RAM
128 */
129 memory_region_set_enabled(&s->flash, !(s->cm_ctrl & 4));
b5ff1b31
FB
130}
131
257ec289 132static void integratorcm_set_ctrl(IntegratorCMState *s, uint32_t value)
b5ff1b31
FB
133{
134 if (value & 8) {
df3f457b 135 qemu_system_reset_request();
b5ff1b31 136 }
df3f457b
PM
137 if ((s->cm_ctrl ^ value) & 1) {
138 /* (value & 1) != 0 means the green "MISC LED" is lit.
139 * We don't have any nice place to display LEDs. printf is a bad
140 * idea because Linux uses the LED as a heartbeat and the output
141 * will swamp anything else on the terminal.
142 */
b5ff1b31 143 }
df3f457b
PM
144 /* Note that the RESET bit [3] always reads as zero */
145 s->cm_ctrl = (s->cm_ctrl & ~5) | (value & 5);
563c2bf3 146 integratorcm_do_remap(s);
b5ff1b31
FB
147}
148
257ec289 149static void integratorcm_update(IntegratorCMState *s)
b5ff1b31
FB
150{
151 /* ??? The CPU irq/fiq is raised when either the core module or base PIC
152 are active. */
153 if (s->int_level & (s->irq_enabled | s->fiq_enabled))
2ac71179 154 hw_error("Core module interrupt\n");
b5ff1b31
FB
155}
156
a8170e5e 157static void integratorcm_write(void *opaque, hwaddr offset,
71d9bc50 158 uint64_t value, unsigned size)
b5ff1b31 159{
257ec289 160 IntegratorCMState *s = opaque;
b5ff1b31
FB
161 switch (offset >> 2) {
162 case 2: /* CM_OSC */
163 if (s->cm_lock == 0xa05f)
164 s->cm_osc = value;
165 break;
166 case 3: /* CM_CTRL */
167 integratorcm_set_ctrl(s, value);
168 break;
169 case 5: /* CM_LOCK */
170 s->cm_lock = value & 0xffff;
171 break;
172 case 7: /* CM_AUXOSC */
173 if (s->cm_lock == 0xa05f)
174 s->cm_auxosc = value;
175 break;
176 case 8: /* CM_SDRAM */
177 s->cm_sdram = value;
178 break;
179 case 9: /* CM_INIT */
180 /* ??? This can change the memory bus frequency. */
181 s->cm_init = value;
182 break;
183 case 12: /* CM_FLAGSS */
184 s->cm_flags |= value;
185 break;
186 case 13: /* CM_FLAGSC */
187 s->cm_flags &= ~value;
188 break;
189 case 14: /* CM_NVFLAGSS */
190 s->cm_nvflags |= value;
191 break;
192 case 15: /* CM_NVFLAGSS */
193 s->cm_nvflags &= ~value;
194 break;
195 case 18: /* CM_IRQ_ENSET */
196 s->irq_enabled |= value;
197 integratorcm_update(s);
198 break;
199 case 19: /* CM_IRQ_ENCLR */
200 s->irq_enabled &= ~value;
201 integratorcm_update(s);
202 break;
203 case 20: /* CM_SOFT_INTSET */
204 s->int_level |= (value & 1);
205 integratorcm_update(s);
206 break;
207 case 21: /* CM_SOFT_INTCLR */
208 s->int_level &= ~(value & 1);
209 integratorcm_update(s);
210 break;
211 case 26: /* CM_FIQ_ENSET */
212 s->fiq_enabled |= value;
213 integratorcm_update(s);
214 break;
215 case 27: /* CM_FIQ_ENCLR */
216 s->fiq_enabled &= ~value;
217 integratorcm_update(s);
218 break;
219 case 32: /* CM_VOLTAGE_CTL0 */
220 case 33: /* CM_VOLTAGE_CTL1 */
221 case 34: /* CM_VOLTAGE_CTL2 */
222 case 35: /* CM_VOLTAGE_CTL3 */
223 /* ??? Voltage control unimplemented. */
224 break;
225 default:
2ac71179
PB
226 hw_error("integratorcm_write: Unimplemented offset 0x%x\n",
227 (int)offset);
b5ff1b31
FB
228 break;
229 }
230}
231
232/* Integrator/CM control registers. */
233
71d9bc50
BC
234static const MemoryRegionOps integratorcm_ops = {
235 .read = integratorcm_read,
236 .write = integratorcm_write,
237 .endianness = DEVICE_NATIVE_ENDIAN,
b5ff1b31
FB
238};
239
81a322d4 240static int integratorcm_init(SysBusDevice *dev)
b5ff1b31 241{
257ec289 242 IntegratorCMState *s = INTEGRATOR_CM(dev);
b5ff1b31 243
b5ff1b31
FB
244 s->cm_osc = 0x01000048;
245 /* ??? What should the high bits of this value be? */
246 s->cm_auxosc = 0x0007feff;
247 s->cm_sdram = 0x00011122;
ee6847d1 248 if (s->memsz >= 256) {
b5ff1b31
FB
249 integrator_spd[31] = 64;
250 s->cm_sdram |= 0x10;
ee6847d1 251 } else if (s->memsz >= 128) {
b5ff1b31
FB
252 integrator_spd[31] = 32;
253 s->cm_sdram |= 0x0c;
ee6847d1 254 } else if (s->memsz >= 64) {
b5ff1b31
FB
255 integrator_spd[31] = 16;
256 s->cm_sdram |= 0x08;
ee6847d1 257 } else if (s->memsz >= 32) {
b5ff1b31
FB
258 integrator_spd[31] = 4;
259 s->cm_sdram |= 0x04;
260 } else {
261 integrator_spd[31] = 2;
262 }
263 memcpy(integrator_spd + 73, "QEMU-MEMORY", 11);
264 s->cm_init = 0x00000112;
f53977f7
JP
265 s->cm_refcnt_offset = muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL), 24,
266 1000);
64bde0f3 267 memory_region_init_ram(&s->flash, OBJECT(s), "integrator.flash", 0x100000);
c5705a77 268 vmstate_register_ram_global(&s->flash);
b5ff1b31 269
64bde0f3 270 memory_region_init_io(&s->iomem, OBJECT(s), &integratorcm_ops, s,
71d9bc50 271 "integratorcm", 0x00800000);
750ecd44 272 sysbus_init_mmio(dev, &s->iomem);
71d9bc50 273
563c2bf3 274 integratorcm_do_remap(s);
b5ff1b31 275 /* ??? Save/restore. */
81a322d4 276 return 0;
b5ff1b31
FB
277}
278
279/* Integrator/CP hardware emulation. */
280/* Primary interrupt controller. */
281
91b64626
AF
282#define TYPE_INTEGRATOR_PIC "integrator_pic"
283#define INTEGRATOR_PIC(obj) \
284 OBJECT_CHECK(icp_pic_state, (obj), TYPE_INTEGRATOR_PIC)
285
286typedef struct icp_pic_state {
287 /*< private >*/
288 SysBusDevice parent_obj;
289 /*< public >*/
290
291 MemoryRegion iomem;
292 uint32_t level;
293 uint32_t irq_enabled;
294 uint32_t fiq_enabled;
295 qemu_irq parent_irq;
296 qemu_irq parent_fiq;
b5ff1b31
FB
297} icp_pic_state;
298
b5ff1b31
FB
299static void icp_pic_update(icp_pic_state *s)
300{
cdbdb648 301 uint32_t flags;
b5ff1b31 302
d537cf6c
PB
303 flags = (s->level & s->irq_enabled);
304 qemu_set_irq(s->parent_irq, flags != 0);
305 flags = (s->level & s->fiq_enabled);
306 qemu_set_irq(s->parent_fiq, flags != 0);
b5ff1b31
FB
307}
308
cdbdb648 309static void icp_pic_set_irq(void *opaque, int irq, int level)
b5ff1b31 310{
80337b66 311 icp_pic_state *s = (icp_pic_state *)opaque;
b5ff1b31 312 if (level)
80337b66 313 s->level |= 1 << irq;
b5ff1b31 314 else
80337b66 315 s->level &= ~(1 << irq);
b5ff1b31
FB
316 icp_pic_update(s);
317}
318
a8170e5e 319static uint64_t icp_pic_read(void *opaque, hwaddr offset,
61074e46 320 unsigned size)
b5ff1b31
FB
321{
322 icp_pic_state *s = (icp_pic_state *)opaque;
323
b5ff1b31
FB
324 switch (offset >> 2) {
325 case 0: /* IRQ_STATUS */
326 return s->level & s->irq_enabled;
327 case 1: /* IRQ_RAWSTAT */
328 return s->level;
329 case 2: /* IRQ_ENABLESET */
330 return s->irq_enabled;
331 case 4: /* INT_SOFTSET */
332 return s->level & 1;
333 case 8: /* FRQ_STATUS */
334 return s->level & s->fiq_enabled;
335 case 9: /* FRQ_RAWSTAT */
336 return s->level;
337 case 10: /* FRQ_ENABLESET */
338 return s->fiq_enabled;
339 case 3: /* IRQ_ENABLECLR */
340 case 5: /* INT_SOFTCLR */
341 case 11: /* FRQ_ENABLECLR */
342 default:
29bfb117 343 printf ("icp_pic_read: Bad register offset 0x%x\n", (int)offset);
b5ff1b31
FB
344 return 0;
345 }
346}
347
a8170e5e 348static void icp_pic_write(void *opaque, hwaddr offset,
61074e46 349 uint64_t value, unsigned size)
b5ff1b31
FB
350{
351 icp_pic_state *s = (icp_pic_state *)opaque;
b5ff1b31
FB
352
353 switch (offset >> 2) {
354 case 2: /* IRQ_ENABLESET */
355 s->irq_enabled |= value;
356 break;
357 case 3: /* IRQ_ENABLECLR */
358 s->irq_enabled &= ~value;
359 break;
360 case 4: /* INT_SOFTSET */
361 if (value & 1)
d537cf6c 362 icp_pic_set_irq(s, 0, 1);
b5ff1b31
FB
363 break;
364 case 5: /* INT_SOFTCLR */
365 if (value & 1)
d537cf6c 366 icp_pic_set_irq(s, 0, 0);
b5ff1b31
FB
367 break;
368 case 10: /* FRQ_ENABLESET */
369 s->fiq_enabled |= value;
370 break;
371 case 11: /* FRQ_ENABLECLR */
372 s->fiq_enabled &= ~value;
373 break;
374 case 0: /* IRQ_STATUS */
375 case 1: /* IRQ_RAWSTAT */
376 case 8: /* FRQ_STATUS */
377 case 9: /* FRQ_RAWSTAT */
378 default:
29bfb117 379 printf ("icp_pic_write: Bad register offset 0x%x\n", (int)offset);
b5ff1b31
FB
380 return;
381 }
382 icp_pic_update(s);
383}
384
61074e46
BC
385static const MemoryRegionOps icp_pic_ops = {
386 .read = icp_pic_read,
387 .write = icp_pic_write,
388 .endianness = DEVICE_NATIVE_ENDIAN,
b5ff1b31
FB
389};
390
91b64626 391static int icp_pic_init(SysBusDevice *sbd)
b5ff1b31 392{
91b64626
AF
393 DeviceState *dev = DEVICE(sbd);
394 icp_pic_state *s = INTEGRATOR_PIC(dev);
b5ff1b31 395
91b64626
AF
396 qdev_init_gpio_in(dev, icp_pic_set_irq, 32);
397 sysbus_init_irq(sbd, &s->parent_irq);
398 sysbus_init_irq(sbd, &s->parent_fiq);
64bde0f3
PB
399 memory_region_init_io(&s->iomem, OBJECT(s), &icp_pic_ops, s,
400 "icp-pic", 0x00800000);
91b64626 401 sysbus_init_mmio(sbd, &s->iomem);
81a322d4 402 return 0;
b5ff1b31
FB
403}
404
b5ff1b31 405/* CP control registers. */
0c36493e 406
a8170e5e 407static uint64_t icp_control_read(void *opaque, hwaddr offset,
0c36493e 408 unsigned size)
b5ff1b31 409{
b5ff1b31
FB
410 switch (offset >> 2) {
411 case 0: /* CP_IDFIELD */
412 return 0x41034003;
413 case 1: /* CP_FLASHPROG */
414 return 0;
415 case 2: /* CP_INTREG */
416 return 0;
417 case 3: /* CP_DECODE */
418 return 0x11;
419 default:
2ac71179 420 hw_error("icp_control_read: Bad offset %x\n", (int)offset);
b5ff1b31
FB
421 return 0;
422 }
423}
424
a8170e5e 425static void icp_control_write(void *opaque, hwaddr offset,
0c36493e 426 uint64_t value, unsigned size)
b5ff1b31 427{
b5ff1b31
FB
428 switch (offset >> 2) {
429 case 1: /* CP_FLASHPROG */
430 case 2: /* CP_INTREG */
431 case 3: /* CP_DECODE */
432 /* Nothing interesting implemented yet. */
433 break;
434 default:
2ac71179 435 hw_error("icp_control_write: Bad offset %x\n", (int)offset);
b5ff1b31
FB
436 }
437}
b5ff1b31 438
0c36493e
BC
439static const MemoryRegionOps icp_control_ops = {
440 .read = icp_control_read,
441 .write = icp_control_write,
442 .endianness = DEVICE_NATIVE_ENDIAN,
b5ff1b31
FB
443};
444
a8170e5e 445static void icp_control_init(hwaddr base)
b5ff1b31 446{
0c36493e 447 MemoryRegion *io;
b5ff1b31 448
0c36493e 449 io = (MemoryRegion *)g_malloc0(sizeof(MemoryRegion));
2c9b15ca 450 memory_region_init_io(io, NULL, &icp_control_ops, NULL,
0c36493e
BC
451 "control", 0x00800000);
452 memory_region_add_subregion(get_system_memory(), base, io);
b5ff1b31
FB
453 /* ??? Save/restore. */
454}
455
456
b5ff1b31
FB
457/* Board init. */
458
f93eb9ff
AZ
459static struct arm_boot_info integrator_binfo = {
460 .loader_start = 0x0,
461 .board_id = 0x113,
462};
463
3ef96221 464static void integratorcp_init(MachineState *machine)
b5ff1b31 465{
3ef96221
MA
466 ram_addr_t ram_size = machine->ram_size;
467 const char *cpu_model = machine->cpu_model;
468 const char *kernel_filename = machine->kernel_filename;
469 const char *kernel_cmdline = machine->kernel_cmdline;
470 const char *initrd_filename = machine->initrd_filename;
393a9eab 471 ARMCPU *cpu;
211adf4d
AK
472 MemoryRegion *address_space_mem = get_system_memory();
473 MemoryRegion *ram = g_new(MemoryRegion, 1);
474 MemoryRegion *ram_alias = g_new(MemoryRegion, 1);
a7086888 475 qemu_irq pic[32];
a7086888
PB
476 DeviceState *dev;
477 int i;
b5ff1b31 478
393a9eab 479 if (!cpu_model) {
3371d272 480 cpu_model = "arm926";
393a9eab
AF
481 }
482 cpu = cpu_arm_init(cpu_model);
483 if (!cpu) {
aaed909a
FB
484 fprintf(stderr, "Unable to find CPU definition\n");
485 exit(1);
486 }
393a9eab 487
2c9b15ca 488 memory_region_init_ram(ram, NULL, "integrator.ram", ram_size);
c5705a77 489 vmstate_register_ram_global(ram);
b5ff1b31 490 /* ??? On a real system the first 1Mb is mapped as SSRAM or boot flash. */
1235fc06 491 /* ??? RAM should repeat to fill physical memory space. */
b5ff1b31 492 /* SDRAM at address zero*/
211adf4d 493 memory_region_add_subregion(address_space_mem, 0, ram);
b5ff1b31 494 /* And again at address 0x80000000 */
2c9b15ca 495 memory_region_init_alias(ram_alias, NULL, "ram.alias", ram, 0, ram_size);
211adf4d 496 memory_region_add_subregion(address_space_mem, 0x80000000, ram_alias);
b5ff1b31 497
257ec289 498 dev = qdev_create(NULL, TYPE_INTEGRATOR_CM);
ee6847d1 499 qdev_prop_set_uint32(dev, "memsz", ram_size >> 20);
e23a1b33 500 qdev_init_nofail(dev);
a7086888
PB
501 sysbus_mmio_map((SysBusDevice *)dev, 0, 0x10000000);
502
91b64626 503 dev = sysbus_create_varargs(TYPE_INTEGRATOR_PIC, 0x14000000,
99d228d6
PM
504 qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_IRQ),
505 qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_FIQ),
506 NULL);
a7086888 507 for (i = 0; i < 32; i++) {
067a3ddc 508 pic[i] = qdev_get_gpio_in(dev, i);
a7086888 509 }
91b64626 510 sysbus_create_simple(TYPE_INTEGRATOR_PIC, 0xca000000, pic[26]);
6a824ec3
PB
511 sysbus_create_varargs("integrator_pit", 0x13000000,
512 pic[5], pic[6], pic[7], NULL);
a63bdb31 513 sysbus_create_simple("pl031", 0x15000000, pic[8]);
a7d518a6
PB
514 sysbus_create_simple("pl011", 0x16000000, pic[1]);
515 sysbus_create_simple("pl011", 0x17000000, pic[2]);
b5ff1b31 516 icp_control_init(0xcb000000);
86394e96
PB
517 sysbus_create_simple("pl050_keyboard", 0x18000000, pic[3]);
518 sysbus_create_simple("pl050_mouse", 0x19000000, pic[4]);
b8616055 519 sysbus_create_simple(TYPE_INTEGRATOR_DEBUG, 0x1a000000, 0);
aa9311d8 520 sysbus_create_varargs("pl181", 0x1c000000, pic[23], pic[24], NULL);
a005d073 521 if (nd_table[0].used)
0ae18cee 522 smc91c111_init(&nd_table[0], 0xc8000000, pic[27]);
2e9bdce5
PB
523
524 sysbus_create_simple("pl110", 0xc0000000, pic[22]);
b5ff1b31 525
f93eb9ff
AZ
526 integrator_binfo.ram_size = ram_size;
527 integrator_binfo.kernel_filename = kernel_filename;
528 integrator_binfo.kernel_cmdline = kernel_cmdline;
529 integrator_binfo.initrd_filename = initrd_filename;
3aaa8dfa 530 arm_load_kernel(cpu, &integrator_binfo);
b5ff1b31
FB
531}
532
f80f9ec9 533static QEMUMachine integratorcp_machine = {
4b32e168
AL
534 .name = "integratorcp",
535 .desc = "ARM Integrator/CP (ARM926EJ-S)",
536 .init = integratorcp_init,
b5ff1b31 537};
a7086888 538
f80f9ec9
AL
539static void integratorcp_machine_init(void)
540{
541 qemu_register_machine(&integratorcp_machine);
542}
543
544machine_init(integratorcp_machine_init);
545
999e12bb 546static Property core_properties[] = {
257ec289 547 DEFINE_PROP_UINT32("memsz", IntegratorCMState, memsz, 0),
999e12bb
AL
548 DEFINE_PROP_END_OF_LIST(),
549};
550
551static void core_class_init(ObjectClass *klass, void *data)
552{
39bffca2 553 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb
AL
554 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
555
556 k->init = integratorcm_init;
39bffca2 557 dc->props = core_properties;
999e12bb
AL
558}
559
8c43a6f0 560static const TypeInfo core_info = {
257ec289 561 .name = TYPE_INTEGRATOR_CM,
39bffca2 562 .parent = TYPE_SYS_BUS_DEVICE,
257ec289 563 .instance_size = sizeof(IntegratorCMState),
39bffca2 564 .class_init = core_class_init,
999e12bb
AL
565};
566
567static void icp_pic_class_init(ObjectClass *klass, void *data)
568{
569 SysBusDeviceClass *sdc = SYS_BUS_DEVICE_CLASS(klass);
570
571 sdc->init = icp_pic_init;
572}
573
8c43a6f0 574static const TypeInfo icp_pic_info = {
91b64626 575 .name = TYPE_INTEGRATOR_PIC,
39bffca2
AL
576 .parent = TYPE_SYS_BUS_DEVICE,
577 .instance_size = sizeof(icp_pic_state),
578 .class_init = icp_pic_class_init,
ee6847d1
GH
579};
580
83f7d43a 581static void integratorcp_register_types(void)
a7086888 582{
39bffca2
AL
583 type_register_static(&icp_pic_info);
584 type_register_static(&core_info);
a7086888
PB
585}
586
83f7d43a 587type_init(integratorcp_register_types)
This page took 0.818664 seconds and 4 git commands to generate.