aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/iov.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci/iov.c')
-rw-r--r--drivers/pci/iov.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/drivers/pci/iov.c b/drivers/pci/iov.c
index 66cc414ed15f..b121e47402fa 100644
--- a/drivers/pci/iov.c
+++ b/drivers/pci/iov.c
@@ -129,6 +129,25 @@ static void sriov_release(struct pci_dev *dev)
129 dev->sriov = NULL; 129 dev->sriov = NULL;
130} 130}
131 131
132static void sriov_restore_state(struct pci_dev *dev)
133{
134 int i;
135 u16 ctrl;
136 struct pci_sriov *iov = dev->sriov;
137
138 pci_read_config_word(dev, iov->pos + PCI_SRIOV_CTRL, &ctrl);
139 if (ctrl & PCI_SRIOV_CTRL_VFE)
140 return;
141
142 for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++)
143 pci_update_resource(dev, i);
144
145 pci_write_config_dword(dev, iov->pos + PCI_SRIOV_SYS_PGSIZE, iov->pgsz);
146 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
147 if (iov->ctrl & PCI_SRIOV_CTRL_VFE)
148 msleep(100);
149}
150
132/** 151/**
133 * pci_iov_init - initialize the IOV capability 152 * pci_iov_init - initialize the IOV capability
134 * @dev: the PCI device 153 * @dev: the PCI device
@@ -180,3 +199,13 @@ int pci_iov_resource_bar(struct pci_dev *dev, int resno,
180 return dev->sriov->pos + PCI_SRIOV_BAR + 199 return dev->sriov->pos + PCI_SRIOV_BAR +
181 4 * (resno - PCI_IOV_RESOURCES); 200 4 * (resno - PCI_IOV_RESOURCES);
182} 201}
202
203/**
204 * pci_restore_iov_state - restore the state of the IOV capability
205 * @dev: the PCI device
206 */
207void pci_restore_iov_state(struct pci_dev *dev)
208{
209 if (dev->is_physfn)
210 sriov_restore_state(dev);
211}