2 * ARM Versatile Platform/Application Baseboard System emulation.
4 * Copyright (c) 2005-2007 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licenced under the GPL.
12 #include "primecell.h"
19 /* Primary interrupt controller. */
21 typedef struct vpb_sic_state
31 static void vpb_sic_update(vpb_sic_state *s)
35 flags = s->level & s->mask;
36 qemu_set_irq(s->parent[s->irq], flags != 0);
39 static void vpb_sic_update_pic(vpb_sic_state *s)
44 for (i = 21; i <= 30; i++) {
46 if (!(s->pic_enable & mask))
48 qemu_set_irq(s->parent[i], (s->level & mask) != 0);
52 static void vpb_sic_set_irq(void *opaque, int irq, int level)
54 vpb_sic_state *s = (vpb_sic_state *)opaque;
56 s->level |= 1u << irq;
58 s->level &= ~(1u << irq);
59 if (s->pic_enable & (1u << irq))
60 qemu_set_irq(s->parent[irq], level);
64 static uint32_t vpb_sic_read(void *opaque, target_phys_addr_t offset)
66 vpb_sic_state *s = (vpb_sic_state *)opaque;
68 switch (offset >> 2) {
70 return s->level & s->mask;
77 case 8: /* PICENABLE */
80 printf ("vpb_sic_read: Bad register offset 0x%x\n", (int)offset);
85 static void vpb_sic_write(void *opaque, target_phys_addr_t offset,
88 vpb_sic_state *s = (vpb_sic_state *)opaque;
90 switch (offset >> 2) {
97 case 4: /* SOFTINTSET */
101 case 5: /* SOFTINTCLR */
105 case 8: /* PICENSET */
106 s->pic_enable |= (value & 0x7fe00000);
107 vpb_sic_update_pic(s);
109 case 9: /* PICENCLR */
110 s->pic_enable &= ~value;
111 vpb_sic_update_pic(s);
114 printf ("vpb_sic_write: Bad register offset 0x%x\n", (int)offset);
120 static CPUReadMemoryFunc * const vpb_sic_readfn[] = {
126 static CPUWriteMemoryFunc * const vpb_sic_writefn[] = {
132 static int vpb_sic_init(SysBusDevice *dev)
134 vpb_sic_state *s = FROM_SYSBUS(vpb_sic_state, dev);
138 qdev_init_gpio_in(&dev->qdev, vpb_sic_set_irq, 32);
139 for (i = 0; i < 32; i++) {
140 sysbus_init_irq(dev, &s->parent[i]);
143 iomemtype = cpu_register_io_memory(vpb_sic_readfn,
145 sysbus_init_mmio(dev, 0x1000, iomemtype);
146 /* ??? Save/restore. */
152 /* The AB and PB boards both use the same core, just with different
153 peripherans and expansion busses. For now we emulate a subset of the
154 PB peripherals and just change the board ID. */
156 static struct arm_boot_info versatile_binfo;
158 static void versatile_init(ram_addr_t ram_size,
159 const char *boot_device,
160 const char *kernel_filename, const char *kernel_cmdline,
161 const char *initrd_filename, const char *cpu_model,
165 ram_addr_t ram_offset;
176 cpu_model = "arm926";
177 env = cpu_init(cpu_model);
179 fprintf(stderr, "Unable to find CPU definition\n");
182 ram_offset = qemu_ram_alloc(ram_size);
183 /* ??? RAM should repeat to fill physical memory space. */
184 /* SDRAM at address zero. */
185 cpu_register_physical_memory(0, ram_size, ram_offset | IO_MEM_RAM);
187 arm_sysctl_init(0x10000000, 0x41007004);
188 cpu_pic = arm_pic_init_cpu(env);
189 dev = sysbus_create_varargs("pl190", 0x10140000,
190 cpu_pic[0], cpu_pic[1], NULL);
191 for (n = 0; n < 32; n++) {
192 pic[n] = qdev_get_gpio_in(dev, n);
194 dev = sysbus_create_simple("versatilepb_sic", 0x10003000, NULL);
195 for (n = 0; n < 32; n++) {
196 sysbus_connect_irq(sysbus_from_qdev(dev), n, pic[n]);
197 sic[n] = qdev_get_gpio_in(dev, n);
200 sysbus_create_simple("pl050_keyboard", 0x10006000, sic[3]);
201 sysbus_create_simple("pl050_mouse", 0x10007000, sic[4]);
203 dev = sysbus_create_varargs("versatile_pci", 0x40000000,
204 sic[27], sic[28], sic[29], sic[30], NULL);
205 pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci");
207 /* The Versatile PCI bridge does not provide access to PCI IO space,
208 so many of the qemu PCI devices are not useable. */
209 for(n = 0; n < nb_nics; n++) {
212 if ((!nd->model && !done_smc) || strcmp(nd->model, "smc91c111") == 0) {
213 smc91c111_init(nd, 0x10010000, sic[25]);
216 pci_nic_init_nofail(nd, "rtl8139", NULL);
220 usb_ohci_init_pci(pci_bus, -1);
222 n = drive_get_max_bus(IF_SCSI);
224 pci_create_simple(pci_bus, -1, "lsi53c895a");
228 sysbus_create_simple("pl011", 0x101f1000, pic[12]);
229 sysbus_create_simple("pl011", 0x101f2000, pic[13]);
230 sysbus_create_simple("pl011", 0x101f3000, pic[14]);
231 sysbus_create_simple("pl011", 0x10009000, sic[6]);
233 sysbus_create_simple("pl080", 0x10130000, pic[17]);
234 sysbus_create_simple("sp804", 0x101e2000, pic[4]);
235 sysbus_create_simple("sp804", 0x101e3000, pic[5]);
237 /* The versatile/PB actually has a modified Color LCD controller
238 that includes hardware cursor support from the PL111. */
239 sysbus_create_simple("pl110_versatile", 0x10120000, pic[16]);
241 sysbus_create_varargs("pl181", 0x10005000, sic[22], sic[1], NULL);
242 sysbus_create_varargs("pl181", 0x1000b000, sic[23], sic[2], NULL);
244 /* Add PL031 Real Time Clock. */
245 sysbus_create_simple("pl031", 0x101e8000, pic[10]);
247 /* Memory map for Versatile/PB: */
248 /* 0x10000000 System registers. */
249 /* 0x10001000 PCI controller config registers. */
250 /* 0x10002000 Serial bus interface. */
251 /* 0x10003000 Secondary interrupt controller. */
252 /* 0x10004000 AACI (audio). */
253 /* 0x10005000 MMCI0. */
254 /* 0x10006000 KMI0 (keyboard). */
255 /* 0x10007000 KMI1 (mouse). */
256 /* 0x10008000 Character LCD Interface. */
257 /* 0x10009000 UART3. */
258 /* 0x1000a000 Smart card 1. */
259 /* 0x1000b000 MMCI1. */
260 /* 0x10010000 Ethernet. */
261 /* 0x10020000 USB. */
262 /* 0x10100000 SSMC. */
263 /* 0x10110000 MPMC. */
264 /* 0x10120000 CLCD Controller. */
265 /* 0x10130000 DMA Controller. */
266 /* 0x10140000 Vectored interrupt controller. */
267 /* 0x101d0000 AHB Monitor Interface. */
268 /* 0x101e0000 System Controller. */
269 /* 0x101e1000 Watchdog Interface. */
270 /* 0x101e2000 Timer 0/1. */
271 /* 0x101e3000 Timer 2/3. */
272 /* 0x101e4000 GPIO port 0. */
273 /* 0x101e5000 GPIO port 1. */
274 /* 0x101e6000 GPIO port 2. */
275 /* 0x101e7000 GPIO port 3. */
276 /* 0x101e8000 RTC. */
277 /* 0x101f0000 Smart card 0. */
278 /* 0x101f1000 UART0. */
279 /* 0x101f2000 UART1. */
280 /* 0x101f3000 UART2. */
281 /* 0x101f4000 SSPI. */
283 versatile_binfo.ram_size = ram_size;
284 versatile_binfo.kernel_filename = kernel_filename;
285 versatile_binfo.kernel_cmdline = kernel_cmdline;
286 versatile_binfo.initrd_filename = initrd_filename;
287 versatile_binfo.board_id = board_id;
288 arm_load_kernel(env, &versatile_binfo);
291 static void vpb_init(ram_addr_t ram_size,
292 const char *boot_device,
293 const char *kernel_filename, const char *kernel_cmdline,
294 const char *initrd_filename, const char *cpu_model)
296 versatile_init(ram_size,
298 kernel_filename, kernel_cmdline,
299 initrd_filename, cpu_model, 0x183);
302 static void vab_init(ram_addr_t ram_size,
303 const char *boot_device,
304 const char *kernel_filename, const char *kernel_cmdline,
305 const char *initrd_filename, const char *cpu_model)
307 versatile_init(ram_size,
309 kernel_filename, kernel_cmdline,
310 initrd_filename, cpu_model, 0x25e);
313 static QEMUMachine versatilepb_machine = {
314 .name = "versatilepb",
315 .desc = "ARM Versatile/PB (ARM926EJ-S)",
320 static QEMUMachine versatileab_machine = {
321 .name = "versatileab",
322 .desc = "ARM Versatile/AB (ARM926EJ-S)",
327 static void versatile_machine_init(void)
329 qemu_register_machine(&versatilepb_machine);
330 qemu_register_machine(&versatileab_machine);
333 machine_init(versatile_machine_init);
335 static void versatilepb_register_devices(void)
337 sysbus_register_dev("versatilepb_sic", sizeof(vpb_sic_state),
341 device_init(versatilepb_register_devices)