pci: simplify (pci_/pcie_mmcfg_)data_read()
[qemu.git] / hw / pci_host.c
blob4a29f44904f4b41647551c79d3c10021b909897e
1 /*
2 * pci_host.c
4 * Copyright (c) 2009 Isaku Yamahata <yamahata at valinux co jp>
5 * VA Linux Systems Japan K.K.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "pci.h"
23 #include "pci_host.h"
25 /* debug PCI */
26 //#define DEBUG_PCI
28 #ifdef DEBUG_PCI
29 #define PCI_DPRINTF(fmt, ...) \
30 do { printf("pci_host_data: " fmt , ## __VA_ARGS__); } while (0)
31 #else
32 #define PCI_DPRINTF(fmt, ...)
33 #endif
36 * PCI address
37 * bit 16 - 24: bus number
38 * bit 8 - 15: devfun number
39 * bit 0 - 7: offset in configuration space of a given pci device
42 /* the helper functio to get a PCIDeice* for a given pci address */
43 static inline PCIDevice *pci_addr_to_dev(PCIBus *bus, uint32_t addr)
45 uint8_t bus_num = (addr >> 16) & 0xff;
46 uint8_t devfn = (addr >> 8) & 0xff;
47 return pci_find_device(bus, bus_num, PCI_SLOT(devfn), PCI_FUNC(devfn));
50 static inline uint32_t pci_addr_to_config(uint32_t addr)
52 return addr & (PCI_CONFIG_SPACE_SIZE - 1);
55 void pci_data_write(PCIBus *s, uint32_t addr, uint32_t val, int len)
57 PCIDevice *pci_dev = pci_addr_to_dev(s, addr);
58 uint32_t config_addr = pci_addr_to_config(addr);
60 if (!pci_dev)
61 return;
63 PCI_DPRINTF("%s: %s: addr=%02"PRIx32" val=%08"PRI32x" len=%d\n",
64 __func__, pci_dev->name, config_addr, val, len);
65 pci_dev->config_write(pci_dev, config_addr, val, len);
68 uint32_t pci_data_read(PCIBus *s, uint32_t addr, int len)
70 PCIDevice *pci_dev = pci_addr_to_dev(s, addr);
71 uint32_t config_addr = pci_addr_to_config(addr);
72 uint32_t val;
74 assert(len == 1 || len == 2 || len == 4);
75 if (!pci_dev) {
76 return ~0x0;
79 val = pci_dev->config_read(pci_dev, config_addr, len);
80 PCI_DPRINTF("%s: %s: addr=%02"PRIx32" val=%08"PRIx32" len=%d\n",
81 __func__, pci_dev->name, config_addr, val, len);
83 return val;
86 static void pci_host_config_writel(void *opaque, target_phys_addr_t addr,
87 uint32_t val)
89 PCIHostState *s = opaque;
91 #ifdef TARGET_WORDS_BIGENDIAN
92 val = bswap32(val);
93 #endif
94 PCI_DPRINTF("%s addr " TARGET_FMT_plx " val %"PRIx32"\n",
95 __func__, addr, val);
96 s->config_reg = val;
99 static uint32_t pci_host_config_readl(void *opaque, target_phys_addr_t addr)
101 PCIHostState *s = opaque;
102 uint32_t val = s->config_reg;
104 #ifdef TARGET_WORDS_BIGENDIAN
105 val = bswap32(val);
106 #endif
107 PCI_DPRINTF("%s addr " TARGET_FMT_plx " val %"PRIx32"\n",
108 __func__, addr, val);
109 return val;
112 static CPUWriteMemoryFunc * const pci_host_config_write[] = {
113 &pci_host_config_writel,
114 &pci_host_config_writel,
115 &pci_host_config_writel,
118 static CPUReadMemoryFunc * const pci_host_config_read[] = {
119 &pci_host_config_readl,
120 &pci_host_config_readl,
121 &pci_host_config_readl,
124 int pci_host_config_register_io_memory(PCIHostState *s)
126 return cpu_register_io_memory(pci_host_config_read,
127 pci_host_config_write, s);
130 static void pci_host_config_writel_noswap(void *opaque,
131 target_phys_addr_t addr,
132 uint32_t val)
134 PCIHostState *s = opaque;
136 PCI_DPRINTF("%s addr " TARGET_FMT_plx " val %"PRIx32"\n",
137 __func__, addr, val);
138 s->config_reg = val;
141 static uint32_t pci_host_config_readl_noswap(void *opaque,
142 target_phys_addr_t addr)
144 PCIHostState *s = opaque;
145 uint32_t val = s->config_reg;
147 PCI_DPRINTF("%s addr " TARGET_FMT_plx " val %"PRIx32"\n",
148 __func__, addr, val);
149 return val;
152 static CPUWriteMemoryFunc * const pci_host_config_write_noswap[] = {
153 &pci_host_config_writel_noswap,
154 &pci_host_config_writel_noswap,
155 &pci_host_config_writel_noswap,
158 static CPUReadMemoryFunc * const pci_host_config_read_noswap[] = {
159 &pci_host_config_readl_noswap,
160 &pci_host_config_readl_noswap,
161 &pci_host_config_readl_noswap,
164 int pci_host_config_register_io_memory_noswap(PCIHostState *s)
166 return cpu_register_io_memory(pci_host_config_read_noswap,
167 pci_host_config_write_noswap, s);
170 static void pci_host_config_writel_ioport(void *opaque,
171 uint32_t addr, uint32_t val)
173 PCIHostState *s = opaque;
175 PCI_DPRINTF("%s addr %"PRIx32 " val %"PRIx32"\n", __func__, addr, val);
176 s->config_reg = val;
179 static uint32_t pci_host_config_readl_ioport(void *opaque, uint32_t addr)
181 PCIHostState *s = opaque;
182 uint32_t val = s->config_reg;
184 PCI_DPRINTF("%s addr %"PRIx32" val %"PRIx32"\n", __func__, addr, val);
185 return val;
188 void pci_host_config_register_ioport(pio_addr_t ioport, PCIHostState *s)
190 register_ioport_write(ioport, 4, 4, pci_host_config_writel_ioport, s);
191 register_ioport_read(ioport, 4, 4, pci_host_config_readl_ioport, s);
194 #define PCI_ADDR_T target_phys_addr_t
195 #define PCI_HOST_SUFFIX _mmio
197 #include "pci_host_template.h"
199 static CPUWriteMemoryFunc * const pci_host_data_write_mmio[] = {
200 pci_host_data_writeb_mmio,
201 pci_host_data_writew_mmio,
202 pci_host_data_writel_mmio,
205 static CPUReadMemoryFunc * const pci_host_data_read_mmio[] = {
206 pci_host_data_readb_mmio,
207 pci_host_data_readw_mmio,
208 pci_host_data_readl_mmio,
211 int pci_host_data_register_io_memory(PCIHostState *s)
213 return cpu_register_io_memory(pci_host_data_read_mmio,
214 pci_host_data_write_mmio,
218 #undef PCI_ADDR_T
219 #undef PCI_HOST_SUFFIX
221 #define PCI_ADDR_T uint32_t
222 #define PCI_HOST_SUFFIX _ioport
224 #include "pci_host_template.h"
226 void pci_host_data_register_ioport(pio_addr_t ioport, PCIHostState *s)
228 register_ioport_write(ioport, 4, 1, pci_host_data_writeb_ioport, s);
229 register_ioport_write(ioport, 4, 2, pci_host_data_writew_ioport, s);
230 register_ioport_write(ioport, 4, 4, pci_host_data_writel_ioport, s);
231 register_ioport_read(ioport, 4, 1, pci_host_data_readb_ioport, s);
232 register_ioport_read(ioport, 4, 2, pci_host_data_readw_ioport, s);
233 register_ioport_read(ioport, 4, 4, pci_host_data_readl_ioport, s);