Statistics
| Branch: | Revision:

root / hw / ppc_mac.h @ 40f16dd1

History | View | Annotate | Download (3.7 kB)

1 3cbee15b j_mayer
/*
2 3cbee15b j_mayer
 * QEMU PowerMac emulation shared definitions and prototypes
3 3cbee15b j_mayer
 *
4 3cbee15b j_mayer
 * Copyright (c) 2004-2007 Fabrice Bellard
5 3cbee15b j_mayer
 * Copyright (c) 2007 Jocelyn Mayer
6 3cbee15b j_mayer
 *
7 3cbee15b j_mayer
 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 3cbee15b j_mayer
 * of this software and associated documentation files (the "Software"), to deal
9 3cbee15b j_mayer
 * in the Software without restriction, including without limitation the rights
10 3cbee15b j_mayer
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 3cbee15b j_mayer
 * copies of the Software, and to permit persons to whom the Software is
12 3cbee15b j_mayer
 * furnished to do so, subject to the following conditions:
13 3cbee15b j_mayer
 *
14 3cbee15b j_mayer
 * The above copyright notice and this permission notice shall be included in
15 3cbee15b j_mayer
 * all copies or substantial portions of the Software.
16 3cbee15b j_mayer
 *
17 3cbee15b j_mayer
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 3cbee15b j_mayer
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 3cbee15b j_mayer
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 3cbee15b j_mayer
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 3cbee15b j_mayer
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 3cbee15b j_mayer
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 3cbee15b j_mayer
 * THE SOFTWARE.
24 3cbee15b j_mayer
 */
25 3cbee15b j_mayer
#if !defined(__PPC_MAC_H__)
26 3cbee15b j_mayer
#define __PPC_MAC_H__
27 3cbee15b j_mayer
28 3cbee15b j_mayer
/* SMP is not enabled, for now */
29 3cbee15b j_mayer
#define MAX_CPUS 1
30 3cbee15b j_mayer
31 bba831e8 Paul Brook
#define BIOS_SIZE     (1024 * 1024)
32 3cbee15b j_mayer
#define BIOS_FILENAME "ppc_rom.bin"
33 3cbee15b j_mayer
#define NVRAM_SIZE        0x2000
34 e5d01b06 aurel32
#define PROM_FILENAME    "openbios-ppc"
35 992e5acd blueswir1
#define PROM_ADDR         0xfff00000
36 3cbee15b j_mayer
37 3cbee15b j_mayer
#define KERNEL_LOAD_ADDR 0x01000000
38 33b544ba Alexander Graf
#define CMDLINE_ADDR     0x027ff000
39 33b544ba Alexander Graf
#define INITRD_LOAD_ADDR 0x02800000
40 3cbee15b j_mayer
41 7fa9ae1a blueswir1
#define ESCC_CLOCK 3686400
42 7fa9ae1a blueswir1
43 3cbee15b j_mayer
/* Cuda */
44 3cbee15b j_mayer
void cuda_init (int *cuda_mem_index, qemu_irq irq);
45 3cbee15b j_mayer
46 3cbee15b j_mayer
/* MacIO */
47 3cbee15b j_mayer
void macio_init (PCIBus *bus, int device_id, int is_oldworld, int pic_mem_index,
48 74e91155 j_mayer
                 int dbdma_mem_index, int cuda_mem_index, void *nvram,
49 7fa9ae1a blueswir1
                 int nb_ide, int *ide_mem_index, int escc_mem_index);
50 3cbee15b j_mayer
51 3cbee15b j_mayer
/* Heathrow PIC */
52 3cbee15b j_mayer
qemu_irq *heathrow_pic_init(int *pmem_index,
53 3cbee15b j_mayer
                            int nb_cpus, qemu_irq **irqs);
