]>
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 | */ | |
2a6a4076 MA |
25 | |
26 | #ifndef PPC_MAC_H | |
27 | #define PPC_MAC_H | |
3cbee15b | 28 | |
ab3dd749 | 29 | #include "qemu/units.h" |
022c62cb | 30 | #include "exec/memory.h" |
06fe3a5b | 31 | #include "hw/boards.h" |
95ed3b7c | 32 | #include "hw/sysbus.h" |
0d09e41a | 33 | #include "hw/input/adb.h" |
09a57347 | 34 | #include "hw/misc/mos6522.h" |
0f4b5415 MCA |
35 | #include "hw/pci/pci_host.h" |
36 | #include "hw/pci-host/uninorth.h" | |
db1015e9 | 37 | #include "qom/object.h" |
1e39101c | 38 | |
3cbee15b JM |
39 | /* SMP is not enabled, for now */ |
40 | #define MAX_CPUS 1 | |
41 | ||
ab3dd749 | 42 | #define BIOS_SIZE (1 * MiB) |
3cbee15b | 43 | #define NVRAM_SIZE 0x2000 |
e5d01b06 | 44 | #define PROM_FILENAME "openbios-ppc" |
992e5acd | 45 | #define PROM_ADDR 0xfff00000 |
3cbee15b JM |
46 | |
47 | #define KERNEL_LOAD_ADDR 0x01000000 | |
b9e17a34 | 48 | #define KERNEL_GAP 0x00100000 |
3cbee15b | 49 | |
7fa9ae1a BS |
50 | #define ESCC_CLOCK 3686400 |
51 | ||
ab1244b5 MCA |
52 | /* Old World IRQs */ |
53 | #define OLDWORLD_CUDA_IRQ 0x12 | |
54 | #define OLDWORLD_ESCCB_IRQ 0x10 | |
55 | #define OLDWORLD_ESCCA_IRQ 0xf | |
56 | #define OLDWORLD_IDE0_IRQ 0xd | |
57 | #define OLDWORLD_IDE0_DMA_IRQ 0x2 | |
58 | #define OLDWORLD_IDE1_IRQ 0xe | |
59 | #define OLDWORLD_IDE1_DMA_IRQ 0x3 | |
09a57347 | 60 | |
040b27c0 MCA |
61 | /* New World IRQs */ |
62 | #define NEWWORLD_CUDA_IRQ 0x19 | |
d811d61f | 63 | #define NEWWORLD_PMU_IRQ 0x19 |
040b27c0 MCA |
64 | #define NEWWORLD_ESCCB_IRQ 0x24 |
65 | #define NEWWORLD_ESCCA_IRQ 0x25 | |
66 | #define NEWWORLD_IDE0_IRQ 0xd | |
67 | #define NEWWORLD_IDE0_DMA_IRQ 0x2 | |
68 | #define NEWWORLD_IDE1_IRQ 0xe | |
69 | #define NEWWORLD_IDE1_DMA_IRQ 0x3 | |
7c4166a9 MCA |
70 | #define NEWWORLD_EXTING_GPIO1 0x2f |
71 | #define NEWWORLD_EXTING_GPIO9 0x37 | |
040b27c0 | 72 | |
06fe3a5b MCA |
73 | /* Core99 machine */ |
74 | #define TYPE_CORE99_MACHINE MACHINE_TYPE_NAME("mac99") | |
db1015e9 | 75 | typedef struct Core99MachineState Core99MachineState; |
06fe3a5b MCA |
76 | #define CORE99_MACHINE(obj) OBJECT_CHECK(Core99MachineState, (obj), \ |
77 | TYPE_CORE99_MACHINE) | |
78 | ||
f1114c17 MCA |
79 | #define CORE99_VIA_CONFIG_CUDA 0x0 |
80 | #define CORE99_VIA_CONFIG_PMU 0x1 | |
81 | #define CORE99_VIA_CONFIG_PMU_ADB 0x2 | |
82 | ||
db1015e9 | 83 | struct Core99MachineState { |
06fe3a5b MCA |
84 | /*< private >*/ |
85 | MachineState parent; | |
f1114c17 MCA |
86 | |
87 | uint8_t via_config; | |
db1015e9 | 88 | }; |
06fe3a5b | 89 | |
3cbee15b | 90 | /* Grackle PCI */ |
0e655047 | 91 | #define TYPE_GRACKLE_PCI_HOST_BRIDGE "grackle-pcihost" |
3cbee15b | 92 | |
3cbee15b | 93 | /* Mac NVRAM */ |
95ed3b7c | 94 | #define TYPE_MACIO_NVRAM "macio-nvram" |
db1015e9 | 95 | typedef struct MacIONVRAMState MacIONVRAMState; |
95ed3b7c AF |
96 | #define MACIO_NVRAM(obj) \ |
97 | OBJECT_CHECK(MacIONVRAMState, (obj), TYPE_MACIO_NVRAM) | |
98 | ||
db1015e9 | 99 | struct MacIONVRAMState { |
95ed3b7c AF |
100 | /*< private >*/ |
101 | SysBusDevice parent_obj; | |
102 | /*< public >*/ | |
103 | ||
104 | uint32_t size; | |
105 | uint32_t it_shift; | |
106 | ||
107 | MemoryRegion mem; | |
108 | uint8_t *data; | |
db1015e9 | 109 | }; |
3cbee15b | 110 | |
3cbee15b | 111 | void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len); |
2a6a4076 | 112 | #endif /* PPC_MAC_H */ |