change pavo nand flash size from 128M to 1G bytes
[qemu/qemu-JZ.git] / hw / ppc_mac.h
blobcc70fb7dc7baca0ac05278dd51029da6741f0ed9
1 /*
2 * QEMU PowerMac emulation shared definitions and prototypes
4 * Copyright (c) 2004-2007 Fabrice Bellard
5 * Copyright (c) 2007 Jocelyn Mayer
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
25 #if !defined(__PPC_MAC_H__)
26 #define __PPC_MAC_H__
28 /* SMP is not enabled, for now */
29 #define MAX_CPUS 1
31 #define BIOS_FILENAME "ppc_rom.bin"
32 #define VGABIOS_FILENAME "video.x"
33 #define NVRAM_SIZE 0x2000
34 #define PROM_FILENAME "openbios-ppc"
35 #define PROM_ADDR 0xfff00000
37 #define KERNEL_LOAD_ADDR 0x01000000
38 #define INITRD_LOAD_ADDR 0x01800000
40 #define ESCC_CLOCK 3686400
42 /* DBDMA */
43 void dbdma_init (int *dbdma_mem_index);
45 /* Cuda */
46 void cuda_init (int *cuda_mem_index, qemu_irq irq);
48 /* MacIO */
49 void macio_init (PCIBus *bus, int device_id, int is_oldworld, int pic_mem_index,
50 int dbdma_mem_index, int cuda_mem_index, void *nvram,
51 int nb_ide, int *ide_mem_index, int escc_mem_index);
53 /* NewWorld PowerMac IDE */
54 int pmac_ide_init (BlockDriverState **hd_table, qemu_irq irq);
56 /* Heathrow PIC */
57 qemu_irq *heathrow_pic_init(int *pmem_index,
58 int nb_cpus, qemu_irq **irqs);
60 /* Grackle PCI */
61 PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic);
63 /* UniNorth PCI */
64 PCIBus *pci_pmac_init(qemu_irq *pic);
66 /* Mac NVRAM */
67 typedef struct MacIONVRAMState MacIONVRAMState;
69 MacIONVRAMState *macio_nvram_init (int *mem_index, target_phys_addr_t size);
70 void macio_nvram_map (void *opaque, target_phys_addr_t mem_base);
71 void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len);
72 uint32_t macio_nvram_read (void *opaque, uint32_t addr);
73 void macio_nvram_write (void *opaque, uint32_t addr, uint32_t val);
75 /* adb.c */
77 #define MAX_ADB_DEVICES 16
79 #define ADB_MAX_OUT_LEN 16
81 typedef struct ADBDevice ADBDevice;
83 /* buf = NULL means polling */
84 typedef int ADBDeviceRequest(ADBDevice *d, uint8_t *buf_out,
85 const uint8_t *buf, int len);
86 typedef int ADBDeviceReset(ADBDevice *d);
88 struct ADBDevice {
89 struct ADBBusState *bus;
90 int devaddr;
91 int handler;
92 ADBDeviceRequest *devreq;
93 ADBDeviceReset *devreset;
94 void *opaque;
97 typedef struct ADBBusState {
98 ADBDevice devices[MAX_ADB_DEVICES];
99 int nb_devices;
100 int poll_index;
101 } ADBBusState;
103 int adb_request(ADBBusState *s, uint8_t *buf_out,
104 const uint8_t *buf, int len);
105 int adb_poll(ADBBusState *s, uint8_t *buf_out);
107 ADBDevice *adb_register_device(ADBBusState *s, int devaddr,
108 ADBDeviceRequest *devreq,
109 ADBDeviceReset *devreset,
110 void *opaque);
111 void adb_kbd_init(ADBBusState *bus);
112 void adb_mouse_init(ADBBusState *bus);
114 extern ADBBusState adb_bus;
116 /* openpic.c */
117 /* OpenPIC have 5 outputs per CPU connected and one IRQ out single output */
118 enum {
119 OPENPIC_OUTPUT_INT = 0, /* IRQ */
120 OPENPIC_OUTPUT_CINT, /* critical IRQ */
121 OPENPIC_OUTPUT_MCK, /* Machine check event */
122 OPENPIC_OUTPUT_DEBUG, /* Inconditional debug event */
123 OPENPIC_OUTPUT_RESET, /* Core reset event */
124 OPENPIC_OUTPUT_NB,
126 qemu_irq *openpic_init (PCIBus *bus, int *pmem_index, int nb_cpus,
127 qemu_irq **irqs, qemu_irq irq_out);
129 #endif /* !defined(__PPC_MAC_H__) */