]>
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" | |
32 | #include "ppc.h" | |
33 | #include "boards.h" | |
3b3fb322 | 34 | #include "qemu-log.h" |
9fddaa0c | 35 | |
9a64fbe4 | 36 | //#define HARD_DEBUG_PPC_IO |
a541f297 | 37 | //#define DEBUG_PPC_IO |
9a64fbe4 | 38 | |
fe33cc71 JM |
39 | /* SMP is not enabled, for now */ |
40 | #define MAX_CPUS 1 | |
41 | ||
e4bcb14c TS |
42 | #define MAX_IDE_BUS 2 |
43 | ||
b6b8bd18 FB |
44 | #define BIOS_FILENAME "ppc_rom.bin" |
45 | #define KERNEL_LOAD_ADDR 0x01000000 | |
46 | #define INITRD_LOAD_ADDR 0x01800000 | |
64201201 | 47 | |
9a64fbe4 FB |
48 | #if defined (HARD_DEBUG_PPC_IO) && !defined (DEBUG_PPC_IO) |
49 | #define DEBUG_PPC_IO | |
50 | #endif | |
51 | ||
52 | #if defined (HARD_DEBUG_PPC_IO) | |
53 | #define PPC_IO_DPRINTF(fmt, args...) \ | |
54 | do { \ | |
8fec2b8c | 55 | if (qemu_loglevel_mask(CPU_LOG_IOPORT)) { \ |
93fcfe39 | 56 | qemu_log("%s: " fmt, __func__ , ##args); \ |
9a64fbe4 FB |
57 | } else { \ |
58 | printf("%s : " fmt, __func__ , ##args); \ | |
59 | } \ | |
60 | } while (0) | |
61 | #elif defined (DEBUG_PPC_IO) | |
93fcfe39 | 62 | #define PPC_IO_DPRINTF(fmt, args...) qemu_log_mask(CPU_LOG_IOPORT, ## __VA_ARGS__) |
9a64fbe4 FB |
63 | #else |
64 | #define PPC_IO_DPRINTF(fmt, args...) do { } while (0) | |
65 | #endif | |
66 | ||
64201201 | 67 | /* Constants for devices init */ |
a541f297 FB |
68 | static const int ide_iobase[2] = { 0x1f0, 0x170 }; |
69 | static const int ide_iobase2[2] = { 0x3f6, 0x376 }; | |
70 | static const int ide_irq[2] = { 13, 13 }; | |
71 | ||
72 | #define NE2000_NB_MAX 6 | |
73 | ||
74 | static uint32_t ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 }; | |
75 | static int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 }; | |
9a64fbe4 | 76 | |
64201201 FB |
77 | //static PITState *pit; |
78 | ||
79 | /* ISA IO ports bridge */ | |
9a64fbe4 FB |
80 | #define PPC_IO_BASE 0x80000000 |
81 | ||
b1d8e52e | 82 | #if 0 |
64201201 | 83 | /* Speaker port 0x61 */ |
b1d8e52e BS |
84 | static int speaker_data_on; |
85 | static int dummy_refresh_clock; | |
86 | #endif | |
64201201 | 87 | |
36081602 | 88 | static void speaker_ioport_write (void *opaque, uint32_t addr, uint32_t val) |
9a64fbe4 | 89 | { |
a541f297 | 90 | #if 0 |
64201201 FB |
91 | speaker_data_on = (val >> 1) & 1; |
92 | pit_set_gate(pit, 2, val & 1); | |
a541f297 | 93 | #endif |
9a64fbe4 FB |
94 | } |
95 | ||
47103572 | 96 | static uint32_t speaker_ioport_read (void *opaque, uint32_t addr) |
9a64fbe4 | 97 | { |
a541f297 | 98 | #if 0 |
64201201 FB |
99 | int out; |
100 | out = pit_get_out(pit, 2, qemu_get_clock(vm_clock)); | |
101 | dummy_refresh_clock ^= 1; | |
102 | return (speaker_data_on << 1) | pit_get_gate(pit, 2) | (out << 5) | | |
47103572 | 103 | (dummy_refresh_clock << 4); |
a541f297 | 104 | #endif |
64201201 | 105 | return 0; |
9a64fbe4 FB |
106 | } |
107 | ||
64201201 FB |
108 | /* PCI intack register */ |
109 | /* Read-only register (?) */ | |
47103572 JM |
110 | static void _PPC_intack_write (void *opaque, |
111 | target_phys_addr_t addr, uint32_t value) | |
64201201 | 112 | { |
aae9366a | 113 | // printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value); |
64201201 FB |
114 | } |
115 | ||
b068d6a7 | 116 | static always_inline uint32_t _PPC_intack_read (target_phys_addr_t addr) |
64201201 FB |
117 | { |
118 | uint32_t retval = 0; | |
119 | ||
4dd8c138 | 120 | if ((addr & 0xf) == 0) |
3de388f6 | 121 | retval = pic_intack_read(isa_pic); |
aae9366a | 122 | // printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval); |
64201201 FB |
123 | |
124 | return retval; | |
125 | } | |
126 | ||
a4193c8a | 127 | static uint32_t PPC_intack_readb (void *opaque, target_phys_addr_t addr) |
64201201 FB |
128 | { |
129 | return _PPC_intack_read(addr); | |
130 | } | |
131 | ||
a4193c8a | 132 | static uint32_t PPC_intack_readw (void *opaque, target_phys_addr_t addr) |
9a64fbe4 | 133 | { |
f658b4db | 134 | #ifdef TARGET_WORDS_BIGENDIAN |
64201201 FB |
135 | return bswap16(_PPC_intack_read(addr)); |
136 | #else | |
137 | return _PPC_intack_read(addr); | |
f658b4db | 138 | #endif |
9a64fbe4 FB |
139 | } |
140 | ||
a4193c8a | 141 | static uint32_t PPC_intack_readl (void *opaque, target_phys_addr_t addr) |
9a64fbe4 | 142 | { |
f658b4db | 143 | #ifdef TARGET_WORDS_BIGENDIAN |
64201201 FB |
144 | return bswap32(_PPC_intack_read(addr)); |
145 | #else | |
146 | return _PPC_intack_read(addr); | |
f658b4db | 147 | #endif |
9a64fbe4 FB |
148 | } |
149 | ||
64201201 FB |
150 | static CPUWriteMemoryFunc *PPC_intack_write[] = { |
151 | &_PPC_intack_write, | |
152 | &_PPC_intack_write, | |
153 | &_PPC_intack_write, | |
154 | }; | |
155 | ||
156 | static CPUReadMemoryFunc *PPC_intack_read[] = { | |
157 | &PPC_intack_readb, | |
158 | &PPC_intack_readw, | |
159 | &PPC_intack_readl, | |
160 | }; | |
161 | ||
162 | /* PowerPC control and status registers */ | |
163 | #if 0 // Not used | |
164 | static struct { | |
165 | /* IDs */ | |
166 | uint32_t veni_devi; | |
167 | uint32_t revi; | |
168 | /* Control and status */ | |
169 | uint32_t gcsr; | |
170 | uint32_t xcfr; | |
171 | uint32_t ct32; | |
172 | uint32_t mcsr; | |
173 | /* General purpose registers */ | |
174 | uint32_t gprg[6]; | |
175 | /* Exceptions */ | |
176 | uint32_t feen; | |
177 | uint32_t fest; | |
178 | uint32_t fema; | |
179 | uint32_t fecl; | |
180 | uint32_t eeen; | |
181 | uint32_t eest; | |
182 | uint32_t eecl; | |
183 | uint32_t eeint; | |
184 | uint32_t eemck0; | |
185 | uint32_t eemck1; | |
186 | /* Error diagnostic */ | |
187 | } XCSR; | |
64201201 | 188 | |
36081602 JM |
189 | static void PPC_XCSR_writeb (void *opaque, |
190 | target_phys_addr_t addr, uint32_t value) | |
64201201 | 191 | { |
aae9366a | 192 | printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value); |
64201201 FB |
193 | } |
194 | ||
36081602 JM |
195 | static void PPC_XCSR_writew (void *opaque, |
196 | target_phys_addr_t addr, uint32_t value) | |
9a64fbe4 | 197 | { |
f658b4db | 198 | #ifdef TARGET_WORDS_BIGENDIAN |
64201201 | 199 | value = bswap16(value); |
f658b4db | 200 | #endif |
aae9366a | 201 | printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value); |
9a64fbe4 FB |
202 | } |
203 | ||
36081602 JM |
204 | static void PPC_XCSR_writel (void *opaque, |
205 | target_phys_addr_t addr, uint32_t value) | |
9a64fbe4 | 206 | { |
f658b4db | 207 | #ifdef TARGET_WORDS_BIGENDIAN |
64201201 | 208 | value = bswap32(value); |
f658b4db | 209 | #endif |
aae9366a | 210 | printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value); |
9a64fbe4 FB |
211 | } |
212 | ||
a4193c8a | 213 | static uint32_t PPC_XCSR_readb (void *opaque, target_phys_addr_t addr) |
64201201 FB |
214 | { |
215 | uint32_t retval = 0; | |
9a64fbe4 | 216 | |
aae9366a | 217 | printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval); |
9a64fbe4 | 218 | |
64201201 FB |
219 | return retval; |
220 | } | |
221 | ||
a4193c8a | 222 | static uint32_t PPC_XCSR_readw (void *opaque, target_phys_addr_t addr) |
9a64fbe4 | 223 | { |
64201201 FB |
224 | uint32_t retval = 0; |
225 | ||
aae9366a | 226 | printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval); |
64201201 FB |
227 | #ifdef TARGET_WORDS_BIGENDIAN |
228 | retval = bswap16(retval); | |
229 | #endif | |
230 | ||
231 | return retval; | |
9a64fbe4 FB |
232 | } |
233 | ||
a4193c8a | 234 | static uint32_t PPC_XCSR_readl (void *opaque, target_phys_addr_t addr) |
9a64fbe4 FB |
235 | { |
236 | uint32_t retval = 0; | |
237 | ||
aae9366a | 238 | printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval); |
64201201 FB |
239 | #ifdef TARGET_WORDS_BIGENDIAN |
240 | retval = bswap32(retval); | |
241 | #endif | |
9a64fbe4 FB |
242 | |
243 | return retval; | |
244 | } | |
245 | ||
64201201 FB |
246 | static CPUWriteMemoryFunc *PPC_XCSR_write[] = { |
247 | &PPC_XCSR_writeb, | |
248 | &PPC_XCSR_writew, | |
249 | &PPC_XCSR_writel, | |
9a64fbe4 FB |
250 | }; |
251 | ||
64201201 FB |
252 | static CPUReadMemoryFunc *PPC_XCSR_read[] = { |
253 | &PPC_XCSR_readb, | |
254 | &PPC_XCSR_readw, | |
255 | &PPC_XCSR_readl, | |
9a64fbe4 | 256 | }; |
b6b8bd18 | 257 | #endif |
9a64fbe4 | 258 | |
64201201 FB |
259 | /* Fake super-io ports for PREP platform (Intel 82378ZB) */ |
260 | typedef struct sysctrl_t { | |
c4781a51 | 261 | qemu_irq reset_irq; |
64201201 FB |
262 | m48t59_t *nvram; |
263 | uint8_t state; | |
264 | uint8_t syscontrol; | |
265 | uint8_t fake_io[2]; | |
da9b266b | 266 | int contiguous_map; |
fb3444b8 | 267 | int endian; |
64201201 | 268 | } sysctrl_t; |
9a64fbe4 | 269 | |
64201201 FB |
270 | enum { |
271 | STATE_HARDFILE = 0x01, | |
9a64fbe4 | 272 | }; |
9a64fbe4 | 273 | |
64201201 | 274 | static sysctrl_t *sysctrl; |
9a64fbe4 | 275 | |
a541f297 | 276 | static void PREP_io_write (void *opaque, uint32_t addr, uint32_t val) |
9a64fbe4 | 277 | { |
64201201 FB |
278 | sysctrl_t *sysctrl = opaque; |
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 | { |
64201201 | 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 | { |
64201201 FB |
296 | sysctrl_t *sysctrl = opaque; |
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 | { |
64201201 | 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 | ||
b068d6a7 JM |
427 | static always_inline target_phys_addr_t prep_IO_address (sysctrl_t *sysctrl, |
428 | target_phys_addr_t | |
429 | addr) | |
da9b266b FB |
430 | { |
431 | if (sysctrl->contiguous_map == 0) { | |
432 | /* 64 KB contiguous space for IOs */ | |
433 | addr &= 0xFFFF; | |
434 | } else { | |
435 | /* 8 MB non-contiguous space for IOs */ | |
436 | addr = (addr & 0x1F) | ((addr & 0x007FFF000) >> 7); | |
437 | } | |
438 | ||
439 | return addr; | |
440 | } | |
441 | ||
442 | static void PPC_prep_io_writeb (void *opaque, target_phys_addr_t addr, | |
443 | uint32_t value) | |
444 | { | |
445 | sysctrl_t *sysctrl = opaque; | |
446 | ||
447 | addr = prep_IO_address(sysctrl, addr); | |
448 | cpu_outb(NULL, addr, value); | |
449 | } | |
450 | ||
451 | static uint32_t PPC_prep_io_readb (void *opaque, target_phys_addr_t addr) | |
452 | { | |
453 | sysctrl_t *sysctrl = opaque; | |
454 | uint32_t ret; | |
455 | ||
456 | addr = prep_IO_address(sysctrl, addr); | |
457 | ret = cpu_inb(NULL, addr); | |
458 | ||
459 | return ret; | |
460 | } | |
461 | ||
462 | static void PPC_prep_io_writew (void *opaque, target_phys_addr_t addr, | |
463 | uint32_t value) | |
464 | { | |
465 | sysctrl_t *sysctrl = opaque; | |
466 | ||
467 | addr = prep_IO_address(sysctrl, addr); | |
468 | #ifdef TARGET_WORDS_BIGENDIAN | |
469 | value = bswap16(value); | |
470 | #endif | |
aae9366a | 471 | PPC_IO_DPRINTF("0x" PADDRX " => 0x%08" PRIx32 "\n", addr, value); |
da9b266b FB |
472 | cpu_outw(NULL, addr, value); |
473 | } | |
474 | ||
475 | static uint32_t PPC_prep_io_readw (void *opaque, target_phys_addr_t addr) | |
476 | { | |
477 | sysctrl_t *sysctrl = opaque; | |
478 | uint32_t ret; | |
479 | ||
480 | addr = prep_IO_address(sysctrl, addr); | |
481 | ret = cpu_inw(NULL, addr); | |
482 | #ifdef TARGET_WORDS_BIGENDIAN | |
483 | ret = bswap16(ret); | |
484 | #endif | |
aae9366a | 485 | PPC_IO_DPRINTF("0x" PADDRX " <= 0x%08" PRIx32 "\n", addr, ret); |
da9b266b FB |
486 | |
487 | return ret; | |
488 | } | |
489 | ||
490 | static void PPC_prep_io_writel (void *opaque, target_phys_addr_t addr, | |
491 | uint32_t value) | |
492 | { | |
493 | sysctrl_t *sysctrl = opaque; | |
494 | ||
495 | addr = prep_IO_address(sysctrl, addr); | |
496 | #ifdef TARGET_WORDS_BIGENDIAN | |
497 | value = bswap32(value); | |
498 | #endif | |
aae9366a | 499 | PPC_IO_DPRINTF("0x" PADDRX " => 0x%08" PRIx32 "\n", addr, value); |
da9b266b FB |
500 | cpu_outl(NULL, addr, value); |
501 | } | |
502 | ||
503 | static uint32_t PPC_prep_io_readl (void *opaque, target_phys_addr_t addr) | |
504 | { | |
505 | sysctrl_t *sysctrl = opaque; | |
506 | uint32_t ret; | |
507 | ||
508 | addr = prep_IO_address(sysctrl, addr); | |
509 | ret = cpu_inl(NULL, addr); | |
510 | #ifdef TARGET_WORDS_BIGENDIAN | |
511 | ret = bswap32(ret); | |
512 | #endif | |
aae9366a | 513 | PPC_IO_DPRINTF("0x" PADDRX " <= 0x%08" PRIx32 "\n", addr, ret); |
da9b266b FB |
514 | |
515 | return ret; | |
516 | } | |
517 | ||
b1d8e52e | 518 | static CPUWriteMemoryFunc *PPC_prep_io_write[] = { |
da9b266b FB |
519 | &PPC_prep_io_writeb, |
520 | &PPC_prep_io_writew, | |
521 | &PPC_prep_io_writel, | |
522 | }; | |
523 | ||
b1d8e52e | 524 | static CPUReadMemoryFunc *PPC_prep_io_read[] = { |
da9b266b FB |
525 | &PPC_prep_io_readb, |
526 | &PPC_prep_io_readw, | |
527 | &PPC_prep_io_readl, | |
528 | }; | |
529 | ||
64201201 | 530 | #define NVRAM_SIZE 0x2000 |
a541f297 | 531 | |
26aa7d72 | 532 | /* PowerPC PREP hardware initialisation */ |
fbe1b595 | 533 | static void ppc_prep_init (ram_addr_t ram_size, |
3023f332 | 534 | const char *boot_device, |
b881c2c6 | 535 | const char *kernel_filename, |
94fc95cd JM |
536 | const char *kernel_cmdline, |
537 | const char *initrd_filename, | |
538 | const char *cpu_model) | |
a541f297 | 539 | { |
0d913fdb | 540 | CPUState *env = NULL, *envs[MAX_CPUS]; |
a541f297 | 541 | char buf[1024]; |
3cbee15b JM |
542 | nvram_t nvram; |
543 | m48t59_t *m48t59; | |
a541f297 | 544 | int PPC_io_memory; |
4157a662 | 545 | int linux_boot, i, nb_nics1, bios_size; |
b584726d | 546 | ram_addr_t ram_offset, bios_offset; |
64201201 | 547 | uint32_t kernel_base, kernel_size, initrd_base, initrd_size; |
46e50e9d | 548 | PCIBus *pci_bus; |
d537cf6c | 549 | qemu_irq *i8259; |
28c5af54 | 550 | int ppc_boot_device; |
e4bcb14c TS |
551 | int index; |
552 | BlockDriverState *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; | |
553 | BlockDriverState *fd[MAX_FD]; | |
64201201 FB |
554 | |
555 | sysctrl = qemu_mallocz(sizeof(sysctrl_t)); | |
a541f297 FB |
556 | |
557 | linux_boot = (kernel_filename != NULL); | |
0a032cbe | 558 | |
c68ea704 | 559 | /* init CPUs */ |
94fc95cd | 560 | if (cpu_model == NULL) |
d12f4c38 | 561 | cpu_model = "default"; |
fe33cc71 | 562 | for (i = 0; i < smp_cpus; i++) { |
aaed909a FB |
563 | env = cpu_init(cpu_model); |
564 | if (!env) { | |
565 | fprintf(stderr, "Unable to find PowerPC CPU definition\n"); | |
566 | exit(1); | |
567 | } | |
4018bae9 JM |
568 | if (env->flags & POWERPC_FLAG_RTC_CLK) { |
569 | /* POWER / PowerPC 601 RTC clock frequency is 7.8125 MHz */ | |
570 | cpu_ppc_tb_init(env, 7812500UL); | |
571 | } else { | |
572 | /* Set time-base frequency to 100 Mhz */ | |
573 | cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL); | |
574 | } | |
fe33cc71 | 575 | qemu_register_reset(&cpu_ppc_reset, env); |
fe33cc71 JM |
576 | envs[i] = env; |
577 | } | |
a541f297 FB |
578 | |
579 | /* allocate RAM */ | |
cf9c147c BS |
580 | ram_offset = qemu_ram_alloc(ram_size); |
581 | cpu_register_physical_memory(0, ram_size, ram_offset); | |
582 | ||
64201201 | 583 | /* allocate and load BIOS */ |
cf9c147c | 584 | bios_offset = qemu_ram_alloc(BIOS_SIZE); |
1192dad8 JM |
585 | if (bios_name == NULL) |
586 | bios_name = BIOS_FILENAME; | |
587 | snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name); | |
dcac9679 PB |
588 | bios_size = get_image_size(buf); |
589 | if (bios_size > 0 && bios_size <= BIOS_SIZE) { | |
590 | target_phys_addr_t bios_addr; | |
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); | |
595 | bios_size = load_image_targphys(buf, bios_addr, bios_size); | |
596 | } | |
4157a662 | 597 | if (bios_size < 0 || bios_size > BIOS_SIZE) { |
2ac71179 | 598 | hw_error("qemu: could not load PPC PREP bios '%s'\n", buf); |
64201201 | 599 | } |
4c823cff | 600 | if (env->nip < 0xFFF80000 && bios_size < 0x00100000) { |
2ac71179 | 601 | hw_error("PowerPC 601 / 620 / 970 need a 1MB BIOS\n"); |
4c823cff | 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); |
da9b266b FB |
652 | // pci_bus = i440fx_init(); |
653 | /* Register 8 MB of ISA IO space (needed for non-contiguous map) */ | |
654 | PPC_io_memory = cpu_register_io_memory(0, PPC_prep_io_read, | |
655 | PPC_prep_io_write, sysctrl); | |
656 | cpu_register_physical_memory(0x80000000, 0x00800000, PPC_io_memory); | |
64201201 | 657 | |
a541f297 | 658 | /* init basic PC hardware */ |
fbe1b595 | 659 | pci_vga_init(pci_bus, 0, 0); |
64201201 | 660 | // openpic = openpic_init(0x00000000, 0xF0000000, 1); |
d537cf6c | 661 | // pit = pit_init(0x40, i8259[0]); |
42fc73a1 | 662 | rtc_init(0x70, i8259[8], 2000); |
a541f297 | 663 | |
b6cd0ea1 | 664 | serial_init(0x3f8, i8259[4], 115200, serial_hds[0]); |
a541f297 FB |
665 | nb_nics1 = nb_nics; |
666 | if (nb_nics1 > NE2000_NB_MAX) | |
667 | nb_nics1 = NE2000_NB_MAX; | |
668 | for(i = 0; i < nb_nics1; i++) { | |
5652ef78 AJ |
669 | if (nd_table[i].model == NULL) { |
670 | nd_table[i].model = "ne2k_isa"; | |
671 | } | |
672 | if (strcmp(nd_table[i].model, "ne2k_isa") == 0) { | |
d537cf6c | 673 | isa_ne2000_init(ne2000_io[i], i8259[ne2000_irq[i]], &nd_table[i]); |
a41b2ff2 | 674 | } else { |
cb457d76 | 675 | pci_nic_init(pci_bus, &nd_table[i], -1, "ne2k_pci"); |
a41b2ff2 | 676 | } |
a541f297 | 677 | } |
a541f297 | 678 | |
e4bcb14c TS |
679 | if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) { |
680 | fprintf(stderr, "qemu: too many IDE bus\n"); | |
681 | exit(1); | |
682 | } | |
683 | ||
684 | for(i = 0; i < MAX_IDE_BUS * MAX_IDE_DEVS; i++) { | |
685 | index = drive_get_index(IF_IDE, i / MAX_IDE_DEVS, i % MAX_IDE_DEVS); | |
686 | if (index != -1) | |
687 | hd[i] = drives_table[index].bdrv; | |
688 | else | |
689 | hd[i] = NULL; | |
690 | } | |
691 | ||
692 | for(i = 0; i < MAX_IDE_BUS; i++) { | |
d537cf6c | 693 | isa_ide_init(ide_iobase[i], ide_iobase2[i], i8259[ide_irq[i]], |
e4bcb14c TS |
694 | hd[2 * i], |
695 | hd[2 * i + 1]); | |
a541f297 | 696 | } |
d537cf6c | 697 | i8042_init(i8259[1], i8259[12], 0x60); |
b6b8bd18 | 698 | DMA_init(1); |
a541f297 FB |
699 | // SB16_init(); |
700 | ||
e4bcb14c TS |
701 | for(i = 0; i < MAX_FD; i++) { |
702 | index = drive_get_index(IF_FLOPPY, 0, i); | |
703 | if (index != -1) | |
704 | fd[i] = drives_table[index].bdrv; | |
705 | else | |
706 | fd[i] = NULL; | |
707 | } | |
708 | fdctrl_init(i8259[6], 2, 0, 0x3f0, fd); | |
a541f297 | 709 | |
64201201 FB |
710 | /* Register speaker port */ |
711 | register_ioport_read(0x61, 1, 1, speaker_ioport_read, NULL); | |
712 | register_ioport_write(0x61, 1, 1, speaker_ioport_write, NULL); | |
a541f297 | 713 | /* Register fake IO ports for PREP */ |
c4781a51 | 714 | sysctrl->reset_irq = first_cpu->irq_inputs[PPC6xx_INPUT_HRESET]; |
64201201 FB |
715 | register_ioport_read(0x398, 2, 1, &PREP_io_read, sysctrl); |
716 | register_ioport_write(0x398, 2, 1, &PREP_io_write, sysctrl); | |
a541f297 | 717 | /* System control ports */ |
64201201 FB |
718 | register_ioport_read(0x0092, 0x01, 1, &PREP_io_800_readb, sysctrl); |
719 | register_ioport_write(0x0092, 0x01, 1, &PREP_io_800_writeb, sysctrl); | |
720 | register_ioport_read(0x0800, 0x52, 1, &PREP_io_800_readb, sysctrl); | |
721 | register_ioport_write(0x0800, 0x52, 1, &PREP_io_800_writeb, sysctrl); | |
722 | /* PCI intack location */ | |
723 | PPC_io_memory = cpu_register_io_memory(0, PPC_intack_read, | |
a4193c8a | 724 | PPC_intack_write, NULL); |
a541f297 | 725 | cpu_register_physical_memory(0xBFFFFFF0, 0x4, PPC_io_memory); |
64201201 | 726 | /* PowerPC control and status register group */ |
b6b8bd18 | 727 | #if 0 |
36081602 JM |
728 | PPC_io_memory = cpu_register_io_memory(0, PPC_XCSR_read, PPC_XCSR_write, |
729 | NULL); | |
64201201 | 730 | cpu_register_physical_memory(0xFEFF0000, 0x1000, PPC_io_memory); |
b6b8bd18 | 731 | #endif |
a541f297 | 732 | |
0d92ed30 | 733 | if (usb_enabled) { |
e24ad6f1 | 734 | usb_ohci_init_pci(pci_bus, 3, -1); |
0d92ed30 PB |
735 | } |
736 | ||
3cbee15b JM |
737 | m48t59 = m48t59_init(i8259[8], 0, 0x0074, NVRAM_SIZE, 59); |
738 | if (m48t59 == NULL) | |
64201201 | 739 | return; |
3cbee15b | 740 | sysctrl->nvram = m48t59; |
64201201 FB |
741 | |
742 | /* Initialise NVRAM */ | |
3cbee15b JM |
743 | nvram.opaque = m48t59; |
744 | nvram.read_fn = &m48t59_read; | |
745 | nvram.write_fn = &m48t59_write; | |
6ac0e82d | 746 | PPC_NVRAM_set_params(&nvram, NVRAM_SIZE, "PREP", ram_size, ppc_boot_device, |
64201201 | 747 | kernel_base, kernel_size, |
b6b8bd18 | 748 | kernel_cmdline, |
64201201 FB |
749 | initrd_base, initrd_size, |
750 | /* XXX: need an option to load a NVRAM image */ | |
b6b8bd18 FB |
751 | 0, |
752 | graphic_width, graphic_height, graphic_depth); | |
c0e564d5 FB |
753 | |
754 | /* Special port to get debug messages from Open-Firmware */ | |
755 | register_ioport_write(0x0F00, 4, 1, &PPC_debug_write, NULL); | |
a541f297 | 756 | } |
c0e564d5 FB |
757 | |
758 | QEMUMachine prep_machine = { | |
4b32e168 AL |
759 | .name = "prep", |
760 | .desc = "PowerPC PREP platform", | |
761 | .init = ppc_prep_init, | |
3d878caa | 762 | .max_cpus = MAX_CPUS, |
c0e564d5 | 763 | }; |