|
|
1.1.1.4 root 1: /*
1.1 root 2: * ARM Versatile Platform/Application Baseboard System emulation.
3: *
1.1.1.4 root 4: * Copyright (c) 2005-2007 CodeSourcery.
1.1 root 5: * Written by Paul Brook
6: *
7: * This code is licenced under the GPL.
8: */
9:
1.1.1.6 root 10: #include "sysbus.h"
1.1.1.4 root 11: #include "arm-misc.h"
12: #include "primecell.h"
13: #include "devices.h"
14: #include "net.h"
15: #include "sysemu.h"
16: #include "pci.h"
1.1.1.7 root 17: #include "usb-ohci.h"
1.1.1.4 root 18: #include "boards.h"
1.1.1.9 ! root 19: #include "blockdev.h"
1.1 root 20:
21: /* Primary interrupt controller. */
22:
23: typedef struct vpb_sic_state
24: {
1.1.1.6 root 25: SysBusDevice busdev;
1.1 root 26: uint32_t level;
27: uint32_t mask;
28: uint32_t pic_enable;
1.1.1.6 root 29: qemu_irq parent[32];
1.1 root 30: int irq;
31: } vpb_sic_state;
32:
1.1.1.9 ! root 33: static const VMStateDescription vmstate_vpb_sic = {
! 34: .name = "versatilepb_sic",
! 35: .version_id = 1,
! 36: .minimum_version_id = 1,
! 37: .fields = (VMStateField[]) {
! 38: VMSTATE_UINT32(level, vpb_sic_state),
! 39: VMSTATE_UINT32(mask, vpb_sic_state),
! 40: VMSTATE_UINT32(pic_enable, vpb_sic_state),
! 41: VMSTATE_END_OF_LIST()
! 42: }
! 43: };
! 44:
1.1 root 45: static void vpb_sic_update(vpb_sic_state *s)
46: {
47: uint32_t flags;
48:
49: flags = s->level & s->mask;
1.1.1.4 root 50: qemu_set_irq(s->parent[s->irq], flags != 0);
1.1 root 51: }
52:
53: static void vpb_sic_update_pic(vpb_sic_state *s)
54: {
55: int i;
56: uint32_t mask;
57:
58: for (i = 21; i <= 30; i++) {
59: mask = 1u << i;
60: if (!(s->pic_enable & mask))
61: continue;
1.1.1.4 root 62: qemu_set_irq(s->parent[i], (s->level & mask) != 0);
1.1 root 63: }
64: }
65:
66: static void vpb_sic_set_irq(void *opaque, int irq, int level)
67: {
68: vpb_sic_state *s = (vpb_sic_state *)opaque;
69: if (level)
70: s->level |= 1u << irq;
71: else
72: s->level &= ~(1u << irq);
73: if (s->pic_enable & (1u << irq))
1.1.1.4 root 74: qemu_set_irq(s->parent[irq], level);
1.1 root 75: vpb_sic_update(s);
76: }
77:
78: static uint32_t vpb_sic_read(void *opaque, target_phys_addr_t offset)
79: {
80: vpb_sic_state *s = (vpb_sic_state *)opaque;
81:
82: switch (offset >> 2) {
83: case 0: /* STATUS */
84: return s->level & s->mask;
85: case 1: /* RAWSTAT */
86: return s->level;
87: case 2: /* ENABLE */
88: return s->mask;
89: case 4: /* SOFTINT */
90: return s->level & 1;
91: case 8: /* PICENABLE */
92: return s->pic_enable;
93: default:
1.1.1.3 root 94: printf ("vpb_sic_read: Bad register offset 0x%x\n", (int)offset);
1.1 root 95: return 0;
96: }
97: }
98:
99: static void vpb_sic_write(void *opaque, target_phys_addr_t offset,
100: uint32_t value)
101: {
102: vpb_sic_state *s = (vpb_sic_state *)opaque;
103:
104: switch (offset >> 2) {
105: case 2: /* ENSET */
106: s->mask |= value;
107: break;
108: case 3: /* ENCLR */
109: s->mask &= ~value;
110: break;
111: case 4: /* SOFTINTSET */
112: if (value)
113: s->mask |= 1;
114: break;
115: case 5: /* SOFTINTCLR */
116: if (value)
117: s->mask &= ~1u;
118: break;
119: case 8: /* PICENSET */
120: s->pic_enable |= (value & 0x7fe00000);
121: vpb_sic_update_pic(s);
122: break;
123: case 9: /* PICENCLR */
124: s->pic_enable &= ~value;
125: vpb_sic_update_pic(s);
126: break;
127: default:
1.1.1.3 root 128: printf ("vpb_sic_write: Bad register offset 0x%x\n", (int)offset);
1.1 root 129: return;
130: }
131: vpb_sic_update(s);
132: }
133:
1.1.1.7 root 134: static CPUReadMemoryFunc * const vpb_sic_readfn[] = {
1.1 root 135: vpb_sic_read,
136: vpb_sic_read,
137: vpb_sic_read
138: };
139:
1.1.1.7 root 140: static CPUWriteMemoryFunc * const vpb_sic_writefn[] = {
1.1 root 141: vpb_sic_write,
142: vpb_sic_write,
143: vpb_sic_write
144: };
145:
1.1.1.7 root 146: static int vpb_sic_init(SysBusDevice *dev)
1.1 root 147: {
1.1.1.6 root 148: vpb_sic_state *s = FROM_SYSBUS(vpb_sic_state, dev);
1.1 root 149: int iomemtype;
1.1.1.6 root 150: int i;
1.1 root 151:
1.1.1.6 root 152: qdev_init_gpio_in(&dev->qdev, vpb_sic_set_irq, 32);
153: for (i = 0; i < 32; i++) {
154: sysbus_init_irq(dev, &s->parent[i]);
155: }
156: s->irq = 31;
157: iomemtype = cpu_register_io_memory(vpb_sic_readfn,
1.1.1.9 ! root 158: vpb_sic_writefn, s,
! 159: DEVICE_NATIVE_ENDIAN);
1.1.1.6 root 160: sysbus_init_mmio(dev, 0x1000, iomemtype);
1.1.1.7 root 161: return 0;
1.1 root 162: }
163:
164: /* Board init. */
165:
166: /* The AB and PB boards both use the same core, just with different
167: peripherans and expansion busses. For now we emulate a subset of the
168: PB peripherals and just change the board ID. */
169:
1.1.1.5 root 170: static struct arm_boot_info versatile_binfo;
171:
1.1.1.6 root 172: static void versatile_init(ram_addr_t ram_size,
1.1.1.5 root 173: const char *boot_device,
1.1 root 174: const char *kernel_filename, const char *kernel_cmdline,
1.1.1.4 root 175: const char *initrd_filename, const char *cpu_model,
176: int board_id)
1.1 root 177: {
178: CPUState *env;
1.1.1.6 root 179: ram_addr_t ram_offset;
180: qemu_irq *cpu_pic;
181: qemu_irq pic[32];
182: qemu_irq sic[32];
183: DeviceState *dev;
1.1.1.2 root 184: PCIBus *pci_bus;
185: NICInfo *nd;
186: int n;
187: int done_smc = 0;
1.1 root 188:
1.1.1.4 root 189: if (!cpu_model)
190: cpu_model = "arm926";
191: env = cpu_init(cpu_model);
192: if (!env) {
193: fprintf(stderr, "Unable to find CPU definition\n");
194: exit(1);
195: }
1.1.1.8 root 196: ram_offset = qemu_ram_alloc(NULL, "versatile.ram", ram_size);
1.1.1.5 root 197: /* ??? RAM should repeat to fill physical memory space. */
1.1 root 198: /* SDRAM at address zero. */
1.1.1.6 root 199: cpu_register_physical_memory(0, ram_size, ram_offset | IO_MEM_RAM);
1.1 root 200:
1.1.1.7 root 201: arm_sysctl_init(0x10000000, 0x41007004, 0x02000000);
1.1.1.6 root 202: cpu_pic = arm_pic_init_cpu(env);
203: dev = sysbus_create_varargs("pl190", 0x10140000,
204: cpu_pic[0], cpu_pic[1], NULL);
205: for (n = 0; n < 32; n++) {
206: pic[n] = qdev_get_gpio_in(dev, n);
207: }
208: dev = sysbus_create_simple("versatilepb_sic", 0x10003000, NULL);
209: for (n = 0; n < 32; n++) {
210: sysbus_connect_irq(sysbus_from_qdev(dev), n, pic[n]);
211: sic[n] = qdev_get_gpio_in(dev, n);
212: }
213:
214: sysbus_create_simple("pl050_keyboard", 0x10006000, sic[3]);
215: sysbus_create_simple("pl050_mouse", 0x10007000, sic[4]);
216:
217: dev = sysbus_create_varargs("versatile_pci", 0x40000000,
218: sic[27], sic[28], sic[29], sic[30], NULL);
219: pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci");
1.1 root 220:
1.1.1.2 root 221: /* The Versatile PCI bridge does not provide access to PCI IO space,
222: so many of the qemu PCI devices are not useable. */
223: for(n = 0; n < nb_nics; n++) {
224: nd = &nd_table[n];
1.1.1.5 root 225:
226: if ((!nd->model && !done_smc) || strcmp(nd->model, "smc91c111") == 0) {
1.1.1.4 root 227: smc91c111_init(nd, 0x10010000, sic[25]);
1.1.1.5 root 228: done_smc = 1;
1.1 root 229: } else {
1.1.1.7 root 230: pci_nic_init_nofail(nd, "rtl8139", NULL);
1.1.1.2 root 231: }
232: }
233: if (usb_enabled) {
1.1.1.7 root 234: usb_ohci_init_pci(pci_bus, -1);
1.1.1.4 root 235: }
1.1.1.6 root 236: n = drive_get_max_bus(IF_SCSI);
237: while (n >= 0) {
238: pci_create_simple(pci_bus, -1, "lsi53c895a");
239: n--;
1.1 root 240: }
241:
1.1.1.6 root 242: sysbus_create_simple("pl011", 0x101f1000, pic[12]);
243: sysbus_create_simple("pl011", 0x101f2000, pic[13]);
244: sysbus_create_simple("pl011", 0x101f3000, pic[14]);
245: sysbus_create_simple("pl011", 0x10009000, sic[6]);
246:
247: sysbus_create_simple("pl080", 0x10130000, pic[17]);
248: sysbus_create_simple("sp804", 0x101e2000, pic[4]);
249: sysbus_create_simple("sp804", 0x101e3000, pic[5]);
1.1 root 250:
251: /* The versatile/PB actually has a modified Color LCD controller
252: that includes hardware cursor support from the PL111. */
1.1.1.6 root 253: sysbus_create_simple("pl110_versatile", 0x10120000, pic[16]);
1.1.1.4 root 254:
1.1.1.6 root 255: sysbus_create_varargs("pl181", 0x10005000, sic[22], sic[1], NULL);
256: sysbus_create_varargs("pl181", 0x1000b000, sic[23], sic[2], NULL);
1.1.1.4 root 257:
258: /* Add PL031 Real Time Clock. */
1.1.1.6 root 259: sysbus_create_simple("pl031", 0x101e8000, pic[10]);
1.1 root 260:
261: /* Memory map for Versatile/PB: */
262: /* 0x10000000 System registers. */
263: /* 0x10001000 PCI controller config registers. */
264: /* 0x10002000 Serial bus interface. */
265: /* 0x10003000 Secondary interrupt controller. */
266: /* 0x10004000 AACI (audio). */
1.1.1.4 root 267: /* 0x10005000 MMCI0. */
1.1 root 268: /* 0x10006000 KMI0 (keyboard). */
269: /* 0x10007000 KMI1 (mouse). */
270: /* 0x10008000 Character LCD Interface. */
271: /* 0x10009000 UART3. */
272: /* 0x1000a000 Smart card 1. */
1.1.1.4 root 273: /* 0x1000b000 MMCI1. */
1.1 root 274: /* 0x10010000 Ethernet. */
275: /* 0x10020000 USB. */
276: /* 0x10100000 SSMC. */
277: /* 0x10110000 MPMC. */
278: /* 0x10120000 CLCD Controller. */
279: /* 0x10130000 DMA Controller. */
280: /* 0x10140000 Vectored interrupt controller. */
281: /* 0x101d0000 AHB Monitor Interface. */
282: /* 0x101e0000 System Controller. */
283: /* 0x101e1000 Watchdog Interface. */
284: /* 0x101e2000 Timer 0/1. */
285: /* 0x101e3000 Timer 2/3. */
286: /* 0x101e4000 GPIO port 0. */
287: /* 0x101e5000 GPIO port 1. */
288: /* 0x101e6000 GPIO port 2. */
289: /* 0x101e7000 GPIO port 3. */
290: /* 0x101e8000 RTC. */
291: /* 0x101f0000 Smart card 0. */
292: /* 0x101f1000 UART0. */
293: /* 0x101f2000 UART1. */
294: /* 0x101f3000 UART2. */
295: /* 0x101f4000 SSPI. */
296:
1.1.1.5 root 297: versatile_binfo.ram_size = ram_size;
298: versatile_binfo.kernel_filename = kernel_filename;
299: versatile_binfo.kernel_cmdline = kernel_cmdline;
300: versatile_binfo.initrd_filename = initrd_filename;
301: versatile_binfo.board_id = board_id;
302: arm_load_kernel(env, &versatile_binfo);
1.1 root 303: }
304:
1.1.1.6 root 305: static void vpb_init(ram_addr_t ram_size,
1.1.1.5 root 306: const char *boot_device,
1.1 root 307: const char *kernel_filename, const char *kernel_cmdline,
1.1.1.4 root 308: const char *initrd_filename, const char *cpu_model)
1.1 root 309: {
1.1.1.6 root 310: versatile_init(ram_size,
1.1.1.5 root 311: boot_device,
1.1 root 312: kernel_filename, kernel_cmdline,
1.1.1.4 root 313: initrd_filename, cpu_model, 0x183);
1.1 root 314: }
315:
1.1.1.6 root 316: static void vab_init(ram_addr_t ram_size,
1.1.1.5 root 317: const char *boot_device,
1.1 root 318: const char *kernel_filename, const char *kernel_cmdline,
1.1.1.4 root 319: const char *initrd_filename, const char *cpu_model)
1.1 root 320: {
1.1.1.6 root 321: versatile_init(ram_size,
1.1.1.5 root 322: boot_device,
1.1 root 323: kernel_filename, kernel_cmdline,
1.1.1.4 root 324: initrd_filename, cpu_model, 0x25e);
1.1 root 325: }
326:
1.1.1.6 root 327: static QEMUMachine versatilepb_machine = {
1.1.1.5 root 328: .name = "versatilepb",
329: .desc = "ARM Versatile/PB (ARM926EJ-S)",
330: .init = vpb_init,
331: .use_scsi = 1,
1.1 root 332: };
333:
1.1.1.6 root 334: static QEMUMachine versatileab_machine = {
1.1.1.5 root 335: .name = "versatileab",
336: .desc = "ARM Versatile/AB (ARM926EJ-S)",
337: .init = vab_init,
338: .use_scsi = 1,
1.1 root 339: };
1.1.1.6 root 340:
341: static void versatile_machine_init(void)
342: {
343: qemu_register_machine(&versatilepb_machine);
344: qemu_register_machine(&versatileab_machine);
345: }
346:
347: machine_init(versatile_machine_init);
348:
1.1.1.9 ! root 349: static SysBusDeviceInfo vpb_sic_info = {
! 350: .init = vpb_sic_init,
! 351: .qdev.name = "versatilepb_sic",
! 352: .qdev.size = sizeof(vpb_sic_state),
! 353: .qdev.vmsd = &vmstate_vpb_sic,
! 354: .qdev.no_user = 1,
! 355: };
! 356:
1.1.1.6 root 357: static void versatilepb_register_devices(void)
358: {
1.1.1.9 ! root 359: sysbus_register_withprop(&vpb_sic_info);
1.1.1.6 root 360: }
361:
362: device_init(versatilepb_register_devices)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.