]> Git Repo - qemu.git/blame - hw/ppc/mac.h
target/ppc/spapr_caps: Add new tristate cap safe_cache
[qemu.git] / hw / ppc / mac.h
CommitLineData
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
022c62cb 29#include "exec/memory.h"
95ed3b7c 30#include "hw/sysbus.h"
07a7484e 31#include "hw/ide/internal.h"
0d09e41a 32#include "hw/input/adb.h"
1e39101c 33
3cbee15b
JM
34/* SMP is not enabled, for now */
35#define MAX_CPUS 1
36
bba831e8 37#define BIOS_SIZE (1024 * 1024)
3cbee15b 38#define NVRAM_SIZE 0x2000
e5d01b06 39#define PROM_FILENAME "openbios-ppc"
992e5acd 40#define PROM_ADDR 0xfff00000
3cbee15b
JM
41
42#define KERNEL_LOAD_ADDR 0x01000000
b9e17a34 43#define KERNEL_GAP 0x00100000
3cbee15b 44
7fa9ae1a
BS
45#define ESCC_CLOCK 3686400
46
3cbee15b 47/* Cuda */
45fa67fb
AF
48#define TYPE_CUDA "cuda"
49#define CUDA(obj) OBJECT_CHECK(CUDAState, (obj), TYPE_CUDA)
50
51/**
52 * CUDATimer:
53 * @counter_value: counter value at load time
54 */
55typedef struct CUDATimer {
56 int index;
57 uint16_t latch;
58 uint16_t counter_value;
59 int64_t load_time;
60 int64_t next_irq_time;
b981289c 61 uint64_t frequency;
45fa67fb
AF
62 QEMUTimer *timer;
63} CUDATimer;
64
65/**
66 * CUDAState:
67 * @b: B-side data
68 * @a: A-side data
69 * @dirb: B-side direction (1=output)
70 * @dira: A-side direction (1=output)
71 * @sr: Shift register
72 * @acr: Auxiliary control register
73 * @pcr: Peripheral control register
74 * @ifr: Interrupt flag register
75 * @ier: Interrupt enable register
76 * @anh: A-side data, no handshake
77 * @last_b: last value of B register
78 * @last_acr: last value of ACR register
79 */
80typedef struct CUDAState {
81 /*< private >*/
82 SysBusDevice parent_obj;
83 /*< public >*/
84
85 MemoryRegion mem;
86 /* cuda registers */
87 uint8_t b;
88 uint8_t a;
89 uint8_t dirb;
90 uint8_t dira;
91 uint8_t sr;
92 uint8_t acr;
93 uint8_t pcr;
94 uint8_t ifr;
95 uint8_t ier;
96 uint8_t anh;
97
293c867d 98 ADBBusState adb_bus;
45fa67fb
AF
99 CUDATimer timers[2];
100
101 uint32_t tick_offset;
b981289c 102 uint64_t frequency;
45fa67fb
AF
103
104 uint8_t last_b;
105 uint8_t last_acr;
106
cffc331a
MCA
107 /* MacOS 9 is racy and requires a delay upon setting the SR_INT bit */
108 QEMUTimer *sr_delay_timer;
109
45fa67fb
AF
110 int data_in_size;
111 int data_in_index;
112 int data_out_index;
113
114 qemu_irq irq;
216c906e 115 uint16_t adb_poll_mask;
374312e7 116 uint8_t autopoll_rate_ms;
45fa67fb
AF
117 uint8_t autopoll;
118 uint8_t data_in[128];
119 uint8_t data_out[16];
120 QEMUTimer *adb_poll_timer;
121} CUDAState;
3cbee15b
JM
122
123/* MacIO */
d037834a
AF
124#define TYPE_OLDWORLD_MACIO "macio-oldworld"
125#define TYPE_NEWWORLD_MACIO "macio-newworld"
07a7484e
AF
126
127#define TYPE_MACIO_IDE "macio-ide"
128#define MACIO_IDE(obj) OBJECT_CHECK(MACIOIDEState, (obj), TYPE_MACIO_IDE)
129
130typedef struct MACIOIDEState {
131 /*< private >*/
132 SysBusDevice parent_obj;
133 /*< public >*/
0fc84331 134 uint32_t channel;
4f7265ff
BH
135 qemu_irq real_ide_irq;
136 qemu_irq real_dma_irq;
137 qemu_irq ide_irq;
07a7484e
AF
138 qemu_irq dma_irq;
139
140 MemoryRegion mem;
141 IDEBus bus;
4aa3510f
AG
142 IDEDMA dma;
143 void *dbdma;
cae32357 144 bool dma_active;
4f7265ff
BH
145 uint32_t timing_reg;
146 uint32_t irq_reg;
07a7484e
AF
147} MACIOIDEState;
148
149void macio_ide_init_drives(MACIOIDEState *ide, DriveInfo **hd_table);
e451b85f 150void macio_ide_register_dma(MACIOIDEState *ide);
07a7484e 151
d037834a 152void macio_init(PCIDevice *dev,
07a7484e 153 MemoryRegion *pic_mem,
07a7484e 154 MemoryRegion *escc_mem);
3cbee15b 155
3cbee15b 156/* Heathrow PIC */
23c5e4ca 157qemu_irq *heathrow_pic_init(MemoryRegion **pmem,
3cbee15b
JM
158 int nb_cpus, qemu_irq **irqs);
159
160/* Grackle PCI */
0e655047 161#define TYPE_GRACKLE_PCI_HOST_BRIDGE "grackle-pcihost"
1e39101c 162PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic,
aee97b84
AK
163 MemoryRegion *address_space_mem,
164 MemoryRegion *address_space_io);
3cbee15b
JM
165
166/* UniNorth PCI */
aee97b84
AK
167PCIBus *pci_pmac_init(qemu_irq *pic,
168 MemoryRegion *address_space_mem,
169 MemoryRegion *address_space_io);
170PCIBus *pci_pmac_u3_init(qemu_irq *pic,
171 MemoryRegion *address_space_mem,
172 MemoryRegion *address_space_io);
3cbee15b
JM
173
174/* Mac NVRAM */
95ed3b7c
AF
175#define TYPE_MACIO_NVRAM "macio-nvram"
176#define MACIO_NVRAM(obj) \
177 OBJECT_CHECK(MacIONVRAMState, (obj), TYPE_MACIO_NVRAM)
178
179typedef struct MacIONVRAMState {
180 /*< private >*/
181 SysBusDevice parent_obj;
182 /*< public >*/
183
184 uint32_t size;
185 uint32_t it_shift;
186
187 MemoryRegion mem;
188 uint8_t *data;
189} MacIONVRAMState;
3cbee15b 190
3cbee15b 191void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len);
2a6a4076 192#endif /* PPC_MAC_H */
This page took 0.880606 seconds and 4 git commands to generate.