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
25 #if !defined(__PPC_MAC_H__)
28 #include "exec/memory.h"
29 #include "hw/sysbus.h"
30 #include "hw/ide/internal.h"
33 /* SMP is not enabled, for now */
36 #define BIOS_SIZE (1024 * 1024)
37 #define BIOS_FILENAME "ppc_rom.bin"
38 #define NVRAM_SIZE 0x2000
39 #define PROM_FILENAME "openbios-ppc"
40 #define PROM_ADDR 0xfff00000
42 #define KERNEL_LOAD_ADDR 0x01000000
43 #define KERNEL_GAP 0x00100000
45 #define ESCC_CLOCK 3686400
48 #define TYPE_CUDA "cuda"
49 #define CUDA(obj) OBJECT_CHECK(CUDAState, (obj), TYPE_CUDA)
53 * @counter_value: counter value at load time
55 typedef struct CUDATimer
{
58 uint16_t counter_value
;
60 int64_t next_irq_time
;
68 * @dirb: B-side direction (1=output)
69 * @dira: A-side direction (1=output)
71 * @acr: Auxiliary control register
72 * @pcr: Peripheral control register
73 * @ifr: Interrupt flag register
74 * @ier: Interrupt enable register
75 * @anh: A-side data, no handshake
76 * @last_b: last value of B register
77 * @last_acr: last value of ACR register
79 typedef struct CUDAState
{
81 SysBusDevice parent_obj
;
100 uint32_t tick_offset
;
111 uint8_t data_in
[128];
112 uint8_t data_out
[16];
113 QEMUTimer
*adb_poll_timer
;
117 #define TYPE_OLDWORLD_MACIO "macio-oldworld"
118 #define TYPE_NEWWORLD_MACIO "macio-newworld"
120 #define TYPE_MACIO_IDE "macio-ide"
121 #define MACIO_IDE(obj) OBJECT_CHECK(MACIOIDEState, (obj), TYPE_MACIO_IDE)
123 typedef struct MACIOIDEState
{
125 SysBusDevice parent_obj
;
133 BlockDriverAIOCB
*aiocb
;
136 void macio_ide_init_drives(MACIOIDEState
*ide
, DriveInfo
**hd_table
);
137 void macio_ide_register_dma(MACIOIDEState
*ide
, void *dbdma
, int channel
);
139 void macio_init(PCIDevice
*dev
,
140 MemoryRegion
*pic_mem
,
141 MemoryRegion
*escc_mem
);
144 qemu_irq
*heathrow_pic_init(MemoryRegion
**pmem
,
145 int nb_cpus
, qemu_irq
**irqs
);
148 #define TYPE_GRACKLE_PCI_HOST_BRIDGE "grackle-pcihost"
149 PCIBus
*pci_grackle_init(uint32_t base
, qemu_irq
*pic
,
150 MemoryRegion
*address_space_mem
,
151 MemoryRegion
*address_space_io
);
154 PCIBus
*pci_pmac_init(qemu_irq
*pic
,
155 MemoryRegion
*address_space_mem
,
156 MemoryRegion
*address_space_io
);
157 PCIBus
*pci_pmac_u3_init(qemu_irq
*pic
,
158 MemoryRegion
*address_space_mem
,
159 MemoryRegion
*address_space_io
);
162 #define TYPE_MACIO_NVRAM "macio-nvram"
163 #define MACIO_NVRAM(obj) \
164 OBJECT_CHECK(MacIONVRAMState, (obj), TYPE_MACIO_NVRAM)
166 typedef struct MacIONVRAMState
{
168 SysBusDevice parent_obj
;
178 void pmac_format_nvram_partition (MacIONVRAMState
*nvr
, int len
);
179 uint8_t macio_nvram_read(MacIONVRAMState
*s
, uint32_t addr
);
180 void macio_nvram_write(MacIONVRAMState
*s
, uint32_t addr
, uint8_t val
);
181 #endif /* !defined(__PPC_MAC_H__) */