1 // SPDX-License-Identifier: GPL-2.0
3 * PCI Backend - Handles the virtual fields found on the capability lists
4 * in the configuration space.
6 * Author: Ryan Wilson <hap9@epoch.ncsc.mil>
9 #include <linux/kernel.h>
10 #include <linux/pci.h>
12 #include "conf_space.h"
14 static LIST_HEAD(capabilities
);
15 struct xen_pcibk_config_capability
{
16 struct list_head cap_list
;
20 /* If the device has the capability found above, add these fields */
21 const struct config_field
*fields
;
24 static const struct config_field caplist_header
[] = {
26 .offset
= PCI_CAP_LIST_ID
,
27 .size
= 2, /* encompass PCI_CAP_LIST_ID & PCI_CAP_LIST_NEXT */
28 .u
.w
.read
= xen_pcibk_read_config_word
,
34 static inline void register_capability(struct xen_pcibk_config_capability
*cap
)
36 list_add_tail(&cap
->cap_list
, &capabilities
);
39 int xen_pcibk_config_capability_add_fields(struct pci_dev
*dev
)
42 struct xen_pcibk_config_capability
*cap
;
45 list_for_each_entry(cap
, &capabilities
, cap_list
) {
46 cap_offset
= pci_find_capability(dev
, cap
->capability
);
48 dev_dbg(&dev
->dev
, "Found capability 0x%x at 0x%x\n",
49 cap
->capability
, cap_offset
);
51 err
= xen_pcibk_config_add_fields_offset(dev
,
56 err
= xen_pcibk_config_add_fields_offset(dev
,
68 static int vpd_address_write(struct pci_dev
*dev
, int offset
, u16 value
,
71 /* Disallow writes to the vital product data */
72 if (value
& PCI_VPD_ADDR_F
)
73 return PCIBIOS_SET_FAILED
;
75 return pci_write_config_word(dev
, offset
, value
);
78 static const struct config_field caplist_vpd
[] = {
80 .offset
= PCI_VPD_ADDR
,
82 .u
.w
.read
= xen_pcibk_read_config_word
,
83 .u
.w
.write
= vpd_address_write
,
86 .offset
= PCI_VPD_DATA
,
88 .u
.dw
.read
= xen_pcibk_read_config_dword
,
94 static int pm_caps_read(struct pci_dev
*dev
, int offset
, u16
*value
,
100 err
= pci_read_config_word(dev
, offset
, &real_value
);
104 *value
= real_value
& ~PCI_PM_CAP_PME_MASK
;
110 /* PM_OK_BITS specifies the bits that the driver domain is allowed to change.
111 * Can't allow driver domain to enable PMEs - they're shared */
112 #define PM_OK_BITS (PCI_PM_CTRL_PME_STATUS|PCI_PM_CTRL_DATA_SEL_MASK)
114 static int pm_ctrl_write(struct pci_dev
*dev
, int offset
, u16 new_value
,
119 pci_power_t new_state
, old_state
;
121 err
= pci_read_config_word(dev
, offset
, &old_value
);
125 old_state
= (pci_power_t
)(old_value
& PCI_PM_CTRL_STATE_MASK
);
126 new_state
= (pci_power_t
)(new_value
& PCI_PM_CTRL_STATE_MASK
);
128 new_value
&= PM_OK_BITS
;
129 if ((old_value
& PM_OK_BITS
) != new_value
) {
130 new_value
= (old_value
& ~PM_OK_BITS
) | new_value
;
131 err
= pci_write_config_word(dev
, offset
, new_value
);
136 /* Let pci core handle the power management change */
137 dev_dbg(&dev
->dev
, "set power state to %x\n", new_state
);
138 err
= pci_set_power_state(dev
, new_state
);
140 err
= PCIBIOS_SET_FAILED
;
148 /* Ensure PMEs are disabled */
149 static void *pm_ctrl_init(struct pci_dev
*dev
, int offset
)
154 err
= pci_read_config_word(dev
, offset
, &value
);
158 if (value
& PCI_PM_CTRL_PME_ENABLE
) {
159 value
&= ~PCI_PM_CTRL_PME_ENABLE
;
160 err
= pci_write_config_word(dev
, offset
, value
);
167 static const struct config_field caplist_pm
[] = {
169 .offset
= PCI_PM_PMC
,
171 .u
.w
.read
= pm_caps_read
,
174 .offset
= PCI_PM_CTRL
,
176 .init
= pm_ctrl_init
,
177 .u
.w
.read
= xen_pcibk_read_config_word
,
178 .u
.w
.write
= pm_ctrl_write
,
181 .offset
= PCI_PM_PPB_EXTENSIONS
,
183 .u
.b
.read
= xen_pcibk_read_config_byte
,
186 .offset
= PCI_PM_DATA_REGISTER
,
188 .u
.b
.read
= xen_pcibk_read_config_byte
,
193 static struct xen_pcibk_config_capability xen_pcibk_config_capability_pm
= {
194 .capability
= PCI_CAP_ID_PM
,
195 .fields
= caplist_pm
,
197 static struct xen_pcibk_config_capability xen_pcibk_config_capability_vpd
= {
198 .capability
= PCI_CAP_ID_VPD
,
199 .fields
= caplist_vpd
,
202 int xen_pcibk_config_capability_init(void)
204 register_capability(&xen_pcibk_config_capability_vpd
);
205 register_capability(&xen_pcibk_config_capability_pm
);