blob: 1eb4fc3eee20ad46ff44f917440f2d599ab80412 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jan Engelhardt96de0e22007-10-19 23:21:04 +02002 * Copyright 2003 José Fonseca.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright 2003 Leif Delgass.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Dave Airlie195b3a22006-04-05 18:12:18 +100027#include <linux/dma-mapping.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040028#include <linux/export.h>
Daniel Vetter23ef59e2017-03-08 15:12:37 +010029#include <drm/drm_pci.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/drmP.h>
Ville Syrjälä43fc8842015-03-13 14:51:25 +020031#include "drm_internal.h"
Daniel Vetterba8286f2014-09-11 07:43:25 +020032#include "drm_legacy.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/**
Thierry Redingc6a1af8a2014-05-19 13:39:07 +020035 * drm_pci_alloc - Allocate a PCI consistent memory block, for DMA.
36 * @dev: DRM device
37 * @size: size of block to allocate
38 * @align: alignment of block
39 *
Daniel Vetter23ef59e2017-03-08 15:12:37 +010040 * FIXME: This is a needless abstraction of the Linux dma-api and should be
41 * removed.
42 *
Thierry Redingc6a1af8a2014-05-19 13:39:07 +020043 * Return: A handle to the allocated memory block on success or NULL on
44 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
Zhenyu Wange6be8d92010-01-05 11:25:05 +080046drm_dma_handle_t *drm_pci_alloc(struct drm_device * dev, size_t size, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Dave Airlie9c8da5e2005-07-10 15:38:56 +100048 drm_dma_handle_t *dmah;
Dave Airlieddf19b92006-03-19 18:56:12 +110049 unsigned long addr;
50 size_t sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 /* pci_alloc_consistent only guarantees alignment to the smallest
53 * PAGE_SIZE order which is greater than or equal to the requested size.
54 * Return NULL here for now to make sure nobody tries for larger alignment
55 */
56 if (align > size)
57 return NULL;
58
Dave Airlie9c8da5e2005-07-10 15:38:56 +100059 dmah = kmalloc(sizeof(drm_dma_handle_t), GFP_KERNEL);
60 if (!dmah)
61 return NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100062
Dave Airlie9c8da5e2005-07-10 15:38:56 +100063 dmah->size = size;
Dave Airlieddf19b92006-03-19 18:56:12 +110064 dmah->vaddr = dma_alloc_coherent(&dev->pdev->dev, size, &dmah->busaddr, GFP_KERNEL | __GFP_COMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Dave Airlie9c8da5e2005-07-10 15:38:56 +100066 if (dmah->vaddr == NULL) {
67 kfree(dmah);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return NULL;
Dave Airlie9c8da5e2005-07-10 15:38:56 +100069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Dave Airlie9c8da5e2005-07-10 15:38:56 +100071 memset(dmah->vaddr, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Dave Airlieddf19b92006-03-19 18:56:12 +110073 /* XXX - Is virt_to_page() legal for consistent mem? */
74 /* Reserve */
75 for (addr = (unsigned long)dmah->vaddr, sz = size;
76 sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
Ben Hutchingse1e78532013-10-27 21:52:39 +000077 SetPageReserved(virt_to_page((void *)addr));
Dave Airlieddf19b92006-03-19 18:56:12 +110078 }
79
Dave Airlie9c8da5e2005-07-10 15:38:56 +100080 return dmah;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
Dave Airlieb5e89ed2005-09-25 14:28:13 +100082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083EXPORT_SYMBOL(drm_pci_alloc);
84
Thierry Redingc6a1af8a2014-05-19 13:39:07 +020085/*
86 * Free a PCI consistent memory block without freeing its descriptor.
Dave Airlie9c8da5e2005-07-10 15:38:56 +100087 *
88 * This function is for internal use in the Linux-specific DRM core code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 */
Daniel Vetter1c96e842014-09-10 12:43:51 +020090void __drm_legacy_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Dave Airlieddf19b92006-03-19 18:56:12 +110092 unsigned long addr;
93 size_t sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Eric Anholt9a298b22009-03-24 12:23:04 -070095 if (dmah->vaddr) {
Dave Airlieddf19b92006-03-19 18:56:12 +110096 /* XXX - Is virt_to_page() legal for consistent mem? */
97 /* Unreserve */
98 for (addr = (unsigned long)dmah->vaddr, sz = dmah->size;
99 sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
Ben Hutchingse1e78532013-10-27 21:52:39 +0000100 ClearPageReserved(virt_to_page((void *)addr));
Dave Airlieddf19b92006-03-19 18:56:12 +1100101 }
102 dma_free_coherent(&dev->pdev->dev, dmah->size, dmah->vaddr,
103 dmah->busaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000106
107/**
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200108 * drm_pci_free - Free a PCI consistent memory block
109 * @dev: DRM device
110 * @dmah: handle to memory block
Daniel Vetter23ef59e2017-03-08 15:12:37 +0100111 *
112 * FIXME: This is a needless abstraction of the Linux dma-api and should be
113 * removed.
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000114 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000115void drm_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah)
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000116{
Daniel Vetter1c96e842014-09-10 12:43:51 +0200117 __drm_legacy_pci_free(dev, dmah);
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000118 kfree(dmah);
119}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121EXPORT_SYMBOL(drm_pci_free);
122
Jordan Crousedcdb1672010-05-27 13:40:25 -0600123#ifdef CONFIG_PCI
Dave Airlie8410ea32010-12-15 03:16:38 +1000124
125static int drm_get_pci_domain(struct drm_device *dev)
126{
127#ifndef __alpha__
128 /* For historical reasons, drm_get_pci_domain() is busticated
129 * on most archs and has to remain so for userspace interface
130 * < 1.4, except on alpha which was right from the beginning
131 */
132 if (dev->if_version < 0x10004)
133 return 0;
134#endif /* __alpha__ */
135
136 return pci_domain_nr(dev->pdev->bus);
137}
138
David Herrmann915b4d12014-08-29 12:12:43 +0200139int drm_pci_set_busid(struct drm_device *dev, struct drm_master *master)
Dave Airlie8410ea32010-12-15 03:16:38 +1000140{
David Herrmannd0a39162014-08-29 12:12:41 +0200141 master->unique = kasprintf(GFP_KERNEL, "pci:%04x:%02x:%02x.%d",
142 drm_get_pci_domain(dev),
143 dev->pdev->bus->number,
144 PCI_SLOT(dev->pdev->devfn),
145 PCI_FUNC(dev->pdev->devfn));
146 if (!master->unique)
Dave Airlie8410ea32010-12-15 03:16:38 +1000147 return -ENOMEM;
148
David Herrmannd0a39162014-08-29 12:12:41 +0200149 master->unique_len = strlen(master->unique);
Dave Airlie8410ea32010-12-15 03:16:38 +1000150 return 0;
Dave Airlie8410ea32010-12-15 03:16:38 +1000151}
David Herrmann915b4d12014-08-29 12:12:43 +0200152EXPORT_SYMBOL(drm_pci_set_busid);
Dave Airlie8410ea32010-12-15 03:16:38 +1000153
Wolfram Sang45e97ab2011-06-15 11:26:47 +0200154static int drm_pci_irq_by_busid(struct drm_device *dev, struct drm_irq_busid *p)
Dave Airlie8410ea32010-12-15 03:16:38 +1000155{
156 if ((p->busnum >> 8) != drm_get_pci_domain(dev) ||
157 (p->busnum & 0xff) != dev->pdev->bus->number ||
158 p->devnum != PCI_SLOT(dev->pdev->devfn) || p->funcnum != PCI_FUNC(dev->pdev->devfn))
159 return -EINVAL;
160
161 p->irq = dev->pdev->irq;
162
163 DRM_DEBUG("%d:%d:%d => IRQ %d\n", p->busnum, p->devnum, p->funcnum,
164 p->irq);
165 return 0;
166}
167
Daniel Vettereaaf8f02013-08-28 15:19:23 +0200168/**
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200169 * drm_irq_by_busid - Get interrupt from bus ID
170 * @dev: DRM device
171 * @data: IOCTL parameter pointing to a drm_irq_busid structure
172 * @file_priv: DRM file private.
Daniel Vettereaaf8f02013-08-28 15:19:23 +0200173 *
174 * Finds the PCI device with the specified bus id and gets its IRQ number.
175 * This IOCTL is deprecated, and will now return EINVAL for any busid not equal
176 * to that of the device that this DRM instance attached to.
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200177 *
178 * Return: 0 on success or a negative error code on failure.
Daniel Vettereaaf8f02013-08-28 15:19:23 +0200179 */
180int drm_irq_by_busid(struct drm_device *dev, void *data,
181 struct drm_file *file_priv)
182{
183 struct drm_irq_busid *p = data;
184
Daniel Vetterfa538642016-08-03 21:11:10 +0200185 if (!drm_core_check_feature(dev, DRIVER_LEGACY))
Daniel Vettereaaf8f02013-08-28 15:19:23 +0200186 return -EINVAL;
187
188 /* UMS was only ever support on PCI devices. */
189 if (WARN_ON(!dev->pdev))
190 return -EINVAL;
191
192 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
193 return -EINVAL;
194
195 return drm_pci_irq_by_busid(dev, p);
196}
197
Daniel Vetter8da79cc2013-12-11 11:34:34 +0100198static void drm_pci_agp_init(struct drm_device *dev)
Dave Airlie8410ea32010-12-15 03:16:38 +1000199{
Daniel Vetterd9906752013-12-11 11:34:35 +0100200 if (drm_core_check_feature(dev, DRIVER_USE_AGP)) {
Daniel Vetter2ce02642017-01-25 07:26:52 +0100201 if (pci_find_capability(dev->pdev, PCI_CAP_ID_AGP))
Dave Airlie8410ea32010-12-15 03:16:38 +1000202 dev->agp = drm_agp_init(dev);
Daniel Vetter28185642013-08-08 15:41:27 +0200203 if (dev->agp) {
204 dev->agp->agp_mtrr = arch_phys_wc_add(
205 dev->agp->agp_info.aper_base,
206 dev->agp->agp_info.aper_size *
207 1024 * 1024);
Dave Airlie8410ea32010-12-15 03:16:38 +1000208 }
209 }
Dave Airlie8410ea32010-12-15 03:16:38 +1000210}
211
Daniel Vetter4efafeb2013-12-11 11:34:38 +0100212void drm_pci_agp_destroy(struct drm_device *dev)
David Herrmann28ec7112013-07-27 16:37:00 +0200213{
Daniel Vetterd9906752013-12-11 11:34:35 +0100214 if (dev->agp) {
Daniel Vetter28185642013-08-08 15:41:27 +0200215 arch_phys_wc_del(dev->agp->agp_mtrr);
Daniel Vetter366884b2016-04-26 19:29:34 +0200216 drm_legacy_agp_clear(dev);
Daniel Vetterd6e4b282013-12-11 11:34:37 +0100217 kfree(dev->agp);
David Herrmann28ec7112013-07-27 16:37:00 +0200218 dev->agp = NULL;
219 }
220}
221
Jordan Crousedcdb1672010-05-27 13:40:25 -0600222/**
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200223 * drm_get_pci_dev - Register a PCI device with the DRM subsystem
224 * @pdev: PCI device
225 * @ent: entry from the PCI ID table that matches @pdev
226 * @driver: DRM device driver
Jordan Crousedcdb1672010-05-27 13:40:25 -0600227 *
228 * Attempt to gets inter module "drm" information. If we are first
229 * then register the character device and inter module information.
230 * Try and register, if we fail to register, backout previous work.
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200231 *
Daniel Vetter6e3f7972015-09-28 21:46:35 +0200232 * NOTE: This function is deprecated, please use drm_dev_alloc() and
Daniel Vetteref40cbf92017-01-25 07:26:47 +0100233 * drm_dev_register() instead and remove your &drm_driver.load callback.
Daniel Vetter6e3f7972015-09-28 21:46:35 +0200234 *
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200235 * Return: 0 on success or a negative error code on failure.
Jordan Crousedcdb1672010-05-27 13:40:25 -0600236 */
237int drm_get_pci_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
238 struct drm_driver *driver)
239{
240 struct drm_device *dev;
241 int ret;
242
243 DRM_DEBUG("\n");
244
David Herrmann1bb72532013-10-02 11:23:34 +0200245 dev = drm_dev_alloc(driver, &pdev->dev);
Tom Gundersen0f288602016-09-21 16:59:19 +0200246 if (IS_ERR(dev))
247 return PTR_ERR(dev);
Jordan Crousedcdb1672010-05-27 13:40:25 -0600248
249 ret = pci_enable_device(pdev);
250 if (ret)
David Herrmannc22f0ac2013-10-02 11:23:35 +0200251 goto err_free;
Jordan Crousedcdb1672010-05-27 13:40:25 -0600252
Jordan Crousedcdb1672010-05-27 13:40:25 -0600253 dev->pdev = pdev;
Jordan Crousedcdb1672010-05-27 13:40:25 -0600254#ifdef __alpha__
255 dev->hose = pdev->sysdata;
256#endif
257
David Herrmannc22f0ac2013-10-02 11:23:35 +0200258 if (drm_core_check_feature(dev, DRIVER_MODESET))
Jordan Crousedcdb1672010-05-27 13:40:25 -0600259 pci_set_drvdata(pdev, dev);
Jordan Crousedcdb1672010-05-27 13:40:25 -0600260
Daniel Vetter2c695fa2013-12-11 11:34:36 +0100261 drm_pci_agp_init(dev);
Daniel Vetter2c695fa2013-12-11 11:34:36 +0100262
David Herrmannc22f0ac2013-10-02 11:23:35 +0200263 ret = drm_dev_register(dev, ent->driver_data);
264 if (ret)
Daniel Vetter2c695fa2013-12-11 11:34:36 +0100265 goto err_agp;
Jordan Crousedcdb1672010-05-27 13:40:25 -0600266
Daniel Vetterb3f23332013-12-11 11:34:31 +0100267 /* No locking needed since shadow-attach is single-threaded since it may
268 * only be called from the per-driver module init hook. */
Daniel Vetterfa538642016-08-03 21:11:10 +0200269 if (drm_core_check_feature(dev, DRIVER_LEGACY))
Daniel Vetterb3f23332013-12-11 11:34:31 +0100270 list_add_tail(&dev->legacy_dev_list, &driver->legacy_dev_list);
271
Jordan Crousedcdb1672010-05-27 13:40:25 -0600272 return 0;
273
Daniel Vetter2c695fa2013-12-11 11:34:36 +0100274err_agp:
Daniel Vetter2c695fa2013-12-11 11:34:36 +0100275 drm_pci_agp_destroy(dev);
Jordan Crousedcdb1672010-05-27 13:40:25 -0600276 pci_disable_device(pdev);
David Herrmannc22f0ac2013-10-02 11:23:35 +0200277err_free:
David Herrmann099d1c22014-01-29 10:21:36 +0100278 drm_dev_unref(dev);
Jordan Crousedcdb1672010-05-27 13:40:25 -0600279 return ret;
280}
281EXPORT_SYMBOL(drm_get_pci_dev);
282
283/**
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200284 * drm_pci_init - Register matching PCI devices with the DRM subsystem
285 * @driver: DRM device driver
286 * @pdriver: PCI device driver
Jordan Crousedcdb1672010-05-27 13:40:25 -0600287 *
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200288 * Initializes a drm_device structures, registering the stubs and initializing
289 * the AGP device.
Jordan Crousedcdb1672010-05-27 13:40:25 -0600290 *
Daniel Vetter6e3f7972015-09-28 21:46:35 +0200291 * NOTE: This function is deprecated. Modern modesetting drm drivers should use
292 * pci_register_driver() directly, this function only provides shadow-binding
293 * support for old legacy drivers on top of that core pci function.
294 *
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200295 * Return: 0 on success or a negative error code on failure.
Jordan Crousedcdb1672010-05-27 13:40:25 -0600296 */
Dave Airlie8410ea32010-12-15 03:16:38 +1000297int drm_pci_init(struct drm_driver *driver, struct pci_driver *pdriver)
Jordan Crousedcdb1672010-05-27 13:40:25 -0600298{
299 struct pci_dev *pdev = NULL;
300 const struct pci_device_id *pid;
301 int i;
302
Dave Airlie8410ea32010-12-15 03:16:38 +1000303 DRM_DEBUG("\n");
304
Daniel Vetterfa538642016-08-03 21:11:10 +0200305 if (!(driver->driver_features & DRIVER_LEGACY))
Dave Airlie8410ea32010-12-15 03:16:38 +1000306 return pci_register_driver(pdriver);
Jordan Crousedcdb1672010-05-27 13:40:25 -0600307
308 /* If not using KMS, fall back to stealth mode manual scanning. */
Daniel Vetterb3f23332013-12-11 11:34:31 +0100309 INIT_LIST_HEAD(&driver->legacy_dev_list);
Dave Airlie8410ea32010-12-15 03:16:38 +1000310 for (i = 0; pdriver->id_table[i].vendor != 0; i++) {
311 pid = &pdriver->id_table[i];
Jordan Crousedcdb1672010-05-27 13:40:25 -0600312
313 /* Loop around setting up a DRM device for each PCI device
314 * matching our ID and device class. If we had the internal
315 * function that pci_get_subsys and pci_get_class used, we'd
316 * be able to just pass pid in instead of doing a two-stage
317 * thing.
318 */
319 pdev = NULL;
320 while ((pdev =
321 pci_get_subsys(pid->vendor, pid->device, pid->subvendor,
322 pid->subdevice, pdev)) != NULL) {
323 if ((pdev->class & pid->class_mask) != pid->class)
324 continue;
325
326 /* stealth mode requires a manual probe */
327 pci_dev_get(pdev);
328 drm_get_pci_dev(pdev, pid, driver);
329 }
330 }
331 return 0;
332}
333
Dave Airlief4297782012-06-27 08:35:53 +0100334int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *mask)
335{
336 struct pci_dev *root;
Bjorn Helgaasdd66cc22013-01-04 19:10:42 +0000337 u32 lnkcap, lnkcap2;
Dave Airlief4297782012-06-27 08:35:53 +0100338
339 *mask = 0;
340 if (!dev->pdev)
341 return -EINVAL;
342
Dave Airlief4297782012-06-27 08:35:53 +0100343 root = dev->pdev->bus->self;
344
Dave Airlief4297782012-06-27 08:35:53 +0100345 /* we've been informed via and serverworks don't make the cut */
346 if (root->vendor == PCI_VENDOR_ID_VIA ||
347 root->vendor == PCI_VENDOR_ID_SERVERWORKS)
348 return -EINVAL;
349
Bjorn Helgaasdd66cc22013-01-04 19:10:42 +0000350 pcie_capability_read_dword(root, PCI_EXP_LNKCAP, &lnkcap);
351 pcie_capability_read_dword(root, PCI_EXP_LNKCAP2, &lnkcap2);
Dave Airlief4297782012-06-27 08:35:53 +0100352
Bjorn Helgaasdd66cc22013-01-04 19:10:42 +0000353 if (lnkcap2) { /* PCIe r3.0-compliant */
Dave Airlief4297782012-06-27 08:35:53 +0100354 if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_2_5GB)
355 *mask |= DRM_PCIE_SPEED_25;
356 if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_5_0GB)
357 *mask |= DRM_PCIE_SPEED_50;
358 if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_8_0GB)
359 *mask |= DRM_PCIE_SPEED_80;
Bjorn Helgaasdd66cc22013-01-04 19:10:42 +0000360 } else { /* pre-r3.0 */
Bjorn Helgaas9fe04232013-01-04 19:10:32 +0000361 if (lnkcap & PCI_EXP_LNKCAP_SLS_2_5GB)
Dave Airlief4297782012-06-27 08:35:53 +0100362 *mask |= DRM_PCIE_SPEED_25;
Bjorn Helgaas9fe04232013-01-04 19:10:32 +0000363 if (lnkcap & PCI_EXP_LNKCAP_SLS_5_0GB)
Bjorn Helgaasf8acf6f2013-01-04 19:10:37 +0000364 *mask |= (DRM_PCIE_SPEED_25 | DRM_PCIE_SPEED_50);
Dave Airlief4297782012-06-27 08:35:53 +0100365 }
366
367 DRM_INFO("probing gen 2 caps for device %x:%x = %x/%x\n", root->vendor, root->device, lnkcap, lnkcap2);
368 return 0;
369}
370EXPORT_SYMBOL(drm_pcie_get_speed_cap_mask);
Bjorn Helgaas93711d82013-02-08 15:27:01 -0700371
Alex Deucher60d8edd2015-11-11 23:14:39 -0500372int drm_pcie_get_max_link_width(struct drm_device *dev, u32 *mlw)
373{
374 struct pci_dev *root;
375 u32 lnkcap;
376
377 *mlw = 0;
378 if (!dev->pdev)
379 return -EINVAL;
380
381 root = dev->pdev->bus->self;
382
383 pcie_capability_read_dword(root, PCI_EXP_LNKCAP, &lnkcap);
384
385 *mlw = (lnkcap & PCI_EXP_LNKCAP_MLW) >> 4;
386
387 DRM_INFO("probing mlw for device %x:%x = %x\n", root->vendor, root->device, lnkcap);
388 return 0;
389}
390EXPORT_SYMBOL(drm_pcie_get_max_link_width);
391
Bjorn Helgaas93711d82013-02-08 15:27:01 -0700392#else
393
394int drm_pci_init(struct drm_driver *driver, struct pci_driver *pdriver)
395{
396 return -1;
397}
398
Daniel Vetter4efafeb2013-12-11 11:34:38 +0100399void drm_pci_agp_destroy(struct drm_device *dev) {}
Daniel Vettereaaf8f02013-08-28 15:19:23 +0200400
401int drm_irq_by_busid(struct drm_device *dev, void *data,
402 struct drm_file *file_priv)
403{
404 return -EINVAL;
405}
Bjorn Helgaas93711d82013-02-08 15:27:01 -0700406#endif
407
408EXPORT_SYMBOL(drm_pci_init);
409
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200410/**
411 * drm_pci_exit - Unregister matching PCI devices from the DRM subsystem
412 * @driver: DRM device driver
413 * @pdriver: PCI device driver
414 *
415 * Unregisters one or more devices matched by a PCI driver from the DRM
416 * subsystem.
Daniel Vetter6e3f7972015-09-28 21:46:35 +0200417 *
418 * NOTE: This function is deprecated. Modern modesetting drm drivers should use
419 * pci_unregister_driver() directly, this function only provides shadow-binding
420 * support for old legacy drivers on top of that core pci function.
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200421 */
Bjorn Helgaas93711d82013-02-08 15:27:01 -0700422void drm_pci_exit(struct drm_driver *driver, struct pci_driver *pdriver)
423{
424 struct drm_device *dev, *tmp;
425 DRM_DEBUG("\n");
426
Daniel Vetterfa538642016-08-03 21:11:10 +0200427 if (!(driver->driver_features & DRIVER_LEGACY)) {
Bjorn Helgaas93711d82013-02-08 15:27:01 -0700428 pci_unregister_driver(pdriver);
429 } else {
Daniel Vetterb3f23332013-12-11 11:34:31 +0100430 list_for_each_entry_safe(dev, tmp, &driver->legacy_dev_list,
431 legacy_dev_list) {
Daniel Vetterb3f23332013-12-11 11:34:31 +0100432 list_del(&dev->legacy_dev_list);
Daniel Vetterc94adc42014-01-30 17:58:38 +0100433 drm_put_dev(dev);
Daniel Vetterb3f23332013-12-11 11:34:31 +0100434 }
Bjorn Helgaas93711d82013-02-08 15:27:01 -0700435 }
436 DRM_INFO("Module unloaded\n");
437}
438EXPORT_SYMBOL(drm_pci_exit);