]> git.proxmox.com Git - qemu.git/blame - hw/versatilepb.c
create struct for machine initialization arguments
[qemu.git] / hw / versatilepb.c
CommitLineData
5fafdf24 1/*
16406950 2 * ARM Versatile Platform/Application Baseboard System emulation.
cdbdb648 3 *
a1bb27b1 4 * Copyright (c) 2005-2007 CodeSourcery.
cdbdb648
PB
5 * Written by Paul Brook
6 *
8e31bf38 7 * This code is licensed under the GPL.
cdbdb648
PB
8 */
9
2e9bdce5 10#include "sysbus.h"
87ecb68b 11#include "arm-misc.h"
87ecb68b
PB
12#include "devices.h"
13#include "net.h"
14#include "sysemu.h"
15#include "pci.h"
b1f05696 16#include "i2c.h"
87ecb68b 17#include "boards.h"
2446333c 18#include "blockdev.h"
62ceeb2c 19#include "exec-memory.h"
964c695a
EB
20#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)
cdbdb648 25
cdbdb648
PB
26/* Primary interrupt controller. */
27
28typedef struct vpb_sic_state
29{
3950f18b 30 SysBusDevice busdev;
62ceeb2c 31 MemoryRegion iomem;
cdbdb648
PB
32 uint32_t level;
33 uint32_t mask;
34 uint32_t pic_enable;
97aff481 35 qemu_irq parent[32];
cdbdb648
PB
36 int irq;
37} vpb_sic_state;
38
a796d0ac
PM
39static 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
cdbdb648
PB
51static void vpb_sic_update(vpb_sic_state *s)
52{
53 uint32_t flags;
54
55 flags = s->level & s->mask;
d537cf6c 56 qemu_set_irq(s->parent[s->irq], flags != 0);
cdbdb648
PB
57}
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;
d537cf6c 68 qemu_set_irq(s->parent[i], (s->level & mask) != 0);
cdbdb648
PB
69 }
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))
d537cf6c 80 qemu_set_irq(s->parent[irq], level);
cdbdb648
PB
81 vpb_sic_update(s);
82}
83
62ceeb2c
AK
84static uint64_t vpb_sic_read(void *opaque, target_phys_addr_t offset,
85 unsigned size)
cdbdb648
PB
86{
87 vpb_sic_state *s = (vpb_sic_state *)opaque;
88
cdbdb648
PB
89 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:
e69954b9 101 printf ("vpb_sic_read: Bad register offset 0x%x\n", (int)offset);
cdbdb648
PB
102 return 0;
103 }
104}
105
c227f099 106static void vpb_sic_write(void *opaque, target_phys_addr_t offset,
62ceeb2c 107 uint64_t value, unsigned size)
cdbdb648
PB
108{
109 vpb_sic_state *s = (vpb_sic_state *)opaque;
cdbdb648
PB
110
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:
e69954b9 135 printf ("vpb_sic_write: Bad register offset 0x%x\n", (int)offset);
cdbdb648
PB
136 return;
137 }
138 vpb_sic_update(s);
139}
140
62ceeb2c
AK
141static const MemoryRegionOps vpb_sic_ops = {
142 .read = vpb_sic_read,
143 .write = vpb_sic_write,
144 .endianness = DEVICE_NATIVE_ENDIAN,
cdbdb648
PB
145};
146
81a322d4 147static int vpb_sic_init(SysBusDevice *dev)
cdbdb648 148{
3950f18b 149 vpb_sic_state *s = FROM_SYSBUS(vpb_sic_state, dev);
97aff481 150 int i;
cdbdb648 151
067a3ddc 152 qdev_init_gpio_in(&dev->qdev, vpb_sic_set_irq, 32);
97aff481 153 for (i = 0; i < 32; i++) {
3950f18b 154 sysbus_init_irq(dev, &s->parent[i]);
97aff481 155 }
3950f18b 156 s->irq = 31;
62ceeb2c 157 memory_region_init_io(&s->iomem, &vpb_sic_ops, s, "vpb-sic", 0x1000);
750ecd44 158 sysbus_init_mmio(dev, &s->iomem);
81a322d4 159 return 0;
cdbdb648
PB
160}
161
162/* Board init. */
163
16406950 164/* The AB and PB boards both use the same core, just with different
370de023 165 peripherals and expansion busses. For now we emulate a subset of the
16406950 166 PB peripherals and just change the board ID. */
cdbdb648 167
f93eb9ff
AZ
168static struct arm_boot_info versatile_binfo;
169
c227f099 170static void versatile_init(ram_addr_t ram_size,
3023f332 171 const char *boot_device,
cdbdb648 172 const char *kernel_filename, const char *kernel_cmdline,
3371d272
PB
173 const char *initrd_filename, const char *cpu_model,
174 int board_id)
cdbdb648 175{
20e93374 176 ARMCPU *cpu;
62ceeb2c
AK
177 MemoryRegion *sysmem = get_system_memory();
178 MemoryRegion *ram = g_new(MemoryRegion, 1);
97aff481
PB
179 qemu_irq *cpu_pic;
180 qemu_irq pic[32];
3950f18b 181 qemu_irq sic[32];
242ea2c6 182 DeviceState *dev, *sysctl;
7d6e771f 183 SysBusDevice *busdev;
d028d02d 184 DeviceState *pl041;
502a5395
PB
185 PCIBus *pci_bus;
186 NICInfo *nd;
b1f05696 187 i2c_bus *i2c;
502a5395
PB
188 int n;
189 int done_smc = 0;
964c695a 190 DriveInfo *dinfo;
cdbdb648 191
20e93374 192 if (!cpu_model) {
3371d272 193 cpu_model = "arm926";
20e93374
AF
194 }
195 cpu = cpu_arm_init(cpu_model);
196 if (!cpu) {
aaed909a
FB
197 fprintf(stderr, "Unable to find CPU definition\n");
198 exit(1);
199 }
c5705a77
AK
200 memory_region_init_ram(ram, "versatile.ram", ram_size);
201 vmstate_register_ram_global(ram);
1235fc06 202 /* ??? RAM should repeat to fill physical memory space. */
cdbdb648 203 /* SDRAM at address zero. */
62ceeb2c 204 memory_region_add_subregion(sysmem, 0, ram);
cdbdb648 205
242ea2c6
PM
206 sysctl = qdev_create(NULL, "realview_sysctl");
207 qdev_prop_set_uint32(sysctl, "sys_id", 0x41007004);
242ea2c6 208 qdev_prop_set_uint32(sysctl, "proc_id", 0x02000000);
7a65c8cc 209 qdev_init_nofail(sysctl);
242ea2c6
PM
210 sysbus_mmio_map(sysbus_from_qdev(sysctl), 0, 0x10000000);
211
4bd74661 212 cpu_pic = arm_pic_init_cpu(cpu);
97aff481 213 dev = sysbus_create_varargs("pl190", 0x10140000,
02cd521f
SW
214 cpu_pic[ARM_PIC_CPU_IRQ],
215 cpu_pic[ARM_PIC_CPU_FIQ], NULL);
97aff481 216 for (n = 0; n < 32; n++) {
067a3ddc 217 pic[n] = qdev_get_gpio_in(dev, n);
97aff481 218 }
3950f18b
PB
219 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]);
067a3ddc 222 sic[n] = qdev_get_gpio_in(dev, n);
3950f18b 223 }
86394e96
PB
224
225 sysbus_create_simple("pl050_keyboard", 0x10006000, sic[3]);
226 sysbus_create_simple("pl050_mouse", 0x10007000, sic[4]);
cdbdb648 227
7d6e771f
PM
228 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]);
02e2da45 237 pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci");
0027b06d 238
502a5395
PB
239 /* 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];
0ae18cee 243
e6b3c8ca 244 if (!done_smc && (!nd->model || strcmp(nd->model, "smc91c111") == 0)) {
d537cf6c 245 smc91c111_init(nd, 0x10010000, sic[25]);
0ae18cee 246 done_smc = 1;
cdbdb648 247 } else {
07caea31 248 pci_nic_init_nofail(nd, "rtl8139", NULL);
cdbdb648
PB
249 }
250 }
0d92ed30 251 if (usb_enabled) {
afb9a60e 252 pci_create_simple(pci_bus, -1, "pci-ohci");
0d92ed30 253 }
9be5dafe
PB
254 n = drive_get_max_bus(IF_SCSI);
255 while (n >= 0) {
256 pci_create_simple(pci_bus, -1, "lsi53c895a");
257 n--;
7d8406be 258 }
cdbdb648 259
a7d518a6
PB
260 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]);
cdbdb648 264
b4496b13 265 sysbus_create_simple("pl080", 0x10130000, pic[17]);
6a824ec3
PB
266 sysbus_create_simple("sp804", 0x101e2000, pic[4]);
267 sysbus_create_simple("sp804", 0x101e3000, pic[5]);
cdbdb648 268
853e65e0
JCPV
269 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
cdbdb648
PB
274 /* The versatile/PB actually has a modified Color LCD controller
275 that includes hardware cursor support from the PL111. */
242ea2c6
PM
276 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));
cdbdb648 279
aa9311d8
PB
280 sysbus_create_varargs("pl181", 0x10005000, sic[22], sic[1], NULL);
281 sysbus_create_varargs("pl181", 0x1000b000, sic[23], sic[2], NULL);
a1bb27b1 282
7e1543c2 283 /* Add PL031 Real Time Clock. */
a63bdb31 284 sysbus_create_simple("pl031", 0x101e8000, pic[10]);
7e1543c2 285
b1f05696
OA
286 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
d028d02d
MS
290 /* 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
16406950 297 /* Memory map for Versatile/PB: */
cdbdb648
PB
298 /* 0x10000000 System registers. */
299 /* 0x10001000 PCI controller config registers. */
300 /* 0x10002000 Serial bus interface. */
301 /* 0x10003000 Secondary interrupt controller. */
302 /* 0x10004000 AACI (audio). */
a1bb27b1 303 /* 0x10005000 MMCI0. */
cdbdb648
PB
304 /* 0x10006000 KMI0 (keyboard). */
305 /* 0x10007000 KMI1 (mouse). */
306 /* 0x10008000 Character LCD Interface. */
307 /* 0x10009000 UART3. */
308 /* 0x1000a000 Smart card 1. */
a1bb27b1 309 /* 0x1000b000 MMCI1. */
cdbdb648
PB
310 /* 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. */
964c695a
EB
332 /* 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 }
cdbdb648 342
f93eb9ff
AZ
343 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;
3aaa8dfa 348 arm_load_kernel(cpu, &versatile_binfo);
16406950
PB
349}
350
5f072e1f 351static void vpb_init(QEMUMachineInitArgs *args)
16406950 352{
5f072e1f
EH
353 ram_addr_t ram_size = args->ram_size;
354 const char *cpu_model = args->cpu_model;
355 const char *kernel_filename = args->kernel_filename;
356 const char *kernel_cmdline = args->kernel_cmdline;
357 const char *initrd_filename = args->initrd_filename;
358 const char *boot_device = args->boot_device;
fbe1b595 359 versatile_init(ram_size,
3023f332 360 boot_device,
16406950 361 kernel_filename, kernel_cmdline,
3371d272 362 initrd_filename, cpu_model, 0x183);
16406950
PB
363}
364
5f072e1f 365static void vab_init(QEMUMachineInitArgs *args)
16406950 366{
5f072e1f
EH
367 ram_addr_t ram_size = args->ram_size;
368 const char *cpu_model = args->cpu_model;
369 const char *kernel_filename = args->kernel_filename;
370 const char *kernel_cmdline = args->kernel_cmdline;
371 const char *initrd_filename = args->initrd_filename;
372 const char *boot_device = args->boot_device;
fbe1b595 373 versatile_init(ram_size,
3023f332 374 boot_device,
16406950 375 kernel_filename, kernel_cmdline,
3371d272 376 initrd_filename, cpu_model, 0x25e);
cdbdb648
PB
377}
378
f80f9ec9 379static QEMUMachine versatilepb_machine = {
c9b1ae2c
BS
380 .name = "versatilepb",
381 .desc = "ARM Versatile/PB (ARM926EJ-S)",
382 .init = vpb_init,
383 .use_scsi = 1,
cdbdb648 384};
16406950 385
f80f9ec9 386static QEMUMachine versatileab_machine = {
c9b1ae2c
BS
387 .name = "versatileab",
388 .desc = "ARM Versatile/AB (ARM926EJ-S)",
389 .init = vab_init,
390 .use_scsi = 1,
16406950 391};
3950f18b 392
f80f9ec9
AL
393static void versatile_machine_init(void)
394{
395 qemu_register_machine(&versatilepb_machine);
396 qemu_register_machine(&versatileab_machine);
397}
398
399machine_init(versatile_machine_init);
400
999e12bb
AL
401static void vpb_sic_class_init(ObjectClass *klass, void *data)
402{
39bffca2 403 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb
AL
404 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
405
406 k->init = vpb_sic_init;
39bffca2
AL
407 dc->no_user = 1;
408 dc->vmsd = &vmstate_vpb_sic;
999e12bb
AL
409}
410
39bffca2
AL
411static TypeInfo vpb_sic_info = {
412 .name = "versatilepb_sic",
413 .parent = TYPE_SYS_BUS_DEVICE,
414 .instance_size = sizeof(vpb_sic_state),
415 .class_init = vpb_sic_class_init,
a796d0ac
PM
416};
417
83f7d43a 418static void versatilepb_register_types(void)
3950f18b 419{
39bffca2 420 type_register_static(&vpb_sic_info);
3950f18b
PB
421}
422
83f7d43a 423type_init(versatilepb_register_types)