]>
Commit | Line | Data |
---|---|---|
3cbee15b JM |
1 | /* |
2 | * QEMU PowerMac emulation shared definitions and prototypes | |
3 | * | |
4 | * Copyright (c) 2004-2007 Fabrice Bellard | |
5 | * Copyright (c) 2007 Jocelyn Mayer | |
6 | * | |
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: | |
13 | * | |
14 | * The above copyright notice and this permission notice shall be included in | |
15 | * all copies or substantial portions of the Software. | |
16 | * | |
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. | |
24 | */ | |
25 | #if !defined(__PPC_MAC_H__) | |
26 | #define __PPC_MAC_H__ | |
27 | ||
1e39101c AK |
28 | #include "memory.h" |
29 | ||
3cbee15b JM |
30 | /* SMP is not enabled, for now */ |
31 | #define MAX_CPUS 1 | |
32 | ||
bba831e8 | 33 | #define BIOS_SIZE (1024 * 1024) |
3cbee15b | 34 | #define BIOS_FILENAME "ppc_rom.bin" |
3cbee15b | 35 | #define NVRAM_SIZE 0x2000 |
e5d01b06 | 36 | #define PROM_FILENAME "openbios-ppc" |
992e5acd | 37 | #define PROM_ADDR 0xfff00000 |
3cbee15b JM |
38 | |
39 | #define KERNEL_LOAD_ADDR 0x01000000 | |
b9e17a34 | 40 | #define KERNEL_GAP 0x00100000 |
3cbee15b | 41 | |
7fa9ae1a BS |
42 | #define ESCC_CLOCK 3686400 |
43 | ||
3cbee15b JM |
44 | /* Cuda */ |
45 | void cuda_init (int *cuda_mem_index, qemu_irq irq); | |
46 | ||
47 | /* MacIO */ | |
48 | void macio_init (PCIBus *bus, int device_id, int is_oldworld, int pic_mem_index, | |
74e91155 | 49 | int dbdma_mem_index, int cuda_mem_index, void *nvram, |
7fa9ae1a | 50 | int nb_ide, int *ide_mem_index, int escc_mem_index); |
3cbee15b | 51 | |
3cbee15b JM |
52 | /* Heathrow PIC */ |
53 | qemu_irq *heathrow_pic_init(int *pmem_index, | |
54 | int nb_cpus, qemu_irq **irqs); | |
55 | ||
56 | /* Grackle PCI */ | |
1e39101c AK |
57 | PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic, |
58 | MemoryRegion *address_space); | |
3cbee15b JM |
59 | |
60 | /* UniNorth PCI */ | |
1e39101c AK |
61 | PCIBus *pci_pmac_init(qemu_irq *pic, MemoryRegion *address_space); |
62 | PCIBus *pci_pmac_u3_init(qemu_irq *pic, MemoryRegion *address_space); | |
3cbee15b JM |
63 | |
64 | /* Mac NVRAM */ | |
65 | typedef struct MacIONVRAMState MacIONVRAMState; | |
66 | ||
c227f099 | 67 | MacIONVRAMState *macio_nvram_init (int *mem_index, target_phys_addr_t size, |
68af3f24 | 68 | unsigned int it_shift); |
c227f099 | 69 | void macio_nvram_map (void *opaque, target_phys_addr_t mem_base); |
3cbee15b JM |
70 | void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len); |
71 | uint32_t macio_nvram_read (void *opaque, uint32_t addr); | |
72 | void macio_nvram_write (void *opaque, uint32_t addr, uint32_t val); | |
73 | ||
87ecb68b PB |
74 | /* adb.c */ |
75 | ||
76 | #define MAX_ADB_DEVICES 16 | |
77 | ||
78 | #define ADB_MAX_OUT_LEN 16 | |
79 | ||
80 | typedef struct ADBDevice ADBDevice; | |
81 | ||
82 | /* buf = NULL means polling */ | |
83 | typedef int ADBDeviceRequest(ADBDevice *d, uint8_t *buf_out, | |
84 | const uint8_t *buf, int len); | |
85 | typedef int ADBDeviceReset(ADBDevice *d); | |
86 | ||
87 | struct ADBDevice { | |
88 | struct ADBBusState *bus; | |
89 | int devaddr; | |
90 | int handler; | |
91 | ADBDeviceRequest *devreq; | |
92 | ADBDeviceReset *devreset; | |
93 | void *opaque; | |
94 | }; | |
95 | ||
96 | typedef struct ADBBusState { | |
97 | ADBDevice devices[MAX_ADB_DEVICES]; | |
98 | int nb_devices; | |
99 | int poll_index; | |
100 | } ADBBusState; | |
101 | ||
102 | int adb_request(ADBBusState *s, uint8_t *buf_out, | |
103 | const uint8_t *buf, int len); | |
104 | int adb_poll(ADBBusState *s, uint8_t *buf_out); | |
105 | ||
106 | ADBDevice *adb_register_device(ADBBusState *s, int devaddr, | |
107 | ADBDeviceRequest *devreq, | |
108 | ADBDeviceReset *devreset, | |
109 | void *opaque); | |
110 | void adb_kbd_init(ADBBusState *bus); | |
111 | void adb_mouse_init(ADBBusState *bus); | |
112 | ||
113 | extern ADBBusState adb_bus; | |
114 | ||
3cbee15b | 115 | #endif /* !defined(__PPC_MAC_H__) */ |