]>
Commit | Line | Data |
---|---|---|
9a64fbe4 | 1 | /* |
a541f297 | 2 | * QEMU PPC PREP hardware System Emulator |
5fafdf24 | 3 | * |
47103572 | 4 | * Copyright (c) 2003-2007 Jocelyn Mayer |
5fafdf24 | 5 | * |
a541f297 FB |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
9a64fbe4 | 23 | */ |
87ecb68b PB |
24 | #include "hw.h" |
25 | #include "nvram.h" | |
26 | #include "pc.h" | |
27 | #include "fdc.h" | |
28 | #include "net.h" | |
29 | #include "sysemu.h" | |
30 | #include "isa.h" | |
31 | #include "pci.h" | |
18e08a55 MT |
32 | #include "prep_pci.h" |
33 | #include "usb-ohci.h" | |
87ecb68b PB |
34 | #include "ppc.h" |
35 | #include "boards.h" | |
3b3fb322 | 36 | #include "qemu-log.h" |
ec82026c | 37 | #include "ide.h" |
ca20cf32 | 38 | #include "loader.h" |
1d914fa0 | 39 | #include "mc146818rtc.h" |
2446333c | 40 | #include "blockdev.h" |
9fddaa0c | 41 | |
9a64fbe4 | 42 | //#define HARD_DEBUG_PPC_IO |
a541f297 | 43 | //#define DEBUG_PPC_IO |
9a64fbe4 | 44 | |
fe33cc71 JM |
45 | /* SMP is not enabled, for now */ |
46 | #define MAX_CPUS 1 | |
47 | ||
e4bcb14c TS |
48 | #define MAX_IDE_BUS 2 |
49 | ||
bba831e8 | 50 | #define BIOS_SIZE (1024 * 1024) |
b6b8bd18 FB |
51 | #define BIOS_FILENAME "ppc_rom.bin" |
52 | #define KERNEL_LOAD_ADDR 0x01000000 | |
53 | #define INITRD_LOAD_ADDR 0x01800000 | |
64201201 | 54 | |
9a64fbe4 FB |
55 | #if defined (HARD_DEBUG_PPC_IO) && !defined (DEBUG_PPC_IO) |
56 | #define DEBUG_PPC_IO | |
57 | #endif | |
58 | ||
59 | #if defined (HARD_DEBUG_PPC_IO) | |
001faf32 | 60 | #define PPC_IO_DPRINTF(fmt, ...) \ |
9a64fbe4 | 61 | do { \ |
8fec2b8c | 62 | if (qemu_loglevel_mask(CPU_LOG_IOPORT)) { \ |
001faf32 | 63 | qemu_log("%s: " fmt, __func__ , ## __VA_ARGS__); \ |
9a64fbe4 | 64 | } else { \ |
001faf32 | 65 | printf("%s : " fmt, __func__ , ## __VA_ARGS__); \ |
9a64fbe4 FB |
66 | } \ |
67 | } while (0) | |
68 | #elif defined (DEBUG_PPC_IO) | |
0bf9e31a BS |
69 | #define PPC_IO_DPRINTF(fmt, ...) \ |
70 | qemu_log_mask(CPU_LOG_IOPORT, fmt, ## __VA_ARGS__) | |
9a64fbe4 | 71 | #else |
001faf32 | 72 | #define PPC_IO_DPRINTF(fmt, ...) do { } while (0) |
9a64fbe4 FB |
73 | #endif |
74 | ||
64201201 | 75 | /* Constants for devices init */ |
a541f297 FB |
76 | static const int ide_iobase[2] = { 0x1f0, 0x170 }; |
77 | static const int ide_iobase2[2] = { 0x3f6, 0x376 }; | |
78 | static const int ide_irq[2] = { 13, 13 }; | |
79 | ||
80 | #define NE2000_NB_MAX 6 | |
81 | ||
82 | static uint32_t ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 }; | |
83 | static int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 }; | |
9a64fbe4 | 84 | |
64d7e9a4 | 85 | //static ISADevice *pit; |
64201201 FB |
86 | |
87 | /* ISA IO ports bridge */ | |
9a64fbe4 FB |
88 | #define PPC_IO_BASE 0x80000000 |
89 | ||
b1d8e52e | 90 | #if 0 |
64201201 | 91 | /* Speaker port 0x61 */ |
b1d8e52e BS |
92 | static int speaker_data_on; |
93 | static int dummy_refresh_clock; | |
94 | #endif | |
64201201 | 95 | |
36081602 | 96 | static void speaker_ioport_write (void *opaque, uint32_t addr, uint32_t val) |
9a64fbe4 | 97 | { |
a541f297 | 98 | #if 0 |
64201201 FB |
99 | speaker_data_on = (val >> 1) & 1; |
100 | pit_set_gate(pit, 2, val & 1); | |
a541f297 | 101 | #endif |
9a64fbe4 FB |
102 | } |
103 | ||
47103572 | 104 | static uint32_t speaker_ioport_read (void *opaque, uint32_t addr) |
9a64fbe4 | 105 | { |
a541f297 | 106 | #if 0 |
64201201 | 107 | int out; |
74475455 | 108 | out = pit_get_out(pit, 2, qemu_get_clock_ns(vm_clock)); |
64201201 FB |
109 | dummy_refresh_clock ^= 1; |
110 | return (speaker_data_on << 1) | pit_get_gate(pit, 2) | (out << 5) | | |
47103572 | 111 | (dummy_refresh_clock << 4); |
a541f297 | 112 | #endif |
64201201 | 113 | return 0; |
9a64fbe4 FB |
114 | } |
115 | ||
64201201 FB |
116 | /* PCI intack register */ |
117 | /* Read-only register (?) */ | |
47103572 | 118 | static void _PPC_intack_write (void *opaque, |
c227f099 | 119 | target_phys_addr_t addr, uint32_t value) |
64201201 | 120 | { |
90e189ec BS |
121 | #if 0 |
122 | printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr, | |
123 | value); | |
124 | #endif | |
64201201 FB |
125 | } |
126 | ||
c227f099 | 127 | static inline uint32_t _PPC_intack_read(target_phys_addr_t addr) |
64201201 FB |
128 | { |
129 | uint32_t retval = 0; | |
130 | ||
4dd8c138 | 131 | if ((addr & 0xf) == 0) |
3de388f6 | 132 | retval = pic_intack_read(isa_pic); |
90e189ec BS |
133 | #if 0 |
134 | printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr, | |
135 | retval); | |
136 | #endif | |
64201201 FB |
137 | |
138 | return retval; | |
139 | } | |
140 | ||
c227f099 | 141 | static uint32_t PPC_intack_readb (void *opaque, target_phys_addr_t addr) |
64201201 FB |
142 | { |
143 | return _PPC_intack_read(addr); | |
144 | } | |
145 | ||
c227f099 | 146 | static uint32_t PPC_intack_readw (void *opaque, target_phys_addr_t addr) |
9a64fbe4 | 147 | { |
64201201 | 148 | return _PPC_intack_read(addr); |
9a64fbe4 FB |
149 | } |
150 | ||
c227f099 | 151 | static uint32_t PPC_intack_readl (void *opaque, target_phys_addr_t addr) |
9a64fbe4 | 152 | { |
64201201 | 153 | return _PPC_intack_read(addr); |
9a64fbe4 FB |
154 | } |
155 | ||
d60efc6b | 156 | static CPUWriteMemoryFunc * const PPC_intack_write[] = { |
64201201 FB |
157 | &_PPC_intack_write, |
158 | &_PPC_intack_write, | |
159 | &_PPC_intack_write, | |
160 | }; | |
161 | ||
d60efc6b | 162 | static CPUReadMemoryFunc * const PPC_intack_read[] = { |
64201201 FB |
163 | &PPC_intack_readb, |
164 | &PPC_intack_readw, | |
165 | &PPC_intack_readl, | |
166 | }; | |
167 | ||
168 | /* PowerPC control and status registers */ | |
169 | #if 0 // Not used | |
170 | static struct { | |
171 | /* IDs */ | |
172 | uint32_t veni_devi; | |
173 | uint32_t revi; | |
174 | /* Control and status */ | |
175 | uint32_t gcsr; | |
176 | uint32_t xcfr; | |
177 | uint32_t ct32; | |
178 | uint32_t mcsr; | |
179 | /* General purpose registers */ | |
180 | uint32_t gprg[6]; | |
181 | /* Exceptions */ | |
182 | uint32_t feen; | |
183 | uint32_t fest; | |
184 | uint32_t fema; | |
185 | uint32_t fecl; | |
186 | uint32_t eeen; | |
187 | uint32_t eest; | |
188 | uint32_t eecl; | |
189 | uint32_t eeint; | |
190 | uint32_t eemck0; | |
191 | uint32_t eemck1; | |
192 | /* Error diagnostic */ | |
193 | } XCSR; | |
64201201 | 194 | |
36081602 | 195 | static void PPC_XCSR_writeb (void *opaque, |
c227f099 | 196 | target_phys_addr_t addr, uint32_t value) |
64201201 | 197 | { |
90e189ec BS |
198 | printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr, |
199 | value); | |
64201201 FB |
200 | } |
201 | ||
36081602 | 202 | static void PPC_XCSR_writew (void *opaque, |
c227f099 | 203 | target_phys_addr_t addr, uint32_t value) |
9a64fbe4 | 204 | { |
90e189ec BS |
205 | printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr, |
206 | value); | |
9a64fbe4 FB |
207 | } |
208 | ||
36081602 | 209 | static void PPC_XCSR_writel (void *opaque, |
c227f099 | 210 | target_phys_addr_t addr, uint32_t value) |
9a64fbe4 | 211 | { |
90e189ec BS |
212 | printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr, |
213 | value); | |
9a64fbe4 FB |
214 | } |
215 | ||
c227f099 | 216 | static uint32_t PPC_XCSR_readb (void *opaque, target_phys_addr_t addr) |
64201201 FB |
217 | { |
218 | uint32_t retval = 0; | |
9a64fbe4 | 219 | |
90e189ec BS |
220 | printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr, |
221 | retval); | |
9a64fbe4 | 222 | |
64201201 FB |
223 | return retval; |
224 | } | |
225 | ||
c227f099 | 226 | static uint32_t PPC_XCSR_readw (void *opaque, target_phys_addr_t addr) |
9a64fbe4 | 227 | { |
64201201 FB |
228 | uint32_t retval = 0; |
229 | ||
90e189ec BS |
230 | printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr, |
231 | retval); | |
64201201 FB |
232 | |
233 | return retval; | |
9a64fbe4 FB |
234 | } |
235 | ||
c227f099 | 236 | static uint32_t PPC_XCSR_readl (void *opaque, target_phys_addr_t addr) |
9a64fbe4 FB |
237 | { |
238 | uint32_t retval = 0; | |
239 | ||
90e189ec BS |
240 | printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr, |
241 | retval); | |
9a64fbe4 FB |
242 | |
243 | return retval; | |
244 | } | |
245 | ||
d60efc6b | 246 | static CPUWriteMemoryFunc * const PPC_XCSR_write[] = { |
64201201 FB |
247 | &PPC_XCSR_writeb, |
248 | &PPC_XCSR_writew, | |
249 | &PPC_XCSR_writel, | |
9a64fbe4 FB |
250 | }; |
251 | ||
d60efc6b | 252 | static CPUReadMemoryFunc * const PPC_XCSR_read[] = { |
64201201 FB |
253 | &PPC_XCSR_readb, |
254 | &PPC_XCSR_readw, | |
255 | &PPC_XCSR_readl, | |
9a64fbe4 | 256 | }; |
b6b8bd18 | 257 | #endif |
9a64fbe4 | 258 | |
64201201 | 259 | /* Fake super-io ports for PREP platform (Intel 82378ZB) */ |
c227f099 | 260 | typedef struct sysctrl_t { |
c4781a51 | 261 | qemu_irq reset_irq; |
43a34704 | 262 | M48t59State *nvram; |
64201201 FB |
263 | uint8_t state; |
264 | uint8_t syscontrol; | |
265 | uint8_t fake_io[2]; | |
da9b266b | 266 | int contiguous_map; |
fb3444b8 | 267 | int endian; |
c227f099 | 268 | } sysctrl_t; |
9a64fbe4 | 269 | |
64201201 FB |
270 | enum { |
271 | STATE_HARDFILE = 0x01, | |
9a64fbe4 | 272 | }; |
9a64fbe4 | 273 | |
c227f099 | 274 | static sysctrl_t *sysctrl; |
9a64fbe4 | 275 | |
a541f297 | 276 | static void PREP_io_write (void *opaque, uint32_t addr, uint32_t val) |
9a64fbe4 | 277 | { |
c227f099 | 278 | sysctrl_t *sysctrl = opaque; |
64201201 | 279 | |
aae9366a JM |
280 | PPC_IO_DPRINTF("0x%08" PRIx32 " => 0x%02" PRIx32 "\n", addr - PPC_IO_BASE, |
281 | val); | |
64201201 | 282 | sysctrl->fake_io[addr - 0x0398] = val; |
9a64fbe4 FB |
283 | } |
284 | ||
a541f297 | 285 | static uint32_t PREP_io_read (void *opaque, uint32_t addr) |
9a64fbe4 | 286 | { |
c227f099 | 287 | sysctrl_t *sysctrl = opaque; |
9a64fbe4 | 288 | |
aae9366a | 289 | PPC_IO_DPRINTF("0x%08" PRIx32 " <= 0x%02" PRIx32 "\n", addr - PPC_IO_BASE, |
64201201 FB |
290 | sysctrl->fake_io[addr - 0x0398]); |
291 | return sysctrl->fake_io[addr - 0x0398]; | |
292 | } | |
9a64fbe4 | 293 | |
a541f297 | 294 | static void PREP_io_800_writeb (void *opaque, uint32_t addr, uint32_t val) |
9a64fbe4 | 295 | { |
c227f099 | 296 | sysctrl_t *sysctrl = opaque; |
64201201 | 297 | |
aae9366a JM |
298 | PPC_IO_DPRINTF("0x%08" PRIx32 " => 0x%02" PRIx32 "\n", |
299 | addr - PPC_IO_BASE, val); | |
9a64fbe4 FB |
300 | switch (addr) { |
301 | case 0x0092: | |
302 | /* Special port 92 */ | |
303 | /* Check soft reset asked */ | |
64201201 | 304 | if (val & 0x01) { |
c4781a51 JM |
305 | qemu_irq_raise(sysctrl->reset_irq); |
306 | } else { | |
307 | qemu_irq_lower(sysctrl->reset_irq); | |
9a64fbe4 FB |
308 | } |
309 | /* Check LE mode */ | |
64201201 | 310 | if (val & 0x02) { |
fb3444b8 FB |
311 | sysctrl->endian = 1; |
312 | } else { | |
313 | sysctrl->endian = 0; | |
9a64fbe4 FB |
314 | } |
315 | break; | |
64201201 FB |
316 | case 0x0800: |
317 | /* Motorola CPU configuration register : read-only */ | |
318 | break; | |
319 | case 0x0802: | |
320 | /* Motorola base module feature register : read-only */ | |
321 | break; | |
322 | case 0x0803: | |
323 | /* Motorola base module status register : read-only */ | |
324 | break; | |
9a64fbe4 | 325 | case 0x0808: |
64201201 FB |
326 | /* Hardfile light register */ |
327 | if (val & 1) | |
328 | sysctrl->state |= STATE_HARDFILE; | |
329 | else | |
330 | sysctrl->state &= ~STATE_HARDFILE; | |
9a64fbe4 FB |
331 | break; |
332 | case 0x0810: | |
333 | /* Password protect 1 register */ | |
64201201 FB |
334 | if (sysctrl->nvram != NULL) |
335 | m48t59_toggle_lock(sysctrl->nvram, 1); | |
9a64fbe4 FB |
336 | break; |
337 | case 0x0812: | |
338 | /* Password protect 2 register */ | |
64201201 FB |
339 | if (sysctrl->nvram != NULL) |
340 | m48t59_toggle_lock(sysctrl->nvram, 2); | |
9a64fbe4 FB |
341 | break; |
342 | case 0x0814: | |
64201201 | 343 | /* L2 invalidate register */ |
c68ea704 | 344 | // tlb_flush(first_cpu, 1); |
9a64fbe4 FB |
345 | break; |
346 | case 0x081C: | |
347 | /* system control register */ | |
64201201 | 348 | sysctrl->syscontrol = val & 0x0F; |
9a64fbe4 FB |
349 | break; |
350 | case 0x0850: | |
351 | /* I/O map type register */ | |
da9b266b | 352 | sysctrl->contiguous_map = val & 0x01; |
9a64fbe4 FB |
353 | break; |
354 | default: | |
aae9366a JM |
355 | printf("ERROR: unaffected IO port write: %04" PRIx32 |
356 | " => %02" PRIx32"\n", addr, val); | |
9a64fbe4 FB |
357 | break; |
358 | } | |
359 | } | |
360 | ||
a541f297 | 361 | static uint32_t PREP_io_800_readb (void *opaque, uint32_t addr) |
9a64fbe4 | 362 | { |
c227f099 | 363 | sysctrl_t *sysctrl = opaque; |
9a64fbe4 FB |
364 | uint32_t retval = 0xFF; |
365 | ||
366 | switch (addr) { | |
367 | case 0x0092: | |
368 | /* Special port 92 */ | |
64201201 FB |
369 | retval = 0x00; |
370 | break; | |
371 | case 0x0800: | |
372 | /* Motorola CPU configuration register */ | |
373 | retval = 0xEF; /* MPC750 */ | |
374 | break; | |
375 | case 0x0802: | |
376 | /* Motorola Base module feature register */ | |
377 | retval = 0xAD; /* No ESCC, PMC slot neither ethernet */ | |
378 | break; | |
379 | case 0x0803: | |
380 | /* Motorola base module status register */ | |
381 | retval = 0xE0; /* Standard MPC750 */ | |
9a64fbe4 FB |
382 | break; |
383 | case 0x080C: | |
384 | /* Equipment present register: | |
385 | * no L2 cache | |
386 | * no upgrade processor | |
387 | * no cards in PCI slots | |
388 | * SCSI fuse is bad | |
389 | */ | |
64201201 FB |
390 | retval = 0x3C; |
391 | break; | |
392 | case 0x0810: | |
393 | /* Motorola base module extended feature register */ | |
394 | retval = 0x39; /* No USB, CF and PCI bridge. NVRAM present */ | |
9a64fbe4 | 395 | break; |
da9b266b FB |
396 | case 0x0814: |
397 | /* L2 invalidate: don't care */ | |
398 | break; | |
9a64fbe4 FB |
399 | case 0x0818: |
400 | /* Keylock */ | |
401 | retval = 0x00; | |
402 | break; | |
403 | case 0x081C: | |
404 | /* system control register | |
405 | * 7 - 6 / 1 - 0: L2 cache enable | |
406 | */ | |
64201201 | 407 | retval = sysctrl->syscontrol; |
9a64fbe4 FB |
408 | break; |
409 | case 0x0823: | |
410 | /* */ | |
411 | retval = 0x03; /* no L2 cache */ | |
412 | break; | |
413 | case 0x0850: | |
414 | /* I/O map type register */ | |
da9b266b | 415 | retval = sysctrl->contiguous_map; |
9a64fbe4 FB |
416 | break; |
417 | default: | |
aae9366a | 418 | printf("ERROR: unaffected IO port: %04" PRIx32 " read\n", addr); |
9a64fbe4 FB |
419 | break; |
420 | } | |
aae9366a JM |
421 | PPC_IO_DPRINTF("0x%08" PRIx32 " <= 0x%02" PRIx32 "\n", |
422 | addr - PPC_IO_BASE, retval); | |
9a64fbe4 FB |
423 | |
424 | return retval; | |
425 | } | |
426 | ||
c227f099 AL |
427 | static inline target_phys_addr_t prep_IO_address(sysctrl_t *sysctrl, |
428 | target_phys_addr_t addr) | |
da9b266b FB |
429 | { |
430 | if (sysctrl->contiguous_map == 0) { | |
431 | /* 64 KB contiguous space for IOs */ | |
432 | addr &= 0xFFFF; | |
433 | } else { | |
434 | /* 8 MB non-contiguous space for IOs */ | |
435 | addr = (addr & 0x1F) | ((addr & 0x007FFF000) >> 7); | |
436 | } | |
437 | ||
438 | return addr; | |
439 | } | |
440 | ||
c227f099 | 441 | static void PPC_prep_io_writeb (void *opaque, target_phys_addr_t addr, |
da9b266b FB |
442 | uint32_t value) |
443 | { | |
c227f099 | 444 | sysctrl_t *sysctrl = opaque; |
da9b266b FB |
445 | |
446 | addr = prep_IO_address(sysctrl, addr); | |
afcea8cb | 447 | cpu_outb(addr, value); |
da9b266b FB |
448 | } |
449 | ||
c227f099 | 450 | static uint32_t PPC_prep_io_readb (void *opaque, target_phys_addr_t addr) |
da9b266b | 451 | { |
c227f099 | 452 | sysctrl_t *sysctrl = opaque; |
da9b266b FB |
453 | uint32_t ret; |
454 | ||
455 | addr = prep_IO_address(sysctrl, addr); | |
afcea8cb | 456 | ret = cpu_inb(addr); |
da9b266b FB |
457 | |
458 | return ret; | |
459 | } | |
460 | ||
c227f099 | 461 | static void PPC_prep_io_writew (void *opaque, target_phys_addr_t addr, |
da9b266b FB |
462 | uint32_t value) |
463 | { | |
c227f099 | 464 | sysctrl_t *sysctrl = opaque; |
da9b266b FB |
465 | |
466 | addr = prep_IO_address(sysctrl, addr); | |
90e189ec | 467 | PPC_IO_DPRINTF("0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", addr, value); |
afcea8cb | 468 | cpu_outw(addr, value); |
da9b266b FB |
469 | } |
470 | ||
c227f099 | 471 | static uint32_t PPC_prep_io_readw (void *opaque, target_phys_addr_t addr) |
da9b266b | 472 | { |
c227f099 | 473 | sysctrl_t *sysctrl = opaque; |
da9b266b FB |
474 | uint32_t ret; |
475 | ||
476 | addr = prep_IO_address(sysctrl, addr); | |
afcea8cb | 477 | ret = cpu_inw(addr); |
90e189ec | 478 | PPC_IO_DPRINTF("0x" TARGET_FMT_plx " <= 0x%08" PRIx32 "\n", addr, ret); |
da9b266b FB |
479 | |
480 | return ret; | |
481 | } | |
482 | ||
c227f099 | 483 | static void PPC_prep_io_writel (void *opaque, target_phys_addr_t addr, |
da9b266b FB |
484 | uint32_t value) |
485 | { | |
c227f099 | 486 | sysctrl_t *sysctrl = opaque; |
da9b266b FB |
487 | |
488 | addr = prep_IO_address(sysctrl, addr); | |
90e189ec | 489 | PPC_IO_DPRINTF("0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", addr, value); |
afcea8cb | 490 | cpu_outl(addr, value); |
da9b266b FB |
491 | } |
492 | ||
c227f099 | 493 | static uint32_t PPC_prep_io_readl (void *opaque, target_phys_addr_t addr) |
da9b266b | 494 | { |
c227f099 | 495 | sysctrl_t *sysctrl = opaque; |
da9b266b FB |
496 | uint32_t ret; |
497 | ||
498 | addr = prep_IO_address(sysctrl, addr); | |
afcea8cb | 499 | ret = cpu_inl(addr); |
90e189ec | 500 | PPC_IO_DPRINTF("0x" TARGET_FMT_plx " <= 0x%08" PRIx32 "\n", addr, ret); |
da9b266b FB |
501 | |
502 | return ret; | |
503 | } | |
504 | ||
d60efc6b | 505 | static CPUWriteMemoryFunc * const PPC_prep_io_write[] = { |
da9b266b FB |
506 | &PPC_prep_io_writeb, |
507 | &PPC_prep_io_writew, | |
508 | &PPC_prep_io_writel, | |
509 | }; | |
510 | ||
d60efc6b | 511 | static CPUReadMemoryFunc * const PPC_prep_io_read[] = { |
da9b266b FB |
512 | &PPC_prep_io_readb, |
513 | &PPC_prep_io_readw, | |
514 | &PPC_prep_io_readl, | |
515 | }; | |
516 | ||
64201201 | 517 | #define NVRAM_SIZE 0x2000 |
a541f297 | 518 | |
4556bd8b BS |
519 | static void cpu_request_exit(void *opaque, int irq, int level) |
520 | { | |
521 | CPUState *env = cpu_single_env; | |
522 | ||
523 | if (env && level) { | |
524 | cpu_exit(env); | |
525 | } | |
526 | } | |
527 | ||
26aa7d72 | 528 | /* PowerPC PREP hardware initialisation */ |
c227f099 | 529 | static void ppc_prep_init (ram_addr_t ram_size, |
3023f332 | 530 | const char *boot_device, |
b881c2c6 | 531 | const char *kernel_filename, |
94fc95cd JM |
532 | const char *kernel_cmdline, |
533 | const char *initrd_filename, | |
534 | const char *cpu_model) | |
a541f297 | 535 | { |
49a2942d | 536 | CPUState *env = NULL; |
5cea8590 | 537 | char *filename; |
c227f099 | 538 | nvram_t nvram; |
43a34704 | 539 | M48t59State *m48t59; |
a541f297 | 540 | int PPC_io_memory; |
4157a662 | 541 | int linux_boot, i, nb_nics1, bios_size; |
c227f099 | 542 | ram_addr_t ram_offset, bios_offset; |
093209cd BS |
543 | uint32_t kernel_base, initrd_base; |
544 | long kernel_size, initrd_size; | |
46e50e9d | 545 | PCIBus *pci_bus; |
d537cf6c | 546 | qemu_irq *i8259; |
4556bd8b | 547 | qemu_irq *cpu_exit_irq; |
28c5af54 | 548 | int ppc_boot_device; |
f455e98c | 549 | DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; |
fd8014e1 | 550 | DriveInfo *fd[MAX_FD]; |
64201201 | 551 | |
c227f099 | 552 | sysctrl = qemu_mallocz(sizeof(sysctrl_t)); |
a541f297 FB |
553 | |
554 | linux_boot = (kernel_filename != NULL); | |
0a032cbe | 555 | |
c68ea704 | 556 | /* init CPUs */ |
94fc95cd | 557 | if (cpu_model == NULL) |
b37fc148 | 558 | cpu_model = "602"; |
fe33cc71 | 559 | for (i = 0; i < smp_cpus; i++) { |
aaed909a FB |
560 | env = cpu_init(cpu_model); |
561 | if (!env) { | |
562 | fprintf(stderr, "Unable to find PowerPC CPU definition\n"); | |
563 | exit(1); | |
564 | } | |
4018bae9 JM |
565 | if (env->flags & POWERPC_FLAG_RTC_CLK) { |
566 | /* POWER / PowerPC 601 RTC clock frequency is 7.8125 MHz */ | |
567 | cpu_ppc_tb_init(env, 7812500UL); | |
568 | } else { | |
569 | /* Set time-base frequency to 100 Mhz */ | |
570 | cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL); | |
571 | } | |
d84bda46 | 572 | qemu_register_reset((QEMUResetHandler*)&cpu_reset, env); |
fe33cc71 | 573 | } |
a541f297 FB |
574 | |
575 | /* allocate RAM */ | |
1724f049 | 576 | ram_offset = qemu_ram_alloc(NULL, "ppc_prep.ram", ram_size); |
cf9c147c BS |
577 | cpu_register_physical_memory(0, ram_size, ram_offset); |
578 | ||
64201201 | 579 | /* allocate and load BIOS */ |
1724f049 | 580 | bios_offset = qemu_ram_alloc(NULL, "ppc_prep.bios", BIOS_SIZE); |
1192dad8 JM |
581 | if (bios_name == NULL) |
582 | bios_name = BIOS_FILENAME; | |
5cea8590 PB |
583 | filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); |
584 | if (filename) { | |
585 | bios_size = get_image_size(filename); | |
586 | } else { | |
587 | bios_size = -1; | |
588 | } | |
dcac9679 | 589 | if (bios_size > 0 && bios_size <= BIOS_SIZE) { |
c227f099 | 590 | target_phys_addr_t bios_addr; |
dcac9679 PB |
591 | bios_size = (bios_size + 0xfff) & ~0xfff; |
592 | bios_addr = (uint32_t)(-bios_size); | |
593 | cpu_register_physical_memory(bios_addr, bios_size, | |
594 | bios_offset | IO_MEM_ROM); | |
5cea8590 | 595 | bios_size = load_image_targphys(filename, bios_addr, bios_size); |
dcac9679 | 596 | } |
4157a662 | 597 | if (bios_size < 0 || bios_size > BIOS_SIZE) { |
5cea8590 PB |
598 | hw_error("qemu: could not load PPC PREP bios '%s'\n", bios_name); |
599 | } | |
600 | if (filename) { | |
601 | qemu_free(filename); | |
64201201 | 602 | } |
26aa7d72 | 603 | |
a541f297 | 604 | if (linux_boot) { |
64201201 | 605 | kernel_base = KERNEL_LOAD_ADDR; |
a541f297 | 606 | /* now we can load the kernel */ |
dcac9679 PB |
607 | kernel_size = load_image_targphys(kernel_filename, kernel_base, |
608 | ram_size - kernel_base); | |
64201201 | 609 | if (kernel_size < 0) { |
2ac71179 | 610 | hw_error("qemu: could not load kernel '%s'\n", kernel_filename); |
a541f297 FB |
611 | exit(1); |
612 | } | |
613 | /* load initrd */ | |
a541f297 | 614 | if (initrd_filename) { |
64201201 | 615 | initrd_base = INITRD_LOAD_ADDR; |
dcac9679 PB |
616 | initrd_size = load_image_targphys(initrd_filename, initrd_base, |
617 | ram_size - initrd_base); | |
a541f297 | 618 | if (initrd_size < 0) { |
2ac71179 | 619 | hw_error("qemu: could not load initial ram disk '%s'\n", |
4a057712 | 620 | initrd_filename); |
a541f297 | 621 | } |
64201201 FB |
622 | } else { |
623 | initrd_base = 0; | |
624 | initrd_size = 0; | |
a541f297 | 625 | } |
6ac0e82d | 626 | ppc_boot_device = 'm'; |
a541f297 | 627 | } else { |
64201201 FB |
628 | kernel_base = 0; |
629 | kernel_size = 0; | |
630 | initrd_base = 0; | |
631 | initrd_size = 0; | |
28c5af54 JM |
632 | ppc_boot_device = '\0'; |
633 | /* For now, OHW cannot boot from the network. */ | |
0d913fdb JM |
634 | for (i = 0; boot_device[i] != '\0'; i++) { |
635 | if (boot_device[i] >= 'a' && boot_device[i] <= 'f') { | |
636 | ppc_boot_device = boot_device[i]; | |
28c5af54 | 637 | break; |
0d913fdb | 638 | } |
28c5af54 JM |
639 | } |
640 | if (ppc_boot_device == '\0') { | |
641 | fprintf(stderr, "No valid boot device for Mac99 machine\n"); | |
642 | exit(1); | |
643 | } | |
a541f297 FB |
644 | } |
645 | ||
64201201 | 646 | isa_mem_base = 0xc0000000; |
dd37a5e4 | 647 | if (PPC_INPUT(env) != PPC_FLAGS_INPUT_6xx) { |
2ac71179 | 648 | hw_error("Only 6xx bus is supported on PREP machine\n"); |
dd37a5e4 | 649 | } |
24be5ae3 | 650 | i8259 = i8259_init(first_cpu->irq_inputs[PPC6xx_INPUT_INT]); |
d537cf6c | 651 | pci_bus = pci_prep_init(i8259); |
b37fc148 GH |
652 | /* Hmm, prep has no pci-isa bridge ??? */ |
653 | isa_bus_new(NULL); | |
654 | isa_bus_irqs(i8259); | |
da9b266b FB |
655 | // pci_bus = i440fx_init(); |
656 | /* Register 8 MB of ISA IO space (needed for non-contiguous map) */ | |
1eed09cb | 657 | PPC_io_memory = cpu_register_io_memory(PPC_prep_io_read, |
2507c12a | 658 | PPC_prep_io_write, sysctrl, |
8cb7da56 | 659 | DEVICE_LITTLE_ENDIAN); |
da9b266b | 660 | cpu_register_physical_memory(0x80000000, 0x00800000, PPC_io_memory); |
64201201 | 661 | |
a541f297 | 662 | /* init basic PC hardware */ |
78895427 | 663 | pci_vga_init(pci_bus); |
64201201 | 664 | // openpic = openpic_init(0x00000000, 0xF0000000, 1); |
64d7e9a4 | 665 | // pit = pit_init(0x40, 0); |
7d932dfd | 666 | rtc_init(2000, NULL); |
a541f297 | 667 | |
ac0be998 GH |
668 | if (serial_hds[0]) |
669 | serial_isa_init(0, serial_hds[0]); | |
a541f297 FB |
670 | nb_nics1 = nb_nics; |
671 | if (nb_nics1 > NE2000_NB_MAX) | |
672 | nb_nics1 = NE2000_NB_MAX; | |
673 | for(i = 0; i < nb_nics1; i++) { | |
5652ef78 | 674 | if (nd_table[i].model == NULL) { |
9203f520 | 675 | nd_table[i].model = qemu_strdup("ne2k_isa"); |
5652ef78 AJ |
676 | } |
677 | if (strcmp(nd_table[i].model, "ne2k_isa") == 0) { | |
9453c5bc | 678 | isa_ne2000_init(ne2000_io[i], ne2000_irq[i], &nd_table[i]); |
a41b2ff2 | 679 | } else { |
07caea31 | 680 | pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL); |
a41b2ff2 | 681 | } |
a541f297 | 682 | } |
a541f297 | 683 | |
75717903 | 684 | ide_drive_get(hd, MAX_IDE_BUS); |
81aa0647 | 685 | for(i = 0; i < MAX_IDE_BUS; i++) { |
dea21e97 | 686 | isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i], |
e4bcb14c TS |
687 | hd[2 * i], |
688 | hd[2 * i + 1]); | |
a541f297 | 689 | } |
11d23c35 | 690 | isa_create_simple("i8042"); |
4556bd8b BS |
691 | |
692 | cpu_exit_irq = qemu_allocate_irqs(cpu_request_exit, NULL, 1); | |
693 | DMA_init(1, cpu_exit_irq); | |
694 | ||
a541f297 FB |
695 | // SB16_init(); |
696 | ||
e4bcb14c | 697 | for(i = 0; i < MAX_FD; i++) { |
fd8014e1 | 698 | fd[i] = drive_get(IF_FLOPPY, 0, i); |
e4bcb14c | 699 | } |
86c86157 | 700 | fdctrl_init_isa(fd); |
a541f297 | 701 | |
64201201 FB |
702 | /* Register speaker port */ |
703 | register_ioport_read(0x61, 1, 1, speaker_ioport_read, NULL); | |
704 | register_ioport_write(0x61, 1, 1, speaker_ioport_write, NULL); | |
a541f297 | 705 | /* Register fake IO ports for PREP */ |
c4781a51 | 706 | sysctrl->reset_irq = first_cpu->irq_inputs[PPC6xx_INPUT_HRESET]; |
64201201 FB |
707 | register_ioport_read(0x398, 2, 1, &PREP_io_read, sysctrl); |
708 | register_ioport_write(0x398, 2, 1, &PREP_io_write, sysctrl); | |
a541f297 | 709 | /* System control ports */ |
64201201 FB |
710 | register_ioport_read(0x0092, 0x01, 1, &PREP_io_800_readb, sysctrl); |
711 | register_ioport_write(0x0092, 0x01, 1, &PREP_io_800_writeb, sysctrl); | |
712 | register_ioport_read(0x0800, 0x52, 1, &PREP_io_800_readb, sysctrl); | |
713 | register_ioport_write(0x0800, 0x52, 1, &PREP_io_800_writeb, sysctrl); | |
714 | /* PCI intack location */ | |
1eed09cb | 715 | PPC_io_memory = cpu_register_io_memory(PPC_intack_read, |
2507c12a | 716 | PPC_intack_write, NULL, |
8cb7da56 | 717 | DEVICE_LITTLE_ENDIAN); |
a541f297 | 718 | cpu_register_physical_memory(0xBFFFFFF0, 0x4, PPC_io_memory); |
64201201 | 719 | /* PowerPC control and status register group */ |
b6b8bd18 | 720 | #if 0 |
1eed09cb | 721 | PPC_io_memory = cpu_register_io_memory(PPC_XCSR_read, PPC_XCSR_write, |
8cb7da56 | 722 | NULL, DEVICE_LITTLE_ENDIAN); |
64201201 | 723 | cpu_register_physical_memory(0xFEFF0000, 0x1000, PPC_io_memory); |
b6b8bd18 | 724 | #endif |
a541f297 | 725 | |
0d92ed30 | 726 | if (usb_enabled) { |
a67ba3b6 | 727 | usb_ohci_init_pci(pci_bus, -1); |
0d92ed30 PB |
728 | } |
729 | ||
3cbee15b JM |
730 | m48t59 = m48t59_init(i8259[8], 0, 0x0074, NVRAM_SIZE, 59); |
731 | if (m48t59 == NULL) | |
64201201 | 732 | return; |
3cbee15b | 733 | sysctrl->nvram = m48t59; |
64201201 FB |
734 | |
735 | /* Initialise NVRAM */ | |
3cbee15b JM |
736 | nvram.opaque = m48t59; |
737 | nvram.read_fn = &m48t59_read; | |
738 | nvram.write_fn = &m48t59_write; | |
6ac0e82d | 739 | PPC_NVRAM_set_params(&nvram, NVRAM_SIZE, "PREP", ram_size, ppc_boot_device, |
64201201 | 740 | kernel_base, kernel_size, |
b6b8bd18 | 741 | kernel_cmdline, |
64201201 FB |
742 | initrd_base, initrd_size, |
743 | /* XXX: need an option to load a NVRAM image */ | |
b6b8bd18 FB |
744 | 0, |
745 | graphic_width, graphic_height, graphic_depth); | |
c0e564d5 FB |
746 | |
747 | /* Special port to get debug messages from Open-Firmware */ | |
748 | register_ioport_write(0x0F00, 4, 1, &PPC_debug_write, NULL); | |
a541f297 | 749 | } |
c0e564d5 | 750 | |
f80f9ec9 | 751 | static QEMUMachine prep_machine = { |
4b32e168 AL |
752 | .name = "prep", |
753 | .desc = "PowerPC PREP platform", | |
754 | .init = ppc_prep_init, | |
3d878caa | 755 | .max_cpus = MAX_CPUS, |
c0e564d5 | 756 | }; |
f80f9ec9 AL |
757 | |
758 | static void prep_machine_init(void) | |
759 | { | |
760 | qemu_register_machine(&prep_machine); | |
761 | } | |
762 | ||
763 | machine_init(prep_machine_init); |