2 * QEMU Common PCI Host bridge configuration data space access routines.
4 * Copyright (c) 2006 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 /* Worker routines for a PCI host controller that uses an {address,data}
26 register pair to access PCI configuration space. */
32 #define PCI_DPRINTF(fmt, args...) \
33 do { printf("pci_host_data: " fmt , ##args); } while (0)
35 #define PCI_DPRINTF(fmt, args...)
43 static void pci_host_data_writeb(void* opaque
, pci_addr_t addr
, uint32_t val
)
45 PCIHostState
*s
= opaque
;
47 PCI_DPRINTF("writeb addr " TARGET_FMT_plx
" val %x\n",
48 (target_phys_addr_t
)addr
, val
);
49 if (s
->config_reg
& (1u << 31))
50 pci_data_write(s
->bus
, s
->config_reg
| (addr
& 3), val
, 1);
53 static void pci_host_data_writew(void* opaque
, pci_addr_t addr
, uint32_t val
)
55 PCIHostState
*s
= opaque
;
56 #ifdef TARGET_WORDS_BIGENDIAN
59 PCI_DPRINTF("writew addr " TARGET_FMT_plx
" val %x\n",
60 (target_phys_addr_t
)addr
, val
);
61 if (s
->config_reg
& (1u << 31))
62 pci_data_write(s
->bus
, s
->config_reg
| (addr
& 3), val
, 2);
65 static void pci_host_data_writel(void* opaque
, pci_addr_t addr
, uint32_t val
)
67 PCIHostState
*s
= opaque
;
68 #ifdef TARGET_WORDS_BIGENDIAN
71 PCI_DPRINTF("writel addr " TARGET_FMT_plx
" val %x\n",
72 (target_phys_addr_t
)addr
, val
);
73 if (s
->config_reg
& (1u << 31))
74 pci_data_write(s
->bus
, s
->config_reg
, val
, 4);
77 static uint32_t pci_host_data_readb(void* opaque
, pci_addr_t addr
)
79 PCIHostState
*s
= opaque
;
82 if (!(s
->config_reg
& (1 << 31)))
84 val
= pci_data_read(s
->bus
, s
->config_reg
| (addr
& 3), 1);
85 PCI_DPRINTF("readb addr " TARGET_FMT_plx
" val %x\n",
86 (target_phys_addr_t
)addr
, val
);
90 static uint32_t pci_host_data_readw(void* opaque
, pci_addr_t addr
)
92 PCIHostState
*s
= opaque
;
94 if (!(s
->config_reg
& (1 << 31)))
96 val
= pci_data_read(s
->bus
, s
->config_reg
| (addr
& 3), 2);
97 PCI_DPRINTF("readw addr " TARGET_FMT_plx
" val %x\n",
98 (target_phys_addr_t
)addr
, val
);
99 #ifdef TARGET_WORDS_BIGENDIAN
105 static uint32_t pci_host_data_readl(void* opaque
, pci_addr_t addr
)
107 PCIHostState
*s
= opaque
;
109 if (!(s
->config_reg
& (1 << 31)))
111 val
= pci_data_read(s
->bus
, s
->config_reg
| (addr
& 3), 4);
112 PCI_DPRINTF("readl addr " TARGET_FMT_plx
" val %x\n",
113 (target_phys_addr_t
)addr
, val
);
114 #ifdef TARGET_WORDS_BIGENDIAN