]> Git Repo - qemu.git/blame - hw/pci/pcie_host.c
Merge remote-tracking branch 'remotes/agraf/tags/signed-s390-for-upstream' into staging
[qemu.git] / hw / pci / pcie_host.c
CommitLineData
a9f49946
IY
1/*
2 * pcie_host.c
3 * utility functions for pci express host bridge.
4 *
5 * Copyright (c) 2009 Isaku Yamahata <yamahata at valinux co jp>
6 * VA Linux Systems Japan K.K.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17
18 * You should have received a copy of the GNU General Public License along
70539e18 19 * with this program; if not, see <http://www.gnu.org/licenses/>.
a9f49946
IY
20 */
21
c759b24f
MT
22#include "hw/hw.h"
23#include "hw/pci/pci.h"
24#include "hw/pci/pcie_host.h"
022c62cb 25#include "exec/address-spaces.h"
a9f49946 26
a9f49946 27/* a helper function to get a PCIDevice for a given mmconfig address */
8d6514f8
IY
28static inline PCIDevice *pcie_dev_find_by_mmcfg_addr(PCIBus *s,
29 uint32_t mmcfg_addr)
a9f49946
IY
30{
31 return pci_find_device(s, PCIE_MMCFG_BUS(mmcfg_addr),
5256d8bf 32 PCIE_MMCFG_DEVFN(mmcfg_addr));
a9f49946
IY
33}
34
a8170e5e 35static void pcie_mmcfg_data_write(void *opaque, hwaddr mmcfg_addr,
c76f990e 36 uint64_t val, unsigned len)
a9f49946 37{
c76f990e
AK
38 PCIExpressHost *e = opaque;
39 PCIBus *s = e->pci.bus;
8d6514f8 40 PCIDevice *pci_dev = pcie_dev_find_by_mmcfg_addr(s, mmcfg_addr);
43e86c8f
IY
41 uint32_t addr;
42 uint32_t limit;
a9f49946 43
42e4126b 44 if (!pci_dev) {
a9f49946 45 return;
42e4126b 46 }
43e86c8f
IY
47 addr = PCIE_MMCFG_CONFOFFSET(mmcfg_addr);
48 limit = pci_config_size(pci_dev);
49 if (limit <= addr) {
50 /* conventional pci device can be behind pcie-to-pci bridge.
51 256 <= addr < 4K has no effects. */
52 return;
53 }
54 pci_host_config_write_common(pci_dev, addr, limit, val, len);
a9f49946
IY
55}
56
c76f990e 57static uint64_t pcie_mmcfg_data_read(void *opaque,
a8170e5e 58 hwaddr mmcfg_addr,
c76f990e 59 unsigned len)
a9f49946 60{
c76f990e
AK
61 PCIExpressHost *e = opaque;
62 PCIBus *s = e->pci.bus;
43e86c8f
IY
63 PCIDevice *pci_dev = pcie_dev_find_by_mmcfg_addr(s, mmcfg_addr);
64 uint32_t addr;
65 uint32_t limit;
a9f49946
IY
66
67 if (!pci_dev) {
4677d8ed 68 return ~0x0;
a9f49946 69 }
43e86c8f
IY
70 addr = PCIE_MMCFG_CONFOFFSET(mmcfg_addr);
71 limit = pci_config_size(pci_dev);
72 if (limit <= addr) {
73 /* conventional pci device can be behind pcie-to-pci bridge.
74 256 <= addr < 4K has no effects. */
75 return ~0x0;
76 }
77 return pci_host_config_read_common(pci_dev, addr, limit, len);
a9f49946
IY
78}
79
c76f990e
AK
80static const MemoryRegionOps pcie_mmcfg_ops = {
81 .read = pcie_mmcfg_data_read,
82 .write = pcie_mmcfg_data_write,
83 .endianness = DEVICE_NATIVE_ENDIAN,
a9f49946
IY
84};
85
7c8b7248 86static void pcie_host_init(Object *obj)
a9f49946 87{
7c8b7248 88 PCIExpressHost *e = PCIE_HOST_BRIDGE(obj);
a9f49946 89
7c8b7248 90 e->base_addr = PCIE_BASE_ADDR_UNMAPPED;
3a8f2a9c
PB
91 memory_region_init_io(&e->mmio, OBJECT(e), &pcie_mmcfg_ops, e, "pcie-mmcfg-mmio",
92 PCIE_MMCFG_SIZE_MAX);
a9f49946
IY
93}
94
95void pcie_host_mmcfg_unmap(PCIExpressHost *e)
96{
97 if (e->base_addr != PCIE_BASE_ADDR_UNMAPPED) {
c76f990e 98 memory_region_del_subregion(get_system_memory(), &e->mmio);
a9f49946
IY
99 e->base_addr = PCIE_BASE_ADDR_UNMAPPED;
100 }
101}
102
27fb9688 103void pcie_host_mmcfg_init(PCIExpressHost *e, uint32_t size)
a9f49946 104{
c702ddb8
JB
105 assert(!(size & (size - 1))); /* power of 2 */
106 assert(size >= PCIE_MMCFG_SIZE_MIN);
107 assert(size <= PCIE_MMCFG_SIZE_MAX);
108 e->size = size;
3a8f2a9c 109 memory_region_set_size(&e->mmio, e->size);
27fb9688
AG
110}
111
112void pcie_host_mmcfg_map(PCIExpressHost *e, hwaddr addr,
113 uint32_t size)
114{
115 pcie_host_mmcfg_init(e, size);
a9f49946 116 e->base_addr = addr;
c76f990e 117 memory_region_add_subregion(get_system_memory(), e->base_addr, &e->mmio);
a9f49946
IY
118}
119
120void pcie_host_mmcfg_update(PCIExpressHost *e,
121 int enable,
c702ddb8
JB
122 hwaddr addr,
123 uint32_t size)
a9f49946 124{
3a8f2a9c 125 memory_region_transaction_begin();
a9f49946
IY
126 pcie_host_mmcfg_unmap(e);
127 if (enable) {
c702ddb8 128 pcie_host_mmcfg_map(e, addr, size);
a9f49946 129 }
3a8f2a9c 130 memory_region_transaction_commit();
a9f49946 131}
bc927e48
JB
132
133static const TypeInfo pcie_host_type_info = {
134 .name = TYPE_PCIE_HOST_BRIDGE,
135 .parent = TYPE_PCI_HOST_BRIDGE,
136 .abstract = true,
137 .instance_size = sizeof(PCIExpressHost),
7c8b7248 138 .instance_init = pcie_host_init,
bc927e48
JB
139};
140
141static void pcie_host_register_types(void)
142{
143 type_register_static(&pcie_host_type_info);
144}
145
146type_init(pcie_host_register_types)
This page took 0.538285 seconds and 4 git commands to generate.