blob: 2df49af6cc908971a47ec9ed8e7175e2eb2cfd56 [file] [log] [blame]
Joerg Roedeldb3c33c2011-09-27 15:57:13 +02001/*
2 * drivers/pci/ats.c
3 *
4 * Copyright (C) 2009 Intel Corporation, Yu Zhao <yu.zhao@intel.com>
Joerg Roedelc320b972011-09-27 15:57:15 +02005 * Copyright (C) 2011 Advanced Micro Devices,
Joerg Roedeldb3c33c2011-09-27 15:57:13 +02006 *
7 * PCI Express I/O Virtualization (IOV) support.
8 * Address Translation Service 1.0
Joerg Roedelc320b972011-09-27 15:57:15 +02009 * Page Request Interface added by Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel086ac112011-09-27 15:57:16 +020010 * PASID support added by Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedeldb3c33c2011-09-27 15:57:13 +020011 */
12
Paul Gortmaker363c75d2011-05-27 09:37:25 -040013#include <linux/export.h>
Joerg Roedeldb3c33c2011-09-27 15:57:13 +020014#include <linux/pci-ats.h>
15#include <linux/pci.h>
16
17#include "pci.h"
18
19static int ats_alloc_one(struct pci_dev *dev, int ps)
20{
21 int pos;
22 u16 cap;
23 struct pci_ats *ats;
24
25 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ATS);
26 if (!pos)
27 return -ENODEV;
28
29 ats = kzalloc(sizeof(*ats), GFP_KERNEL);
30 if (!ats)
31 return -ENOMEM;
32
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;
39
40 return 0;
41}
42
43static void ats_free_one(struct pci_dev *dev)
44{
45 kfree(dev->ats);
46 dev->ats = NULL;
47}
48
49/**
50 * pci_enable_ats - enable the ATS capability
51 * @dev: the PCI device
52 * @ps: the IOMMU page shift
53 *
54 * Returns 0 on success, or negative on failure.
55 */
56int pci_enable_ats(struct pci_dev *dev, int ps)
57{
58 int rc;
59 u16 ctrl;
60
61 BUG_ON(dev->ats && dev->ats->is_enabled);
62
63 if (ps < PCI_ATS_MIN_STU)
64 return -EINVAL;
65
66 if (dev->is_physfn || dev->is_virtfn) {
67 struct pci_dev *pdev = dev->is_physfn ? dev : dev->physfn;
68
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);
74
75 if (!rc)
76 pdev->ats->ref_cnt++;
77 mutex_unlock(&pdev->sriov->lock);
78 if (rc)
79 return rc;
80 }
81
82 if (!dev->is_physfn) {
83 rc = ats_alloc_one(dev, ps);
84 if (rc)
85 return rc;
86 }
87
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);
92
93 dev->ats->is_enabled = 1;
94
95 return 0;
96}
Joerg Roedeld4c06362011-09-27 15:57:14 +020097EXPORT_SYMBOL_GPL(pci_enable_ats);
Joerg Roedeldb3c33c2011-09-27 15:57:13 +020098
99/**
100 * pci_disable_ats - disable the ATS capability
101 * @dev: the PCI device
102 */
103void pci_disable_ats(struct pci_dev *dev)
104{
105 u16 ctrl;
106
107 BUG_ON(!dev->ats || !dev->ats->is_enabled);
108
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);
112
113 dev->ats->is_enabled = 0;
114
115 if (dev->is_physfn || dev->is_virtfn) {
116 struct pci_dev *pdev = dev->is_physfn ? dev : dev->physfn;
117
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);
123 }
124
125 if (!dev->is_physfn)
126 ats_free_one(dev);
127}
Joerg Roedeld4c06362011-09-27 15:57:14 +0200128EXPORT_SYMBOL_GPL(pci_disable_ats);
Joerg Roedeldb3c33c2011-09-27 15:57:13 +0200129
130/**
131 * pci_ats_queue_depth - query the ATS Invalidate Queue Depth
132 * @dev: the PCI device
133 *
134 * Returns the queue depth on success, or negative on failure.
135 *
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).
141 */
142int pci_ats_queue_depth(struct pci_dev *dev)
143{
144 int pos;
145 u16 cap;
146
147 if (dev->is_virtfn)
148 return 0;
149
150 if (dev->ats)
151 return dev->ats->qdep;
152
153 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ATS);
154 if (!pos)
155 return -ENODEV;
156
157 pci_read_config_word(dev, pos + PCI_ATS_CAP, &cap);
158
159 return PCI_ATS_CAP_QDEP(cap) ? PCI_ATS_CAP_QDEP(cap) :
160 PCI_ATS_MAX_QDEP;
161}
Joerg Roedeld4c06362011-09-27 15:57:14 +0200162EXPORT_SYMBOL_GPL(pci_ats_queue_depth);
Joerg Roedelc320b972011-09-27 15:57:15 +0200163
164#ifdef CONFIG_PCI_PRI
165/**
166 * pci_enable_pri - Enable PRI capability
167 * @ pdev: PCI device structure
168 *
169 * Returns 0 on success, negative value on error
170 */
171int pci_enable_pri(struct pci_dev *pdev, u32 reqs)
172{
173 u16 control, status;
174 u32 max_requests;
175 int pos;
176
Alex Williamson69166fb2011-11-02 14:07:15 -0600177 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc320b972011-09-27 15:57:15 +0200178 if (!pos)
179 return -EINVAL;
180
Alex Williamson91f57d52011-11-11 10:07:36 -0700181 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
182 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
183 if ((control & PCI_PRI_CTRL_ENABLE) ||
184 !(status & PCI_PRI_STATUS_STOPPED))
Joerg Roedelc320b972011-09-27 15:57:15 +0200185 return -EBUSY;
186
Alex Williamson91f57d52011-11-11 10:07:36 -0700187 pci_read_config_dword(pdev, pos + PCI_PRI_MAX_REQ, &max_requests);
Joerg Roedelc320b972011-09-27 15:57:15 +0200188 reqs = min(max_requests, reqs);
Alex Williamson91f57d52011-11-11 10:07:36 -0700189 pci_write_config_dword(pdev, pos + PCI_PRI_ALLOC_REQ, reqs);
Joerg Roedelc320b972011-09-27 15:57:15 +0200190
Alex Williamson91f57d52011-11-11 10:07:36 -0700191 control |= PCI_PRI_CTRL_ENABLE;
192 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedelc320b972011-09-27 15:57:15 +0200193
194 return 0;
195}
196EXPORT_SYMBOL_GPL(pci_enable_pri);
197
198/**
199 * pci_disable_pri - Disable PRI capability
200 * @pdev: PCI device structure
201 *
202 * Only clears the enabled-bit, regardless of its former value
203 */
204void pci_disable_pri(struct pci_dev *pdev)
205{
206 u16 control;
207 int pos;
208
Alex Williamson69166fb2011-11-02 14:07:15 -0600209 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc320b972011-09-27 15:57:15 +0200210 if (!pos)
211 return;
212
Alex Williamson91f57d52011-11-11 10:07:36 -0700213 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
214 control &= ~PCI_PRI_CTRL_ENABLE;
215 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedelc320b972011-09-27 15:57:15 +0200216}
217EXPORT_SYMBOL_GPL(pci_disable_pri);
218
219/**
220 * pci_pri_enabled - Checks if PRI capability is enabled
221 * @pdev: PCI device structure
222 *
223 * Returns true if PRI is enabled on the device, false otherwise
224 */
225bool pci_pri_enabled(struct pci_dev *pdev)
226{
227 u16 control;
228 int pos;
229
Alex Williamson69166fb2011-11-02 14:07:15 -0600230 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc320b972011-09-27 15:57:15 +0200231 if (!pos)
232 return false;
233
Alex Williamson91f57d52011-11-11 10:07:36 -0700234 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
Joerg Roedelc320b972011-09-27 15:57:15 +0200235
Alex Williamson91f57d52011-11-11 10:07:36 -0700236 return (control & PCI_PRI_CTRL_ENABLE) ? true : false;
Joerg Roedelc320b972011-09-27 15:57:15 +0200237}
238EXPORT_SYMBOL_GPL(pci_pri_enabled);
239
240/**
241 * pci_reset_pri - Resets device's PRI state
242 * @pdev: PCI device structure
243 *
244 * The PRI capability must be disabled before this function is called.
245 * Returns 0 on success, negative value on error.
246 */
247int pci_reset_pri(struct pci_dev *pdev)
248{
249 u16 control;
250 int pos;
251
Alex Williamson69166fb2011-11-02 14:07:15 -0600252 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc320b972011-09-27 15:57:15 +0200253 if (!pos)
254 return -EINVAL;
255
Alex Williamson91f57d52011-11-11 10:07:36 -0700256 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
257 if (control & PCI_PRI_CTRL_ENABLE)
Joerg Roedelc320b972011-09-27 15:57:15 +0200258 return -EBUSY;
259
Alex Williamson91f57d52011-11-11 10:07:36 -0700260 control |= PCI_PRI_CTRL_RESET;
Joerg Roedelc320b972011-09-27 15:57:15 +0200261
Alex Williamson91f57d52011-11-11 10:07:36 -0700262 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedelc320b972011-09-27 15:57:15 +0200263
264 return 0;
265}
266EXPORT_SYMBOL_GPL(pci_reset_pri);
267
268/**
269 * pci_pri_stopped - Checks whether the PRI capability is stopped
270 * @pdev: PCI device structure
271 *
272 * Returns true if the PRI capability on the device is disabled and the
273 * device has no outstanding PRI requests, false otherwise. The device
274 * indicates this via the STOPPED bit in the status register of the
275 * capability.
276 * The device internal state can be cleared by resetting the PRI state
277 * with pci_reset_pri(). This can force the capability into the STOPPED
278 * state.
279 */
280bool pci_pri_stopped(struct pci_dev *pdev)
281{
282 u16 control, status;
283 int pos;
284
Alex Williamson69166fb2011-11-02 14:07:15 -0600285 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc320b972011-09-27 15:57:15 +0200286 if (!pos)
287 return true;
288
Alex Williamson91f57d52011-11-11 10:07:36 -0700289 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
290 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc320b972011-09-27 15:57:15 +0200291
Alex Williamson91f57d52011-11-11 10:07:36 -0700292 if (control & PCI_PRI_CTRL_ENABLE)
Joerg Roedelc320b972011-09-27 15:57:15 +0200293 return false;
294
295 return (status & PCI_PRI_STATUS_STOPPED) ? true : false;
296}
297EXPORT_SYMBOL_GPL(pci_pri_stopped);
298
299/**
300 * pci_pri_status - Request PRI status of a device
301 * @pdev: PCI device structure
302 *
303 * Returns negative value on failure, status on success. The status can
304 * be checked against status-bits. Supported bits are currently:
305 * PCI_PRI_STATUS_RF: Response failure
306 * PCI_PRI_STATUS_UPRGI: Unexpected Page Request Group Index
307 * PCI_PRI_STATUS_STOPPED: PRI has stopped
308 */
309int pci_pri_status(struct pci_dev *pdev)
310{
311 u16 status, control;
312 int pos;
313
Alex Williamson69166fb2011-11-02 14:07:15 -0600314 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc320b972011-09-27 15:57:15 +0200315 if (!pos)
316 return -EINVAL;
317
Alex Williamson91f57d52011-11-11 10:07:36 -0700318 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
319 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc320b972011-09-27 15:57:15 +0200320
321 /* Stopped bit is undefined when enable == 1, so clear it */
Alex Williamson91f57d52011-11-11 10:07:36 -0700322 if (control & PCI_PRI_CTRL_ENABLE)
Joerg Roedelc320b972011-09-27 15:57:15 +0200323 status &= ~PCI_PRI_STATUS_STOPPED;
324
325 return status;
326}
327EXPORT_SYMBOL_GPL(pci_pri_status);
328#endif /* CONFIG_PCI_PRI */
Joerg Roedel086ac112011-09-27 15:57:16 +0200329
330#ifdef CONFIG_PCI_PASID
331/**
332 * pci_enable_pasid - Enable the PASID capability
333 * @pdev: PCI device structure
334 * @features: Features to enable
335 *
336 * Returns 0 on success, negative value on error. This function checks
337 * whether the features are actually supported by the device and returns
338 * an error if not.
339 */
340int pci_enable_pasid(struct pci_dev *pdev, int features)
341{
342 u16 control, supported;
343 int pos;
344
Alex Williamson69166fb2011-11-02 14:07:15 -0600345 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
Joerg Roedel086ac112011-09-27 15:57:16 +0200346 if (!pos)
347 return -EINVAL;
348
Alex Williamson91f57d52011-11-11 10:07:36 -0700349 pci_read_config_word(pdev, pos + PCI_PASID_CTRL, &control);
350 pci_read_config_word(pdev, pos + PCI_PASID_CAP, &supported);
Joerg Roedel086ac112011-09-27 15:57:16 +0200351
Alex Williamson91f57d52011-11-11 10:07:36 -0700352 if (control & PCI_PASID_CTRL_ENABLE)
Joerg Roedel086ac112011-09-27 15:57:16 +0200353 return -EINVAL;
354
Alex Williamson91f57d52011-11-11 10:07:36 -0700355 supported &= PCI_PASID_CAP_EXEC | PCI_PASID_CAP_PRIV;
Joerg Roedel086ac112011-09-27 15:57:16 +0200356
357 /* User wants to enable anything unsupported? */
358 if ((supported & features) != features)
359 return -EINVAL;
360
Alex Williamson91f57d52011-11-11 10:07:36 -0700361 control = PCI_PASID_CTRL_ENABLE | features;
Joerg Roedel086ac112011-09-27 15:57:16 +0200362
Alex Williamson91f57d52011-11-11 10:07:36 -0700363 pci_write_config_word(pdev, pos + PCI_PASID_CTRL, control);
Joerg Roedel086ac112011-09-27 15:57:16 +0200364
365 return 0;
366}
367EXPORT_SYMBOL_GPL(pci_enable_pasid);
368
369/**
370 * pci_disable_pasid - Disable the PASID capability
371 * @pdev: PCI device structure
372 *
373 */
374void pci_disable_pasid(struct pci_dev *pdev)
375{
376 u16 control = 0;
377 int pos;
378
Alex Williamson69166fb2011-11-02 14:07:15 -0600379 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
Joerg Roedel086ac112011-09-27 15:57:16 +0200380 if (!pos)
381 return;
382
Alex Williamson91f57d52011-11-11 10:07:36 -0700383 pci_write_config_word(pdev, pos + PCI_PASID_CTRL, control);
Joerg Roedel086ac112011-09-27 15:57:16 +0200384}
385EXPORT_SYMBOL_GPL(pci_disable_pasid);
386
387/**
388 * pci_pasid_features - Check which PASID features are supported
389 * @pdev: PCI device structure
390 *
391 * Returns a negative value when no PASI capability is present.
392 * Otherwise is returns a bitmask with supported features. Current
393 * features reported are:
Alex Williamson91f57d52011-11-11 10:07:36 -0700394 * PCI_PASID_CAP_EXEC - Execute permission supported
395 * PCI_PASID_CAP_PRIV - Priviledged mode supported
Joerg Roedel086ac112011-09-27 15:57:16 +0200396 */
397int pci_pasid_features(struct pci_dev *pdev)
398{
399 u16 supported;
400 int pos;
401
Alex Williamson69166fb2011-11-02 14:07:15 -0600402 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
Joerg Roedel086ac112011-09-27 15:57:16 +0200403 if (!pos)
404 return -EINVAL;
405
Alex Williamson91f57d52011-11-11 10:07:36 -0700406 pci_read_config_word(pdev, pos + PCI_PASID_CAP, &supported);
Joerg Roedel086ac112011-09-27 15:57:16 +0200407
Alex Williamson91f57d52011-11-11 10:07:36 -0700408 supported &= PCI_PASID_CAP_EXEC | PCI_PASID_CAP_PRIV;
Joerg Roedel086ac112011-09-27 15:57:16 +0200409
410 return supported;
411}
412EXPORT_SYMBOL_GPL(pci_pasid_features);
413
414#define PASID_NUMBER_SHIFT 8
415#define PASID_NUMBER_MASK (0x1f << PASID_NUMBER_SHIFT)
416/**
417 * pci_max_pasid - Get maximum number of PASIDs supported by device
418 * @pdev: PCI device structure
419 *
420 * Returns negative value when PASID capability is not present.
421 * Otherwise it returns the numer of supported PASIDs.
422 */
423int pci_max_pasids(struct pci_dev *pdev)
424{
425 u16 supported;
426 int pos;
427
Alex Williamson69166fb2011-11-02 14:07:15 -0600428 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
Joerg Roedel086ac112011-09-27 15:57:16 +0200429 if (!pos)
430 return -EINVAL;
431
Alex Williamson91f57d52011-11-11 10:07:36 -0700432 pci_read_config_word(pdev, pos + PCI_PASID_CAP, &supported);
Joerg Roedel086ac112011-09-27 15:57:16 +0200433
434 supported = (supported & PASID_NUMBER_MASK) >> PASID_NUMBER_SHIFT;
435
436 return (1 << supported);
437}
438EXPORT_SYMBOL_GPL(pci_max_pasids);
439#endif /* CONFIG_PCI_PASID */