]> git.proxmox.com Git - qemu.git/blame - hw/versatilepb.c
Merge remote-tracking branch 'qemu-kvm/uq/master' into staging
[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
PB
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"
18e08a55 17#include "usb-ohci.h"
87ecb68b 18#include "boards.h"
2446333c 19#include "blockdev.h"
62ceeb2c 20#include "exec-memory.h"
cdbdb648 21
cdbdb648
PB
22/* Primary interrupt controller. */
23
24typedef struct vpb_sic_state
25{
3950f18b 26 SysBusDevice busdev;
62ceeb2c 27 MemoryRegion iomem;
cdbdb648
PB
28 uint32_t level;
29 uint32_t mask;
30 uint32_t pic_enable;
97aff481 31 qemu_irq parent[32];
cdbdb648
PB
32 int irq;
33} vpb_sic_state;
34
a796d0ac
PM
35static const VMStateDescription vmstate_vpb_sic = {
36 .name = "versatilepb_sic",
37 .version_id = 1,
38 .minimum_version_id = 1,
39 .fields = (VMStateField[]) {
40 VMSTATE_UINT32(level, vpb_sic_state),
41 VMSTATE_UINT32(mask, vpb_sic_state),
42 VMSTATE_UINT32(pic_enable, vpb_sic_state),
43 VMSTATE_END_OF_LIST()
44 }
45};
46
cdbdb648
PB
47static void vpb_sic_update(vpb_sic_state *s)
48{
49 uint32_t flags;
50
51 flags = s->level & s->mask;
d537cf6c 52 qemu_set_irq(s->parent[s->irq], flags != 0);
cdbdb648
PB
53}
54
55static void vpb_sic_update_pic(vpb_sic_state *s)
56{
57 int i;
58 uint32_t mask;
59
60 for (i = 21; i <= 30; i++) {
61 mask = 1u << i;
62 if (!(s->pic_enable & mask))
63 continue;
d537cf6c 64 qemu_set_irq(s->parent[i], (s->level & mask) != 0);
cdbdb648
PB
65 }
66}
67
68static void vpb_sic_set_irq(void *opaque, int irq, int level)
69{
70 vpb_sic_state *s = (vpb_sic_state *)opaque;
71 if (level)
72 s->level |= 1u << irq;
73 else
74 s->level &= ~(1u << irq);
75 if (s->pic_enable & (1u << irq))
d537cf6c 76 qemu_set_irq(s->parent[irq], level);
cdbdb648
PB
77 vpb_sic_update(s);
78}
79
62ceeb2c
AK
80static uint64_t vpb_sic_read(void *opaque, target_phys_addr_t offset,
81 unsigned size)
cdbdb648
PB
82{
83 vpb_sic_state *s = (vpb_sic_state *)opaque;
84
cdbdb648
PB
85 switch (offset >> 2) {
86 case 0: /* STATUS */
87 return s->level & s->mask;
88 case 1: /* RAWSTAT */
89 return s->level;
90 case 2: /* ENABLE */
91 return s->mask;
92 case 4: /* SOFTINT */
93 return s->level & 1;
94 case 8: /* PICENABLE */
95 return s->pic_enable;
96 default:
e69954b9 97 printf ("vpb_sic_read: Bad register offset 0x%x\n", (int)offset);
cdbdb648
PB
98 return 0;
99 }
100}
101
c227f099 102static void vpb_sic_write(void *opaque, target_phys_addr_t offset,
62ceeb2c 103 uint64_t value, unsigned size)
cdbdb648
PB
104{
105 vpb_sic_state *s = (vpb_sic_state *)opaque;
cdbdb648
PB
106
107 switch (offset >> 2) {
108 case 2: /* ENSET */
109 s->mask |= value;
110 break;
111 case 3: /* ENCLR */
112 s->mask &= ~value;
113 break;
114 case 4: /* SOFTINTSET */
115 if (value)
116 s->mask |= 1;
117 break;
118 case 5: /* SOFTINTCLR */
119 if (value)
120 s->mask &= ~1u;
121 break;
122 case 8: /* PICENSET */
123 s->pic_enable |= (value & 0x7fe00000);
124 vpb_sic_update_pic(s);
125 break;
126 case 9: /* PICENCLR */
127 s->pic_enable &= ~value;
128 vpb_sic_update_pic(s);
129 break;
130 default:
e69954b9 131 printf ("vpb_sic_write: Bad register offset 0x%x\n", (int)offset);
cdbdb648
PB
132 return;
133 }
134 vpb_sic_update(s);
135}
136
62ceeb2c
AK
137static const MemoryRegionOps vpb_sic_ops = {
138 .read = vpb_sic_read,
139 .write = vpb_sic_write,
140 .endianness = DEVICE_NATIVE_ENDIAN,
cdbdb648
PB
141};
142
81a322d4 143static int vpb_sic_init(SysBusDevice *dev)
cdbdb648 144{
3950f18b 145 vpb_sic_state *s = FROM_SYSBUS(vpb_sic_state, dev);
97aff481 146 int i;
cdbdb648 147
067a3ddc 148 qdev_init_gpio_in(&dev->qdev, vpb_sic_set_irq, 32);
97aff481 149 for (i = 0; i < 32; i++) {
3950f18b 150 sysbus_init_irq(dev, &s->parent[i]);
97aff481 151 }
3950f18b 152 s->irq = 31;
62ceeb2c 153 memory_region_init_io(&s->iomem, &vpb_sic_ops, s, "vpb-sic", 0x1000);
750ecd44 154 sysbus_init_mmio(dev, &s->iomem);
81a322d4 155 return 0;
cdbdb648
PB
156}
157
158/* Board init. */
159
16406950
PB
160/* The AB and PB boards both use the same core, just with different
161 peripherans and expansion busses. For now we emulate a subset of the
162 PB peripherals and just change the board ID. */
cdbdb648 163
f93eb9ff
AZ
164static struct arm_boot_info versatile_binfo;
165
c227f099 166static void versatile_init(ram_addr_t ram_size,
3023f332 167 const char *boot_device,
cdbdb648 168 const char *kernel_filename, const char *kernel_cmdline,
3371d272
PB
169 const char *initrd_filename, const char *cpu_model,
170 int board_id)
cdbdb648
PB
171{
172 CPUState *env;
62ceeb2c
AK
173 MemoryRegion *sysmem = get_system_memory();
174 MemoryRegion *ram = g_new(MemoryRegion, 1);
97aff481
PB
175 qemu_irq *cpu_pic;
176 qemu_irq pic[32];
3950f18b 177 qemu_irq sic[32];
242ea2c6 178 DeviceState *dev, *sysctl;
7d6e771f 179 SysBusDevice *busdev;
d028d02d 180 DeviceState *pl041;
502a5395
PB
181 PCIBus *pci_bus;
182 NICInfo *nd;
183 int n;
184 int done_smc = 0;
cdbdb648 185
3371d272
PB
186 if (!cpu_model)
187 cpu_model = "arm926";
aaed909a
FB
188 env = cpu_init(cpu_model);
189 if (!env) {
190 fprintf(stderr, "Unable to find CPU definition\n");
191 exit(1);
192 }
c5705a77
AK
193 memory_region_init_ram(ram, "versatile.ram", ram_size);
194 vmstate_register_ram_global(ram);
1235fc06 195 /* ??? RAM should repeat to fill physical memory space. */
cdbdb648 196 /* SDRAM at address zero. */
62ceeb2c 197 memory_region_add_subregion(sysmem, 0, ram);
cdbdb648 198
242ea2c6
PM
199 sysctl = qdev_create(NULL, "realview_sysctl");
200 qdev_prop_set_uint32(sysctl, "sys_id", 0x41007004);
242ea2c6 201 qdev_prop_set_uint32(sysctl, "proc_id", 0x02000000);
7a65c8cc 202 qdev_init_nofail(sysctl);
242ea2c6
PM
203 sysbus_mmio_map(sysbus_from_qdev(sysctl), 0, 0x10000000);
204
97aff481
PB
205 cpu_pic = arm_pic_init_cpu(env);
206 dev = sysbus_create_varargs("pl190", 0x10140000,
207 cpu_pic[0], cpu_pic[1], NULL);
208 for (n = 0; n < 32; n++) {
067a3ddc 209 pic[n] = qdev_get_gpio_in(dev, n);
97aff481 210 }
3950f18b
PB
211 dev = sysbus_create_simple("versatilepb_sic", 0x10003000, NULL);
212 for (n = 0; n < 32; n++) {
213 sysbus_connect_irq(sysbus_from_qdev(dev), n, pic[n]);
067a3ddc 214 sic[n] = qdev_get_gpio_in(dev, n);
3950f18b 215 }
86394e96
PB
216
217 sysbus_create_simple("pl050_keyboard", 0x10006000, sic[3]);
218 sysbus_create_simple("pl050_mouse", 0x10007000, sic[4]);
cdbdb648 219
7d6e771f
PM
220 dev = qdev_create(NULL, "versatile_pci");
221 busdev = sysbus_from_qdev(dev);
222 qdev_init_nofail(dev);
223 sysbus_mmio_map(busdev, 0, 0x41000000); /* PCI self-config */
224 sysbus_mmio_map(busdev, 1, 0x42000000); /* PCI config */
225 sysbus_connect_irq(busdev, 0, sic[27]);
226 sysbus_connect_irq(busdev, 1, sic[28]);
227 sysbus_connect_irq(busdev, 2, sic[29]);
228 sysbus_connect_irq(busdev, 3, sic[30]);
02e2da45 229 pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci");
0027b06d 230
502a5395
PB
231 /* The Versatile PCI bridge does not provide access to PCI IO space,
232 so many of the qemu PCI devices are not useable. */
233 for(n = 0; n < nb_nics; n++) {
234 nd = &nd_table[n];
0ae18cee 235
e6b3c8ca 236 if (!done_smc && (!nd->model || strcmp(nd->model, "smc91c111") == 0)) {
d537cf6c 237 smc91c111_init(nd, 0x10010000, sic[25]);
0ae18cee 238 done_smc = 1;
cdbdb648 239 } else {
07caea31 240 pci_nic_init_nofail(nd, "rtl8139", NULL);
cdbdb648
PB
241 }
242 }
0d92ed30 243 if (usb_enabled) {
a67ba3b6 244 usb_ohci_init_pci(pci_bus, -1);
0d92ed30 245 }
9be5dafe
PB
246 n = drive_get_max_bus(IF_SCSI);
247 while (n >= 0) {
248 pci_create_simple(pci_bus, -1, "lsi53c895a");
249 n--;
7d8406be 250 }
cdbdb648 251
a7d518a6
PB
252 sysbus_create_simple("pl011", 0x101f1000, pic[12]);
253 sysbus_create_simple("pl011", 0x101f2000, pic[13]);
254 sysbus_create_simple("pl011", 0x101f3000, pic[14]);
255 sysbus_create_simple("pl011", 0x10009000, sic[6]);
cdbdb648 256
b4496b13 257 sysbus_create_simple("pl080", 0x10130000, pic[17]);
6a824ec3
PB
258 sysbus_create_simple("sp804", 0x101e2000, pic[4]);
259 sysbus_create_simple("sp804", 0x101e3000, pic[5]);
cdbdb648
PB
260
261 /* The versatile/PB actually has a modified Color LCD controller
262 that includes hardware cursor support from the PL111. */
242ea2c6
PM
263 dev = sysbus_create_simple("pl110_versatile", 0x10120000, pic[16]);
264 /* Wire up the mux control signals from the SYS_CLCD register */
265 qdev_connect_gpio_out(sysctl, 0, qdev_get_gpio_in(dev, 0));
cdbdb648 266
aa9311d8
PB
267 sysbus_create_varargs("pl181", 0x10005000, sic[22], sic[1], NULL);
268 sysbus_create_varargs("pl181", 0x1000b000, sic[23], sic[2], NULL);
a1bb27b1 269
7e1543c2 270 /* Add PL031 Real Time Clock. */
a63bdb31 271 sysbus_create_simple("pl031", 0x101e8000, pic[10]);
7e1543c2 272
d028d02d
MS
273 /* Add PL041 AACI Interface to the LM4549 codec */
274 pl041 = qdev_create(NULL, "pl041");
275 qdev_prop_set_uint32(pl041, "nc_fifo_depth", 512);
276 qdev_init_nofail(pl041);
277 sysbus_mmio_map(sysbus_from_qdev(pl041), 0, 0x10004000);
278 sysbus_connect_irq(sysbus_from_qdev(pl041), 0, sic[24]);
279
16406950 280 /* Memory map for Versatile/PB: */
cdbdb648
PB
281 /* 0x10000000 System registers. */
282 /* 0x10001000 PCI controller config registers. */
283 /* 0x10002000 Serial bus interface. */
284 /* 0x10003000 Secondary interrupt controller. */
285 /* 0x10004000 AACI (audio). */
a1bb27b1 286 /* 0x10005000 MMCI0. */
cdbdb648
PB
287 /* 0x10006000 KMI0 (keyboard). */
288 /* 0x10007000 KMI1 (mouse). */
289 /* 0x10008000 Character LCD Interface. */
290 /* 0x10009000 UART3. */
291 /* 0x1000a000 Smart card 1. */
a1bb27b1 292 /* 0x1000b000 MMCI1. */
cdbdb648
PB
293 /* 0x10010000 Ethernet. */
294 /* 0x10020000 USB. */
295 /* 0x10100000 SSMC. */
296 /* 0x10110000 MPMC. */
297 /* 0x10120000 CLCD Controller. */
298 /* 0x10130000 DMA Controller. */
299 /* 0x10140000 Vectored interrupt controller. */
300 /* 0x101d0000 AHB Monitor Interface. */
301 /* 0x101e0000 System Controller. */
302 /* 0x101e1000 Watchdog Interface. */
303 /* 0x101e2000 Timer 0/1. */
304 /* 0x101e3000 Timer 2/3. */
305 /* 0x101e4000 GPIO port 0. */
306 /* 0x101e5000 GPIO port 1. */
307 /* 0x101e6000 GPIO port 2. */
308 /* 0x101e7000 GPIO port 3. */
309 /* 0x101e8000 RTC. */
310 /* 0x101f0000 Smart card 0. */
311 /* 0x101f1000 UART0. */
312 /* 0x101f2000 UART1. */
313 /* 0x101f3000 UART2. */
314 /* 0x101f4000 SSPI. */
315
f93eb9ff
AZ
316 versatile_binfo.ram_size = ram_size;
317 versatile_binfo.kernel_filename = kernel_filename;
318 versatile_binfo.kernel_cmdline = kernel_cmdline;
319 versatile_binfo.initrd_filename = initrd_filename;
320 versatile_binfo.board_id = board_id;
321 arm_load_kernel(env, &versatile_binfo);
16406950
PB
322}
323
c227f099 324static void vpb_init(ram_addr_t ram_size,
3023f332 325 const char *boot_device,
16406950 326 const char *kernel_filename, const char *kernel_cmdline,
94fc95cd 327 const char *initrd_filename, const char *cpu_model)
16406950 328{
fbe1b595 329 versatile_init(ram_size,
3023f332 330 boot_device,
16406950 331 kernel_filename, kernel_cmdline,
3371d272 332 initrd_filename, cpu_model, 0x183);
16406950
PB
333}
334
c227f099 335static void vab_init(ram_addr_t ram_size,
3023f332 336 const char *boot_device,
16406950 337 const char *kernel_filename, const char *kernel_cmdline,
94fc95cd 338 const char *initrd_filename, const char *cpu_model)
16406950 339{
fbe1b595 340 versatile_init(ram_size,
3023f332 341 boot_device,
16406950 342 kernel_filename, kernel_cmdline,
3371d272 343 initrd_filename, cpu_model, 0x25e);
cdbdb648
PB
344}
345
f80f9ec9 346static QEMUMachine versatilepb_machine = {
c9b1ae2c
BS
347 .name = "versatilepb",
348 .desc = "ARM Versatile/PB (ARM926EJ-S)",
349 .init = vpb_init,
350 .use_scsi = 1,
cdbdb648 351};
16406950 352
f80f9ec9 353static QEMUMachine versatileab_machine = {
c9b1ae2c
BS
354 .name = "versatileab",
355 .desc = "ARM Versatile/AB (ARM926EJ-S)",
356 .init = vab_init,
357 .use_scsi = 1,
16406950 358};
3950f18b 359
f80f9ec9
AL
360static void versatile_machine_init(void)
361{
362 qemu_register_machine(&versatilepb_machine);
363 qemu_register_machine(&versatileab_machine);
364}
365
366machine_init(versatile_machine_init);
367
999e12bb
AL
368static void vpb_sic_class_init(ObjectClass *klass, void *data)
369{
39bffca2 370 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb
AL
371 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
372
373 k->init = vpb_sic_init;
39bffca2
AL
374 dc->no_user = 1;
375 dc->vmsd = &vmstate_vpb_sic;
999e12bb
AL
376}
377
39bffca2
AL
378static TypeInfo vpb_sic_info = {
379 .name = "versatilepb_sic",
380 .parent = TYPE_SYS_BUS_DEVICE,
381 .instance_size = sizeof(vpb_sic_state),
382 .class_init = vpb_sic_class_init,
a796d0ac
PM
383};
384
83f7d43a 385static void versatilepb_register_types(void)
3950f18b 386{
39bffca2 387 type_register_static(&vpb_sic_info);
3950f18b
PB
388}
389
83f7d43a 390type_init(versatilepb_register_types)