54 3cbee15b j_mayer
55 3cbee15b j_mayer
/* Grackle PCI */
56 3cbee15b j_mayer
PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic);
57 3cbee15b j_mayer
58 3cbee15b j_mayer
/* UniNorth PCI */
59 3cbee15b j_mayer
PCIBus *pci_pmac_init(qemu_irq *pic);
60 0f921197 Alexander Graf
PCIBus *pci_pmac_u3_init(qemu_irq *pic);
61 3cbee15b j_mayer
62 3cbee15b j_mayer
/* Mac NVRAM */
63 3cbee15b j_mayer
typedef struct MacIONVRAMState MacIONVRAMState;
64 3cbee15b j_mayer
65 c227f099 Anthony Liguori
MacIONVRAMState *macio_nvram_init (int *mem_index, target_phys_addr_t size,
66 68af3f24 blueswir1
                                   unsigned int it_shift);
67 c227f099 Anthony Liguori
void macio_nvram_map (void *opaque, target_phys_addr_t mem_base);
68 3cbee15b j_mayer
void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len);
69 3cbee15b j_mayer
uint32_t macio_nvram_read (void *opaque, uint32_t addr);
70 3cbee15b j_mayer
void macio_nvram_write (void *opaque, uint32_t addr, uint32_t val);
71 3cbee15b j_mayer
72 87ecb68b pbrook
/* adb.c */
73 87ecb68b pbrook
74 87ecb68b pbrook
#define MAX_ADB_DEVICES 16
75 87ecb68b pbrook
76 87ecb68b pbrook
#define ADB_MAX_OUT_LEN 16
77 87ecb68b pbrook
78 87ecb68b pbrook
typedef struct ADBDevice ADBDevice;
79 87ecb68b pbrook
80 87ecb68b pbrook
/* buf = NULL means polling */
81 87ecb68b pbrook
typedef int ADBDeviceRequest(ADBDevice *d, uint8_t *buf_out,
82 87ecb68b pbrook
                              const uint8_t *buf, int len);
83 87ecb68b pbrook
typedef int ADBDeviceReset(ADBDevice *d);
84 87ecb68b pbrook
85 87ecb68b pbrook
struct ADBDevice {
86 87ecb68b pbrook
    struct ADBBusState *bus;
87 87ecb68b pbrook
    int devaddr;
88 87ecb68b pbrook
    int handler;
89 87ecb68b pbrook
    ADBDeviceRequest *devreq;
90 87ecb68b pbrook
    ADBDeviceReset *devreset;
91 87ecb68b pbrook
    void *opaque;
92 87ecb68b pbrook
};
93 87ecb68b pbrook
94 87ecb68b pbrook
typedef struct ADBBusState {
95 87ecb68b pbrook
    ADBDevice devices[MAX_ADB_DEVICES];
96 87ecb68b pbrook
    int nb_devices;
97 87ecb68b pbrook
    int poll_index;
98 87ecb68b pbrook
} ADBBusState;
99 87ecb68b pbrook
100 87ecb68b pbrook
int adb_request(ADBBusState *s, uint8_t *buf_out,
101 87ecb68b pbrook
                const uint8_t *buf, int len);
102 87ecb68b pbrook
int adb_poll(ADBBusState *s, uint8_t *buf_out);
103 87ecb68b pbrook
104 87ecb68b pbrook
ADBDevice *adb_register_device(ADBBusState *s, int devaddr,
105 87ecb68b pbrook
                               ADBDeviceRequest *devreq,
106 87ecb68b pbrook
                               ADBDeviceReset *devreset,
107 87ecb68b pbrook
                               void *opaque);
108 87ecb68b pbrook
void adb_kbd_init(ADBBusState *bus);
109 87ecb68b pbrook
void adb_mouse_init(ADBBusState *bus);
110 87ecb68b pbrook
111 87ecb68b pbrook
extern ADBBusState adb_bus;
112 87ecb68b pbrook
113 3cbee15b j_mayer
#endif /* !defined(__PPC_MAC_H__) */