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