]> git.proxmox.com Git - qemu.git/blob - hw/ppc/mac.h
3e390d3ee9579eb4baaee8085a574f3594c9aff8
[qemu.git] / hw / ppc / mac.h
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
28 #include "exec/memory.h"
29 #include "hw/sysbus.h"
30 #include "hw/ide/internal.h"
31
32 /* SMP is not enabled, for now */
33 #define MAX_CPUS 1
34
35 #define BIOS_SIZE (1024 * 1024)
36 #define BIOS_FILENAME "ppc_rom.bin"
37 #define NVRAM_SIZE 0x2000
38 #define PROM_FILENAME "openbios-ppc"
39 #define PROM_ADDR 0xfff00000
40
41 #define KERNEL_LOAD_ADDR 0x01000000
42 #define KERNEL_GAP 0x00100000
43
44 #define ESCC_CLOCK 3686400
45
46 /* Cuda */
47 void cuda_init (MemoryRegion **cuda_mem, qemu_irq irq);
48
49 /* MacIO */
50 #define TYPE_OLDWORLD_MACIO "macio-oldworld"
51 #define TYPE_NEWWORLD_MACIO "macio-newworld"
52
53 #define TYPE_MACIO_IDE "macio-ide"
54 #define MACIO_IDE(obj) OBJECT_CHECK(MACIOIDEState, (obj), TYPE_MACIO_IDE)
55
56 typedef struct MACIOIDEState {
57 /*< private >*/
58 SysBusDevice parent_obj;
59 /*< public >*/
60
61 qemu_irq irq;
62 qemu_irq dma_irq;
63
64 MemoryRegion mem;
65 IDEBus bus;
66 BlockDriverAIOCB *aiocb;
67 } MACIOIDEState;
68
69 void macio_ide_init_drives(MACIOIDEState *ide, DriveInfo **hd_table);
70 void macio_ide_register_dma(MACIOIDEState *ide, void *dbdma, int channel);
71
72 void macio_init(PCIDevice *dev,
73 MemoryRegion *pic_mem,
74 MemoryRegion *cuda_mem,
75 MemoryRegion *escc_mem);
76
77 /* Heathrow PIC */
78 qemu_irq *heathrow_pic_init(MemoryRegion **pmem,
79 int nb_cpus, qemu_irq **irqs);
80
81 /* Grackle PCI */
82 #define TYPE_GRACKLE_PCI_HOST_BRIDGE "grackle-pcihost"
83 PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic,
84 MemoryRegion *address_space_mem,
85 MemoryRegion *address_space_io);
86
87 /* UniNorth PCI */
88 PCIBus *pci_pmac_init(qemu_irq *pic,
89 MemoryRegion *address_space_mem,
90 MemoryRegion *address_space_io);
91 PCIBus *pci_pmac_u3_init(qemu_irq *pic,
92 MemoryRegion *address_space_mem,
93 MemoryRegion *address_space_io);
94
95 /* Mac NVRAM */
96 #define TYPE_MACIO_NVRAM "macio-nvram"
97 #define MACIO_NVRAM(obj) \
98 OBJECT_CHECK(MacIONVRAMState, (obj), TYPE_MACIO_NVRAM)
99
100 typedef struct MacIONVRAMState {
101 /*< private >*/
102 SysBusDevice parent_obj;
103 /*< public >*/
104
105 uint32_t size;
106 uint32_t it_shift;
107
108 MemoryRegion mem;
109 uint8_t *data;
110 } MacIONVRAMState;
111
112 void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len);
113 uint8_t macio_nvram_read(MacIONVRAMState *s, uint32_t addr);
114 void macio_nvram_write(MacIONVRAMState *s, uint32_t addr, uint8_t val);
115 #endif /* !defined(__PPC_MAC_H__) */