]> git.ipfire.org Git - thirdparty/qemu.git/blame - hw/pci-host/prep.c
raven: Set a correct PCI I/O memory region
[thirdparty/qemu.git] / hw / pci-host / prep.c
CommitLineData
502a5395
PB
1/*
2 * QEMU PREP PCI host
3 *
4 * Copyright (c) 2006 Fabrice Bellard
98aca3c8 5 * Copyright (c) 2011-2013 Andreas Färber
5fafdf24 6 *
502a5395
PB
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
83c9f4ca
PB
26#include "hw/hw.h"
27#include "hw/pci/pci.h"
28#include "hw/pci/pci_bus.h"
29#include "hw/pci/pci_host.h"
0d09e41a 30#include "hw/i386/pc.h"
d0b25425 31#include "hw/loader.h"
022c62cb 32#include "exec/address-spaces.h"
d0b25425 33#include "elf.h"
502a5395 34
98aca3c8 35#define TYPE_RAVEN_PCI_DEVICE "raven"
03a6b667
AF
36#define TYPE_RAVEN_PCI_HOST_BRIDGE "raven-pcihost"
37
98aca3c8
AF
38#define RAVEN_PCI_DEVICE(obj) \
39 OBJECT_CHECK(RavenPCIState, (obj), TYPE_RAVEN_PCI_DEVICE)
40
41typedef struct RavenPCIState {
42 PCIDevice dev;
d0b25425
HP
43
44 uint32_t elf_machine;
45 char *bios_name;
46 MemoryRegion bios;
98aca3c8
AF
47} RavenPCIState;
48
03a6b667
AF
49#define RAVEN_PCI_HOST_BRIDGE(obj) \
50 OBJECT_CHECK(PREPPCIState, (obj), TYPE_RAVEN_PCI_HOST_BRIDGE)
51
8ca8c7bc 52typedef struct PRePPCIState {
67c332fd 53 PCIHostState parent_obj;
03a6b667 54
963116b0 55 qemu_irq irq[PCI_NUM_PINS];
98aca3c8 56 PCIBus pci_bus;
9a183916 57 AddressSpace pci_io_as;
1ae1dc5b 58 MemoryRegion pci_io;
9a183916 59 MemoryRegion pci_io_non_contiguous;
49a4e212 60 MemoryRegion pci_intack;
98aca3c8 61 RavenPCIState pci_dev;
9a183916
HP
62
63 int contiguous_map;
8ca8c7bc 64} PREPPCIState;
502a5395 65
d0b25425
HP
66#define BIOS_SIZE (1024 * 1024)
67
a8170e5e 68static inline uint32_t PPC_PCIIO_config(hwaddr addr)
502a5395
PB
69{
70 int i;
71
03a6b667
AF
72 for (i = 0; i < 11; i++) {
73 if ((addr & (1 << (11 + i))) != 0) {
502a5395 74 break;
03a6b667 75 }
502a5395
PB
76 }
77 return (addr & 0x7ff) | (i << 11);
78}
79
a8170e5e 80static void ppc_pci_io_write(void *opaque, hwaddr addr,
7e5610ff 81 uint64_t val, unsigned int size)
502a5395
PB
82{
83 PREPPCIState *s = opaque;
67c332fd
AF
84 PCIHostState *phb = PCI_HOST_BRIDGE(s);
85 pci_data_write(phb->bus, PPC_PCIIO_config(addr), val, size);
502a5395
PB
86}
87
a8170e5e 88static uint64_t ppc_pci_io_read(void *opaque, hwaddr addr,
7e5610ff 89 unsigned int size)
502a5395
PB
90{
91 PREPPCIState *s = opaque;
67c332fd
AF
92 PCIHostState *phb = PCI_HOST_BRIDGE(s);
93 return pci_data_read(phb->bus, PPC_PCIIO_config(addr), size);
502a5395
PB
94}
95
f81138ce 96static const MemoryRegionOps PPC_PCIIO_ops = {
7e5610ff
AF
97 .read = ppc_pci_io_read,
98 .write = ppc_pci_io_write,
9c95f183 99 .endianness = DEVICE_LITTLE_ENDIAN,
502a5395
PB
100};
101
a8170e5e 102static uint64_t ppc_intack_read(void *opaque, hwaddr addr,
6c84ce0d
HP
103 unsigned int size)
104{
105 return pic_read_irq(isa_pic);
106}
107
108static const MemoryRegionOps PPC_intack_ops = {
109 .read = ppc_intack_read,
110 .valid = {
111 .max_access_size = 1,
112 },
113};
114
9a183916
HP
115static inline hwaddr raven_io_address(PREPPCIState *s,
116 hwaddr addr)
117{
118 if (s->contiguous_map == 0) {
119 /* 64 KB contiguous space for IOs */
120 addr &= 0xFFFF;
121 } else {
122 /* 8 MB non-contiguous space for IOs */
123 addr = (addr & 0x1F) | ((addr & 0x007FFF000) >> 7);
124 }
125
126 /* FIXME: handle endianness switch */
127
128 return addr;
129}
130
131static uint64_t raven_io_read(void *opaque, hwaddr addr,
132 unsigned int size)
133{
134 PREPPCIState *s = opaque;
135 uint8_t buf[4];
136
137 addr = raven_io_address(s, addr);
1ae1dc5b 138 address_space_read(&s->pci_io_as, addr + 0x80000000, buf, size);
9a183916
HP
139
140 if (size == 1) {
141 return buf[0];
142 } else if (size == 2) {
143 return lduw_p(buf);
144 } else if (size == 4) {
145 return ldl_p(buf);
146 } else {
147 g_assert_not_reached();
148 }
149}
150
151static void raven_io_write(void *opaque, hwaddr addr,
152 uint64_t val, unsigned int size)
153{
154 PREPPCIState *s = opaque;
155 uint8_t buf[4];
156
157 addr = raven_io_address(s, addr);
158
159 if (size == 1) {
160 buf[0] = val;
161 } else if (size == 2) {
162 stw_p(buf, val);
163 } else if (size == 4) {
164 stl_p(buf, val);
165 } else {
166 g_assert_not_reached();
167 }
168
1ae1dc5b 169 address_space_write(&s->pci_io_as, addr + 0x80000000, buf, size);
9a183916
HP
170}
171
172static const MemoryRegionOps raven_io_ops = {
173 .read = raven_io_read,
174 .write = raven_io_write,
175 .endianness = DEVICE_LITTLE_ENDIAN,
176 .impl.max_access_size = 4,
177 .valid.unaligned = true,
178};
179
d2b59317 180static int prep_map_irq(PCIDevice *pci_dev, int irq_num)
502a5395 181{
80b3ada7 182 return (irq_num + (pci_dev->devfn >> 3)) & 1;
d2b59317
PB
183}
184
5d4e84c8 185static void prep_set_irq(void *opaque, int irq_num, int level)
d2b59317 186{
5d4e84c8
JQ
187 qemu_irq *pic = opaque;
188
8ca8c7bc 189 qemu_set_irq(pic[irq_num] , level);
502a5395
PB
190}
191
9a183916
HP
192static void raven_change_gpio(void *opaque, int n, int level)
193{
194 PREPPCIState *s = opaque;
195
196 s->contiguous_map = level;
197}
198
8d5ce2e5 199static void raven_pcihost_realizefn(DeviceState *d, Error **errp)
502a5395 200{
8d5ce2e5 201 SysBusDevice *dev = SYS_BUS_DEVICE(d);
8558d942 202 PCIHostState *h = PCI_HOST_BRIDGE(dev);
03a6b667 203 PREPPCIState *s = RAVEN_PCI_HOST_BRIDGE(dev);
8ca8c7bc 204 MemoryRegion *address_space_mem = get_system_memory();
8ca8c7bc
AF
205 int i;
206
768d7e2c
HP
207 isa_mem_base = 0xc0000000;
208
963116b0 209 for (i = 0; i < PCI_NUM_PINS; i++) {
8ca8c7bc
AF
210 sysbus_init_irq(dev, &s->irq[i]);
211 }
502a5395 212
9a183916
HP
213 qdev_init_gpio_in(d, raven_change_gpio, 1);
214
963116b0 215 pci_bus_irqs(&s->pci_bus, prep_set_irq, prep_map_irq, s->irq, PCI_NUM_PINS);
502a5395 216
40c5dce9 217 memory_region_init_io(&h->conf_mem, OBJECT(h), &pci_host_conf_be_ops, s,
d0ed8076 218 "pci-conf-idx", 1);
1ae1dc5b 219 memory_region_add_subregion(&s->pci_io, 0xcf8, &h->conf_mem);
d0ed8076 220
40c5dce9 221 memory_region_init_io(&h->data_mem, OBJECT(h), &pci_host_data_be_ops, s,
d0ed8076 222 "pci-conf-data", 1);
1ae1dc5b 223 memory_region_add_subregion(&s->pci_io, 0xcfc, &h->data_mem);
502a5395 224
40c5dce9 225 memory_region_init_io(&h->mmcfg, OBJECT(s), &PPC_PCIIO_ops, s, "pciio", 0x00400000);
8ca8c7bc 226 memory_region_add_subregion(address_space_mem, 0x80800000, &h->mmcfg);
502a5395 227
49a4e212
HP
228 memory_region_init_io(&s->pci_intack, OBJECT(s), &PPC_intack_ops, s,
229 "pci-intack", 1);
230 memory_region_add_subregion(address_space_mem, 0xbffffff0, &s->pci_intack);
55526054 231
98aca3c8 232 /* TODO Remove once realize propagates to child devices. */
8d5ce2e5 233 object_property_set_bool(OBJECT(&s->pci_dev), true, "realized", errp);
98aca3c8
AF
234}
235
236static void raven_pcihost_initfn(Object *obj)
237{
238 PCIHostState *h = PCI_HOST_BRIDGE(obj);
239 PREPPCIState *s = RAVEN_PCI_HOST_BRIDGE(obj);
240 MemoryRegion *address_space_mem = get_system_memory();
98aca3c8
AF
241 DeviceState *pci_dev;
242
1ae1dc5b 243 memory_region_init(&s->pci_io, obj, "pci-io", 0x3f800000);
9a183916
HP
244 memory_region_init_io(&s->pci_io_non_contiguous, obj, &raven_io_ops, s,
245 "pci-io-non-contiguous", 0x00800000);
1ae1dc5b 246 address_space_init(&s->pci_io_as, &s->pci_io, "raven-io");
9a183916
HP
247
248 /* CPU address space */
1ae1dc5b 249 memory_region_add_subregion(address_space_mem, 0x80000000, &s->pci_io);
9a183916
HP
250 memory_region_add_subregion_overlap(address_space_mem, 0x80000000,
251 &s->pci_io_non_contiguous, 1);
dd301ca6 252 pci_bus_new_inplace(&s->pci_bus, sizeof(s->pci_bus), DEVICE(obj), NULL,
1ae1dc5b
HP
253 address_space_mem, &s->pci_io, 0, TYPE_PCI_BUS);
254
98aca3c8
AF
255 h->bus = &s->pci_bus;
256
213f0c4f 257 object_initialize(&s->pci_dev, sizeof(s->pci_dev), TYPE_RAVEN_PCI_DEVICE);
98aca3c8
AF
258 pci_dev = DEVICE(&s->pci_dev);
259 qdev_set_parent_bus(pci_dev, BUS(&s->pci_bus));
260 object_property_set_int(OBJECT(&s->pci_dev), PCI_DEVFN(0, 0), "addr",
261 NULL);
262 qdev_prop_set_bit(pci_dev, "multifunction", false);
55526054
AF
263}
264
265static int raven_init(PCIDevice *d)
266{
d0b25425
HP
267 RavenPCIState *s = RAVEN_PCI_DEVICE(d);
268 char *filename;
269 int bios_size = -1;
270
502a5395
PB
271 d->config[0x0C] = 0x08; // cache_line_size
272 d->config[0x0D] = 0x10; // latency_timer
502a5395
PB
273 d->config[0x34] = 0x00; // capabilities_pointer
274
d0b25425
HP
275 memory_region_init_ram(&s->bios, OBJECT(s), "bios", BIOS_SIZE);
276 memory_region_set_readonly(&s->bios, true);
277 memory_region_add_subregion(get_system_memory(), (uint32_t)(-BIOS_SIZE),
278 &s->bios);
279 vmstate_register_ram_global(&s->bios);
280 if (s->bios_name) {
281 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, s->bios_name);
282 if (filename) {
283 if (s->elf_machine != EM_NONE) {
284 bios_size = load_elf(filename, NULL, NULL, NULL,
285 NULL, NULL, 1, s->elf_machine, 0);
286 }
287 if (bios_size < 0) {
288 bios_size = get_image_size(filename);
289 if (bios_size > 0 && bios_size <= BIOS_SIZE) {
290 hwaddr bios_addr;
291 bios_size = (bios_size + 0xfff) & ~0xfff;
292 bios_addr = (uint32_t)(-BIOS_SIZE);
293 bios_size = load_image_targphys(filename, bios_addr,
294 bios_size);
295 }
296 }
297 }
298 if (bios_size < 0 || bios_size > BIOS_SIZE) {
299 hw_error("qemu: could not load bios image '%s'\n", s->bios_name);
300 }
301 if (filename) {
302 g_free(filename);
303 }
304 }
305
55526054 306 return 0;
502a5395 307}
55526054
AF
308
309static const VMStateDescription vmstate_raven = {
310 .name = "raven",
311 .version_id = 0,
312 .minimum_version_id = 0,
313 .fields = (VMStateField[]) {
314 VMSTATE_PCI_DEVICE(dev, RavenPCIState),
315 VMSTATE_END_OF_LIST()
316 },
317};
318
40021f08
AL
319static void raven_class_init(ObjectClass *klass, void *data)
320{
321 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
39bffca2 322 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
323
324 k->init = raven_init;
325 k->vendor_id = PCI_VENDOR_ID_MOTOROLA;
326 k->device_id = PCI_DEVICE_ID_MOTOROLA_RAVEN;
327 k->revision = 0x00;
328 k->class_id = PCI_CLASS_BRIDGE_HOST;
39bffca2
AL
329 dc->desc = "PReP Host Bridge - Motorola Raven";
330 dc->vmsd = &vmstate_raven;
08c58f92
MA
331 /*
332 * PCI-facing part of the host bridge, not usable without the
333 * host-facing part, which can't be device_add'ed, yet.
334 */
335 dc->cannot_instantiate_with_device_add_yet = true;
40021f08
AL
336}
337
4240abff 338static const TypeInfo raven_info = {
98aca3c8 339 .name = TYPE_RAVEN_PCI_DEVICE,
39bffca2
AL
340 .parent = TYPE_PCI_DEVICE,
341 .instance_size = sizeof(RavenPCIState),
40021f08 342 .class_init = raven_class_init,
55526054
AF
343};
344
d0b25425
HP
345static Property raven_pcihost_properties[] = {
346 DEFINE_PROP_UINT32("elf-machine", PREPPCIState, pci_dev.elf_machine,
347 EM_NONE),
348 DEFINE_PROP_STRING("bios-name", PREPPCIState, pci_dev.bios_name),
349 DEFINE_PROP_END_OF_LIST()
350};
351
999e12bb
AL
352static void raven_pcihost_class_init(ObjectClass *klass, void *data)
353{
39bffca2 354 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb 355
125ee0ed 356 set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
8d5ce2e5 357 dc->realize = raven_pcihost_realizefn;
d0b25425 358 dc->props = raven_pcihost_properties;
39bffca2 359 dc->fw_name = "pci";
999e12bb
AL
360}
361
4240abff 362static const TypeInfo raven_pcihost_info = {
03a6b667 363 .name = TYPE_RAVEN_PCI_HOST_BRIDGE,
8558d942 364 .parent = TYPE_PCI_HOST_BRIDGE,
39bffca2 365 .instance_size = sizeof(PREPPCIState),
98aca3c8 366 .instance_init = raven_pcihost_initfn,
999e12bb 367 .class_init = raven_pcihost_class_init,
8ca8c7bc
AF
368};
369
83f7d43a 370static void raven_register_types(void)
55526054 371{
39bffca2
AL
372 type_register_static(&raven_pcihost_info);
373 type_register_static(&raven_info);
55526054
AF
374}
375
83f7d43a 376type_init(raven_register_types)