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