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