blob: 7b1b0256aac43ae1b25e3ea1b1b4b3aa4b3e9cbc [file] [log] [blame]
ths5fafdf22007-09-16 21:08:06 +00001/*
pbrook16406952006-04-27 23:15:07 +00002 * ARM Versatile Platform/Application Baseboard System emulation.
pbrookcdbdb642006-04-09 01:32:52 +00003 *
pbrooka1bb27b2007-04-06 16:49:48 +00004 * Copyright (c) 2005-2007 CodeSourcery.
pbrookcdbdb642006-04-09 01:32:52 +00005 * Written by Paul Brook
6 *
Matthew Fernandez8e31bf32011-06-26 12:21:35 +10007 * This code is licensed under the GPL.
pbrookcdbdb642006-04-09 01:32:52 +00008 */
9
Paul Brook2e9bdce2009-05-14 22:35:07 +010010#include "sysbus.h"
pbrook87ecb682007-11-17 17:14:51 +000011#include "arm-misc.h"
pbrook87ecb682007-11-17 17:14:51 +000012#include "devices.h"
13#include "net.h"
14#include "sysemu.h"
15#include "pci.h"
Oskar Anderob1f05692012-04-20 15:38:52 +000016#include "i2c.h"
pbrook87ecb682007-11-17 17:14:51 +000017#include "boards.h"
Blue Swirl24463332010-08-24 15:22:24 +000018#include "blockdev.h"
Avi Kivity62ceeb22011-10-05 18:41:32 +020019#include "exec-memory.h"
Eric Benard964c6952012-04-16 05:02:47 +000020#include "flash.h"
21
22#define VERSATILE_FLASH_ADDR 0x34000000
23#define VERSATILE_FLASH_SIZE (64 * 1024 * 1024)
24#define VERSATILE_FLASH_SECT_SIZE (256 * 1024)
pbrookcdbdb642006-04-09 01:32:52 +000025
pbrookcdbdb642006-04-09 01:32:52 +000026/* Primary interrupt controller. */
27
28typedef struct vpb_sic_state
29{
Paul Brook3950f182009-05-14 22:35:07 +010030 SysBusDevice busdev;
Avi Kivity62ceeb22011-10-05 18:41:32 +020031 MemoryRegion iomem;
pbrookcdbdb642006-04-09 01:32:52 +000032 uint32_t level;
33 uint32_t mask;
34 uint32_t pic_enable;
Paul Brook97aff482009-05-14 22:35:07 +010035 qemu_irq parent[32];
pbrookcdbdb642006-04-09 01:32:52 +000036 int irq;
37} vpb_sic_state;
38
Peter Maydella796d0a2010-12-23 17:19:52 +000039static const VMStateDescription vmstate_vpb_sic = {
40 .name = "versatilepb_sic",
41 .version_id = 1,
42 .minimum_version_id = 1,
43 .fields = (VMStateField[]) {
44 VMSTATE_UINT32(level, vpb_sic_state),
45 VMSTATE_UINT32(mask, vpb_sic_state),
46 VMSTATE_UINT32(pic_enable, vpb_sic_state),
47 VMSTATE_END_OF_LIST()
48 }
49};
50
pbrookcdbdb642006-04-09 01:32:52 +000051static void vpb_sic_update(vpb_sic_state *s)
52{
53 uint32_t flags;
54
55 flags = s->level & s->mask;
pbrookd537cf62007-04-07 18:14:41 +000056 qemu_set_irq(s->parent[s->irq], flags != 0);
pbrookcdbdb642006-04-09 01:32:52 +000057}
58
59static void vpb_sic_update_pic(vpb_sic_state *s)
60{
61 int i;
62 uint32_t mask;
63
64 for (i = 21; i <= 30; i++) {
65 mask = 1u << i;
66 if (!(s->pic_enable & mask))
67 continue;
pbrookd537cf62007-04-07 18:14:41 +000068 qemu_set_irq(s->parent[i], (s->level & mask) != 0);
pbrookcdbdb642006-04-09 01:32:52 +000069 }
70}
71
72static void vpb_sic_set_irq(void *opaque, int irq, int level)
73{
74 vpb_sic_state *s = (vpb_sic_state *)opaque;
75 if (level)
76 s->level |= 1u << irq;
77 else
78 s->level &= ~(1u << irq);
79 if (s->pic_enable & (1u << irq))
pbrookd537cf62007-04-07 18:14:41 +000080 qemu_set_irq(s->parent[irq], level);
pbrookcdbdb642006-04-09 01:32:52 +000081 vpb_sic_update(s);
82}
83
Avi Kivity62ceeb22011-10-05 18:41:32 +020084static uint64_t vpb_sic_read(void *opaque, target_phys_addr_t offset,
85 unsigned size)
pbrookcdbdb642006-04-09 01:32:52 +000086{
87 vpb_sic_state *s = (vpb_sic_state *)opaque;
88
pbrookcdbdb642006-04-09 01:32:52 +000089 switch (offset >> 2) {
90 case 0: /* STATUS */
91 return s->level & s->mask;
92 case 1: /* RAWSTAT */
93 return s->level;
94 case 2: /* ENABLE */
95 return s->mask;
96 case 4: /* SOFTINT */
97 return s->level & 1;
98 case 8: /* PICENABLE */
99 return s->pic_enable;
100 default:
pbrooke69954b2006-09-23 17:40:58 +0000101 printf ("vpb_sic_read: Bad register offset 0x%x\n", (int)offset);
pbrookcdbdb642006-04-09 01:32:52 +0000102 return 0;
103 }
104}
105
Anthony Liguoric227f092009-10-01 16:12:16 -0500106static void vpb_sic_write(void *opaque, target_phys_addr_t offset,
Avi Kivity62ceeb22011-10-05 18:41:32 +0200107 uint64_t value, unsigned size)
pbrookcdbdb642006-04-09 01:32:52 +0000108{
109 vpb_sic_state *s = (vpb_sic_state *)opaque;
pbrookcdbdb642006-04-09 01:32:52 +0000110
111 switch (offset >> 2) {
112 case 2: /* ENSET */
113 s->mask |= value;
114 break;
115 case 3: /* ENCLR */
116 s->mask &= ~value;
117 break;
118 case 4: /* SOFTINTSET */
119 if (value)
120 s->mask |= 1;
121 break;
122 case 5: /* SOFTINTCLR */
123 if (value)
124 s->mask &= ~1u;
125 break;
126 case 8: /* PICENSET */
127 s->pic_enable |= (value & 0x7fe00000);
128 vpb_sic_update_pic(s);
129 break;
130 case 9: /* PICENCLR */
131 s->pic_enable &= ~value;
132 vpb_sic_update_pic(s);
133 break;
134 default:
pbrooke69954b2006-09-23 17:40:58 +0000135 printf ("vpb_sic_write: Bad register offset 0x%x\n", (int)offset);
pbrookcdbdb642006-04-09 01:32:52 +0000136 return;
137 }
138 vpb_sic_update(s);
139}
140
Avi Kivity62ceeb22011-10-05 18:41:32 +0200141static const MemoryRegionOps vpb_sic_ops = {
142 .read = vpb_sic_read,
143 .write = vpb_sic_write,
144 .endianness = DEVICE_NATIVE_ENDIAN,
pbrookcdbdb642006-04-09 01:32:52 +0000145};
146
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200147static int vpb_sic_init(SysBusDevice *dev)
pbrookcdbdb642006-04-09 01:32:52 +0000148{
Paul Brook3950f182009-05-14 22:35:07 +0100149 vpb_sic_state *s = FROM_SYSBUS(vpb_sic_state, dev);
Paul Brook97aff482009-05-14 22:35:07 +0100150 int i;
pbrookcdbdb642006-04-09 01:32:52 +0000151
Paul Brook067a3dd2009-05-26 14:56:11 +0100152 qdev_init_gpio_in(&dev->qdev, vpb_sic_set_irq, 32);
Paul Brook97aff482009-05-14 22:35:07 +0100153 for (i = 0; i < 32; i++) {
Paul Brook3950f182009-05-14 22:35:07 +0100154 sysbus_init_irq(dev, &s->parent[i]);
Paul Brook97aff482009-05-14 22:35:07 +0100155 }
Paul Brook3950f182009-05-14 22:35:07 +0100156 s->irq = 31;
Avi Kivity62ceeb22011-10-05 18:41:32 +0200157 memory_region_init_io(&s->iomem, &vpb_sic_ops, s, "vpb-sic", 0x1000);
Avi Kivity750ecd42011-11-27 11:38:10 +0200158 sysbus_init_mmio(dev, &s->iomem);
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200159 return 0;
pbrookcdbdb642006-04-09 01:32:52 +0000160}
161
162/* Board init. */
163
pbrook16406952006-04-27 23:15:07 +0000164/* The AB and PB boards both use the same core, just with different
Stefan Weil370de022012-08-10 21:56:46 +0200165 peripherals and expansion busses. For now we emulate a subset of the
pbrook16406952006-04-27 23:15:07 +0000166 PB peripherals and just change the board ID. */
pbrookcdbdb642006-04-09 01:32:52 +0000167
balrogf93eb9f2008-04-14 20:27:51 +0000168static struct arm_boot_info versatile_binfo;
169
Anthony Liguoric227f092009-10-01 16:12:16 -0500170static void versatile_init(ram_addr_t ram_size,
aliguori3023f332009-01-16 19:04:14 +0000171 const char *boot_device,
pbrookcdbdb642006-04-09 01:32:52 +0000172 const char *kernel_filename, const char *kernel_cmdline,
pbrook3371d272007-03-08 03:04:12 +0000173 const char *initrd_filename, const char *cpu_model,
174 int board_id)
pbrookcdbdb642006-04-09 01:32:52 +0000175{
Andreas Färber20e93372012-05-14 02:04:38 +0200176 ARMCPU *cpu;
Avi Kivity62ceeb22011-10-05 18:41:32 +0200177 MemoryRegion *sysmem = get_system_memory();
178 MemoryRegion *ram = g_new(MemoryRegion, 1);
Paul Brook97aff482009-05-14 22:35:07 +0100179 qemu_irq *cpu_pic;
180 qemu_irq pic[32];
Paul Brook3950f182009-05-14 22:35:07 +0100181 qemu_irq sic[32];
Peter Maydell242ea2c2011-07-22 13:42:39 +0000182 DeviceState *dev, *sysctl;
Peter Maydell7d6e7712011-09-01 18:36:53 +0100183 SysBusDevice *busdev;
Mathieu Sonetd028d022011-10-28 10:55:37 +0100184 DeviceState *pl041;
pbrook502a5392006-05-13 16:11:23 +0000185 PCIBus *pci_bus;
186 NICInfo *nd;
Oskar Anderob1f05692012-04-20 15:38:52 +0000187 i2c_bus *i2c;
pbrook502a5392006-05-13 16:11:23 +0000188 int n;
189 int done_smc = 0;
Eric Benard964c6952012-04-16 05:02:47 +0000190 DriveInfo *dinfo;
pbrookcdbdb642006-04-09 01:32:52 +0000191
Andreas Färber20e93372012-05-14 02:04:38 +0200192 if (!cpu_model) {
pbrook3371d272007-03-08 03:04:12 +0000193 cpu_model = "arm926";
Andreas Färber20e93372012-05-14 02:04:38 +0200194 }
195 cpu = cpu_arm_init(cpu_model);
196 if (!cpu) {
bellardaaed9092007-11-10 15:15:54 +0000197 fprintf(stderr, "Unable to find CPU definition\n");
198 exit(1);
199 }
Avi Kivityc5705a72011-12-20 15:59:12 +0200200 memory_region_init_ram(ram, "versatile.ram", ram_size);
201 vmstate_register_ram_global(ram);
ths1235fc02008-06-03 19:51:57 +0000202 /* ??? RAM should repeat to fill physical memory space. */
pbrookcdbdb642006-04-09 01:32:52 +0000203 /* SDRAM at address zero. */
Avi Kivity62ceeb22011-10-05 18:41:32 +0200204 memory_region_add_subregion(sysmem, 0, ram);
pbrookcdbdb642006-04-09 01:32:52 +0000205
Peter Maydell242ea2c2011-07-22 13:42:39 +0000206 sysctl = qdev_create(NULL, "realview_sysctl");
207 qdev_prop_set_uint32(sysctl, "sys_id", 0x41007004);
Peter Maydell242ea2c2011-07-22 13:42:39 +0000208 qdev_prop_set_uint32(sysctl, "proc_id", 0x02000000);
Peter Maydell7a65c8c2012-02-09 06:11:16 +0000209 qdev_init_nofail(sysctl);
Peter Maydell242ea2c2011-07-22 13:42:39 +0000210 sysbus_mmio_map(sysbus_from_qdev(sysctl), 0, 0x10000000);
211
Andreas Färber4bd74662012-05-14 04:21:52 +0200212 cpu_pic = arm_pic_init_cpu(cpu);
Paul Brook97aff482009-05-14 22:35:07 +0100213 dev = sysbus_create_varargs("pl190", 0x10140000,
Stefan Weil02cd5212012-10-04 22:49:43 +0200214 cpu_pic[ARM_PIC_CPU_IRQ],
215 cpu_pic[ARM_PIC_CPU_FIQ], NULL);
Paul Brook97aff482009-05-14 22:35:07 +0100216 for (n = 0; n < 32; n++) {
Paul Brook067a3dd2009-05-26 14:56:11 +0100217 pic[n] = qdev_get_gpio_in(dev, n);
Paul Brook97aff482009-05-14 22:35:07 +0100218 }
Paul Brook3950f182009-05-14 22:35:07 +0100219 dev = sysbus_create_simple("versatilepb_sic", 0x10003000, NULL);
220 for (n = 0; n < 32; n++) {
221 sysbus_connect_irq(sysbus_from_qdev(dev), n, pic[n]);
Paul Brook067a3dd2009-05-26 14:56:11 +0100222 sic[n] = qdev_get_gpio_in(dev, n);
Paul Brook3950f182009-05-14 22:35:07 +0100223 }
Paul Brook86394e92009-05-14 22:35:07 +0100224
225 sysbus_create_simple("pl050_keyboard", 0x10006000, sic[3]);
226 sysbus_create_simple("pl050_mouse", 0x10007000, sic[4]);
pbrookcdbdb642006-04-09 01:32:52 +0000227
Peter Maydell7d6e7712011-09-01 18:36:53 +0100228 dev = qdev_create(NULL, "versatile_pci");
229 busdev = sysbus_from_qdev(dev);
230 qdev_init_nofail(dev);
231 sysbus_mmio_map(busdev, 0, 0x41000000); /* PCI self-config */
232 sysbus_mmio_map(busdev, 1, 0x42000000); /* PCI config */
233 sysbus_connect_irq(busdev, 0, sic[27]);
234 sysbus_connect_irq(busdev, 1, sic[28]);
235 sysbus_connect_irq(busdev, 2, sic[29]);
236 sysbus_connect_irq(busdev, 3, sic[30]);
Paul Brook02e2da42009-05-23 00:05:19 +0100237 pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci");
Paul Brook0027b062009-05-14 22:35:08 +0100238
pbrook502a5392006-05-13 16:11:23 +0000239 /* The Versatile PCI bridge does not provide access to PCI IO space,
240 so many of the qemu PCI devices are not useable. */
241 for(n = 0; n < nb_nics; n++) {
242 nd = &nd_table[n];
aliguori0ae18ce2009-01-13 19:39:36 +0000243
Peter Maydelle6b3c8c2011-03-22 18:21:58 +0000244 if (!done_smc && (!nd->model || strcmp(nd->model, "smc91c111") == 0)) {
pbrookd537cf62007-04-07 18:14:41 +0000245 smc91c111_init(nd, 0x10010000, sic[25]);
aliguori0ae18ce2009-01-13 19:39:36 +0000246 done_smc = 1;
pbrookcdbdb642006-04-09 01:32:52 +0000247 } else {
Markus Armbruster07caea32009-09-25 03:53:51 +0200248 pci_nic_init_nofail(nd, "rtl8139", NULL);
pbrookcdbdb642006-04-09 01:32:52 +0000249 }
250 }
pbrook0d92ed32006-05-21 16:30:15 +0000251 if (usb_enabled) {
Gerd Hoffmannafb9a602012-03-07 15:06:32 +0100252 pci_create_simple(pci_bus, -1, "pci-ohci");
pbrook0d92ed32006-05-21 16:30:15 +0000253 }
Paul Brook9be5daf2009-05-14 22:35:07 +0100254 n = drive_get_max_bus(IF_SCSI);
255 while (n >= 0) {
256 pci_create_simple(pci_bus, -1, "lsi53c895a");
257 n--;
pbrook7d8406b2006-05-30 01:48:12 +0000258 }
pbrookcdbdb642006-04-09 01:32:52 +0000259
Paul Brooka7d518a2009-05-14 22:35:07 +0100260 sysbus_create_simple("pl011", 0x101f1000, pic[12]);
261 sysbus_create_simple("pl011", 0x101f2000, pic[13]);
262 sysbus_create_simple("pl011", 0x101f3000, pic[14]);
263 sysbus_create_simple("pl011", 0x10009000, sic[6]);
pbrookcdbdb642006-04-09 01:32:52 +0000264
Paul Brookb4496b12009-05-14 22:35:08 +0100265 sysbus_create_simple("pl080", 0x10130000, pic[17]);
Paul Brook6a824ec2009-05-14 22:35:07 +0100266 sysbus_create_simple("sp804", 0x101e2000, pic[4]);
267 sysbus_create_simple("sp804", 0x101e3000, pic[5]);
pbrookcdbdb642006-04-09 01:32:52 +0000268
Jean-Christophe PLAGNIOL-VILLARD853e65e2012-10-12 11:54:39 +0100269 sysbus_create_simple("pl061", 0x101e4000, pic[6]);
270 sysbus_create_simple("pl061", 0x101e5000, pic[7]);
271 sysbus_create_simple("pl061", 0x101e6000, pic[8]);
272 sysbus_create_simple("pl061", 0x101e7000, pic[9]);
273
pbrookcdbdb642006-04-09 01:32:52 +0000274 /* The versatile/PB actually has a modified Color LCD controller
275 that includes hardware cursor support from the PL111. */
Peter Maydell242ea2c2011-07-22 13:42:39 +0000276 dev = sysbus_create_simple("pl110_versatile", 0x10120000, pic[16]);
277 /* Wire up the mux control signals from the SYS_CLCD register */
278 qdev_connect_gpio_out(sysctl, 0, qdev_get_gpio_in(dev, 0));
pbrookcdbdb642006-04-09 01:32:52 +0000279
Paul Brookaa9311d2009-05-14 22:35:07 +0100280 sysbus_create_varargs("pl181", 0x10005000, sic[22], sic[1], NULL);
281 sysbus_create_varargs("pl181", 0x1000b000, sic[23], sic[2], NULL);
pbrooka1bb27b2007-04-06 16:49:48 +0000282
pbrook7e1543c2007-06-30 17:32:17 +0000283 /* Add PL031 Real Time Clock. */
Paul Brooka63bdb32009-05-14 22:35:07 +0100284 sysbus_create_simple("pl031", 0x101e8000, pic[10]);
pbrook7e1543c2007-06-30 17:32:17 +0000285
Oskar Anderob1f05692012-04-20 15:38:52 +0000286 dev = sysbus_create_simple("versatile_i2c", 0x10002000, NULL);
287 i2c = (i2c_bus *)qdev_get_child_bus(dev, "i2c");
288 i2c_create_slave(i2c, "ds1338", 0x68);
289
Mathieu Sonetd028d022011-10-28 10:55:37 +0100290 /* Add PL041 AACI Interface to the LM4549 codec */
291 pl041 = qdev_create(NULL, "pl041");
292 qdev_prop_set_uint32(pl041, "nc_fifo_depth", 512);
293 qdev_init_nofail(pl041);
294 sysbus_mmio_map(sysbus_from_qdev(pl041), 0, 0x10004000);
295 sysbus_connect_irq(sysbus_from_qdev(pl041), 0, sic[24]);
296
pbrook16406952006-04-27 23:15:07 +0000297 /* Memory map for Versatile/PB: */
pbrookcdbdb642006-04-09 01:32:52 +0000298 /* 0x10000000 System registers. */
299 /* 0x10001000 PCI controller config registers. */
300 /* 0x10002000 Serial bus interface. */
301 /* 0x10003000 Secondary interrupt controller. */
302 /* 0x10004000 AACI (audio). */
pbrooka1bb27b2007-04-06 16:49:48 +0000303 /* 0x10005000 MMCI0. */
pbrookcdbdb642006-04-09 01:32:52 +0000304 /* 0x10006000 KMI0 (keyboard). */
305 /* 0x10007000 KMI1 (mouse). */
306 /* 0x10008000 Character LCD Interface. */
307 /* 0x10009000 UART3. */
308 /* 0x1000a000 Smart card 1. */
pbrooka1bb27b2007-04-06 16:49:48 +0000309 /* 0x1000b000 MMCI1. */
pbrookcdbdb642006-04-09 01:32:52 +0000310 /* 0x10010000 Ethernet. */
311 /* 0x10020000 USB. */
312 /* 0x10100000 SSMC. */
313 /* 0x10110000 MPMC. */
314 /* 0x10120000 CLCD Controller. */
315 /* 0x10130000 DMA Controller. */
316 /* 0x10140000 Vectored interrupt controller. */
317 /* 0x101d0000 AHB Monitor Interface. */
318 /* 0x101e0000 System Controller. */
319 /* 0x101e1000 Watchdog Interface. */
320 /* 0x101e2000 Timer 0/1. */
321 /* 0x101e3000 Timer 2/3. */
322 /* 0x101e4000 GPIO port 0. */
323 /* 0x101e5000 GPIO port 1. */
324 /* 0x101e6000 GPIO port 2. */
325 /* 0x101e7000 GPIO port 3. */
326 /* 0x101e8000 RTC. */
327 /* 0x101f0000 Smart card 0. */
328 /* 0x101f1000 UART0. */
329 /* 0x101f2000 UART1. */
330 /* 0x101f3000 UART2. */
331 /* 0x101f4000 SSPI. */
Eric Benard964c6952012-04-16 05:02:47 +0000332 /* 0x34000000 NOR Flash */
333
334 dinfo = drive_get(IF_PFLASH, 0, 0);
335 if (!pflash_cfi01_register(VERSATILE_FLASH_ADDR, NULL, "versatile.flash",
336 VERSATILE_FLASH_SIZE, dinfo ? dinfo->bdrv : NULL,
337 VERSATILE_FLASH_SECT_SIZE,
338 VERSATILE_FLASH_SIZE / VERSATILE_FLASH_SECT_SIZE,
339 4, 0x0089, 0x0018, 0x0000, 0x0, 0)) {
340 fprintf(stderr, "qemu: Error registering flash memory.\n");
341 }
pbrookcdbdb642006-04-09 01:32:52 +0000342
balrogf93eb9f2008-04-14 20:27:51 +0000343 versatile_binfo.ram_size = ram_size;
344 versatile_binfo.kernel_filename = kernel_filename;
345 versatile_binfo.kernel_cmdline = kernel_cmdline;
346 versatile_binfo.initrd_filename = initrd_filename;
347 versatile_binfo.board_id = board_id;
Andreas Färber3aaa8df2012-05-14 02:39:57 +0200348 arm_load_kernel(cpu, &versatile_binfo);
pbrook16406952006-04-27 23:15:07 +0000349}
350
Anthony Liguoric227f092009-10-01 16:12:16 -0500351static void vpb_init(ram_addr_t ram_size,
aliguori3023f332009-01-16 19:04:14 +0000352 const char *boot_device,
pbrook16406952006-04-27 23:15:07 +0000353 const char *kernel_filename, const char *kernel_cmdline,
j_mayer94fc95c2007-03-05 19:44:02 +0000354 const char *initrd_filename, const char *cpu_model)
pbrook16406952006-04-27 23:15:07 +0000355{
Paul Brookfbe1b592009-05-13 17:56:25 +0100356 versatile_init(ram_size,
aliguori3023f332009-01-16 19:04:14 +0000357 boot_device,
pbrook16406952006-04-27 23:15:07 +0000358 kernel_filename, kernel_cmdline,
pbrook3371d272007-03-08 03:04:12 +0000359 initrd_filename, cpu_model, 0x183);
pbrook16406952006-04-27 23:15:07 +0000360}
361
Anthony Liguoric227f092009-10-01 16:12:16 -0500362static void vab_init(ram_addr_t ram_size,
aliguori3023f332009-01-16 19:04:14 +0000363 const char *boot_device,
pbrook16406952006-04-27 23:15:07 +0000364 const char *kernel_filename, const char *kernel_cmdline,
j_mayer94fc95c2007-03-05 19:44:02 +0000365 const char *initrd_filename, const char *cpu_model)
pbrook16406952006-04-27 23:15:07 +0000366{
Paul Brookfbe1b592009-05-13 17:56:25 +0100367 versatile_init(ram_size,
aliguori3023f332009-01-16 19:04:14 +0000368 boot_device,
pbrook16406952006-04-27 23:15:07 +0000369 kernel_filename, kernel_cmdline,
pbrook3371d272007-03-08 03:04:12 +0000370 initrd_filename, cpu_model, 0x25e);
pbrookcdbdb642006-04-09 01:32:52 +0000371}
372
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500373static QEMUMachine versatilepb_machine = {
blueswir1c9b1ae22008-09-28 18:55:17 +0000374 .name = "versatilepb",
375 .desc = "ARM Versatile/PB (ARM926EJ-S)",
376 .init = vpb_init,
377 .use_scsi = 1,
pbrookcdbdb642006-04-09 01:32:52 +0000378};
pbrook16406952006-04-27 23:15:07 +0000379
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500380static QEMUMachine versatileab_machine = {
blueswir1c9b1ae22008-09-28 18:55:17 +0000381 .name = "versatileab",
382 .desc = "ARM Versatile/AB (ARM926EJ-S)",
383 .init = vab_init,
384 .use_scsi = 1,
pbrook16406952006-04-27 23:15:07 +0000385};
Paul Brook3950f182009-05-14 22:35:07 +0100386
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500387static void versatile_machine_init(void)
388{
389 qemu_register_machine(&versatilepb_machine);
390 qemu_register_machine(&versatileab_machine);
391}
392
393machine_init(versatile_machine_init);
394
Anthony Liguori999e12b2012-01-24 13:12:29 -0600395static void vpb_sic_class_init(ObjectClass *klass, void *data)
396{
Anthony Liguori39bffca2011-12-07 21:34:16 -0600397 DeviceClass *dc = DEVICE_CLASS(klass);
Anthony Liguori999e12b2012-01-24 13:12:29 -0600398 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
399
400 k->init = vpb_sic_init;
Anthony Liguori39bffca2011-12-07 21:34:16 -0600401 dc->no_user = 1;
402 dc->vmsd = &vmstate_vpb_sic;
Anthony Liguori999e12b2012-01-24 13:12:29 -0600403}
404
Anthony Liguori39bffca2011-12-07 21:34:16 -0600405static TypeInfo vpb_sic_info = {
406 .name = "versatilepb_sic",
407 .parent = TYPE_SYS_BUS_DEVICE,
408 .instance_size = sizeof(vpb_sic_state),
409 .class_init = vpb_sic_class_init,
Peter Maydella796d0a2010-12-23 17:19:52 +0000410};
411
Andreas Färber83f7d432012-02-09 15:20:55 +0100412static void versatilepb_register_types(void)
Paul Brook3950f182009-05-14 22:35:07 +0100413{
Anthony Liguori39bffca2011-12-07 21:34:16 -0600414 type_register_static(&vpb_sic_info);
Paul Brook3950f182009-05-14 22:35:07 +0100415}
416
Andreas Färber83f7d432012-02-09 15:20:55 +0100417type_init(versatilepb_register_types)