Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-2.12-pull-request...
[qemu/ar7.git] / hw / ppc / mac.h
bloba02f797598f2bed2e7adfbbc803526c4eeff7763
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 "exec/memory.h"
30 #include "hw/sysbus.h"
31 #include "hw/ide/internal.h"
32 #include "hw/input/adb.h"
33 #include "hw/misc/mos6522.h"
35 /* SMP is not enabled, for now */
36 #define MAX_CPUS 1
38 #define BIOS_SIZE (1024 * 1024)
39 #define NVRAM_SIZE 0x2000
40 #define PROM_FILENAME "openbios-ppc"
41 #define PROM_ADDR 0xfff00000
43 #define KERNEL_LOAD_ADDR 0x01000000
44 #define KERNEL_GAP 0x00100000
46 #define ESCC_CLOCK 3686400
49 /* MacIO */
50 #define TYPE_MACIO_IDE "macio-ide"
51 #define MACIO_IDE(obj) OBJECT_CHECK(MACIOIDEState, (obj), TYPE_MACIO_IDE)
53 typedef struct MACIOIDEState {
54 /*< private >*/
55 SysBusDevice parent_obj;
56 /*< public >*/
57 uint32_t channel;
58 qemu_irq real_ide_irq;
59 qemu_irq real_dma_irq;
60 qemu_irq ide_irq;
61 qemu_irq dma_irq;
63 MemoryRegion mem;
64 IDEBus bus;
65 IDEDMA dma;
66 void *dbdma;
67 bool dma_active;
68 uint32_t timing_reg;
69 uint32_t irq_reg;
70 } MACIOIDEState;
72 void macio_ide_init_drives(MACIOIDEState *ide, DriveInfo **hd_table);
73 void macio_ide_register_dma(MACIOIDEState *ide);
75 void macio_init(PCIDevice *dev,
76 MemoryRegion *pic_mem);
78 /* Heathrow PIC */
79 DeviceState *heathrow_pic_init(int nb_cpus, qemu_irq **irqs,
80 qemu_irq **pic_irqs);
82 /* Grackle PCI */
83 #define TYPE_GRACKLE_PCI_HOST_BRIDGE "grackle-pcihost"
84 PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic,
85 MemoryRegion *address_space_mem,
86 MemoryRegion *address_space_io);
88 /* UniNorth PCI */
89 PCIBus *pci_pmac_init(qemu_irq *pic,
90 MemoryRegion *address_space_mem,
91 MemoryRegion *address_space_io);
92 PCIBus *pci_pmac_u3_init(qemu_irq *pic,
93 MemoryRegion *address_space_mem,
94 MemoryRegion *address_space_io);
96 /* Mac NVRAM */
97 #define TYPE_MACIO_NVRAM "macio-nvram"
98 #define MACIO_NVRAM(obj) \
99 OBJECT_CHECK(MacIONVRAMState, (obj), TYPE_MACIO_NVRAM)
101 typedef struct MacIONVRAMState {
102 /*< private >*/
103 SysBusDevice parent_obj;
104 /*< public >*/
106 uint32_t size;
107 uint32_t it_shift;
109 MemoryRegion mem;
110 uint8_t *data;
111 } MacIONVRAMState;
113 void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len);
114 #endif /* PPC_MAC_H */