ARM: integrator: Retire LM and IM-PD1 boardfile code
[linux/fpc-iii.git] / drivers / pci / ats.c
blob390e92f2d8d1fcd53f4bd0b9bffdfe1cbd161e1f
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * PCI Express I/O Virtualization (IOV) support
4 * Address Translation Service 1.0
5 * Page Request Interface added by Joerg Roedel <joerg.roedel@amd.com>
6 * PASID support added by Joerg Roedel <joerg.roedel@amd.com>
8 * Copyright (C) 2009 Intel Corporation, Yu Zhao <yu.zhao@intel.com>
9 * Copyright (C) 2011 Advanced Micro Devices,
12 #include <linux/export.h>
13 #include <linux/pci-ats.h>
14 #include <linux/pci.h>
15 #include <linux/slab.h>
17 #include "pci.h"
19 void pci_ats_init(struct pci_dev *dev)
21 int pos;
23 if (pci_ats_disabled())
24 return;
26 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ATS);
27 if (!pos)
28 return;
30 dev->ats_cap = pos;
33 /**
34 * pci_enable_ats - enable the ATS capability
35 * @dev: the PCI device
36 * @ps: the IOMMU page shift
38 * Returns 0 on success, or negative on failure.
40 int pci_enable_ats(struct pci_dev *dev, int ps)
42 u16 ctrl;
43 struct pci_dev *pdev;
45 if (!dev->ats_cap)
46 return -EINVAL;
48 if (WARN_ON(dev->ats_enabled))
49 return -EBUSY;
51 if (ps < PCI_ATS_MIN_STU)
52 return -EINVAL;
55 * Note that enabling ATS on a VF fails unless it's already enabled
56 * with the same STU on the PF.
58 ctrl = PCI_ATS_CTRL_ENABLE;
59 if (dev->is_virtfn) {
60 pdev = pci_physfn(dev);
61 if (pdev->ats_stu != ps)
62 return -EINVAL;
63 } else {
64 dev->ats_stu = ps;
65 ctrl |= PCI_ATS_CTRL_STU(dev->ats_stu - PCI_ATS_MIN_STU);
67 pci_write_config_word(dev, dev->ats_cap + PCI_ATS_CTRL, ctrl);
69 dev->ats_enabled = 1;
70 return 0;
72 EXPORT_SYMBOL_GPL(pci_enable_ats);
74 /**
75 * pci_disable_ats - disable the ATS capability
76 * @dev: the PCI device
78 void pci_disable_ats(struct pci_dev *dev)
80 u16 ctrl;
82 if (WARN_ON(!dev->ats_enabled))
83 return;
85 pci_read_config_word(dev, dev->ats_cap + PCI_ATS_CTRL, &ctrl);
86 ctrl &= ~PCI_ATS_CTRL_ENABLE;
87 pci_write_config_word(dev, dev->ats_cap + PCI_ATS_CTRL, ctrl);
89 dev->ats_enabled = 0;
91 EXPORT_SYMBOL_GPL(pci_disable_ats);
93 void pci_restore_ats_state(struct pci_dev *dev)
95 u16 ctrl;
97 if (!dev->ats_enabled)
98 return;
100 ctrl = PCI_ATS_CTRL_ENABLE;
101 if (!dev->is_virtfn)
102 ctrl |= PCI_ATS_CTRL_STU(dev->ats_stu - PCI_ATS_MIN_STU);
103 pci_write_config_word(dev, dev->ats_cap + PCI_ATS_CTRL, ctrl);
107 * pci_ats_queue_depth - query the ATS Invalidate Queue Depth
108 * @dev: the PCI device
110 * Returns the queue depth on success, or negative on failure.
112 * The ATS spec uses 0 in the Invalidate Queue Depth field to
113 * indicate that the function can accept 32 Invalidate Request.
114 * But here we use the `real' values (i.e. 1~32) for the Queue
115 * Depth; and 0 indicates the function shares the Queue with
116 * other functions (doesn't exclusively own a Queue).
118 int pci_ats_queue_depth(struct pci_dev *dev)
120 u16 cap;
122 if (!dev->ats_cap)
123 return -EINVAL;
125 if (dev->is_virtfn)
126 return 0;
128 pci_read_config_word(dev, dev->ats_cap + PCI_ATS_CAP, &cap);
129 return PCI_ATS_CAP_QDEP(cap) ? PCI_ATS_CAP_QDEP(cap) : PCI_ATS_MAX_QDEP;
133 * pci_ats_page_aligned - Return Page Aligned Request bit status.
134 * @pdev: the PCI device
136 * Returns 1, if the Untranslated Addresses generated by the device
137 * are always aligned or 0 otherwise.
139 * Per PCIe spec r4.0, sec 10.5.1.2, if the Page Aligned Request bit
140 * is set, it indicates the Untranslated Addresses generated by the
141 * device are always aligned to a 4096 byte boundary.
143 int pci_ats_page_aligned(struct pci_dev *pdev)
145 u16 cap;
147 if (!pdev->ats_cap)
148 return 0;
150 pci_read_config_word(pdev, pdev->ats_cap + PCI_ATS_CAP, &cap);
152 if (cap & PCI_ATS_CAP_PAGE_ALIGNED)
153 return 1;
155 return 0;
158 #ifdef CONFIG_PCI_PRI
159 void pci_pri_init(struct pci_dev *pdev)
161 u16 status;
163 pdev->pri_cap = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
165 if (!pdev->pri_cap)
166 return;
168 pci_read_config_word(pdev, pdev->pri_cap + PCI_PRI_STATUS, &status);
169 if (status & PCI_PRI_STATUS_PASID)
170 pdev->pasid_required = 1;
174 * pci_enable_pri - Enable PRI capability
175 * @ pdev: PCI device structure
177 * Returns 0 on success, negative value on error
179 int pci_enable_pri(struct pci_dev *pdev, u32 reqs)
181 u16 control, status;
182 u32 max_requests;
183 int pri = pdev->pri_cap;
186 * VFs must not implement the PRI Capability. If their PF
187 * implements PRI, it is shared by the VFs, so if the PF PRI is
188 * enabled, it is also enabled for the VF.
190 if (pdev->is_virtfn) {
191 if (pci_physfn(pdev)->pri_enabled)
192 return 0;
193 return -EINVAL;
196 if (WARN_ON(pdev->pri_enabled))
197 return -EBUSY;
199 if (!pri)
200 return -EINVAL;
202 pci_read_config_word(pdev, pri + PCI_PRI_STATUS, &status);
203 if (!(status & PCI_PRI_STATUS_STOPPED))
204 return -EBUSY;
206 pci_read_config_dword(pdev, pri + PCI_PRI_MAX_REQ, &max_requests);
207 reqs = min(max_requests, reqs);
208 pdev->pri_reqs_alloc = reqs;
209 pci_write_config_dword(pdev, pri + PCI_PRI_ALLOC_REQ, reqs);
211 control = PCI_PRI_CTRL_ENABLE;
212 pci_write_config_word(pdev, pri + PCI_PRI_CTRL, control);
214 pdev->pri_enabled = 1;
216 return 0;
220 * pci_disable_pri - Disable PRI capability
221 * @pdev: PCI device structure
223 * Only clears the enabled-bit, regardless of its former value
225 void pci_disable_pri(struct pci_dev *pdev)
227 u16 control;
228 int pri = pdev->pri_cap;
230 /* VFs share the PF PRI */
231 if (pdev->is_virtfn)
232 return;
234 if (WARN_ON(!pdev->pri_enabled))
235 return;
237 if (!pri)
238 return;
240 pci_read_config_word(pdev, pri + PCI_PRI_CTRL, &control);
241 control &= ~PCI_PRI_CTRL_ENABLE;
242 pci_write_config_word(pdev, pri + PCI_PRI_CTRL, control);
244 pdev->pri_enabled = 0;
246 EXPORT_SYMBOL_GPL(pci_disable_pri);
249 * pci_restore_pri_state - Restore PRI
250 * @pdev: PCI device structure
252 void pci_restore_pri_state(struct pci_dev *pdev)
254 u16 control = PCI_PRI_CTRL_ENABLE;
255 u32 reqs = pdev->pri_reqs_alloc;
256 int pri = pdev->pri_cap;
258 if (pdev->is_virtfn)
259 return;
261 if (!pdev->pri_enabled)
262 return;
264 if (!pri)
265 return;
267 pci_write_config_dword(pdev, pri + PCI_PRI_ALLOC_REQ, reqs);
268 pci_write_config_word(pdev, pri + PCI_PRI_CTRL, control);
272 * pci_reset_pri - Resets device's PRI state
273 * @pdev: PCI device structure
275 * The PRI capability must be disabled before this function is called.
276 * Returns 0 on success, negative value on error.
278 int pci_reset_pri(struct pci_dev *pdev)
280 u16 control;
281 int pri = pdev->pri_cap;
283 if (pdev->is_virtfn)
284 return 0;
286 if (WARN_ON(pdev->pri_enabled))
287 return -EBUSY;
289 if (!pri)
290 return -EINVAL;
292 control = PCI_PRI_CTRL_RESET;
293 pci_write_config_word(pdev, pri + PCI_PRI_CTRL, control);
295 return 0;
299 * pci_prg_resp_pasid_required - Return PRG Response PASID Required bit
300 * status.
301 * @pdev: PCI device structure
303 * Returns 1 if PASID is required in PRG Response Message, 0 otherwise.
305 int pci_prg_resp_pasid_required(struct pci_dev *pdev)
307 if (pdev->is_virtfn)
308 pdev = pci_physfn(pdev);
310 return pdev->pasid_required;
312 #endif /* CONFIG_PCI_PRI */
314 #ifdef CONFIG_PCI_PASID
315 void pci_pasid_init(struct pci_dev *pdev)
317 pdev->pasid_cap = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
321 * pci_enable_pasid - Enable the PASID capability
322 * @pdev: PCI device structure
323 * @features: Features to enable
325 * Returns 0 on success, negative value on error. This function checks
326 * whether the features are actually supported by the device and returns
327 * an error if not.
329 int pci_enable_pasid(struct pci_dev *pdev, int features)
331 u16 control, supported;
332 int pasid = pdev->pasid_cap;
335 * VFs must not implement the PASID Capability, but if a PF
336 * supports PASID, its VFs share the PF PASID configuration.
338 if (pdev->is_virtfn) {
339 if (pci_physfn(pdev)->pasid_enabled)
340 return 0;
341 return -EINVAL;
344 if (WARN_ON(pdev->pasid_enabled))
345 return -EBUSY;
347 if (!pdev->eetlp_prefix_path)
348 return -EINVAL;
350 if (!pasid)
351 return -EINVAL;
353 pci_read_config_word(pdev, pasid + PCI_PASID_CAP, &supported);
354 supported &= PCI_PASID_CAP_EXEC | PCI_PASID_CAP_PRIV;
356 /* User wants to enable anything unsupported? */
357 if ((supported & features) != features)
358 return -EINVAL;
360 control = PCI_PASID_CTRL_ENABLE | features;
361 pdev->pasid_features = features;
363 pci_write_config_word(pdev, pasid + PCI_PASID_CTRL, control);
365 pdev->pasid_enabled = 1;
367 return 0;
369 EXPORT_SYMBOL_GPL(pci_enable_pasid);
372 * pci_disable_pasid - Disable the PASID capability
373 * @pdev: PCI device structure
375 void pci_disable_pasid(struct pci_dev *pdev)
377 u16 control = 0;
378 int pasid = pdev->pasid_cap;
380 /* VFs share the PF PASID configuration */
381 if (pdev->is_virtfn)
382 return;
384 if (WARN_ON(!pdev->pasid_enabled))
385 return;
387 if (!pasid)
388 return;
390 pci_write_config_word(pdev, pasid + PCI_PASID_CTRL, control);
392 pdev->pasid_enabled = 0;
394 EXPORT_SYMBOL_GPL(pci_disable_pasid);
397 * pci_restore_pasid_state - Restore PASID capabilities
398 * @pdev: PCI device structure
400 void pci_restore_pasid_state(struct pci_dev *pdev)
402 u16 control;
403 int pasid = pdev->pasid_cap;
405 if (pdev->is_virtfn)
406 return;
408 if (!pdev->pasid_enabled)
409 return;
411 if (!pasid)
412 return;
414 control = PCI_PASID_CTRL_ENABLE | pdev->pasid_features;
415 pci_write_config_word(pdev, pasid + PCI_PASID_CTRL, control);
419 * pci_pasid_features - Check which PASID features are supported
420 * @pdev: PCI device structure
422 * Returns a negative value when no PASI capability is present.
423 * Otherwise is returns a bitmask with supported features. Current
424 * features reported are:
425 * PCI_PASID_CAP_EXEC - Execute permission supported
426 * PCI_PASID_CAP_PRIV - Privileged mode supported
428 int pci_pasid_features(struct pci_dev *pdev)
430 u16 supported;
431 int pasid;
433 if (pdev->is_virtfn)
434 pdev = pci_physfn(pdev);
436 pasid = pdev->pasid_cap;
437 if (!pasid)
438 return -EINVAL;
440 pci_read_config_word(pdev, pasid + PCI_PASID_CAP, &supported);
442 supported &= PCI_PASID_CAP_EXEC | PCI_PASID_CAP_PRIV;
444 return supported;
446 EXPORT_SYMBOL_GPL(pci_pasid_features);
448 #define PASID_NUMBER_SHIFT 8
449 #define PASID_NUMBER_MASK (0x1f << PASID_NUMBER_SHIFT)
451 * pci_max_pasid - Get maximum number of PASIDs supported by device
452 * @pdev: PCI device structure
454 * Returns negative value when PASID capability is not present.
455 * Otherwise it returns the number of supported PASIDs.
457 int pci_max_pasids(struct pci_dev *pdev)
459 u16 supported;
460 int pasid;
462 if (pdev->is_virtfn)
463 pdev = pci_physfn(pdev);
465 pasid = pdev->pasid_cap;
466 if (!pasid)
467 return -EINVAL;
469 pci_read_config_word(pdev, pasid + PCI_PASID_CAP, &supported);
471 supported = (supported & PASID_NUMBER_MASK) >> PASID_NUMBER_SHIFT;
473 return (1 << supported);
475 EXPORT_SYMBOL_GPL(pci_max_pasids);
476 #endif /* CONFIG_PCI_PASID */