]> Git Repo - qemu.git/blame - hw/versatilepb.c
Enable generic accepts-anything cpu by default for usermode emulation.
[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 *
7 * This code is licenced under the GPL.
8 */
9
87ecb68b
PB
10#include "hw.h"
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"
17#include "boards.h"
cdbdb648 18
cdbdb648
PB
19/* Primary interrupt controller. */
20
21typedef struct vpb_sic_state
22{
cdbdb648
PB
23 uint32_t level;
24 uint32_t mask;
25 uint32_t pic_enable;
d537cf6c 26 qemu_irq *parent;
cdbdb648
PB
27 int irq;
28} vpb_sic_state;
29
30static void vpb_sic_update(vpb_sic_state *s)
31{
32 uint32_t flags;
33
34 flags = s->level & s->mask;
d537cf6c 35 qemu_set_irq(s->parent[s->irq], flags != 0);
cdbdb648
PB
36}
37
38static void vpb_sic_update_pic(vpb_sic_state *s)
39{
40 int i;
41 uint32_t mask;
42
43 for (i = 21; i <= 30; i++) {
44 mask = 1u << i;
45 if (!(s->pic_enable & mask))
46 continue;
d537cf6c 47 qemu_set_irq(s->parent[i], (s->level & mask) != 0);
cdbdb648
PB
48 }
49}
50
51static void vpb_sic_set_irq(void *opaque, int irq, int level)
52{
53 vpb_sic_state *s = (vpb_sic_state *)opaque;
54 if (level)
55 s->level |= 1u << irq;
56 else
57 s->level &= ~(1u << irq);
58 if (s->pic_enable & (1u << irq))
d537cf6c 59 qemu_set_irq(s->parent[irq], level);
cdbdb648
PB
60 vpb_sic_update(s);
61}
62
63static uint32_t vpb_sic_read(void *opaque, target_phys_addr_t offset)
64{
65 vpb_sic_state *s = (vpb_sic_state *)opaque;
66
cdbdb648
PB
67 switch (offset >> 2) {
68 case 0: /* STATUS */
69 return s->level & s->mask;
70 case 1: /* RAWSTAT */
71 return s->level;
72 case 2: /* ENABLE */
73 return s->mask;
74 case 4: /* SOFTINT */
75 return s->level & 1;
76 case 8: /* PICENABLE */
77 return s->pic_enable;
78 default:
e69954b9 79 printf ("vpb_sic_read: Bad register offset 0x%x\n", (int)offset);
cdbdb648
PB
80 return 0;
81 }
82}
83
84static void vpb_sic_write(void *opaque, target_phys_addr_t offset,
85 uint32_t value)
86{
87 vpb_sic_state *s = (vpb_sic_state *)opaque;
cdbdb648
PB
88
89 switch (offset >> 2) {
90 case 2: /* ENSET */
91 s->mask |= value;
92 break;
93 case 3: /* ENCLR */
94 s->mask &= ~value;
95 break;
96 case 4: /* SOFTINTSET */
97 if (value)
98 s->mask |= 1;
99 break;
100 case 5: /* SOFTINTCLR */
101 if (value)
102 s->mask &= ~1u;
103 break;
104 case 8: /* PICENSET */
105 s->pic_enable |= (value & 0x7fe00000);
106 vpb_sic_update_pic(s);
107 break;
108 case 9: /* PICENCLR */
109 s->pic_enable &= ~value;
110 vpb_sic_update_pic(s);
111 break;
112 default:
e69954b9 113 printf ("vpb_sic_write: Bad register offset 0x%x\n", (int)offset);
cdbdb648
PB
114 return;
115 }
116 vpb_sic_update(s);
117}
118
119static CPUReadMemoryFunc *vpb_sic_readfn[] = {
120 vpb_sic_read,
121 vpb_sic_read,
122 vpb_sic_read
123};
124
125static CPUWriteMemoryFunc *vpb_sic_writefn[] = {
126 vpb_sic_write,
127 vpb_sic_write,
128 vpb_sic_write
129};
130
d537cf6c 131static qemu_irq *vpb_sic_init(uint32_t base, qemu_irq *parent, int irq)
cdbdb648
PB
132{
133 vpb_sic_state *s;
d537cf6c 134 qemu_irq *qi;
cdbdb648
PB
135 int iomemtype;
136
137 s = (vpb_sic_state *)qemu_mallocz(sizeof(vpb_sic_state));
d537cf6c 138 qi = qemu_allocate_irqs(vpb_sic_set_irq, s, 32);
cdbdb648
PB
139 s->parent = parent;
140 s->irq = irq;
141 iomemtype = cpu_register_io_memory(0, vpb_sic_readfn,
142 vpb_sic_writefn, s);
187337f8 143 cpu_register_physical_memory(base, 0x00001000, iomemtype);
cdbdb648 144 /* ??? Save/restore. */
d537cf6c 145 return qi;
cdbdb648
PB
146}
147
148/* Board init. */
149
16406950
PB
150/* The AB and PB boards both use the same core, just with different
151 peripherans and expansion busses. For now we emulate a subset of the
152 PB peripherals and just change the board ID. */
cdbdb648 153
f93eb9ff
AZ
154static struct arm_boot_info versatile_binfo;
155
00f82b8a 156static void versatile_init(ram_addr_t ram_size, int vga_ram_size,
3023f332 157 const char *boot_device,
cdbdb648 158 const char *kernel_filename, const char *kernel_cmdline,
3371d272
PB
159 const char *initrd_filename, const char *cpu_model,
160 int board_id)
cdbdb648
PB
161{
162 CPUState *env;
d537cf6c
PB
163 qemu_irq *pic;
164 qemu_irq *sic;
7d8406be 165 void *scsi_hba;
502a5395
PB
166 PCIBus *pci_bus;
167 NICInfo *nd;
168 int n;
169 int done_smc = 0;
e4bcb14c 170 int index;
cdbdb648 171
3371d272
PB
172 if (!cpu_model)
173 cpu_model = "arm926";
aaed909a
FB
174 env = cpu_init(cpu_model);
175 if (!env) {
176 fprintf(stderr, "Unable to find CPU definition\n");
177 exit(1);
178 }
1235fc06 179 /* ??? RAM should repeat to fill physical memory space. */
cdbdb648
PB
180 /* SDRAM at address zero. */
181 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
182
e69954b9 183 arm_sysctl_init(0x10000000, 0x41007004);
cdbdb648 184 pic = arm_pic_init_cpu(env);
d537cf6c 185 pic = pl190_init(0x10140000, pic[0], pic[1]);
cdbdb648 186 sic = vpb_sic_init(0x10003000, pic, 31);
d537cf6c
PB
187 pl050_init(0x10006000, sic[3], 0);
188 pl050_init(0x10007000, sic[4], 1);
cdbdb648 189
e69954b9 190 pci_bus = pci_vpb_init(sic, 27, 0);
502a5395
PB
191 /* The Versatile PCI bridge does not provide access to PCI IO space,
192 so many of the qemu PCI devices are not useable. */
193 for(n = 0; n < nb_nics; n++) {
194 nd = &nd_table[n];
0ae18cee
AL
195
196 if ((!nd->model && !done_smc) || strcmp(nd->model, "smc91c111") == 0) {
d537cf6c 197 smc91c111_init(nd, 0x10010000, sic[25]);
0ae18cee 198 done_smc = 1;
cdbdb648 199 } else {
cb457d76 200 pci_nic_init(pci_bus, nd, -1, "rtl8139");
cdbdb648
PB
201 }
202 }
0d92ed30 203 if (usb_enabled) {
e24ad6f1 204 usb_ohci_init_pci(pci_bus, 3, -1);
0d92ed30 205 }
e4bcb14c
TS
206 if (drive_get_max_bus(IF_SCSI) > 0) {
207 fprintf(stderr, "qemu: too many SCSI bus\n");
208 exit(1);
209 }
7d8406be 210 scsi_hba = lsi_scsi_init(pci_bus, -1);
e4bcb14c
TS
211 for (n = 0; n < LSI_MAX_DEVS; n++) {
212 index = drive_get_index(IF_SCSI, 0, n);
213 if (index == -1)
214 continue;
215 lsi_scsi_attach(scsi_hba, drives_table[index].bdrv, n);
7d8406be 216 }
cdbdb648 217
9ee6e8bb
PB
218 pl011_init(0x101f1000, pic[12], serial_hds[0], PL011_ARM);
219 pl011_init(0x101f2000, pic[13], serial_hds[1], PL011_ARM);
220 pl011_init(0x101f3000, pic[14], serial_hds[2], PL011_ARM);
221 pl011_init(0x10009000, sic[6], serial_hds[3], PL011_ARM);
cdbdb648 222
d537cf6c
PB
223 pl080_init(0x10130000, pic[17], 8);
224 sp804_init(0x101e2000, pic[4]);
225 sp804_init(0x101e3000, pic[5]);
cdbdb648
PB
226
227 /* The versatile/PB actually has a modified Color LCD controller
228 that includes hardware cursor support from the PL111. */
3023f332 229 pl110_init(0x10120000, pic[16], 1);
cdbdb648 230
e4bcb14c
TS
231 index = drive_get_index(IF_SD, 0, 0);
232 if (index == -1) {
233 fprintf(stderr, "qemu: missing SecureDigital card\n");
234 exit(1);
235 }
236
237 pl181_init(0x10005000, drives_table[index].bdrv, sic[22], sic[1]);
a1bb27b1
PB
238#if 0
239 /* Disabled because there's no way of specifying a block device. */
240 pl181_init(0x1000b000, NULL, sic, 23, 2);
241#endif
242
7e1543c2
PB
243 /* Add PL031 Real Time Clock. */
244 pl031_init(0x101e8000,pic[10]);
245
16406950 246 /* Memory map for Versatile/PB: */
cdbdb648
PB
247 /* 0x10000000 System registers. */
248 /* 0x10001000 PCI controller config registers. */
249 /* 0x10002000 Serial bus interface. */
250 /* 0x10003000 Secondary interrupt controller. */
251 /* 0x10004000 AACI (audio). */
a1bb27b1 252 /* 0x10005000 MMCI0. */
cdbdb648
PB
253 /* 0x10006000 KMI0 (keyboard). */
254 /* 0x10007000 KMI1 (mouse). */
255 /* 0x10008000 Character LCD Interface. */
256 /* 0x10009000 UART3. */
257 /* 0x1000a000 Smart card 1. */
a1bb27b1 258 /* 0x1000b000 MMCI1. */
cdbdb648
PB
259 /* 0x10010000 Ethernet. */
260 /* 0x10020000 USB. */
261 /* 0x10100000 SSMC. */
262 /* 0x10110000 MPMC. */
263 /* 0x10120000 CLCD Controller. */
264 /* 0x10130000 DMA Controller. */
265 /* 0x10140000 Vectored interrupt controller. */
266 /* 0x101d0000 AHB Monitor Interface. */
267 /* 0x101e0000 System Controller. */
268 /* 0x101e1000 Watchdog Interface. */
269 /* 0x101e2000 Timer 0/1. */
270 /* 0x101e3000 Timer 2/3. */
271 /* 0x101e4000 GPIO port 0. */
272 /* 0x101e5000 GPIO port 1. */
273 /* 0x101e6000 GPIO port 2. */
274 /* 0x101e7000 GPIO port 3. */
275 /* 0x101e8000 RTC. */
276 /* 0x101f0000 Smart card 0. */
277 /* 0x101f1000 UART0. */
278 /* 0x101f2000 UART1. */
279 /* 0x101f3000 UART2. */
280 /* 0x101f4000 SSPI. */
281
f93eb9ff
AZ
282 versatile_binfo.ram_size = ram_size;
283 versatile_binfo.kernel_filename = kernel_filename;
284 versatile_binfo.kernel_cmdline = kernel_cmdline;
285 versatile_binfo.initrd_filename = initrd_filename;
286 versatile_binfo.board_id = board_id;
287 arm_load_kernel(env, &versatile_binfo);
16406950
PB
288}
289
00f82b8a 290static void vpb_init(ram_addr_t ram_size, int vga_ram_size,
3023f332 291 const char *boot_device,
16406950 292 const char *kernel_filename, const char *kernel_cmdline,
94fc95cd 293 const char *initrd_filename, const char *cpu_model)
16406950 294{
b881c2c6 295 versatile_init(ram_size, vga_ram_size,
3023f332 296 boot_device,
16406950 297 kernel_filename, kernel_cmdline,
3371d272 298 initrd_filename, cpu_model, 0x183);
16406950
PB
299}
300
00f82b8a 301static void vab_init(ram_addr_t ram_size, int vga_ram_size,
3023f332 302 const char *boot_device,
16406950 303 const char *kernel_filename, const char *kernel_cmdline,
94fc95cd 304 const char *initrd_filename, const char *cpu_model)
16406950 305{
b881c2c6 306 versatile_init(ram_size, vga_ram_size,
3023f332 307 boot_device,
16406950 308 kernel_filename, kernel_cmdline,
3371d272 309 initrd_filename, cpu_model, 0x25e);
cdbdb648
PB
310}
311
312QEMUMachine versatilepb_machine = {
c9b1ae2c
BS
313 .name = "versatilepb",
314 .desc = "ARM Versatile/PB (ARM926EJ-S)",
315 .init = vpb_init,
316 .use_scsi = 1,
cdbdb648 317};
16406950
PB
318
319QEMUMachine versatileab_machine = {
c9b1ae2c
BS
320 .name = "versatileab",
321 .desc = "ARM Versatile/AB (ARM926EJ-S)",
322 .init = vab_init,
323 .use_scsi = 1,
16406950 324};
This page took 0.301449 seconds and 4 git commands to generate.