]>
Commit | Line | Data |
---|---|---|
5fafdf24 | 1 | /* |
e69954b9 PB |
2 | * ARM RealView Baseboard System emulation. |
3 | * | |
a1bb27b1 | 4 | * Copyright (c) 2006-2007 CodeSourcery. |
e69954b9 PB |
5 | * Written by Paul Brook |
6 | * | |
7 | * This code is licenced under the GPL. | |
8 | */ | |
9 | ||
10 | #include "vl.h" | |
11 | #include "arm_pic.h" | |
12 | ||
13 | /* Board init. */ | |
14 | ||
15 | static void realview_init(int ram_size, int vga_ram_size, int boot_device, | |
16 | DisplayState *ds, const char **fd_filename, int snapshot, | |
17 | const char *kernel_filename, const char *kernel_cmdline, | |
94fc95cd | 18 | const char *initrd_filename, const char *cpu_model) |
e69954b9 PB |
19 | { |
20 | CPUState *env; | |
d537cf6c | 21 | qemu_irq *pic; |
e69954b9 PB |
22 | void *scsi_hba; |
23 | PCIBus *pci_bus; | |
24 | NICInfo *nd; | |
25 | int n; | |
26 | int done_smc = 0; | |
27 | ||
28 | env = cpu_init(); | |
3371d272 PB |
29 | if (!cpu_model) |
30 | cpu_model = "arm926"; | |
31 | cpu_arm_set_model(env, cpu_model); | |
e69954b9 PB |
32 | /* ??? RAM shoud repeat to fill physical memory space. */ |
33 | /* SDRAM at address zero. */ | |
34 | cpu_register_physical_memory(0, ram_size, IO_MEM_RAM); | |
35 | ||
36 | arm_sysctl_init(0x10000000, 0xc1400400); | |
37 | pic = arm_pic_init_cpu(env); | |
38 | /* ??? The documentation says GIC1 is nFIQ and either GIC2 or GIC3 | |
39 | is nIRQ (there are inconsistencies). However Linux 2.6.17 expects | |
40 | GIC1 to be nIRQ and ignores all the others, so do that for now. */ | |
d537cf6c PB |
41 | pic = arm_gic_init(0x10040000, pic[ARM_PIC_CPU_IRQ]); |
42 | pl050_init(0x10006000, pic[20], 0); | |
43 | pl050_init(0x10007000, pic[21], 1); | |
e69954b9 | 44 | |
d537cf6c PB |
45 | pl011_init(0x10009000, pic[12], serial_hds[0]); |
46 | pl011_init(0x1000a000, pic[13], serial_hds[1]); | |
47 | pl011_init(0x1000b000, pic[14], serial_hds[2]); | |
48 | pl011_init(0x1000c000, pic[15], serial_hds[3]); | |
e69954b9 PB |
49 | |
50 | /* DMA controller is optional, apparently. */ | |
d537cf6c | 51 | pl080_init(0x10030000, pic[24], 2); |
e69954b9 | 52 | |
d537cf6c PB |
53 | sp804_init(0x10011000, pic[4]); |
54 | sp804_init(0x10012000, pic[5]); | |
e69954b9 | 55 | |
d537cf6c | 56 | pl110_init(ds, 0x10020000, pic[23], 1); |
e69954b9 | 57 | |
d537cf6c | 58 | pl181_init(0x10005000, sd_bdrv, pic[17], pic[18]); |
a1bb27b1 | 59 | |
7e1543c2 PB |
60 | pl031_init(0x10017000, pic[10]); |
61 | ||
e69954b9 PB |
62 | pci_bus = pci_vpb_init(pic, 48, 1); |
63 | if (usb_enabled) { | |
e24ad6f1 | 64 | usb_ohci_init_pci(pci_bus, 3, -1); |
e69954b9 PB |
65 | } |
66 | scsi_hba = lsi_scsi_init(pci_bus, -1); | |
67 | for (n = 0; n < MAX_DISKS; n++) { | |
68 | if (bs_table[n]) { | |
69 | lsi_scsi_attach(scsi_hba, bs_table[n], n); | |
70 | } | |
71 | } | |
72 | for(n = 0; n < nb_nics; n++) { | |
73 | nd = &nd_table[n]; | |
74 | if (!nd->model) | |
75 | nd->model = done_smc ? "rtl8139" : "smc91c111"; | |
76 | if (strcmp(nd->model, "smc91c111") == 0) { | |
d537cf6c | 77 | smc91c111_init(nd, 0x4e000000, pic[28]); |
e69954b9 | 78 | } else { |
abcebc7e | 79 | pci_nic_init(pci_bus, nd, -1); |
e69954b9 PB |
80 | } |
81 | } | |
82 | ||
83 | /* Memory map for RealView Emulation Baseboard: */ | |
84 | /* 0x10000000 System registers. */ | |
85 | /* 0x10001000 System controller. */ | |
86 | /* 0x10002000 Two-Wire Serial Bus. */ | |
87 | /* 0x10003000 Reserved. */ | |
88 | /* 0x10004000 AACI. */ | |
89 | /* 0x10005000 MCI. */ | |
90 | /* 0x10006000 KMI0. */ | |
91 | /* 0x10007000 KMI1. */ | |
92 | /* 0x10008000 Character LCD. */ | |
93 | /* 0x10009000 UART0. */ | |
94 | /* 0x1000a000 UART1. */ | |
95 | /* 0x1000b000 UART2. */ | |
96 | /* 0x1000c000 UART3. */ | |
97 | /* 0x1000d000 SSPI. */ | |
98 | /* 0x1000e000 SCI. */ | |
99 | /* 0x1000f000 Reserved. */ | |
100 | /* 0x10010000 Watchdog. */ | |
101 | /* 0x10011000 Timer 0+1. */ | |
102 | /* 0x10012000 Timer 2+3. */ | |
103 | /* 0x10013000 GPIO 0. */ | |
104 | /* 0x10014000 GPIO 1. */ | |
105 | /* 0x10015000 GPIO 2. */ | |
106 | /* 0x10016000 Reserved. */ | |
7e1543c2 | 107 | /* 0x10017000 RTC. */ |
e69954b9 PB |
108 | /* 0x10018000 DMC. */ |
109 | /* 0x10019000 PCI controller config. */ | |
110 | /* 0x10020000 CLCD. */ | |
111 | /* 0x10030000 DMA Controller. */ | |
112 | /* 0x10040000 GIC1 (FIQ1). */ | |
113 | /* 0x10050000 GIC2 (IRQ1). */ | |
114 | /* 0x10060000 GIC3 (FIQ2). */ | |
115 | /* 0x10070000 GIC4 (IRQ2). */ | |
116 | /* 0x10080000 SMC. */ | |
117 | /* 0x40000000 NOR flash. */ | |
118 | /* 0x44000000 DoC flash. */ | |
119 | /* 0x48000000 SRAM. */ | |
120 | /* 0x4c000000 Configuration flash. */ | |
121 | /* 0x4e000000 Ethernet. */ | |
122 | /* 0x4f000000 USB. */ | |
123 | /* 0x50000000 PISMO. */ | |
124 | /* 0x54000000 PISMO. */ | |
125 | /* 0x58000000 PISMO. */ | |
126 | /* 0x5c000000 PISMO. */ | |
127 | /* 0x60000000 PCI. */ | |
128 | /* 0x61000000 PCI Self Config. */ | |
129 | /* 0x62000000 PCI Config. */ | |
130 | /* 0x63000000 PCI IO. */ | |
131 | /* 0x64000000 PCI mem 0. */ | |
132 | /* 0x68000000 PCI mem 1. */ | |
133 | /* 0x6c000000 PCI mem 2. */ | |
134 | ||
daf90626 | 135 | arm_load_kernel(env, ram_size, kernel_filename, kernel_cmdline, |
9d551997 | 136 | initrd_filename, 0x33b, 0x0); |
e69954b9 PB |
137 | } |
138 | ||
139 | QEMUMachine realview_machine = { | |
140 | "realview", | |
141 | "ARM RealView Emulation Baseboard (ARM926EJ-S)", | |
142 | realview_init | |
143 | }; |