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.
29 #define PCI_DPRINTF(fmt, ...) \
30 do { printf("pci_host_data: " fmt , ## __VA_ARGS__); } while (0)
32 #define PCI_DPRINTF(fmt, ...)
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);
59 PCI_DPRINTF("%s: %s: addr=%02" PRIx32
" val=%08" PRIx32
" 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);
70 assert(len
== 1 || len
== 2 || len
== 4);
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
);
82 static void pci_host_config_write(ReadWriteHandler
*handler
,
83 pcibus_t addr
, uint32_t val
, int len
)
85 PCIHostState
*s
= container_of(handler
, PCIHostState
, conf_handler
);
87 PCI_DPRINTF("%s addr %" FMT_PCIBUS
" %d val %"PRIx32
"\n",
88 __func__
, addr
, len
, val
);
89 #ifdef TARGET_WORDS_BIGENDIAN
90 val
= qemu_bswap_len(val
, len
);
95 static uint32_t pci_host_config_read(ReadWriteHandler
*handler
,
96 pcibus_t addr
, int len
)
98 PCIHostState
*s
= container_of(handler
, PCIHostState
, conf_handler
);
99 uint32_t val
= s
->config_reg
;
100 #ifdef TARGET_WORDS_BIGENDIAN
101 val
= qemu_bswap_len(val
, len
);
103 PCI_DPRINTF("%s addr %" FMT_PCIBUS
" len %d val %"PRIx32
"\n",
104 __func__
, addr
, len
, val
);
108 static void pci_host_config_write_noswap(ReadWriteHandler
*handler
,
109 pcibus_t addr
, uint32_t val
, int len
)
111 PCIHostState
*s
= container_of(handler
, PCIHostState
, conf_noswap_handler
);
113 PCI_DPRINTF("%s addr %" FMT_PCIBUS
" %d val %"PRIx32
"\n",
114 __func__
, addr
, len
, val
);
118 static uint32_t pci_host_config_read_noswap(ReadWriteHandler
*handler
,
119 pcibus_t addr
, int len
)
121 PCIHostState
*s
= container_of(handler
, PCIHostState
, conf_noswap_handler
);
122 uint32_t val
= s
->config_reg
;
124 PCI_DPRINTF("%s addr %" FMT_PCIBUS
" len %d val %"PRIx32
"\n",
125 __func__
, addr
, len
, val
);
129 static void pci_host_data_write(ReadWriteHandler
*handler
,
130 pcibus_t addr
, uint32_t val
, int len
)
132 PCIHostState
*s
= container_of(handler
, PCIHostState
, data_handler
);
133 #ifdef TARGET_WORDS_BIGENDIAN
134 val
= qemu_bswap_len(val
, len
);
136 PCI_DPRINTF("write addr %" FMT_PCIBUS
" len %d val %x\n",
138 if (s
->config_reg
& (1u << 31))
139 pci_data_write(s
->bus
, s
->config_reg
| (addr
& 3), val
, len
);
142 static uint32_t pci_host_data_read(ReadWriteHandler
*handler
,
143 pcibus_t addr
, int len
)
145 PCIHostState
*s
= container_of(handler
, PCIHostState
, data_handler
);
147 if (!(s
->config_reg
& (1 << 31)))
149 val
= pci_data_read(s
->bus
, s
->config_reg
| (addr
& 3), len
);
150 PCI_DPRINTF("read addr %" FMT_PCIBUS
" len %d val %x\n",
152 #ifdef TARGET_WORDS_BIGENDIAN
153 val
= qemu_bswap_len(val
, len
);
158 static void pci_host_init(PCIHostState
*s
)
160 s
->conf_handler
.write
= pci_host_config_write
;
161 s
->conf_handler
.read
= pci_host_config_read
;
162 s
->conf_noswap_handler
.write
= pci_host_config_write_noswap
;
163 s
->conf_noswap_handler
.read
= pci_host_config_read_noswap
;
164 s
->data_handler
.write
= pci_host_data_write
;
165 s
->data_handler
.read
= pci_host_data_read
;
168 int pci_host_conf_register_mmio(PCIHostState
*s
)
171 return cpu_register_io_memory_simple(&s
->conf_handler
);
174 int pci_host_conf_register_mmio_noswap(PCIHostState
*s
)
177 return cpu_register_io_memory_simple(&s
->conf_noswap_handler
);
180 void pci_host_conf_register_ioport(pio_addr_t ioport
, PCIHostState
*s
)
183 register_ioport_simple(&s
->conf_noswap_handler
, ioport
, 4, 4);
186 int pci_host_data_register_mmio(PCIHostState
*s
)
189 return cpu_register_io_memory_simple(&s
->data_handler
);
192 void pci_host_data_register_ioport(pio_addr_t ioport
, PCIHostState
*s
)
195 register_ioport_simple(&s
->data_handler
, ioport
, 4, 1);
196 register_ioport_simple(&s
->data_handler
, ioport
, 4, 2);
197 register_ioport_simple(&s
->data_handler
, ioport
, 4, 4);