1592ffb21SWarner Losh /* drm_pci.h -- PCI DMA memory management wrappers for DRM -*- linux-c -*- */
2592ffb21SWarner Losh /**
3592ffb21SWarner Losh * \file drm_pci.c
4592ffb21SWarner Losh * \brief Functions and ioctls to manage PCI memory
5592ffb21SWarner Losh *
6592ffb21SWarner Losh * \warning These interfaces aren't stable yet.
7592ffb21SWarner Losh *
8592ffb21SWarner Losh * \todo Implement the remaining ioctl's for the PCI pools.
9592ffb21SWarner Losh * \todo The wrappers here are so thin that they would be better off inlined..
10592ffb21SWarner Losh *
11592ffb21SWarner Losh * \author José Fonseca <jrfonseca@tungstengraphics.com>
12592ffb21SWarner Losh * \author Leif Delgass <ldelgass@retinalburn.net>
13592ffb21SWarner Losh */
14592ffb21SWarner Losh
15592ffb21SWarner Losh /*
16592ffb21SWarner Losh * Copyright 2003 José Fonseca.
17592ffb21SWarner Losh * Copyright 2003 Leif Delgass.
18592ffb21SWarner Losh * All Rights Reserved.
19592ffb21SWarner Losh *
20592ffb21SWarner Losh * Permission is hereby granted, free of charge, to any person obtaining a
21592ffb21SWarner Losh * copy of this software and associated documentation files (the "Software"),
22592ffb21SWarner Losh * to deal in the Software without restriction, including without limitation
23592ffb21SWarner Losh * the rights to use, copy, modify, merge, publish, distribute, sublicense,
24592ffb21SWarner Losh * and/or sell copies of the Software, and to permit persons to whom the
25592ffb21SWarner Losh * Software is furnished to do so, subject to the following conditions:
26592ffb21SWarner Losh *
27592ffb21SWarner Losh * The above copyright notice and this permission notice (including the next
28592ffb21SWarner Losh * paragraph) shall be included in all copies or substantial portions of the
29592ffb21SWarner Losh * Software.
30592ffb21SWarner Losh *
31592ffb21SWarner Losh * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32592ffb21SWarner Losh * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33592ffb21SWarner Losh * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34592ffb21SWarner Losh * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
35592ffb21SWarner Losh * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
36592ffb21SWarner Losh * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
37592ffb21SWarner Losh */
38592ffb21SWarner Losh
39592ffb21SWarner Losh #include <sys/cdefs.h>
40592ffb21SWarner Losh #include <dev/drm2/drmP.h>
41592ffb21SWarner Losh
42592ffb21SWarner Losh static int drm_msi = 1; /* Enable by default. */
43*59e4be22SPawel Biernacki SYSCTL_NODE(_hw, OID_AUTO, drm, CTLFLAG_RW | CTLFLAG_MPSAFE, NULL,
44*59e4be22SPawel Biernacki "DRM device");
45592ffb21SWarner Losh SYSCTL_INT(_hw_drm, OID_AUTO, msi, CTLFLAG_RDTUN, &drm_msi, 1,
46592ffb21SWarner Losh "Enable MSI interrupts for drm devices");
47592ffb21SWarner Losh
48592ffb21SWarner Losh /**********************************************************************/
49592ffb21SWarner Losh /** \name PCI memory */
50592ffb21SWarner Losh /*@{*/
51592ffb21SWarner Losh
52592ffb21SWarner Losh static void
drm_pci_busdma_callback(void * arg,bus_dma_segment_t * segs,int nsegs,int error)53592ffb21SWarner Losh drm_pci_busdma_callback(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
54592ffb21SWarner Losh {
55592ffb21SWarner Losh drm_dma_handle_t *dmah = arg;
56592ffb21SWarner Losh
57592ffb21SWarner Losh if (error != 0)
58592ffb21SWarner Losh return;
59592ffb21SWarner Losh
60592ffb21SWarner Losh KASSERT(nsegs == 1, ("drm_pci_busdma_callback: bad dma segment count"));
61592ffb21SWarner Losh dmah->busaddr = segs[0].ds_addr;
62592ffb21SWarner Losh }
63592ffb21SWarner Losh
64592ffb21SWarner Losh /**
65592ffb21SWarner Losh * \brief Allocate a PCI consistent memory block, for DMA.
66592ffb21SWarner Losh */
drm_pci_alloc(struct drm_device * dev,size_t size,size_t align,dma_addr_t maxaddr)67592ffb21SWarner Losh drm_dma_handle_t *drm_pci_alloc(struct drm_device * dev, size_t size,
68592ffb21SWarner Losh size_t align, dma_addr_t maxaddr)
69592ffb21SWarner Losh {
70592ffb21SWarner Losh drm_dma_handle_t *dmah;
71592ffb21SWarner Losh int ret;
72592ffb21SWarner Losh
73592ffb21SWarner Losh /* Need power-of-two alignment, so fail the allocation if it isn't. */
74592ffb21SWarner Losh if ((align & (align - 1)) != 0) {
75592ffb21SWarner Losh DRM_ERROR("drm_pci_alloc with non-power-of-two alignment %d\n",
76592ffb21SWarner Losh (int)align);
77592ffb21SWarner Losh return NULL;
78592ffb21SWarner Losh }
79592ffb21SWarner Losh
80592ffb21SWarner Losh dmah = malloc(sizeof(drm_dma_handle_t), DRM_MEM_DMA, M_ZERO | M_NOWAIT);
81592ffb21SWarner Losh if (dmah == NULL)
82592ffb21SWarner Losh return NULL;
83592ffb21SWarner Losh
84592ffb21SWarner Losh /* Make sure we aren't holding mutexes here */
85592ffb21SWarner Losh mtx_assert(&dev->dma_lock, MA_NOTOWNED);
86592ffb21SWarner Losh if (mtx_owned(&dev->dma_lock))
87592ffb21SWarner Losh DRM_ERROR("called while holding dma_lock\n");
88592ffb21SWarner Losh
89592ffb21SWarner Losh ret = bus_dma_tag_create(
90592ffb21SWarner Losh bus_get_dma_tag(dev->dev), /* parent */
91592ffb21SWarner Losh align, 0, /* align, boundary */
92592ffb21SWarner Losh maxaddr, BUS_SPACE_MAXADDR, /* lowaddr, highaddr */
93592ffb21SWarner Losh NULL, NULL, /* filtfunc, filtfuncargs */
94592ffb21SWarner Losh size, 1, size, /* maxsize, nsegs, maxsegsize */
95592ffb21SWarner Losh 0, NULL, NULL, /* flags, lockfunc, lockfuncargs */
96592ffb21SWarner Losh &dmah->tag);
97592ffb21SWarner Losh if (ret != 0) {
98592ffb21SWarner Losh free(dmah, DRM_MEM_DMA);
99592ffb21SWarner Losh return NULL;
100592ffb21SWarner Losh }
101592ffb21SWarner Losh
102592ffb21SWarner Losh ret = bus_dmamem_alloc(dmah->tag, &dmah->vaddr,
103592ffb21SWarner Losh BUS_DMA_WAITOK | BUS_DMA_ZERO | BUS_DMA_NOCACHE, &dmah->map);
104592ffb21SWarner Losh if (ret != 0) {
105592ffb21SWarner Losh bus_dma_tag_destroy(dmah->tag);
106592ffb21SWarner Losh free(dmah, DRM_MEM_DMA);
107592ffb21SWarner Losh return NULL;
108592ffb21SWarner Losh }
109592ffb21SWarner Losh
110592ffb21SWarner Losh ret = bus_dmamap_load(dmah->tag, dmah->map, dmah->vaddr, size,
111592ffb21SWarner Losh drm_pci_busdma_callback, dmah, BUS_DMA_NOWAIT);
112592ffb21SWarner Losh if (ret != 0) {
113592ffb21SWarner Losh bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
114592ffb21SWarner Losh bus_dma_tag_destroy(dmah->tag);
115592ffb21SWarner Losh free(dmah, DRM_MEM_DMA);
116592ffb21SWarner Losh return NULL;
117592ffb21SWarner Losh }
118592ffb21SWarner Losh
119592ffb21SWarner Losh return dmah;
120592ffb21SWarner Losh }
121592ffb21SWarner Losh
122592ffb21SWarner Losh EXPORT_SYMBOL(drm_pci_alloc);
123592ffb21SWarner Losh
124592ffb21SWarner Losh /**
125592ffb21SWarner Losh * \brief Free a PCI consistent memory block without freeing its descriptor.
126592ffb21SWarner Losh *
127592ffb21SWarner Losh * This function is for internal use in the Linux-specific DRM core code.
128592ffb21SWarner Losh */
__drm_pci_free(struct drm_device * dev,drm_dma_handle_t * dmah)129592ffb21SWarner Losh void __drm_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah)
130592ffb21SWarner Losh {
131592ffb21SWarner Losh if (dmah == NULL)
132592ffb21SWarner Losh return;
133592ffb21SWarner Losh
134592ffb21SWarner Losh bus_dmamap_unload(dmah->tag, dmah->map);
135592ffb21SWarner Losh bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
136592ffb21SWarner Losh bus_dma_tag_destroy(dmah->tag);
137592ffb21SWarner Losh }
138592ffb21SWarner Losh
139592ffb21SWarner Losh /**
140592ffb21SWarner Losh * \brief Free a PCI consistent memory block
141592ffb21SWarner Losh */
drm_pci_free(struct drm_device * dev,drm_dma_handle_t * dmah)142592ffb21SWarner Losh void drm_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah)
143592ffb21SWarner Losh {
144592ffb21SWarner Losh __drm_pci_free(dev, dmah);
145592ffb21SWarner Losh free(dmah, DRM_MEM_DMA);
146592ffb21SWarner Losh }
147592ffb21SWarner Losh
148592ffb21SWarner Losh EXPORT_SYMBOL(drm_pci_free);
149592ffb21SWarner Losh
drm_get_pci_domain(struct drm_device * dev)150592ffb21SWarner Losh static int drm_get_pci_domain(struct drm_device *dev)
151592ffb21SWarner Losh {
152592ffb21SWarner Losh return dev->pci_domain;
153592ffb21SWarner Losh }
154592ffb21SWarner Losh
drm_pci_get_irq(struct drm_device * dev)155592ffb21SWarner Losh static int drm_pci_get_irq(struct drm_device *dev)
156592ffb21SWarner Losh {
157592ffb21SWarner Losh
158592ffb21SWarner Losh if (dev->irqr)
159592ffb21SWarner Losh return (dev->irq);
160592ffb21SWarner Losh
161592ffb21SWarner Losh dev->irqr = bus_alloc_resource_any(dev->dev, SYS_RES_IRQ,
162592ffb21SWarner Losh &dev->irqrid, RF_SHAREABLE);
163592ffb21SWarner Losh if (!dev->irqr) {
164592ffb21SWarner Losh dev_err(dev->dev, "Failed to allocate IRQ\n");
165592ffb21SWarner Losh return (0);
166592ffb21SWarner Losh }
167592ffb21SWarner Losh
168592ffb21SWarner Losh dev->irq = (int) rman_get_start(dev->irqr);
169592ffb21SWarner Losh
170592ffb21SWarner Losh return (dev->irq);
171592ffb21SWarner Losh }
172592ffb21SWarner Losh
drm_pci_free_irq(struct drm_device * dev)173592ffb21SWarner Losh static void drm_pci_free_irq(struct drm_device *dev)
174592ffb21SWarner Losh {
175592ffb21SWarner Losh if (dev->irqr == NULL)
176592ffb21SWarner Losh return;
177592ffb21SWarner Losh
178592ffb21SWarner Losh bus_release_resource(dev->dev, SYS_RES_IRQ,
179592ffb21SWarner Losh dev->irqrid, dev->irqr);
180592ffb21SWarner Losh
181592ffb21SWarner Losh dev->irqr = NULL;
182592ffb21SWarner Losh dev->irq = 0;
183592ffb21SWarner Losh }
184592ffb21SWarner Losh
drm_pci_get_name(struct drm_device * dev)185592ffb21SWarner Losh static const char *drm_pci_get_name(struct drm_device *dev)
186592ffb21SWarner Losh {
187592ffb21SWarner Losh return dev->driver->name;
188592ffb21SWarner Losh }
189592ffb21SWarner Losh
drm_pci_set_busid(struct drm_device * dev,struct drm_master * master)190592ffb21SWarner Losh int drm_pci_set_busid(struct drm_device *dev, struct drm_master *master)
191592ffb21SWarner Losh {
192592ffb21SWarner Losh int len, ret;
193592ffb21SWarner Losh master->unique_len = 40;
194592ffb21SWarner Losh master->unique_size = master->unique_len;
195592ffb21SWarner Losh master->unique = malloc(master->unique_size, DRM_MEM_DRIVER, M_NOWAIT);
196592ffb21SWarner Losh if (master->unique == NULL)
197592ffb21SWarner Losh return -ENOMEM;
198592ffb21SWarner Losh
199592ffb21SWarner Losh
200592ffb21SWarner Losh len = snprintf(master->unique, master->unique_len,
201592ffb21SWarner Losh "pci:%04x:%02x:%02x.%d",
202592ffb21SWarner Losh dev->pci_domain,
203592ffb21SWarner Losh dev->pci_bus,
204592ffb21SWarner Losh dev->pci_slot,
205592ffb21SWarner Losh dev->pci_func);
206592ffb21SWarner Losh
207592ffb21SWarner Losh if (len >= master->unique_len) {
208592ffb21SWarner Losh DRM_ERROR("buffer overflow");
209592ffb21SWarner Losh ret = -EINVAL;
210592ffb21SWarner Losh goto err;
211592ffb21SWarner Losh } else
212592ffb21SWarner Losh master->unique_len = len;
213592ffb21SWarner Losh
214592ffb21SWarner Losh return 0;
215592ffb21SWarner Losh err:
216592ffb21SWarner Losh return ret;
217592ffb21SWarner Losh }
218592ffb21SWarner Losh
drm_pci_set_unique(struct drm_device * dev,struct drm_master * master,struct drm_unique * u)219592ffb21SWarner Losh int drm_pci_set_unique(struct drm_device *dev,
220592ffb21SWarner Losh struct drm_master *master,
221592ffb21SWarner Losh struct drm_unique *u)
222592ffb21SWarner Losh {
223592ffb21SWarner Losh int domain, bus, slot, func, ret;
224592ffb21SWarner Losh
225592ffb21SWarner Losh master->unique_len = u->unique_len;
226592ffb21SWarner Losh master->unique_size = u->unique_len + 1;
227592ffb21SWarner Losh master->unique = malloc(master->unique_size, DRM_MEM_DRIVER, M_WAITOK);
228592ffb21SWarner Losh if (!master->unique) {
229592ffb21SWarner Losh ret = -ENOMEM;
230592ffb21SWarner Losh goto err;
231592ffb21SWarner Losh }
232592ffb21SWarner Losh
233592ffb21SWarner Losh if (copy_from_user(master->unique, u->unique, master->unique_len)) {
234592ffb21SWarner Losh ret = -EFAULT;
235592ffb21SWarner Losh goto err;
236592ffb21SWarner Losh }
237592ffb21SWarner Losh
238592ffb21SWarner Losh master->unique[master->unique_len] = '\0';
239592ffb21SWarner Losh
240592ffb21SWarner Losh /* Return error if the busid submitted doesn't match the device's actual
241592ffb21SWarner Losh * busid.
242592ffb21SWarner Losh */
243592ffb21SWarner Losh ret = sscanf(master->unique, "PCI:%d:%d:%d", &bus, &slot, &func);
244592ffb21SWarner Losh if (ret != 3) {
245592ffb21SWarner Losh ret = -EINVAL;
246592ffb21SWarner Losh goto err;
247592ffb21SWarner Losh }
248592ffb21SWarner Losh
249592ffb21SWarner Losh domain = bus >> 8;
250592ffb21SWarner Losh bus &= 0xff;
251592ffb21SWarner Losh
252592ffb21SWarner Losh if ((domain != dev->pci_domain) ||
253592ffb21SWarner Losh (bus != dev->pci_bus) ||
254592ffb21SWarner Losh (slot != dev->pci_slot) ||
255592ffb21SWarner Losh (func != dev->pci_func)) {
256592ffb21SWarner Losh ret = -EINVAL;
257592ffb21SWarner Losh goto err;
258592ffb21SWarner Losh }
259592ffb21SWarner Losh return 0;
260592ffb21SWarner Losh err:
261592ffb21SWarner Losh return ret;
262592ffb21SWarner Losh }
263592ffb21SWarner Losh
264592ffb21SWarner Losh
drm_pci_irq_by_busid(struct drm_device * dev,struct drm_irq_busid * p)265592ffb21SWarner Losh static int drm_pci_irq_by_busid(struct drm_device *dev, struct drm_irq_busid *p)
266592ffb21SWarner Losh {
267592ffb21SWarner Losh if ((p->busnum >> 8) != drm_get_pci_domain(dev) ||
268592ffb21SWarner Losh (p->busnum & 0xff) != dev->pci_bus ||
269592ffb21SWarner Losh p->devnum != dev->pci_slot || p->funcnum != dev->pci_func)
270592ffb21SWarner Losh return -EINVAL;
271592ffb21SWarner Losh
272592ffb21SWarner Losh p->irq = dev->irq;
273592ffb21SWarner Losh
274592ffb21SWarner Losh DRM_DEBUG("%d:%d:%d => IRQ %d\n", p->busnum, p->devnum, p->funcnum,
275592ffb21SWarner Losh p->irq);
276592ffb21SWarner Losh return 0;
277592ffb21SWarner Losh }
278592ffb21SWarner Losh
drm_pci_agp_init(struct drm_device * dev)279592ffb21SWarner Losh int drm_pci_agp_init(struct drm_device *dev)
280592ffb21SWarner Losh {
281592ffb21SWarner Losh if (drm_core_has_AGP(dev)) {
282592ffb21SWarner Losh if (drm_pci_device_is_agp(dev))
283592ffb21SWarner Losh dev->agp = drm_agp_init(dev);
284592ffb21SWarner Losh if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
285592ffb21SWarner Losh && (dev->agp == NULL)) {
286592ffb21SWarner Losh DRM_ERROR("Cannot initialize the agpgart module.\n");
287592ffb21SWarner Losh return -EINVAL;
288592ffb21SWarner Losh }
289592ffb21SWarner Losh if (drm_core_has_MTRR(dev)) {
290592ffb21SWarner Losh if (dev->agp && dev->agp->agp_info.ai_aperture_base != 0) {
291592ffb21SWarner Losh if (drm_mtrr_add(dev->agp->agp_info.ai_aperture_base,
292592ffb21SWarner Losh dev->agp->agp_info.ai_aperture_size, DRM_MTRR_WC) == 0)
293592ffb21SWarner Losh dev->agp->agp_mtrr = 1;
294592ffb21SWarner Losh else
295592ffb21SWarner Losh dev->agp->agp_mtrr = -1;
296592ffb21SWarner Losh }
297592ffb21SWarner Losh }
298592ffb21SWarner Losh }
299592ffb21SWarner Losh return 0;
300592ffb21SWarner Losh }
301592ffb21SWarner Losh
302592ffb21SWarner Losh static struct drm_bus drm_pci_bus = {
303592ffb21SWarner Losh .bus_type = DRIVER_BUS_PCI,
304592ffb21SWarner Losh .get_irq = drm_pci_get_irq,
305592ffb21SWarner Losh .free_irq = drm_pci_free_irq,
306592ffb21SWarner Losh .get_name = drm_pci_get_name,
307592ffb21SWarner Losh .set_busid = drm_pci_set_busid,
308592ffb21SWarner Losh .set_unique = drm_pci_set_unique,
309592ffb21SWarner Losh .irq_by_busid = drm_pci_irq_by_busid,
310592ffb21SWarner Losh .agp_init = drm_pci_agp_init,
311592ffb21SWarner Losh };
312592ffb21SWarner Losh
313592ffb21SWarner Losh /**
314592ffb21SWarner Losh * Register.
315592ffb21SWarner Losh *
316592ffb21SWarner Losh * \param pdev - PCI device structure
317592ffb21SWarner Losh * \param ent entry from the PCI ID table with device type flags
318592ffb21SWarner Losh * \return zero on success or a negative number on failure.
319592ffb21SWarner Losh *
320592ffb21SWarner Losh * Attempt to gets inter module "drm" information. If we are first
321592ffb21SWarner Losh * then register the character device and inter module information.
322592ffb21SWarner Losh * Try and register, if we fail to register, backout previous work.
323592ffb21SWarner Losh */
drm_get_pci_dev(device_t kdev,struct drm_device * dev,struct drm_driver * driver)324592ffb21SWarner Losh int drm_get_pci_dev(device_t kdev, struct drm_device *dev,
325592ffb21SWarner Losh struct drm_driver *driver)
326592ffb21SWarner Losh {
327592ffb21SWarner Losh int ret;
328592ffb21SWarner Losh
329592ffb21SWarner Losh DRM_DEBUG("\n");
330592ffb21SWarner Losh
331592ffb21SWarner Losh driver->bus = &drm_pci_bus;
332592ffb21SWarner Losh
333592ffb21SWarner Losh dev->dev = kdev;
334592ffb21SWarner Losh
335592ffb21SWarner Losh dev->pci_domain = pci_get_domain(dev->dev);
336592ffb21SWarner Losh dev->pci_bus = pci_get_bus(dev->dev);
337592ffb21SWarner Losh dev->pci_slot = pci_get_slot(dev->dev);
338592ffb21SWarner Losh dev->pci_func = pci_get_function(dev->dev);
339592ffb21SWarner Losh
340592ffb21SWarner Losh dev->pci_vendor = pci_get_vendor(dev->dev);
341592ffb21SWarner Losh dev->pci_device = pci_get_device(dev->dev);
342592ffb21SWarner Losh dev->pci_subvendor = pci_get_subvendor(dev->dev);
343592ffb21SWarner Losh dev->pci_subdevice = pci_get_subdevice(dev->dev);
344592ffb21SWarner Losh
345592ffb21SWarner Losh sx_xlock(&drm_global_mutex);
346592ffb21SWarner Losh
347592ffb21SWarner Losh if ((ret = drm_fill_in_dev(dev, driver))) {
348592ffb21SWarner Losh DRM_ERROR("Failed to fill in dev: %d\n", ret);
349592ffb21SWarner Losh goto err_g1;
350592ffb21SWarner Losh }
351592ffb21SWarner Losh
352592ffb21SWarner Losh if (drm_core_check_feature(dev, DRIVER_MODESET)) {
353592ffb21SWarner Losh ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
354592ffb21SWarner Losh if (ret)
355592ffb21SWarner Losh goto err_g2;
356592ffb21SWarner Losh }
357592ffb21SWarner Losh
358592ffb21SWarner Losh if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
359592ffb21SWarner Losh goto err_g3;
360592ffb21SWarner Losh
361592ffb21SWarner Losh if (dev->driver->load) {
362592ffb21SWarner Losh ret = dev->driver->load(dev,
363592ffb21SWarner Losh dev->id_entry->driver_private);
364592ffb21SWarner Losh if (ret)
365592ffb21SWarner Losh goto err_g4;
366592ffb21SWarner Losh }
367592ffb21SWarner Losh
368592ffb21SWarner Losh /* setup the grouping for the legacy output */
369592ffb21SWarner Losh if (drm_core_check_feature(dev, DRIVER_MODESET)) {
370592ffb21SWarner Losh ret = drm_mode_group_init_legacy_group(dev,
371592ffb21SWarner Losh &dev->primary->mode_group);
372592ffb21SWarner Losh if (ret)
373592ffb21SWarner Losh goto err_g5;
374592ffb21SWarner Losh }
375592ffb21SWarner Losh
376592ffb21SWarner Losh #ifdef FREEBSD_NOTYET
377592ffb21SWarner Losh list_add_tail(&dev->driver_item, &driver->device_list);
378592ffb21SWarner Losh #endif /* FREEBSD_NOTYET */
379592ffb21SWarner Losh
380592ffb21SWarner Losh DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n",
381592ffb21SWarner Losh driver->name, driver->major, driver->minor, driver->patchlevel,
382592ffb21SWarner Losh driver->date, device_get_nameunit(dev->dev), dev->primary->index);
383592ffb21SWarner Losh
384592ffb21SWarner Losh sx_xunlock(&drm_global_mutex);
385592ffb21SWarner Losh return 0;
386592ffb21SWarner Losh
387592ffb21SWarner Losh err_g5:
388592ffb21SWarner Losh if (dev->driver->unload)
389592ffb21SWarner Losh dev->driver->unload(dev);
390592ffb21SWarner Losh err_g4:
391592ffb21SWarner Losh drm_put_minor(&dev->primary);
392592ffb21SWarner Losh err_g3:
393592ffb21SWarner Losh if (drm_core_check_feature(dev, DRIVER_MODESET))
394592ffb21SWarner Losh drm_put_minor(&dev->control);
395592ffb21SWarner Losh err_g2:
396592ffb21SWarner Losh drm_cancel_fill_in_dev(dev);
397592ffb21SWarner Losh err_g1:
398592ffb21SWarner Losh sx_xunlock(&drm_global_mutex);
399592ffb21SWarner Losh return ret;
400592ffb21SWarner Losh }
401592ffb21SWarner Losh EXPORT_SYMBOL(drm_get_pci_dev);
402592ffb21SWarner Losh
403592ffb21SWarner Losh int
drm_pci_enable_msi(struct drm_device * dev)404592ffb21SWarner Losh drm_pci_enable_msi(struct drm_device *dev)
405592ffb21SWarner Losh {
406592ffb21SWarner Losh int msicount, ret;
407592ffb21SWarner Losh
408592ffb21SWarner Losh if (!drm_msi)
409592ffb21SWarner Losh return (-ENOENT);
410592ffb21SWarner Losh
411592ffb21SWarner Losh msicount = pci_msi_count(dev->dev);
412592ffb21SWarner Losh DRM_DEBUG("MSI count = %d\n", msicount);
413592ffb21SWarner Losh if (msicount > 1)
414592ffb21SWarner Losh msicount = 1;
415592ffb21SWarner Losh
416592ffb21SWarner Losh ret = pci_alloc_msi(dev->dev, &msicount);
417592ffb21SWarner Losh if (ret == 0) {
418592ffb21SWarner Losh DRM_INFO("MSI enabled %d message(s)\n", msicount);
419592ffb21SWarner Losh dev->msi_enabled = 1;
420592ffb21SWarner Losh dev->irqrid = 1;
421592ffb21SWarner Losh }
422592ffb21SWarner Losh
423592ffb21SWarner Losh return (-ret);
424592ffb21SWarner Losh }
425592ffb21SWarner Losh
426592ffb21SWarner Losh void
drm_pci_disable_msi(struct drm_device * dev)427592ffb21SWarner Losh drm_pci_disable_msi(struct drm_device *dev)
428592ffb21SWarner Losh {
429592ffb21SWarner Losh
430592ffb21SWarner Losh if (!dev->msi_enabled)
431592ffb21SWarner Losh return;
432592ffb21SWarner Losh
433592ffb21SWarner Losh pci_release_msi(dev->dev);
434592ffb21SWarner Losh dev->msi_enabled = 0;
435592ffb21SWarner Losh dev->irqrid = 0;
436592ffb21SWarner Losh }
437592ffb21SWarner Losh
drm_pcie_get_speed_cap_mask(struct drm_device * dev,u32 * mask)438592ffb21SWarner Losh int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *mask)
439592ffb21SWarner Losh {
440592ffb21SWarner Losh device_t root;
441592ffb21SWarner Losh int pos;
442592ffb21SWarner Losh u32 lnkcap = 0, lnkcap2 = 0;
443592ffb21SWarner Losh
444592ffb21SWarner Losh *mask = 0;
445592ffb21SWarner Losh if (!drm_pci_device_is_pcie(dev))
446592ffb21SWarner Losh return -EINVAL;
447592ffb21SWarner Losh
448592ffb21SWarner Losh root =
449592ffb21SWarner Losh device_get_parent( /* pcib */
450592ffb21SWarner Losh device_get_parent( /* `-- pci */
451592ffb21SWarner Losh device_get_parent( /* `-- vgapci */
452592ffb21SWarner Losh dev->dev))); /* `-- drmn */
453592ffb21SWarner Losh
454592ffb21SWarner Losh pos = 0;
455592ffb21SWarner Losh pci_find_cap(root, PCIY_EXPRESS, &pos);
456592ffb21SWarner Losh if (!pos)
457592ffb21SWarner Losh return -EINVAL;
458592ffb21SWarner Losh
459592ffb21SWarner Losh /* we've been informed via and serverworks don't make the cut */
460592ffb21SWarner Losh if (pci_get_vendor(root) == PCI_VENDOR_ID_VIA ||
461592ffb21SWarner Losh pci_get_vendor(root) == PCI_VENDOR_ID_SERVERWORKS)
462592ffb21SWarner Losh return -EINVAL;
463592ffb21SWarner Losh
464592ffb21SWarner Losh lnkcap = pci_read_config(root, pos + PCIER_LINK_CAP, 4);
465592ffb21SWarner Losh lnkcap2 = pci_read_config(root, pos + PCIER_LINK_CAP2, 4);
466592ffb21SWarner Losh
467592ffb21SWarner Losh lnkcap &= PCIEM_LINK_CAP_MAX_SPEED;
468592ffb21SWarner Losh lnkcap2 &= 0xfe;
469592ffb21SWarner Losh
470592ffb21SWarner Losh #define PCI_EXP_LNKCAP2_SLS_2_5GB 0x02 /* Supported Link Speed 2.5GT/s */
471592ffb21SWarner Losh #define PCI_EXP_LNKCAP2_SLS_5_0GB 0x04 /* Supported Link Speed 5.0GT/s */
472592ffb21SWarner Losh #define PCI_EXP_LNKCAP2_SLS_8_0GB 0x08 /* Supported Link Speed 8.0GT/s */
473592ffb21SWarner Losh
474592ffb21SWarner Losh if (lnkcap2) { /* PCIE GEN 3.0 */
475592ffb21SWarner Losh if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_2_5GB)
476592ffb21SWarner Losh *mask |= DRM_PCIE_SPEED_25;
477592ffb21SWarner Losh if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_5_0GB)
478592ffb21SWarner Losh *mask |= DRM_PCIE_SPEED_50;
479592ffb21SWarner Losh if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_8_0GB)
480592ffb21SWarner Losh *mask |= DRM_PCIE_SPEED_80;
481592ffb21SWarner Losh } else {
482592ffb21SWarner Losh if (lnkcap & 1)
483592ffb21SWarner Losh *mask |= DRM_PCIE_SPEED_25;
484592ffb21SWarner Losh if (lnkcap & 2)
485592ffb21SWarner Losh *mask |= DRM_PCIE_SPEED_50;
486592ffb21SWarner Losh }
487592ffb21SWarner Losh
488592ffb21SWarner Losh DRM_INFO("probing gen 2 caps for device %x:%x = %x/%x\n", pci_get_vendor(root), pci_get_device(root), lnkcap, lnkcap2);
489592ffb21SWarner Losh return 0;
490592ffb21SWarner Losh }
491592ffb21SWarner Losh EXPORT_SYMBOL(drm_pcie_get_speed_cap_mask);
492