]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pci-host/q35.c
Merge remote-tracking branch 'pmaydell/tags/pull-target-arm-20130910' into staging
[mirror_qemu.git] / hw / pci-host / q35.c
CommitLineData
df2d8b3e
IY
1/*
2 * QEMU MCH/ICH9 PCI Bridge Emulation
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5 * Copyright (c) 2009, 2010, 2011
6 * Isaku Yamahata <yamahata at valinux co jp>
7 * VA Linux Systems Japan K.K.
8 * Copyright (C) 2012 Jason Baron <jbaron@redhat.com>
9 *
10 * This is based on piix_pci.c, but heavily modified.
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to deal
14 * in the Software without restriction, including without limitation the rights
15 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28 * THE SOFTWARE.
29 */
83c9f4ca 30#include "hw/hw.h"
0d09e41a 31#include "hw/pci-host/q35.h"
39848901 32#include "qapi/visitor.h"
df2d8b3e
IY
33
34/****************************************************************************
35 * Q35 host
36 */
37
62d92e43 38static void q35_host_realize(DeviceState *dev, Error **errp)
df2d8b3e 39{
ce88812f
HT
40 PCIHostState *pci = PCI_HOST_BRIDGE(dev);
41 Q35PCIHost *s = Q35_HOST_DEVICE(dev);
62d92e43 42 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
df2d8b3e 43
62d92e43
HT
44 sysbus_add_io(sbd, MCH_HOST_BRIDGE_CONFIG_ADDR, &pci->conf_mem);
45 sysbus_init_ioports(sbd, MCH_HOST_BRIDGE_CONFIG_ADDR, 4);
df2d8b3e 46
62d92e43
HT
47 sysbus_add_io(sbd, MCH_HOST_BRIDGE_CONFIG_DATA, &pci->data_mem);
48 sysbus_init_ioports(sbd, MCH_HOST_BRIDGE_CONFIG_DATA, 4);
df2d8b3e 49
ce88812f 50 if (pcie_host_init(PCIE_HOST_BRIDGE(s)) < 0) {
62d92e43
HT
51 error_setg(errp, "failed to initialize pcie host");
52 return;
df2d8b3e 53 }
ce88812f
HT
54 pci->bus = pci_bus_new(DEVICE(s), "pcie.0",
55 s->mch.pci_address_space, s->mch.address_space_io,
56 0, TYPE_PCIE_BUS);
57 qdev_set_parent_bus(DEVICE(&s->mch), BUS(pci->bus));
df2d8b3e 58 qdev_init_nofail(DEVICE(&s->mch));
df2d8b3e
IY
59}
60
568f0690
DG
61static const char *q35_host_root_bus_path(PCIHostState *host_bridge,
62 PCIBus *rootbus)
63{
64 /* For backwards compat with old device paths */
65 return "0000";
66}
67
39848901
IM
68static void q35_host_get_pci_hole_start(Object *obj, Visitor *v,
69 void *opaque, const char *name,
70 Error **errp)
71{
72 Q35PCIHost *s = Q35_HOST_DEVICE(obj);
73 uint32_t value = s->mch.pci_info.w32.begin;
74
75 visit_type_uint32(v, &value, name, errp);
76}
77
78static void q35_host_get_pci_hole_end(Object *obj, Visitor *v,
79 void *opaque, const char *name,
80 Error **errp)
81{
82 Q35PCIHost *s = Q35_HOST_DEVICE(obj);
83 uint32_t value = s->mch.pci_info.w32.end;
84
85 visit_type_uint32(v, &value, name, errp);
86}
87
88static void q35_host_get_pci_hole64_start(Object *obj, Visitor *v,
89 void *opaque, const char *name,
90 Error **errp)
91{
92 Q35PCIHost *s = Q35_HOST_DEVICE(obj);
93
94 visit_type_uint64(v, &s->mch.pci_info.w64.begin, name, errp);
95}
96
97static void q35_host_get_pci_hole64_end(Object *obj, Visitor *v,
98 void *opaque, const char *name,
99 Error **errp)
100{
101 Q35PCIHost *s = Q35_HOST_DEVICE(obj);
102
103 visit_type_uint64(v, &s->mch.pci_info.w64.end, name, errp);
104}
105
df2d8b3e 106static Property mch_props[] = {
ce88812f 107 DEFINE_PROP_UINT64("MCFG", Q35PCIHost, parent_obj.base_addr,
df2d8b3e 108 MCH_HOST_BRIDGE_PCIEXBAR_DEFAULT),
39848901
IM
109 DEFINE_PROP_SIZE(PCI_HOST_PROP_PCI_HOLE64_SIZE, Q35PCIHost,
110 mch.pci_hole64_size, DEFAULT_PCI_HOLE64_SIZE),
df2d8b3e
IY
111 DEFINE_PROP_END_OF_LIST(),
112};
113
114static void q35_host_class_init(ObjectClass *klass, void *data)
115{
116 DeviceClass *dc = DEVICE_CLASS(klass);
568f0690 117 PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(klass);
df2d8b3e 118
568f0690 119 hc->root_bus_path = q35_host_root_bus_path;
62d92e43 120 dc->realize = q35_host_realize;
df2d8b3e 121 dc->props = mch_props;
125ee0ed 122 set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
68c0e134 123 dc->fw_name = "pci";
df2d8b3e
IY
124}
125
126static void q35_host_initfn(Object *obj)
127{
128 Q35PCIHost *s = Q35_HOST_DEVICE(obj);
62d92e43
HT
129 PCIHostState *phb = PCI_HOST_BRIDGE(obj);
130
131 memory_region_init_io(&phb->conf_mem, obj, &pci_host_conf_le_ops, phb,
132 "pci-conf-idx", 4);
133 memory_region_init_io(&phb->data_mem, obj, &pci_host_data_le_ops, phb,
134 "pci-conf-data", 4);
df2d8b3e 135
213f0c4f 136 object_initialize(&s->mch, sizeof(s->mch), TYPE_MCH_PCI_DEVICE);
df2d8b3e
IY
137 object_property_add_child(OBJECT(s), "mch", OBJECT(&s->mch), NULL);
138 qdev_prop_set_uint32(DEVICE(&s->mch), "addr", PCI_DEVFN(0, 0));
139 qdev_prop_set_bit(DEVICE(&s->mch), "multifunction", false);
39848901
IM
140
141 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE_START, "int",
142 q35_host_get_pci_hole_start,
143 NULL, NULL, NULL, NULL);
144
145 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE_END, "int",
146 q35_host_get_pci_hole_end,
147 NULL, NULL, NULL, NULL);
148
149 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE64_START, "int",
150 q35_host_get_pci_hole64_start,
151 NULL, NULL, NULL, NULL);
152
153 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE64_END, "int",
154 q35_host_get_pci_hole64_end,
155 NULL, NULL, NULL, NULL);
156
157 /* Leave enough space for the biggest MCFG BAR */
158 /* TODO: this matches current bios behaviour, but
159 * it's not a power of two, which means an MTRR
160 * can't cover it exactly.
161 */
162 s->mch.pci_info.w32.begin = MCH_HOST_BRIDGE_PCIEXBAR_DEFAULT +
163 MCH_HOST_BRIDGE_PCIEXBAR_MAX;
164 s->mch.pci_info.w32.end = IO_APIC_DEFAULT_ADDRESS;
df2d8b3e
IY
165}
166
167static const TypeInfo q35_host_info = {
168 .name = TYPE_Q35_HOST_DEVICE,
169 .parent = TYPE_PCIE_HOST_BRIDGE,
170 .instance_size = sizeof(Q35PCIHost),
171 .instance_init = q35_host_initfn,
172 .class_init = q35_host_class_init,
173};
174
175/****************************************************************************
176 * MCH D0:F0
177 */
178
179/* PCIe MMCFG */
180static void mch_update_pciexbar(MCHPCIState *mch)
181{
ce88812f
HT
182 PCIDevice *pci_dev = PCI_DEVICE(mch);
183 BusState *bus = qdev_get_parent_bus(DEVICE(mch));
184 PCIExpressHost *pehb = PCIE_HOST_BRIDGE(bus->parent);
df2d8b3e
IY
185
186 uint64_t pciexbar;
187 int enable;
188 uint64_t addr;
189 uint64_t addr_mask;
190 uint32_t length;
191
192 pciexbar = pci_get_quad(pci_dev->config + MCH_HOST_BRIDGE_PCIEXBAR);
193 enable = pciexbar & MCH_HOST_BRIDGE_PCIEXBAREN;
194 addr_mask = MCH_HOST_BRIDGE_PCIEXBAR_ADMSK;
195 switch (pciexbar & MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_MASK) {
196 case MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_256M:
197 length = 256 * 1024 * 1024;
198 break;
199 case MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_128M:
200 length = 128 * 1024 * 1024;
201 addr_mask |= MCH_HOST_BRIDGE_PCIEXBAR_128ADMSK |
202 MCH_HOST_BRIDGE_PCIEXBAR_64ADMSK;
203 break;
204 case MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_64M:
205 length = 64 * 1024 * 1024;
206 addr_mask |= MCH_HOST_BRIDGE_PCIEXBAR_64ADMSK;
207 break;
208 case MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_RVD:
209 default:
210 enable = 0;
211 length = 0;
212 abort();
213 break;
214 }
215 addr = pciexbar & addr_mask;
ce88812f 216 pcie_host_mmcfg_update(pehb, enable, addr, length);
df2d8b3e
IY
217}
218
219/* PAM */
220static void mch_update_pam(MCHPCIState *mch)
221{
ce88812f 222 PCIDevice *pd = PCI_DEVICE(mch);
df2d8b3e
IY
223 int i;
224
225 memory_region_transaction_begin();
226 for (i = 0; i < 13; i++) {
227 pam_update(&mch->pam_regions[i], i,
ce88812f 228 pd->config[MCH_HOST_BRIDGE_PAM0 + ((i + 1) / 2)]);
df2d8b3e
IY
229 }
230 memory_region_transaction_commit();
231}
232
233/* SMRAM */
234static void mch_update_smram(MCHPCIState *mch)
235{
ce88812f
HT
236 PCIDevice *pd = PCI_DEVICE(mch);
237
df2d8b3e 238 memory_region_transaction_begin();
ce88812f 239 smram_update(&mch->smram_region, pd->config[MCH_HOST_BRDIGE_SMRAM],
df2d8b3e
IY
240 mch->smm_enabled);
241 memory_region_transaction_commit();
242}
243
244static void mch_set_smm(int smm, void *arg)
245{
246 MCHPCIState *mch = arg;
ce88812f 247 PCIDevice *pd = PCI_DEVICE(mch);
df2d8b3e
IY
248
249 memory_region_transaction_begin();
ce88812f 250 smram_set_smm(&mch->smm_enabled, smm, pd->config[MCH_HOST_BRDIGE_SMRAM],
df2d8b3e
IY
251 &mch->smram_region);
252 memory_region_transaction_commit();
253}
254
255static void mch_write_config(PCIDevice *d,
256 uint32_t address, uint32_t val, int len)
257{
258 MCHPCIState *mch = MCH_PCI_DEVICE(d);
259
260 /* XXX: implement SMRAM.D_LOCK */
261 pci_default_write_config(d, address, val, len);
262
263 if (ranges_overlap(address, len, MCH_HOST_BRIDGE_PAM0,
264 MCH_HOST_BRIDGE_PAM_SIZE)) {
265 mch_update_pam(mch);
266 }
267
268 if (ranges_overlap(address, len, MCH_HOST_BRIDGE_PCIEXBAR,
269 MCH_HOST_BRIDGE_PCIEXBAR_SIZE)) {
270 mch_update_pciexbar(mch);
271 }
272
273 if (ranges_overlap(address, len, MCH_HOST_BRDIGE_SMRAM,
274 MCH_HOST_BRDIGE_SMRAM_SIZE)) {
275 mch_update_smram(mch);
276 }
277}
278
279static void mch_update(MCHPCIState *mch)
280{
281 mch_update_pciexbar(mch);
282 mch_update_pam(mch);
283 mch_update_smram(mch);
284}
285
286static int mch_post_load(void *opaque, int version_id)
287{
288 MCHPCIState *mch = opaque;
289 mch_update(mch);
290 return 0;
291}
292
293static const VMStateDescription vmstate_mch = {
294 .name = "mch",
295 .version_id = 1,
296 .minimum_version_id = 1,
297 .minimum_version_id_old = 1,
298 .post_load = mch_post_load,
299 .fields = (VMStateField []) {
ce88812f 300 VMSTATE_PCI_DEVICE(parent_obj, MCHPCIState),
df2d8b3e
IY
301 VMSTATE_UINT8(smm_enabled, MCHPCIState),
302 VMSTATE_END_OF_LIST()
303 }
304};
305
306static void mch_reset(DeviceState *qdev)
307{
308 PCIDevice *d = PCI_DEVICE(qdev);
309 MCHPCIState *mch = MCH_PCI_DEVICE(d);
310
311 pci_set_quad(d->config + MCH_HOST_BRIDGE_PCIEXBAR,
312 MCH_HOST_BRIDGE_PCIEXBAR_DEFAULT);
313
314 d->config[MCH_HOST_BRDIGE_SMRAM] = MCH_HOST_BRIDGE_SMRAM_DEFAULT;
315
316 mch_update(mch);
317}
318
319static int mch_init(PCIDevice *d)
320{
321 int i;
df2d8b3e 322 MCHPCIState *mch = MCH_PCI_DEVICE(d);
1466cef3 323 uint64_t pci_hole64_size;
df2d8b3e
IY
324
325 /* setup pci memory regions */
40c5dce9 326 memory_region_init_alias(&mch->pci_hole, OBJECT(mch), "pci-hole",
df2d8b3e
IY
327 mch->pci_address_space,
328 mch->below_4g_mem_size,
329 0x100000000ULL - mch->below_4g_mem_size);
330 memory_region_add_subregion(mch->system_memory, mch->below_4g_mem_size,
331 &mch->pci_hole);
39848901 332
1466cef3 333 pci_hole64_size = pci_host_get_hole64_size(mch->pci_hole64_size);
39848901 334 pc_init_pci64_hole(&mch->pci_info, 0x100000000ULL + mch->above_4g_mem_size,
1466cef3 335 pci_hole64_size);
40c5dce9 336 memory_region_init_alias(&mch->pci_hole_64bit, OBJECT(mch), "pci-hole64",
df2d8b3e 337 mch->pci_address_space,
39848901 338 mch->pci_info.w64.begin,
1466cef3
MT
339 pci_hole64_size);
340 if (pci_hole64_size) {
df2d8b3e 341 memory_region_add_subregion(mch->system_memory,
39848901 342 mch->pci_info.w64.begin,
df2d8b3e
IY
343 &mch->pci_hole_64bit);
344 }
345 /* smram */
346 cpu_smm_register(&mch_set_smm, mch);
40c5dce9 347 memory_region_init_alias(&mch->smram_region, OBJECT(mch), "smram-region",
df2d8b3e
IY
348 mch->pci_address_space, 0xa0000, 0x20000);
349 memory_region_add_subregion_overlap(mch->system_memory, 0xa0000,
350 &mch->smram_region, 1);
351 memory_region_set_enabled(&mch->smram_region, false);
3cd2cf43 352 init_pam(DEVICE(mch), mch->ram_memory, mch->system_memory, mch->pci_address_space,
df2d8b3e
IY
353 &mch->pam_regions[0], PAM_BIOS_BASE, PAM_BIOS_SIZE);
354 for (i = 0; i < 12; ++i) {
3cd2cf43 355 init_pam(DEVICE(mch), mch->ram_memory, mch->system_memory, mch->pci_address_space,
df2d8b3e
IY
356 &mch->pam_regions[i+1], PAM_EXPAN_BASE + i * PAM_EXPAN_SIZE,
357 PAM_EXPAN_SIZE);
358 }
359 return 0;
360}
361
362static void mch_class_init(ObjectClass *klass, void *data)
363{
364 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
365 DeviceClass *dc = DEVICE_CLASS(klass);
366
367 k->init = mch_init;
368 k->config_write = mch_write_config;
369 dc->reset = mch_reset;
125ee0ed 370 set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
df2d8b3e
IY
371 dc->desc = "Host bridge";
372 dc->vmsd = &vmstate_mch;
373 k->vendor_id = PCI_VENDOR_ID_INTEL;
374 k->device_id = PCI_DEVICE_ID_INTEL_Q35_MCH;
375 k->revision = MCH_HOST_BRIDGE_REVISION_DEFUALT;
376 k->class_id = PCI_CLASS_BRIDGE_HOST;
377}
378
379static const TypeInfo mch_info = {
380 .name = TYPE_MCH_PCI_DEVICE,
381 .parent = TYPE_PCI_DEVICE,
382 .instance_size = sizeof(MCHPCIState),
383 .class_init = mch_class_init,
384};
385
386static void q35_register(void)
387{
388 type_register_static(&mch_info);
389 type_register_static(&q35_host_info);
390}
391
392type_init(q35_register);