Update version and changelog to sync with stable branch
[qemu/aliguori-queue.git] / hw / pci_host.c
blobeeb8deeafb1d38ca004d6a11a0001b37c99fb99c
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_dev_find_by_addr(PCIBus *bus, uint32_t addr)
45 uint8_t bus_num = addr >> 16;
46 uint8_t devfn = addr >> 8;
48 return pci_find_device(bus, bus_num, PCI_SLOT(devfn), PCI_FUNC(devfn));
51 void pci_data_write(PCIBus *s, uint32_t addr, uint32_t val, int len)
53 PCIDevice *pci_dev = pci_dev_find_by_addr(s, addr);
54 uint32_t config_addr = addr & (PCI_CONFIG_SPACE_SIZE - 1);
56 if (!pci_dev)
57 return;
59 PCI_DPRINTF("%s: %s: addr=%02"PRIx32" val=%08"PRI32x" len=%d\n",
60 __func__, pci_dev->name, config_addr, val, len);
61 pci_dev->config_write(pci_dev, config_addr, val, len);
64 uint32_t pci_data_read(PCIBus *s, uint32_t addr, int len)
66 PCIDevice *pci_dev = pci_dev_find_by_addr(s, addr);
67 uint32_t config_addr = addr & (PCI_CONFIG_SPACE_SIZE - 1);
68 uint32_t val;
70 assert(len == 1 || len == 2 || len == 4);
71 if (!pci_dev) {
72 return ~0x0;
75 val = pci_dev->config_read(pci_dev, config_addr, len);
76 PCI_DPRINTF("%s: %s: addr=%02"PRIx32" val=%08"PRIx32" len=%d\n",
77 __func__, pci_dev->name, config_addr, val, len);
79 return val;
82 static void pci_host_config_writel(void *opaque, target_phys_addr_t addr,
83 uint32_t val)
85 PCIHostState *s = opaque;
87 #ifdef TARGET_WORDS_BIGENDIAN
88 val = bswap32(val);
89 #endif
90 PCI_DPRINTF("%s addr " TARGET_FMT_plx " val %"PRIx32"\n",
91 __func__, addr, val);
92 s->config_reg = val;
95 static uint32_t pci_host_config_readl(void *opaque, target_phys_addr_t addr)
97 PCIHostState *s = opaque;
98 uint32_t val = s->config_reg;
100 #ifdef TARGET_WORDS_BIGENDIAN
101 val = bswap32(val);
102 #endif
103 PCI_DPRINTF("%s addr " TARGET_FMT_plx " val %"PRIx32"\n",
104 __func__, addr, val);
105 return val;
108 static CPUWriteMemoryFunc * const pci_host_config_write[] = {
109 &pci_host_config_writel,
110 &pci_host_config_writel,
111 &pci_host_config_writel,
114 static CPUReadMemoryFunc * const pci_host_config_read[] = {
115 &pci_host_config_readl,
116 &pci_host_config_readl,
117 &pci_host_config_readl,
120 int pci_host_conf_register_mmio(PCIHostState *s)
122 return cpu_register_io_memory(pci_host_config_read,
123 pci_host_config_write, s);
126 static void pci_host_config_writel_noswap(void *opaque,
127 target_phys_addr_t addr,
128 uint32_t val)
130 PCIHostState *s = opaque;
132 PCI_DPRINTF("%s addr " TARGET_FMT_plx " val %"PRIx32"\n",
133 __func__, addr, val);
134 s->config_reg = val;
137 static uint32_t pci_host_config_readl_noswap(void *opaque,
138 target_phys_addr_t addr)
140 PCIHostState *s = opaque;
141 uint32_t val = s->config_reg;
143 PCI_DPRINTF("%s addr " TARGET_FMT_plx " val %"PRIx32"\n",
144 __func__, addr, val);
145 return val;
148 static CPUWriteMemoryFunc * const pci_host_config_write_noswap[] = {
149 &pci_host_config_writel_noswap,
150 &pci_host_config_writel_noswap,
151 &pci_host_config_writel_noswap,
154 static CPUReadMemoryFunc * const pci_host_config_read_noswap[] = {
155 &pci_host_config_readl_noswap,
156 &pci_host_config_readl_noswap,
157 &pci_host_config_readl_noswap,
160 int pci_host_conf_register_mmio_noswap(PCIHostState *s)
162 return cpu_register_io_memory(pci_host_config_read_noswap,
163 pci_host_config_write_noswap, s);
166 static void pci_host_config_writel_ioport(void *opaque,
167 uint32_t addr, uint32_t val)
169 PCIHostState *s = opaque;
171 PCI_DPRINTF("%s addr %"PRIx32 " val %"PRIx32"\n", __func__, addr, val);
172 s->config_reg = val;
175 static uint32_t pci_host_config_readl_ioport(void *opaque, uint32_t addr)
177 PCIHostState *s = opaque;
178 uint32_t val = s->config_reg;
180 PCI_DPRINTF("%s addr %"PRIx32" val %"PRIx32"\n", __func__, addr, val);
181 return val;
184 void pci_host_conf_register_ioport(pio_addr_t ioport, PCIHostState *s)
186 register_ioport_write(ioport, 4, 4, pci_host_config_writel_ioport, s);
187 register_ioport_read(ioport, 4, 4, pci_host_config_readl_ioport, s);
190 #define PCI_ADDR_T target_phys_addr_t
191 #define PCI_HOST_SUFFIX _mmio
193 #include "pci_host_template.h"
195 static CPUWriteMemoryFunc * const pci_host_data_write_mmio[] = {
196 pci_host_data_writeb_mmio,
197 pci_host_data_writew_mmio,
198 pci_host_data_writel_mmio,
201 static CPUReadMemoryFunc * const pci_host_data_read_mmio[] = {
202 pci_host_data_readb_mmio,
203 pci_host_data_readw_mmio,
204 pci_host_data_readl_mmio,
207 int pci_host_data_register_mmio(PCIHostState *s)
209 return cpu_register_io_memory(pci_host_data_read_mmio,
210 pci_host_data_write_mmio,
214 #undef PCI_ADDR_T
215 #undef PCI_HOST_SUFFIX
217 #define PCI_ADDR_T uint32_t
218 #define PCI_HOST_SUFFIX _ioport
220 #include "pci_host_template.h"
222 void pci_host_data_register_ioport(pio_addr_t ioport, PCIHostState *s)
224 register_ioport_write(ioport, 4, 1, pci_host_data_writeb_ioport, s);
225 register_ioport_write(ioport, 4, 2, pci_host_data_writew_ioport, s);
226 register_ioport_write(ioport, 4, 4, pci_host_data_writel_ioport, s);
227 register_ioport_read(ioport, 4, 1, pci_host_data_readb_ioport, s);
228 register_ioport_read(ioport, 4, 2, pci_host_data_readw_ioport, s);
229 register_ioport_read(ioport, 4, 4, pci_host_data_readl_ioport, s);