x86/intel config: Revamp configuration to allow for Moorestown and Medfield
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / pci / ats.c
blob7ec56fb0bd78aca5aec916aefd8788cc1b101027
1 /*
2 * drivers/pci/ats.c
4 * Copyright (C) 2009 Intel Corporation, Yu Zhao <yu.zhao@intel.com>
5 * Copyright (C) 2011 Advanced Micro Devices,
7 * PCI Express I/O Virtualization (IOV) support.
8 * Address Translation Service 1.0
9 * Page Request Interface added by Joerg Roedel <joerg.roedel@amd.com>
10 * PASID support added by Joerg Roedel <joerg.roedel@amd.com>
13 #include <linux/export.h>
14 #include <linux/pci-ats.h>
15 #include <linux/pci.h>
17 #include "pci.h"
19 static int ats_alloc_one(struct pci_dev *dev, int ps)
21 int pos;
22 u16 cap;
23 struct pci_ats *ats;
25 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ATS);
26 if (!pos)
27 return -ENODEV;
29 ats = kzalloc(sizeof(*ats), GFP_KERNEL);
30 if (!ats)
31 return -ENOMEM;
33 ats->pos = pos;
34 ats->stu = ps;
35 pci_read_config_word(dev, pos + PCI_ATS_CAP, &cap);
36 ats->qdep = PCI_ATS_CAP_QDEP(cap) ? PCI_ATS_CAP_QDEP(cap) :
37 PCI_ATS_MAX_QDEP;
38 dev->ats = ats;
40 return 0;
43 static void ats_free_one(struct pci_dev *dev)
45 kfree(dev->ats);
46 dev->ats = NULL;
49 /**
50 * pci_enable_ats - enable the ATS capability
51 * @dev: the PCI device
52 * @ps: the IOMMU page shift
54 * Returns 0 on success, or negative on failure.
56 int pci_enable_ats(struct pci_dev *dev, int ps)
58 int rc;
59 u16 ctrl;
61 BUG_ON(dev->ats && dev->ats->is_enabled);
63 if (ps < PCI_ATS_MIN_STU)
64 return -EINVAL;
66 if (dev->is_physfn || dev->is_virtfn) {
67 struct pci_dev *pdev = dev->is_physfn ? dev : dev->physfn;
69 mutex_lock(&pdev->sriov->lock);
70 if (pdev->ats)
71 rc = pdev->ats->stu == ps ? 0 : -EINVAL;
72 else
73 rc = ats_alloc_one(pdev, ps);
75 if (!rc)
76 pdev->ats->ref_cnt++;
77 mutex_unlock(&pdev->sriov->lock);
78 if (rc)
79 return rc;
82 if (!dev->is_physfn) {
83 rc = ats_alloc_one(dev, ps);
84 if (rc)
85 return rc;
88 ctrl = PCI_ATS_CTRL_ENABLE;
89 if (!dev->is_virtfn)
90 ctrl |= PCI_ATS_CTRL_STU(ps - PCI_ATS_MIN_STU);
91 pci_write_config_word(dev, dev->ats->pos + PCI_ATS_CTRL, ctrl);
93 dev->ats->is_enabled = 1;
95 return 0;
97 EXPORT_SYMBOL_GPL(pci_enable_ats);
99 /**
100 * pci_disable_ats - disable the ATS capability
101 * @dev: the PCI device
103 void pci_disable_ats(struct pci_dev *dev)
105 u16 ctrl;
107 BUG_ON(!dev->ats || !dev->ats->is_enabled);
109 pci_read_config_word(dev, dev->ats->pos + PCI_ATS_CTRL, &ctrl);
110 ctrl &= ~PCI_ATS_CTRL_ENABLE;
111 pci_write_config_word(dev, dev->ats->pos + PCI_ATS_CTRL, ctrl);
113 dev->ats->is_enabled = 0;
115 if (dev->is_physfn || dev->is_virtfn) {
116 struct pci_dev *pdev = dev->is_physfn ? dev : dev->physfn;
118 mutex_lock(&pdev->sriov->lock);
119 pdev->ats->ref_cnt--;
120 if (!pdev->ats->ref_cnt)
121 ats_free_one(pdev);
122 mutex_unlock(&pdev->sriov->lock);
125 if (!dev->is_physfn)
126 ats_free_one(dev);
128 EXPORT_SYMBOL_GPL(pci_disable_ats);
131 * pci_ats_queue_depth - query the ATS Invalidate Queue Depth
132 * @dev: the PCI device
134 * Returns the queue depth on success, or negative on failure.
136 * The ATS spec uses 0 in the Invalidate Queue Depth field to
137 * indicate that the function can accept 32 Invalidate Request.
138 * But here we use the `real' values (i.e. 1~32) for the Queue
139 * Depth; and 0 indicates the function shares the Queue with
140 * other functions (doesn't exclusively own a Queue).
142 int pci_ats_queue_depth(struct pci_dev *dev)
144 int pos;
145 u16 cap;
147 if (dev->is_virtfn)
148 return 0;
150 if (dev->ats)
151 return dev->ats->qdep;
153 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ATS);
154 if (!pos)
155 return -ENODEV;
157 pci_read_config_word(dev, pos + PCI_ATS_CAP, &cap);
159 return PCI_ATS_CAP_QDEP(cap) ? PCI_ATS_CAP_QDEP(cap) :
160 PCI_ATS_MAX_QDEP;
162 EXPORT_SYMBOL_GPL(pci_ats_queue_depth);
164 #ifdef CONFIG_PCI_PRI
166 * pci_enable_pri - Enable PRI capability
167 * @ pdev: PCI device structure
169 * Returns 0 on success, negative value on error
171 int pci_enable_pri(struct pci_dev *pdev, u32 reqs)
173 u16 control, status;
174 u32 max_requests;
175 int pos;
177 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
178 if (!pos)
179 return -EINVAL;
181 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
182 pci_read_config_word(pdev, pos + PCI_PRI_STATUS_OFF, &status);
183 if ((control & PCI_PRI_ENABLE) || !(status & PCI_PRI_STATUS_STOPPED))
184 return -EBUSY;
186 pci_read_config_dword(pdev, pos + PCI_PRI_MAX_REQ_OFF, &max_requests);
187 reqs = min(max_requests, reqs);
188 pci_write_config_dword(pdev, pos + PCI_PRI_ALLOC_REQ_OFF, reqs);
190 control |= PCI_PRI_ENABLE;
191 pci_write_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, control);
193 return 0;
195 EXPORT_SYMBOL_GPL(pci_enable_pri);
198 * pci_disable_pri - Disable PRI capability
199 * @pdev: PCI device structure
201 * Only clears the enabled-bit, regardless of its former value
203 void pci_disable_pri(struct pci_dev *pdev)
205 u16 control;
206 int pos;
208 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
209 if (!pos)
210 return;
212 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
213 control &= ~PCI_PRI_ENABLE;
214 pci_write_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, control);
216 EXPORT_SYMBOL_GPL(pci_disable_pri);
219 * pci_pri_enabled - Checks if PRI capability is enabled
220 * @pdev: PCI device structure
222 * Returns true if PRI is enabled on the device, false otherwise
224 bool pci_pri_enabled(struct pci_dev *pdev)
226 u16 control;
227 int pos;
229 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
230 if (!pos)
231 return false;
233 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
235 return (control & PCI_PRI_ENABLE) ? true : false;
237 EXPORT_SYMBOL_GPL(pci_pri_enabled);
240 * pci_reset_pri - Resets device's PRI state
241 * @pdev: PCI device structure
243 * The PRI capability must be disabled before this function is called.
244 * Returns 0 on success, negative value on error.
246 int pci_reset_pri(struct pci_dev *pdev)
248 u16 control;
249 int pos;
251 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
252 if (!pos)
253 return -EINVAL;
255 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
256 if (control & PCI_PRI_ENABLE)
257 return -EBUSY;
259 control |= PCI_PRI_RESET;
261 pci_write_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, control);
263 return 0;
265 EXPORT_SYMBOL_GPL(pci_reset_pri);
268 * pci_pri_stopped - Checks whether the PRI capability is stopped
269 * @pdev: PCI device structure
271 * Returns true if the PRI capability on the device is disabled and the
272 * device has no outstanding PRI requests, false otherwise. The device
273 * indicates this via the STOPPED bit in the status register of the
274 * capability.
275 * The device internal state can be cleared by resetting the PRI state
276 * with pci_reset_pri(). This can force the capability into the STOPPED
277 * state.
279 bool pci_pri_stopped(struct pci_dev *pdev)
281 u16 control, status;
282 int pos;
284 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
285 if (!pos)
286 return true;
288 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
289 pci_read_config_word(pdev, pos + PCI_PRI_STATUS_OFF, &status);
291 if (control & PCI_PRI_ENABLE)
292 return false;
294 return (status & PCI_PRI_STATUS_STOPPED) ? true : false;
296 EXPORT_SYMBOL_GPL(pci_pri_stopped);
299 * pci_pri_status - Request PRI status of a device
300 * @pdev: PCI device structure
302 * Returns negative value on failure, status on success. The status can
303 * be checked against status-bits. Supported bits are currently:
304 * PCI_PRI_STATUS_RF: Response failure
305 * PCI_PRI_STATUS_UPRGI: Unexpected Page Request Group Index
306 * PCI_PRI_STATUS_STOPPED: PRI has stopped
308 int pci_pri_status(struct pci_dev *pdev)
310 u16 status, control;
311 int pos;
313 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
314 if (!pos)
315 return -EINVAL;
317 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
318 pci_read_config_word(pdev, pos + PCI_PRI_STATUS_OFF, &status);
320 /* Stopped bit is undefined when enable == 1, so clear it */
321 if (control & PCI_PRI_ENABLE)
322 status &= ~PCI_PRI_STATUS_STOPPED;
324 return status;
326 EXPORT_SYMBOL_GPL(pci_pri_status);
327 #endif /* CONFIG_PCI_PRI */
329 #ifdef CONFIG_PCI_PASID
331 * pci_enable_pasid - Enable the PASID capability
332 * @pdev: PCI device structure
333 * @features: Features to enable
335 * Returns 0 on success, negative value on error. This function checks
336 * whether the features are actually supported by the device and returns
337 * an error if not.
339 int pci_enable_pasid(struct pci_dev *pdev, int features)
341 u16 control, supported;
342 int pos;
344 pos = pci_find_ext_capability(pdev, PCI_PASID_CAP);
345 if (!pos)
346 return -EINVAL;
348 pci_read_config_word(pdev, pos + PCI_PASID_CONTROL_OFF, &control);
349 pci_read_config_word(pdev, pos + PCI_PASID_CAP_OFF, &supported);
351 if (!(supported & PCI_PASID_ENABLE))
352 return -EINVAL;
354 supported &= PCI_PASID_EXEC | PCI_PASID_PRIV;
356 /* User wants to enable anything unsupported? */
357 if ((supported & features) != features)
358 return -EINVAL;
360 control = PCI_PASID_ENABLE | features;
362 pci_write_config_word(pdev, pos + PCI_PASID_CONTROL_OFF, control);
364 return 0;
366 EXPORT_SYMBOL_GPL(pci_enable_pasid);
369 * pci_disable_pasid - Disable the PASID capability
370 * @pdev: PCI device structure
373 void pci_disable_pasid(struct pci_dev *pdev)
375 u16 control = 0;
376 int pos;
378 pos = pci_find_ext_capability(pdev, PCI_PASID_CAP);
379 if (!pos)
380 return;
382 pci_write_config_word(pdev, pos + PCI_PASID_CONTROL_OFF, control);
384 EXPORT_SYMBOL_GPL(pci_disable_pasid);
387 * pci_pasid_features - Check which PASID features are supported
388 * @pdev: PCI device structure
390 * Returns a negative value when no PASI capability is present.
391 * Otherwise is returns a bitmask with supported features. Current
392 * features reported are:
393 * PCI_PASID_ENABLE - PASID capability can be enabled
394 * PCI_PASID_EXEC - Execute permission supported
395 * PCI_PASID_PRIV - Priviledged mode supported
397 int pci_pasid_features(struct pci_dev *pdev)
399 u16 supported;
400 int pos;
402 pos = pci_find_ext_capability(pdev, PCI_PASID_CAP);
403 if (!pos)
404 return -EINVAL;
406 pci_read_config_word(pdev, pos + PCI_PASID_CAP_OFF, &supported);
408 supported &= PCI_PASID_ENABLE | PCI_PASID_EXEC | PCI_PASID_PRIV;
410 return supported;
412 EXPORT_SYMBOL_GPL(pci_pasid_features);
414 #define PASID_NUMBER_SHIFT 8
415 #define PASID_NUMBER_MASK (0x1f << PASID_NUMBER_SHIFT)
417 * pci_max_pasid - Get maximum number of PASIDs supported by device
418 * @pdev: PCI device structure
420 * Returns negative value when PASID capability is not present.
421 * Otherwise it returns the numer of supported PASIDs.
423 int pci_max_pasids(struct pci_dev *pdev)
425 u16 supported;
426 int pos;
428 pos = pci_find_ext_capability(pdev, PCI_PASID_CAP);
429 if (!pos)
430 return -EINVAL;
432 pci_read_config_word(pdev, pos + PCI_PASID_CAP_OFF, &supported);
434 supported = (supported & PASID_NUMBER_MASK) >> PASID_NUMBER_SHIFT;
436 return (1 << supported);
438 EXPORT_SYMBOL_GPL(pci_max_pasids);
439 #endif /* CONFIG_PCI_PASID */