Merge tag 'dump-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging
[qemu/ar7.git] / hw / ppc / mac.h
bloba1fa8f8e41a995fb45df379ff041eba5b4250a3b
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.
26 #ifndef PPC_MAC_H
27 #define PPC_MAC_H
29 #include "qemu/units.h"
30 #include "exec/memory.h"
31 #include "hw/boards.h"
32 #include "hw/sysbus.h"
33 #include "hw/input/adb.h"
34 #include "hw/misc/mos6522.h"
35 #include "hw/pci/pci_host.h"
36 #include "hw/pci-host/uninorth.h"
37 #include "qom/object.h"
39 #define NVRAM_SIZE 0x2000
40 #define PROM_FILENAME "openbios-ppc"
42 #define KERNEL_LOAD_ADDR 0x01000000
43 #define KERNEL_GAP 0x00100000
45 #define ESCC_CLOCK 3686400
47 /* Old World IRQs */
48 #define OLDWORLD_CUDA_IRQ 0x12
49 #define OLDWORLD_ESCCB_IRQ 0x10
50 #define OLDWORLD_ESCCA_IRQ 0xf
51 #define OLDWORLD_IDE0_IRQ 0xd
52 #define OLDWORLD_IDE0_DMA_IRQ 0x2
53 #define OLDWORLD_IDE1_IRQ 0xe
54 #define OLDWORLD_IDE1_DMA_IRQ 0x3
56 /* New World IRQs */
57 #define NEWWORLD_CUDA_IRQ 0x19
58 #define NEWWORLD_PMU_IRQ 0x19
59 #define NEWWORLD_ESCCB_IRQ 0x24
60 #define NEWWORLD_ESCCA_IRQ 0x25
61 #define NEWWORLD_IDE0_IRQ 0xd
62 #define NEWWORLD_IDE0_DMA_IRQ 0x2
63 #define NEWWORLD_IDE1_IRQ 0xe
64 #define NEWWORLD_IDE1_DMA_IRQ 0x3
65 #define NEWWORLD_EXTING_GPIO1 0x2f
66 #define NEWWORLD_EXTING_GPIO9 0x37
68 /* Core99 machine */
69 #define TYPE_CORE99_MACHINE MACHINE_TYPE_NAME("mac99")
70 typedef struct Core99MachineState Core99MachineState;
71 DECLARE_INSTANCE_CHECKER(Core99MachineState, CORE99_MACHINE,
72 TYPE_CORE99_MACHINE)
74 #define CORE99_VIA_CONFIG_CUDA 0x0
75 #define CORE99_VIA_CONFIG_PMU 0x1
76 #define CORE99_VIA_CONFIG_PMU_ADB 0x2
78 struct Core99MachineState {
79 /*< private >*/
80 MachineState parent;
82 uint8_t via_config;
85 /* Grackle PCI */
86 #define TYPE_GRACKLE_PCI_HOST_BRIDGE "grackle-pcihost"
88 /* Mac NVRAM */
89 #define TYPE_MACIO_NVRAM "macio-nvram"
90 OBJECT_DECLARE_SIMPLE_TYPE(MacIONVRAMState, MACIO_NVRAM)
92 struct MacIONVRAMState {
93 /*< private >*/
94 SysBusDevice parent_obj;
95 /*< public >*/
97 uint32_t size;
98 uint32_t it_shift;
100 MemoryRegion mem;
101 uint8_t *data;
104 void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len);
105 #endif /* PPC_MAC_H */