]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/compat/linuxkpi/common/src/linux_pci.c
linuxkpi: Move pci_request_region and _lkpi_pci_iomap into .c
[FreeBSD/FreeBSD.git] / sys / compat / linuxkpi / common / src / linux_pci.c
1 /*-
2  * Copyright (c) 2015-2016 Mellanox Technologies, Ltd.
3  * All rights reserved.
4  * Copyright (c) 2020-2022 The FreeBSD Foundation
5  *
6  * Portions of this software were developed by Björn Zeeb
7  * under sponsorship from the FreeBSD Foundation.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice unmodified, this list of conditions, and the following
14  *    disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/bus.h>
37 #include <sys/malloc.h>
38 #include <sys/kernel.h>
39 #include <sys/sysctl.h>
40 #include <sys/lock.h>
41 #include <sys/mutex.h>
42 #include <sys/fcntl.h>
43 #include <sys/file.h>
44 #include <sys/filio.h>
45 #include <sys/pciio.h>
46 #include <sys/pctrie.h>
47 #include <sys/rwlock.h>
48
49 #include <vm/vm.h>
50 #include <vm/pmap.h>
51
52 #include <machine/stdarg.h>
53
54 #include <dev/pci/pcivar.h>
55 #include <dev/pci/pci_private.h>
56 #include <dev/pci/pci_iov.h>
57 #include <dev/backlight/backlight.h>
58
59 #include <linux/kobject.h>
60 #include <linux/device.h>
61 #include <linux/slab.h>
62 #include <linux/module.h>
63 #include <linux/cdev.h>
64 #include <linux/file.h>
65 #include <linux/sysfs.h>
66 #include <linux/mm.h>
67 #include <linux/io.h>
68 #include <linux/vmalloc.h>
69 #include <linux/pci.h>
70 #include <linux/compat.h>
71
72 #include <linux/backlight.h>
73
74 #include "backlight_if.h"
75 #include "pcib_if.h"
76
77 /* Undef the linux function macro defined in linux/pci.h */
78 #undef pci_get_class
79
80 static device_probe_t linux_pci_probe;
81 static device_attach_t linux_pci_attach;
82 static device_detach_t linux_pci_detach;
83 static device_suspend_t linux_pci_suspend;
84 static device_resume_t linux_pci_resume;
85 static device_shutdown_t linux_pci_shutdown;
86 static pci_iov_init_t linux_pci_iov_init;
87 static pci_iov_uninit_t linux_pci_iov_uninit;
88 static pci_iov_add_vf_t linux_pci_iov_add_vf;
89 static int linux_backlight_get_status(device_t dev, struct backlight_props *props);
90 static int linux_backlight_update_status(device_t dev, struct backlight_props *props);
91 static int linux_backlight_get_info(device_t dev, struct backlight_info *info);
92
93 static device_method_t pci_methods[] = {
94         DEVMETHOD(device_probe, linux_pci_probe),
95         DEVMETHOD(device_attach, linux_pci_attach),
96         DEVMETHOD(device_detach, linux_pci_detach),
97         DEVMETHOD(device_suspend, linux_pci_suspend),
98         DEVMETHOD(device_resume, linux_pci_resume),
99         DEVMETHOD(device_shutdown, linux_pci_shutdown),
100         DEVMETHOD(pci_iov_init, linux_pci_iov_init),
101         DEVMETHOD(pci_iov_uninit, linux_pci_iov_uninit),
102         DEVMETHOD(pci_iov_add_vf, linux_pci_iov_add_vf),
103
104         /* backlight interface */
105         DEVMETHOD(backlight_update_status, linux_backlight_update_status),
106         DEVMETHOD(backlight_get_status, linux_backlight_get_status),
107         DEVMETHOD(backlight_get_info, linux_backlight_get_info),
108         DEVMETHOD_END
109 };
110
111 struct linux_dma_priv {
112         uint64_t        dma_mask;
113         bus_dma_tag_t   dmat;
114         uint64_t        dma_coherent_mask;
115         bus_dma_tag_t   dmat_coherent;
116         struct mtx      lock;
117         struct pctrie   ptree;
118 };
119 #define DMA_PRIV_LOCK(priv) mtx_lock(&(priv)->lock)
120 #define DMA_PRIV_UNLOCK(priv) mtx_unlock(&(priv)->lock)
121
122 static bool
123 linux_is_drm(struct pci_driver *pdrv)
124 {
125         return (pdrv->name != NULL && strcmp(pdrv->name, "drmn") == 0);
126 }
127
128 static int
129 linux_pdev_dma_uninit(struct pci_dev *pdev)
130 {
131         struct linux_dma_priv *priv;
132
133         priv = pdev->dev.dma_priv;
134         if (priv->dmat)
135                 bus_dma_tag_destroy(priv->dmat);
136         if (priv->dmat_coherent)
137                 bus_dma_tag_destroy(priv->dmat_coherent);
138         mtx_destroy(&priv->lock);
139         pdev->dev.dma_priv = NULL;
140         free(priv, M_DEVBUF);
141         return (0);
142 }
143
144 static int
145 linux_pdev_dma_init(struct pci_dev *pdev)
146 {
147         struct linux_dma_priv *priv;
148         int error;
149
150         priv = malloc(sizeof(*priv), M_DEVBUF, M_WAITOK | M_ZERO);
151
152         mtx_init(&priv->lock, "lkpi-priv-dma", NULL, MTX_DEF);
153         pctrie_init(&priv->ptree);
154
155         pdev->dev.dma_priv = priv;
156
157         /* Create a default DMA tags. */
158         error = linux_dma_tag_init(&pdev->dev, DMA_BIT_MASK(64));
159         if (error != 0)
160                 goto err;
161         /* Coherent is lower 32bit only by default in Linux. */
162         error = linux_dma_tag_init_coherent(&pdev->dev, DMA_BIT_MASK(32));
163         if (error != 0)
164                 goto err;
165
166         return (error);
167
168 err:
169         linux_pdev_dma_uninit(pdev);
170         return (error);
171 }
172
173 int
174 linux_dma_tag_init(struct device *dev, u64 dma_mask)
175 {
176         struct linux_dma_priv *priv;
177         int error;
178
179         priv = dev->dma_priv;
180
181         if (priv->dmat) {
182                 if (priv->dma_mask == dma_mask)
183                         return (0);
184
185                 bus_dma_tag_destroy(priv->dmat);
186         }
187
188         priv->dma_mask = dma_mask;
189
190         error = bus_dma_tag_create(bus_get_dma_tag(dev->bsddev),
191             1, 0,                       /* alignment, boundary */
192             dma_mask,                   /* lowaddr */
193             BUS_SPACE_MAXADDR,          /* highaddr */
194             NULL, NULL,                 /* filtfunc, filtfuncarg */
195             BUS_SPACE_MAXSIZE,          /* maxsize */
196             1,                          /* nsegments */
197             BUS_SPACE_MAXSIZE,          /* maxsegsz */
198             0,                          /* flags */
199             NULL, NULL,                 /* lockfunc, lockfuncarg */
200             &priv->dmat);
201         return (-error);
202 }
203
204 int
205 linux_dma_tag_init_coherent(struct device *dev, u64 dma_mask)
206 {
207         struct linux_dma_priv *priv;
208         int error;
209
210         priv = dev->dma_priv;
211
212         if (priv->dmat_coherent) {
213                 if (priv->dma_coherent_mask == dma_mask)
214                         return (0);
215
216                 bus_dma_tag_destroy(priv->dmat_coherent);
217         }
218
219         priv->dma_coherent_mask = dma_mask;
220
221         error = bus_dma_tag_create(bus_get_dma_tag(dev->bsddev),
222             1, 0,                       /* alignment, boundary */
223             dma_mask,                   /* lowaddr */
224             BUS_SPACE_MAXADDR,          /* highaddr */
225             NULL, NULL,                 /* filtfunc, filtfuncarg */
226             BUS_SPACE_MAXSIZE,          /* maxsize */
227             1,                          /* nsegments */
228             BUS_SPACE_MAXSIZE,          /* maxsegsz */
229             0,                          /* flags */
230             NULL, NULL,                 /* lockfunc, lockfuncarg */
231             &priv->dmat_coherent);
232         return (-error);
233 }
234
235 static struct pci_driver *
236 linux_pci_find(device_t dev, const struct pci_device_id **idp)
237 {
238         const struct pci_device_id *id;
239         struct pci_driver *pdrv;
240         uint16_t vendor;
241         uint16_t device;
242         uint16_t subvendor;
243         uint16_t subdevice;
244
245         vendor = pci_get_vendor(dev);
246         device = pci_get_device(dev);
247         subvendor = pci_get_subvendor(dev);
248         subdevice = pci_get_subdevice(dev);
249
250         spin_lock(&pci_lock);
251         list_for_each_entry(pdrv, &pci_drivers, node) {
252                 for (id = pdrv->id_table; id->vendor != 0; id++) {
253                         if (vendor == id->vendor &&
254                             (PCI_ANY_ID == id->device || device == id->device) &&
255                             (PCI_ANY_ID == id->subvendor || subvendor == id->subvendor) &&
256                             (PCI_ANY_ID == id->subdevice || subdevice == id->subdevice)) {
257                                 *idp = id;
258                                 spin_unlock(&pci_lock);
259                                 return (pdrv);
260                         }
261                 }
262         }
263         spin_unlock(&pci_lock);
264         return (NULL);
265 }
266
267 static void
268 lkpi_pci_dev_release(struct device *dev)
269 {
270
271         lkpi_devres_release_free_list(dev);
272         spin_lock_destroy(&dev->devres_lock);
273 }
274
275 static void
276 lkpifill_pci_dev(device_t dev, struct pci_dev *pdev)
277 {
278
279         pdev->devfn = PCI_DEVFN(pci_get_slot(dev), pci_get_function(dev));
280         pdev->vendor = pci_get_vendor(dev);
281         pdev->device = pci_get_device(dev);
282         pdev->subsystem_vendor = pci_get_subvendor(dev);
283         pdev->subsystem_device = pci_get_subdevice(dev);
284         pdev->class = pci_get_class(dev);
285         pdev->revision = pci_get_revid(dev);
286         pdev->bus = malloc(sizeof(*pdev->bus), M_DEVBUF, M_WAITOK | M_ZERO);
287         /*
288          * This should be the upstream bridge; pci_upstream_bridge()
289          * handles that case on demand as otherwise we'll shadow the
290          * entire PCI hierarchy.
291          */
292         pdev->bus->self = pdev;
293         pdev->bus->number = pci_get_bus(dev);
294         pdev->bus->domain = pci_get_domain(dev);
295         pdev->dev.bsddev = dev;
296         pdev->dev.parent = &linux_root_device;
297         pdev->dev.release = lkpi_pci_dev_release;
298         INIT_LIST_HEAD(&pdev->dev.irqents);
299         kobject_init(&pdev->dev.kobj, &linux_dev_ktype);
300         kobject_set_name(&pdev->dev.kobj, device_get_nameunit(dev));
301         kobject_add(&pdev->dev.kobj, &linux_root_device.kobj,
302             kobject_name(&pdev->dev.kobj));
303         spin_lock_init(&pdev->dev.devres_lock);
304         INIT_LIST_HEAD(&pdev->dev.devres_head);
305 }
306
307 static void
308 lkpinew_pci_dev_release(struct device *dev)
309 {
310         struct pci_dev *pdev;
311
312         pdev = to_pci_dev(dev);
313         if (pdev->root != NULL)
314                 pci_dev_put(pdev->root);
315         if (pdev->bus->self != pdev)
316                 pci_dev_put(pdev->bus->self);
317         free(pdev->bus, M_DEVBUF);
318         free(pdev, M_DEVBUF);
319 }
320
321 struct pci_dev *
322 lkpinew_pci_dev(device_t dev)
323 {
324         struct pci_dev *pdev;
325
326         pdev = malloc(sizeof(*pdev), M_DEVBUF, M_WAITOK|M_ZERO);
327         lkpifill_pci_dev(dev, pdev);
328         pdev->dev.release = lkpinew_pci_dev_release;
329
330         return (pdev);
331 }
332
333 struct pci_dev *
334 lkpi_pci_get_class(unsigned int class, struct pci_dev *from)
335 {
336         device_t dev;
337         device_t devfrom = NULL;
338         struct pci_dev *pdev;
339
340         if (from != NULL)
341                 devfrom = from->dev.bsddev;
342
343         dev = pci_find_class_from(class >> 16, (class >> 8) & 0xFF, devfrom);
344         if (dev == NULL)
345                 return (NULL);
346
347         pdev = lkpinew_pci_dev(dev);
348         return (pdev);
349 }
350
351 struct pci_dev *
352 lkpi_pci_get_domain_bus_and_slot(int domain, unsigned int bus,
353     unsigned int devfn)
354 {
355         device_t dev;
356         struct pci_dev *pdev;
357
358         dev = pci_find_dbsf(domain, bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
359         if (dev == NULL)
360                 return (NULL);
361
362         pdev = lkpinew_pci_dev(dev);
363         return (pdev);
364 }
365
366 static int
367 linux_pci_probe(device_t dev)
368 {
369         const struct pci_device_id *id;
370         struct pci_driver *pdrv;
371
372         if ((pdrv = linux_pci_find(dev, &id)) == NULL)
373                 return (ENXIO);
374         if (device_get_driver(dev) != &pdrv->bsddriver)
375                 return (ENXIO);
376         device_set_desc(dev, pdrv->name);
377
378         /* Assume BSS initialized (should never return BUS_PROBE_SPECIFIC). */
379         if (pdrv->bsd_probe_return == 0)
380                 return (BUS_PROBE_DEFAULT);
381         else
382                 return (pdrv->bsd_probe_return);
383 }
384
385 static int
386 linux_pci_attach(device_t dev)
387 {
388         const struct pci_device_id *id;
389         struct pci_driver *pdrv;
390         struct pci_dev *pdev;
391
392         pdrv = linux_pci_find(dev, &id);
393         pdev = device_get_softc(dev);
394
395         MPASS(pdrv != NULL);
396         MPASS(pdev != NULL);
397
398         return (linux_pci_attach_device(dev, pdrv, id, pdev));
399 }
400
401 int
402 linux_pci_attach_device(device_t dev, struct pci_driver *pdrv,
403     const struct pci_device_id *id, struct pci_dev *pdev)
404 {
405         struct resource_list_entry *rle;
406         device_t parent;
407         uintptr_t rid;
408         int error;
409         bool isdrm;
410
411         linux_set_current(curthread);
412
413         parent = device_get_parent(dev);
414         isdrm = pdrv != NULL && linux_is_drm(pdrv);
415
416         if (isdrm) {
417                 struct pci_devinfo *dinfo;
418
419                 dinfo = device_get_ivars(parent);
420                 device_set_ivars(dev, dinfo);
421         }
422
423         lkpifill_pci_dev(dev, pdev);
424         if (isdrm)
425                 PCI_GET_ID(device_get_parent(parent), parent, PCI_ID_RID, &rid);
426         else
427                 PCI_GET_ID(parent, dev, PCI_ID_RID, &rid);
428         pdev->devfn = rid;
429         pdev->pdrv = pdrv;
430         rle = linux_pci_get_rle(pdev, SYS_RES_IRQ, 0, false);
431         if (rle != NULL)
432                 pdev->dev.irq = rle->start;
433         else
434                 pdev->dev.irq = LINUX_IRQ_INVALID;
435         pdev->irq = pdev->dev.irq;
436         error = linux_pdev_dma_init(pdev);
437         if (error)
438                 goto out_dma_init;
439
440         TAILQ_INIT(&pdev->mmio);
441
442         spin_lock(&pci_lock);
443         list_add(&pdev->links, &pci_devices);
444         spin_unlock(&pci_lock);
445
446         if (pdrv != NULL) {
447                 error = pdrv->probe(pdev, id);
448                 if (error)
449                         goto out_probe;
450         }
451         return (0);
452
453 out_probe:
454         free(pdev->bus, M_DEVBUF);
455         linux_pdev_dma_uninit(pdev);
456 out_dma_init:
457         spin_lock(&pci_lock);
458         list_del(&pdev->links);
459         spin_unlock(&pci_lock);
460         put_device(&pdev->dev);
461         return (-error);
462 }
463
464 static int
465 linux_pci_detach(device_t dev)
466 {
467         struct pci_dev *pdev;
468
469         pdev = device_get_softc(dev);
470
471         MPASS(pdev != NULL);
472
473         device_set_desc(dev, NULL);
474
475         return (linux_pci_detach_device(pdev));
476 }
477
478 int
479 linux_pci_detach_device(struct pci_dev *pdev)
480 {
481
482         linux_set_current(curthread);
483
484         if (pdev->pdrv != NULL)
485                 pdev->pdrv->remove(pdev);
486
487         if (pdev->root != NULL)
488                 pci_dev_put(pdev->root);
489         free(pdev->bus, M_DEVBUF);
490         linux_pdev_dma_uninit(pdev);
491
492         spin_lock(&pci_lock);
493         list_del(&pdev->links);
494         spin_unlock(&pci_lock);
495         put_device(&pdev->dev);
496
497         return (0);
498 }
499
500 static int
501 lkpi_pci_disable_dev(struct device *dev)
502 {
503
504         (void) pci_disable_io(dev->bsddev, SYS_RES_MEMORY);
505         (void) pci_disable_io(dev->bsddev, SYS_RES_IOPORT);
506         return (0);
507 }
508
509 struct pci_devres *
510 lkpi_pci_devres_get_alloc(struct pci_dev *pdev)
511 {
512         struct pci_devres *dr;
513
514         dr = lkpi_devres_find(&pdev->dev, lkpi_pci_devres_release, NULL, NULL);
515         if (dr == NULL) {
516                 dr = lkpi_devres_alloc(lkpi_pci_devres_release, sizeof(*dr),
517                     GFP_KERNEL | __GFP_ZERO);
518                 if (dr != NULL)
519                         lkpi_devres_add(&pdev->dev, dr);
520         }
521
522         return (dr);
523 }
524
525 void
526 lkpi_pci_devres_release(struct device *dev, void *p)
527 {
528         struct pci_devres *dr;
529         struct pci_dev *pdev;
530         int bar;
531
532         pdev = to_pci_dev(dev);
533         dr = p;
534
535         if (pdev->msix_enabled)
536                 lkpi_pci_disable_msix(pdev);
537         if (pdev->msi_enabled)
538                 lkpi_pci_disable_msi(pdev);
539
540         if (dr->enable_io && lkpi_pci_disable_dev(dev) == 0)
541                 dr->enable_io = false;
542
543         if (dr->region_mask == 0)
544                 return;
545         for (bar = PCIR_MAX_BAR_0; bar >= 0; bar--) {
546
547                 if ((dr->region_mask & (1 << bar)) == 0)
548                         continue;
549                 pci_release_region(pdev, bar);
550         }
551 }
552
553 void
554 lkpi_pcim_iomap_table_release(struct device *dev, void *p)
555 {
556         struct pcim_iomap_devres *dr;
557         struct pci_dev *pdev;
558         int bar;
559
560         dr = p;
561         pdev = to_pci_dev(dev);
562         for (bar = PCIR_MAX_BAR_0; bar >= 0; bar--) {
563
564                 if (dr->mmio_table[bar] == NULL)
565                         continue;
566
567                 pci_iounmap(pdev, dr->mmio_table[bar]);
568         }
569 }
570
571 static int
572 linux_pci_suspend(device_t dev)
573 {
574         const struct dev_pm_ops *pmops;
575         struct pm_message pm = { };
576         struct pci_dev *pdev;
577         int error;
578
579         error = 0;
580         linux_set_current(curthread);
581         pdev = device_get_softc(dev);
582         pmops = pdev->pdrv->driver.pm;
583
584         if (pdev->pdrv->suspend != NULL)
585                 error = -pdev->pdrv->suspend(pdev, pm);
586         else if (pmops != NULL && pmops->suspend != NULL) {
587                 error = -pmops->suspend(&pdev->dev);
588                 if (error == 0 && pmops->suspend_late != NULL)
589                         error = -pmops->suspend_late(&pdev->dev);
590         }
591         return (error);
592 }
593
594 static int
595 linux_pci_resume(device_t dev)
596 {
597         const struct dev_pm_ops *pmops;
598         struct pci_dev *pdev;
599         int error;
600
601         error = 0;
602         linux_set_current(curthread);
603         pdev = device_get_softc(dev);
604         pmops = pdev->pdrv->driver.pm;
605
606         if (pdev->pdrv->resume != NULL)
607                 error = -pdev->pdrv->resume(pdev);
608         else if (pmops != NULL && pmops->resume != NULL) {
609                 if (pmops->resume_early != NULL)
610                         error = -pmops->resume_early(&pdev->dev);
611                 if (error == 0 && pmops->resume != NULL)
612                         error = -pmops->resume(&pdev->dev);
613         }
614         return (error);
615 }
616
617 static int
618 linux_pci_shutdown(device_t dev)
619 {
620         struct pci_dev *pdev;
621
622         linux_set_current(curthread);
623         pdev = device_get_softc(dev);
624         if (pdev->pdrv->shutdown != NULL)
625                 pdev->pdrv->shutdown(pdev);
626         return (0);
627 }
628
629 static int
630 linux_pci_iov_init(device_t dev, uint16_t num_vfs, const nvlist_t *pf_config)
631 {
632         struct pci_dev *pdev;
633         int error;
634
635         linux_set_current(curthread);
636         pdev = device_get_softc(dev);
637         if (pdev->pdrv->bsd_iov_init != NULL)
638                 error = pdev->pdrv->bsd_iov_init(dev, num_vfs, pf_config);
639         else
640                 error = EINVAL;
641         return (error);
642 }
643
644 static void
645 linux_pci_iov_uninit(device_t dev)
646 {
647         struct pci_dev *pdev;
648
649         linux_set_current(curthread);
650         pdev = device_get_softc(dev);
651         if (pdev->pdrv->bsd_iov_uninit != NULL)
652                 pdev->pdrv->bsd_iov_uninit(dev);
653 }
654
655 static int
656 linux_pci_iov_add_vf(device_t dev, uint16_t vfnum, const nvlist_t *vf_config)
657 {
658         struct pci_dev *pdev;
659         int error;
660
661         linux_set_current(curthread);
662         pdev = device_get_softc(dev);
663         if (pdev->pdrv->bsd_iov_add_vf != NULL)
664                 error = pdev->pdrv->bsd_iov_add_vf(dev, vfnum, vf_config);
665         else
666                 error = EINVAL;
667         return (error);
668 }
669
670 static int
671 _linux_pci_register_driver(struct pci_driver *pdrv, devclass_t dc)
672 {
673         int error;
674
675         linux_set_current(curthread);
676         spin_lock(&pci_lock);
677         list_add(&pdrv->node, &pci_drivers);
678         spin_unlock(&pci_lock);
679         if (pdrv->bsddriver.name == NULL)
680                 pdrv->bsddriver.name = pdrv->name;
681         pdrv->bsddriver.methods = pci_methods;
682         pdrv->bsddriver.size = sizeof(struct pci_dev);
683
684         mtx_lock(&Giant);
685         error = devclass_add_driver(dc, &pdrv->bsddriver,
686             BUS_PASS_DEFAULT, &pdrv->bsdclass);
687         mtx_unlock(&Giant);
688         return (-error);
689 }
690
691 int
692 linux_pci_register_driver(struct pci_driver *pdrv)
693 {
694         devclass_t dc;
695
696         dc = devclass_find("pci");
697         if (dc == NULL)
698                 return (-ENXIO);
699         return (_linux_pci_register_driver(pdrv, dc));
700 }
701
702 struct resource_list_entry *
703 linux_pci_reserve_bar(struct pci_dev *pdev, struct resource_list *rl,
704     int type, int rid)
705 {
706         device_t dev;
707         struct resource *res;
708
709         KASSERT(type == SYS_RES_IOPORT || type == SYS_RES_MEMORY,
710             ("trying to reserve non-BAR type %d", type));
711
712         dev = pdev->pdrv != NULL && linux_is_drm(pdev->pdrv) ?
713             device_get_parent(pdev->dev.bsddev) : pdev->dev.bsddev;
714         res = pci_reserve_map(device_get_parent(dev), dev, type, &rid, 0, ~0,
715             1, 1, 0);
716         if (res == NULL)
717                 return (NULL);
718         return (resource_list_find(rl, type, rid));
719 }
720
721 unsigned long
722 pci_resource_start(struct pci_dev *pdev, int bar)
723 {
724         struct resource_list_entry *rle;
725         rman_res_t newstart;
726         device_t dev;
727
728         if ((rle = linux_pci_get_bar(pdev, bar, true)) == NULL)
729                 return (0);
730         dev = pdev->pdrv != NULL && linux_is_drm(pdev->pdrv) ?
731             device_get_parent(pdev->dev.bsddev) : pdev->dev.bsddev;
732         if (BUS_TRANSLATE_RESOURCE(dev, rle->type, rle->start, &newstart)) {
733                 device_printf(pdev->dev.bsddev, "translate of %#jx failed\n",
734                     (uintmax_t)rle->start);
735                 return (0);
736         }
737         return (newstart);
738 }
739
740 unsigned long
741 pci_resource_len(struct pci_dev *pdev, int bar)
742 {
743         struct resource_list_entry *rle;
744
745         if ((rle = linux_pci_get_bar(pdev, bar, true)) == NULL)
746                 return (0);
747         return (rle->count);
748 }
749
750 int
751 pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
752 {
753         struct resource *res;
754         struct pci_devres *dr;
755         struct pci_mmio_region *mmio;
756         int rid;
757         int type;
758
759         type = pci_resource_type(pdev, bar);
760         if (type < 0)
761                 return (-ENODEV);
762         rid = PCIR_BAR(bar);
763         res = bus_alloc_resource_any(pdev->dev.bsddev, type, &rid,
764             RF_ACTIVE|RF_SHAREABLE);
765         if (res == NULL) {
766                 device_printf(pdev->dev.bsddev, "%s: failed to alloc "
767                     "bar %d type %d rid %d\n",
768                     __func__, bar, type, PCIR_BAR(bar));
769                 return (-ENODEV);
770         }
771
772         /*
773          * It seems there is an implicit devres tracking on these if the device
774          * is managed; otherwise the resources are not automatiaclly freed on
775          * FreeBSD/LinuxKPI tough they should be/are expected to be by Linux
776          * drivers.
777          */
778         dr = lkpi_pci_devres_find(pdev);
779         if (dr != NULL) {
780                 dr->region_mask |= (1 << bar);
781                 dr->region_table[bar] = res;
782         }
783
784         /* Even if the device is not managed we need to track it for iomap. */
785         mmio = malloc(sizeof(*mmio), M_DEVBUF, M_WAITOK | M_ZERO);
786         mmio->rid = PCIR_BAR(bar);
787         mmio->type = type;
788         mmio->res = res;
789         TAILQ_INSERT_TAIL(&pdev->mmio, mmio, next);
790
791         return (0);
792 }
793
794 struct resource *
795 _lkpi_pci_iomap(struct pci_dev *pdev, int bar, int mmio_size __unused)
796 {
797         struct pci_mmio_region *mmio, *p;
798         int type;
799
800         type = pci_resource_type(pdev, bar);
801         if (type < 0) {
802                 device_printf(pdev->dev.bsddev, "%s: bar %d type %d\n",
803                      __func__, bar, type);
804                 return (NULL);
805         }
806
807         /*
808          * Check for duplicate mappings.
809          * This can happen if a driver calls pci_request_region() first.
810          */
811         TAILQ_FOREACH_SAFE(mmio, &pdev->mmio, next, p) {
812                 if (mmio->type == type && mmio->rid == PCIR_BAR(bar)) {
813                         return (mmio->res);
814                 }
815         }
816
817         mmio = malloc(sizeof(*mmio), M_DEVBUF, M_WAITOK | M_ZERO);
818         mmio->rid = PCIR_BAR(bar);
819         mmio->type = type;
820         mmio->res = bus_alloc_resource_any(pdev->dev.bsddev, mmio->type,
821             &mmio->rid, RF_ACTIVE|RF_SHAREABLE);
822         if (mmio->res == NULL) {
823                 device_printf(pdev->dev.bsddev, "%s: failed to alloc "
824                     "bar %d type %d rid %d\n",
825                     __func__, bar, type, PCIR_BAR(bar));
826                 free(mmio, M_DEVBUF);
827                 return (NULL);
828         }
829         TAILQ_INSERT_TAIL(&pdev->mmio, mmio, next);
830
831         return (mmio->res);
832 }
833
834 int
835 linux_pci_register_drm_driver(struct pci_driver *pdrv)
836 {
837         devclass_t dc;
838
839         dc = devclass_create("vgapci");
840         if (dc == NULL)
841                 return (-ENXIO);
842         pdrv->name = "drmn";
843         return (_linux_pci_register_driver(pdrv, dc));
844 }
845
846 void
847 linux_pci_unregister_driver(struct pci_driver *pdrv)
848 {
849         devclass_t bus;
850
851         bus = devclass_find("pci");
852
853         spin_lock(&pci_lock);
854         list_del(&pdrv->node);
855         spin_unlock(&pci_lock);
856         mtx_lock(&Giant);
857         if (bus != NULL)
858                 devclass_delete_driver(bus, &pdrv->bsddriver);
859         mtx_unlock(&Giant);
860 }
861
862 void
863 linux_pci_unregister_drm_driver(struct pci_driver *pdrv)
864 {
865         devclass_t bus;
866
867         bus = devclass_find("vgapci");
868
869         spin_lock(&pci_lock);
870         list_del(&pdrv->node);
871         spin_unlock(&pci_lock);
872         mtx_lock(&Giant);
873         if (bus != NULL)
874                 devclass_delete_driver(bus, &pdrv->bsddriver);
875         mtx_unlock(&Giant);
876 }
877
878 CTASSERT(sizeof(dma_addr_t) <= sizeof(uint64_t));
879
880 struct linux_dma_obj {
881         void            *vaddr;
882         uint64_t        dma_addr;
883         bus_dmamap_t    dmamap;
884         bus_dma_tag_t   dmat;
885 };
886
887 static uma_zone_t linux_dma_trie_zone;
888 static uma_zone_t linux_dma_obj_zone;
889
890 static void
891 linux_dma_init(void *arg)
892 {
893
894         linux_dma_trie_zone = uma_zcreate("linux_dma_pctrie",
895             pctrie_node_size(), NULL, NULL, pctrie_zone_init, NULL,
896             UMA_ALIGN_PTR, 0);
897         linux_dma_obj_zone = uma_zcreate("linux_dma_object",
898             sizeof(struct linux_dma_obj), NULL, NULL, NULL, NULL,
899             UMA_ALIGN_PTR, 0);
900
901 }
902 SYSINIT(linux_dma, SI_SUB_DRIVERS, SI_ORDER_THIRD, linux_dma_init, NULL);
903
904 static void
905 linux_dma_uninit(void *arg)
906 {
907
908         uma_zdestroy(linux_dma_obj_zone);
909         uma_zdestroy(linux_dma_trie_zone);
910 }
911 SYSUNINIT(linux_dma, SI_SUB_DRIVERS, SI_ORDER_THIRD, linux_dma_uninit, NULL);
912
913 static void *
914 linux_dma_trie_alloc(struct pctrie *ptree)
915 {
916
917         return (uma_zalloc(linux_dma_trie_zone, M_NOWAIT));
918 }
919
920 static void
921 linux_dma_trie_free(struct pctrie *ptree, void *node)
922 {
923
924         uma_zfree(linux_dma_trie_zone, node);
925 }
926
927 PCTRIE_DEFINE(LINUX_DMA, linux_dma_obj, dma_addr, linux_dma_trie_alloc,
928     linux_dma_trie_free);
929
930 #if defined(__i386__) || defined(__amd64__) || defined(__aarch64__)
931 static dma_addr_t
932 linux_dma_map_phys_common(struct device *dev, vm_paddr_t phys, size_t len,
933     bus_dma_tag_t dmat)
934 {
935         struct linux_dma_priv *priv;
936         struct linux_dma_obj *obj;
937         int error, nseg;
938         bus_dma_segment_t seg;
939
940         priv = dev->dma_priv;
941
942         /*
943          * If the resultant mapping will be entirely 1:1 with the
944          * physical address, short-circuit the remainder of the
945          * bus_dma API.  This avoids tracking collisions in the pctrie
946          * with the additional benefit of reducing overhead.
947          */
948         if (bus_dma_id_mapped(dmat, phys, len))
949                 return (phys);
950
951         obj = uma_zalloc(linux_dma_obj_zone, M_NOWAIT);
952         if (obj == NULL) {
953                 return (0);
954         }
955         obj->dmat = dmat;
956
957         DMA_PRIV_LOCK(priv);
958         if (bus_dmamap_create(obj->dmat, 0, &obj->dmamap) != 0) {
959                 DMA_PRIV_UNLOCK(priv);
960                 uma_zfree(linux_dma_obj_zone, obj);
961                 return (0);
962         }
963
964         nseg = -1;
965         if (_bus_dmamap_load_phys(obj->dmat, obj->dmamap, phys, len,
966             BUS_DMA_NOWAIT, &seg, &nseg) != 0) {
967                 bus_dmamap_destroy(obj->dmat, obj->dmamap);
968                 DMA_PRIV_UNLOCK(priv);
969                 uma_zfree(linux_dma_obj_zone, obj);
970                 return (0);
971         }
972
973         KASSERT(++nseg == 1, ("More than one segment (nseg=%d)", nseg));
974         obj->dma_addr = seg.ds_addr;
975
976         error = LINUX_DMA_PCTRIE_INSERT(&priv->ptree, obj);
977         if (error != 0) {
978                 bus_dmamap_unload(obj->dmat, obj->dmamap);
979                 bus_dmamap_destroy(obj->dmat, obj->dmamap);
980                 DMA_PRIV_UNLOCK(priv);
981                 uma_zfree(linux_dma_obj_zone, obj);
982                 return (0);
983         }
984         DMA_PRIV_UNLOCK(priv);
985         return (obj->dma_addr);
986 }
987 #else
988 static dma_addr_t
989 linux_dma_map_phys_common(struct device *dev __unused, vm_paddr_t phys,
990     size_t len __unused, bus_dma_tag_t dmat __unused)
991 {
992         return (phys);
993 }
994 #endif
995
996 dma_addr_t
997 linux_dma_map_phys(struct device *dev, vm_paddr_t phys, size_t len)
998 {
999         struct linux_dma_priv *priv;
1000
1001         priv = dev->dma_priv;
1002         return (linux_dma_map_phys_common(dev, phys, len, priv->dmat));
1003 }
1004
1005 #if defined(__i386__) || defined(__amd64__) || defined(__aarch64__)
1006 void
1007 linux_dma_unmap(struct device *dev, dma_addr_t dma_addr, size_t len)
1008 {
1009         struct linux_dma_priv *priv;
1010         struct linux_dma_obj *obj;
1011
1012         priv = dev->dma_priv;
1013
1014         if (pctrie_is_empty(&priv->ptree))
1015                 return;
1016
1017         DMA_PRIV_LOCK(priv);
1018         obj = LINUX_DMA_PCTRIE_LOOKUP(&priv->ptree, dma_addr);
1019         if (obj == NULL) {
1020                 DMA_PRIV_UNLOCK(priv);
1021                 return;
1022         }
1023         LINUX_DMA_PCTRIE_REMOVE(&priv->ptree, dma_addr);
1024         bus_dmamap_unload(obj->dmat, obj->dmamap);
1025         bus_dmamap_destroy(obj->dmat, obj->dmamap);
1026         DMA_PRIV_UNLOCK(priv);
1027
1028         uma_zfree(linux_dma_obj_zone, obj);
1029 }
1030 #else
1031 void
1032 linux_dma_unmap(struct device *dev, dma_addr_t dma_addr, size_t len)
1033 {
1034 }
1035 #endif
1036
1037 void *
1038 linux_dma_alloc_coherent(struct device *dev, size_t size,
1039     dma_addr_t *dma_handle, gfp_t flag)
1040 {
1041         struct linux_dma_priv *priv;
1042         vm_paddr_t high;
1043         size_t align;
1044         void *mem;
1045
1046         if (dev == NULL || dev->dma_priv == NULL) {
1047                 *dma_handle = 0;
1048                 return (NULL);
1049         }
1050         priv = dev->dma_priv;
1051         if (priv->dma_coherent_mask)
1052                 high = priv->dma_coherent_mask;
1053         else
1054                 /* Coherent is lower 32bit only by default in Linux. */
1055                 high = BUS_SPACE_MAXADDR_32BIT;
1056         align = PAGE_SIZE << get_order(size);
1057         /* Always zero the allocation. */
1058         flag |= M_ZERO;
1059         mem = (void *)kmem_alloc_contig(size, flag & GFP_NATIVE_MASK, 0, high,
1060             align, 0, VM_MEMATTR_DEFAULT);
1061         if (mem != NULL) {
1062                 *dma_handle = linux_dma_map_phys_common(dev, vtophys(mem), size,
1063                     priv->dmat_coherent);
1064                 if (*dma_handle == 0) {
1065                         kmem_free((vm_offset_t)mem, size);
1066                         mem = NULL;
1067                 }
1068         } else {
1069                 *dma_handle = 0;
1070         }
1071         return (mem);
1072 }
1073
1074 void
1075 linuxkpi_dma_sync(struct device *dev, dma_addr_t dma_addr, size_t size,
1076     bus_dmasync_op_t op)
1077 {
1078         struct linux_dma_priv *priv;
1079         struct linux_dma_obj *obj;
1080
1081         priv = dev->dma_priv;
1082
1083         if (pctrie_is_empty(&priv->ptree))
1084                 return;
1085
1086         DMA_PRIV_LOCK(priv);
1087         obj = LINUX_DMA_PCTRIE_LOOKUP(&priv->ptree, dma_addr);
1088         if (obj == NULL) {
1089                 DMA_PRIV_UNLOCK(priv);
1090                 return;
1091         }
1092
1093         bus_dmamap_sync(obj->dmat, obj->dmamap, op);
1094         DMA_PRIV_UNLOCK(priv);
1095 }
1096
1097 int
1098 linux_dma_map_sg_attrs(struct device *dev, struct scatterlist *sgl, int nents,
1099     enum dma_data_direction direction, unsigned long attrs __unused)
1100 {
1101         struct linux_dma_priv *priv;
1102         struct scatterlist *sg;
1103         int i, nseg;
1104         bus_dma_segment_t seg;
1105
1106         priv = dev->dma_priv;
1107
1108         DMA_PRIV_LOCK(priv);
1109
1110         /* create common DMA map in the first S/G entry */
1111         if (bus_dmamap_create(priv->dmat, 0, &sgl->dma_map) != 0) {
1112                 DMA_PRIV_UNLOCK(priv);
1113                 return (0);
1114         }
1115
1116         /* load all S/G list entries */
1117         for_each_sg(sgl, sg, nents, i) {
1118                 nseg = -1;
1119                 if (_bus_dmamap_load_phys(priv->dmat, sgl->dma_map,
1120                     sg_phys(sg), sg->length, BUS_DMA_NOWAIT,
1121                     &seg, &nseg) != 0) {
1122                         bus_dmamap_unload(priv->dmat, sgl->dma_map);
1123                         bus_dmamap_destroy(priv->dmat, sgl->dma_map);
1124                         DMA_PRIV_UNLOCK(priv);
1125                         return (0);
1126                 }
1127                 KASSERT(nseg == 0,
1128                     ("More than one segment (nseg=%d)", nseg + 1));
1129
1130                 sg_dma_address(sg) = seg.ds_addr;
1131         }
1132
1133         switch (direction) {
1134         case DMA_BIDIRECTIONAL:
1135                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_PREWRITE);
1136                 break;
1137         case DMA_TO_DEVICE:
1138                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_PREREAD);
1139                 break;
1140         case DMA_FROM_DEVICE:
1141                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_PREWRITE);
1142                 break;
1143         default:
1144                 break;
1145         }
1146
1147         DMA_PRIV_UNLOCK(priv);
1148
1149         return (nents);
1150 }
1151
1152 void
1153 linux_dma_unmap_sg_attrs(struct device *dev, struct scatterlist *sgl,
1154     int nents __unused, enum dma_data_direction direction,
1155     unsigned long attrs __unused)
1156 {
1157         struct linux_dma_priv *priv;
1158
1159         priv = dev->dma_priv;
1160
1161         DMA_PRIV_LOCK(priv);
1162
1163         switch (direction) {
1164         case DMA_BIDIRECTIONAL:
1165                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_POSTREAD);
1166                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_PREREAD);
1167                 break;
1168         case DMA_TO_DEVICE:
1169                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_POSTWRITE);
1170                 break;
1171         case DMA_FROM_DEVICE:
1172                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_POSTREAD);
1173                 break;
1174         default:
1175                 break;
1176         }
1177
1178         bus_dmamap_unload(priv->dmat, sgl->dma_map);
1179         bus_dmamap_destroy(priv->dmat, sgl->dma_map);
1180         DMA_PRIV_UNLOCK(priv);
1181 }
1182
1183 struct dma_pool {
1184         struct device  *pool_device;
1185         uma_zone_t      pool_zone;
1186         struct mtx      pool_lock;
1187         bus_dma_tag_t   pool_dmat;
1188         size_t          pool_entry_size;
1189         struct pctrie   pool_ptree;
1190 };
1191
1192 #define DMA_POOL_LOCK(pool) mtx_lock(&(pool)->pool_lock)
1193 #define DMA_POOL_UNLOCK(pool) mtx_unlock(&(pool)->pool_lock)
1194
1195 static inline int
1196 dma_pool_obj_ctor(void *mem, int size, void *arg, int flags)
1197 {
1198         struct linux_dma_obj *obj = mem;
1199         struct dma_pool *pool = arg;
1200         int error, nseg;
1201         bus_dma_segment_t seg;
1202
1203         nseg = -1;
1204         DMA_POOL_LOCK(pool);
1205         error = _bus_dmamap_load_phys(pool->pool_dmat, obj->dmamap,
1206             vtophys(obj->vaddr), pool->pool_entry_size, BUS_DMA_NOWAIT,
1207             &seg, &nseg);
1208         DMA_POOL_UNLOCK(pool);
1209         if (error != 0) {
1210                 return (error);
1211         }
1212         KASSERT(++nseg == 1, ("More than one segment (nseg=%d)", nseg));
1213         obj->dma_addr = seg.ds_addr;
1214
1215         return (0);
1216 }
1217
1218 static void
1219 dma_pool_obj_dtor(void *mem, int size, void *arg)
1220 {
1221         struct linux_dma_obj *obj = mem;
1222         struct dma_pool *pool = arg;
1223
1224         DMA_POOL_LOCK(pool);
1225         bus_dmamap_unload(pool->pool_dmat, obj->dmamap);
1226         DMA_POOL_UNLOCK(pool);
1227 }
1228
1229 static int
1230 dma_pool_obj_import(void *arg, void **store, int count, int domain __unused,
1231     int flags)
1232 {
1233         struct dma_pool *pool = arg;
1234         struct linux_dma_obj *obj;
1235         int error, i;
1236
1237         for (i = 0; i < count; i++) {
1238                 obj = uma_zalloc(linux_dma_obj_zone, flags);
1239                 if (obj == NULL)
1240                         break;
1241
1242                 error = bus_dmamem_alloc(pool->pool_dmat, &obj->vaddr,
1243                     BUS_DMA_NOWAIT, &obj->dmamap);
1244                 if (error!= 0) {
1245                         uma_zfree(linux_dma_obj_zone, obj);
1246                         break;
1247                 }
1248
1249                 store[i] = obj;
1250         }
1251
1252         return (i);
1253 }
1254
1255 static void
1256 dma_pool_obj_release(void *arg, void **store, int count)
1257 {
1258         struct dma_pool *pool = arg;
1259         struct linux_dma_obj *obj;
1260         int i;
1261
1262         for (i = 0; i < count; i++) {
1263                 obj = store[i];
1264                 bus_dmamem_free(pool->pool_dmat, obj->vaddr, obj->dmamap);
1265                 uma_zfree(linux_dma_obj_zone, obj);
1266         }
1267 }
1268
1269 struct dma_pool *
1270 linux_dma_pool_create(char *name, struct device *dev, size_t size,
1271     size_t align, size_t boundary)
1272 {
1273         struct linux_dma_priv *priv;
1274         struct dma_pool *pool;
1275
1276         priv = dev->dma_priv;
1277
1278         pool = kzalloc(sizeof(*pool), GFP_KERNEL);
1279         pool->pool_device = dev;
1280         pool->pool_entry_size = size;
1281
1282         if (bus_dma_tag_create(bus_get_dma_tag(dev->bsddev),
1283             align, boundary,            /* alignment, boundary */
1284             priv->dma_mask,             /* lowaddr */
1285             BUS_SPACE_MAXADDR,          /* highaddr */
1286             NULL, NULL,                 /* filtfunc, filtfuncarg */
1287             size,                       /* maxsize */
1288             1,                          /* nsegments */
1289             size,                       /* maxsegsz */
1290             0,                          /* flags */
1291             NULL, NULL,                 /* lockfunc, lockfuncarg */
1292             &pool->pool_dmat)) {
1293                 kfree(pool);
1294                 return (NULL);
1295         }
1296
1297         pool->pool_zone = uma_zcache_create(name, -1, dma_pool_obj_ctor,
1298             dma_pool_obj_dtor, NULL, NULL, dma_pool_obj_import,
1299             dma_pool_obj_release, pool, 0);
1300
1301         mtx_init(&pool->pool_lock, "lkpi-dma-pool", NULL, MTX_DEF);
1302         pctrie_init(&pool->pool_ptree);
1303
1304         return (pool);
1305 }
1306
1307 void
1308 linux_dma_pool_destroy(struct dma_pool *pool)
1309 {
1310
1311         uma_zdestroy(pool->pool_zone);
1312         bus_dma_tag_destroy(pool->pool_dmat);
1313         mtx_destroy(&pool->pool_lock);
1314         kfree(pool);
1315 }
1316
1317 void
1318 lkpi_dmam_pool_destroy(struct device *dev, void *p)
1319 {
1320         struct dma_pool *pool;
1321
1322         pool = *(struct dma_pool **)p;
1323         LINUX_DMA_PCTRIE_RECLAIM(&pool->pool_ptree);
1324         linux_dma_pool_destroy(pool);
1325 }
1326
1327 void *
1328 linux_dma_pool_alloc(struct dma_pool *pool, gfp_t mem_flags,
1329     dma_addr_t *handle)
1330 {
1331         struct linux_dma_obj *obj;
1332
1333         obj = uma_zalloc_arg(pool->pool_zone, pool, mem_flags & GFP_NATIVE_MASK);
1334         if (obj == NULL)
1335                 return (NULL);
1336
1337         DMA_POOL_LOCK(pool);
1338         if (LINUX_DMA_PCTRIE_INSERT(&pool->pool_ptree, obj) != 0) {
1339                 DMA_POOL_UNLOCK(pool);
1340                 uma_zfree_arg(pool->pool_zone, obj, pool);
1341                 return (NULL);
1342         }
1343         DMA_POOL_UNLOCK(pool);
1344
1345         *handle = obj->dma_addr;
1346         return (obj->vaddr);
1347 }
1348
1349 void
1350 linux_dma_pool_free(struct dma_pool *pool, void *vaddr, dma_addr_t dma_addr)
1351 {
1352         struct linux_dma_obj *obj;
1353
1354         DMA_POOL_LOCK(pool);
1355         obj = LINUX_DMA_PCTRIE_LOOKUP(&pool->pool_ptree, dma_addr);
1356         if (obj == NULL) {
1357                 DMA_POOL_UNLOCK(pool);
1358                 return;
1359         }
1360         LINUX_DMA_PCTRIE_REMOVE(&pool->pool_ptree, dma_addr);
1361         DMA_POOL_UNLOCK(pool);
1362
1363         uma_zfree_arg(pool->pool_zone, obj, pool);
1364 }
1365
1366 static int
1367 linux_backlight_get_status(device_t dev, struct backlight_props *props)
1368 {
1369         struct pci_dev *pdev;
1370
1371         linux_set_current(curthread);
1372         pdev = device_get_softc(dev);
1373
1374         props->brightness = pdev->dev.bd->props.brightness;
1375         props->brightness = props->brightness * 100 / pdev->dev.bd->props.max_brightness;
1376         props->nlevels = 0;
1377
1378         return (0);
1379 }
1380
1381 static int
1382 linux_backlight_get_info(device_t dev, struct backlight_info *info)
1383 {
1384         struct pci_dev *pdev;
1385
1386         linux_set_current(curthread);
1387         pdev = device_get_softc(dev);
1388
1389         info->type = BACKLIGHT_TYPE_PANEL;
1390         strlcpy(info->name, pdev->dev.bd->name, BACKLIGHTMAXNAMELENGTH);
1391         return (0);
1392 }
1393
1394 static int
1395 linux_backlight_update_status(device_t dev, struct backlight_props *props)
1396 {
1397         struct pci_dev *pdev;
1398
1399         linux_set_current(curthread);
1400         pdev = device_get_softc(dev);
1401
1402         pdev->dev.bd->props.brightness = pdev->dev.bd->props.max_brightness *
1403                 props->brightness / 100;
1404         pdev->dev.bd->props.power = props->brightness == 0 ?
1405                 4/* FB_BLANK_POWERDOWN */ : 0/* FB_BLANK_UNBLANK */;
1406         return (pdev->dev.bd->ops->update_status(pdev->dev.bd));
1407 }
1408
1409 struct backlight_device *
1410 linux_backlight_device_register(const char *name, struct device *dev,
1411     void *data, const struct backlight_ops *ops, struct backlight_properties *props)
1412 {
1413
1414         dev->bd = malloc(sizeof(*dev->bd), M_DEVBUF, M_WAITOK | M_ZERO);
1415         dev->bd->ops = ops;
1416         dev->bd->props.type = props->type;
1417         dev->bd->props.max_brightness = props->max_brightness;
1418         dev->bd->props.brightness = props->brightness;
1419         dev->bd->props.power = props->power;
1420         dev->bd->data = data;
1421         dev->bd->dev = dev;
1422         dev->bd->name = strdup(name, M_DEVBUF);
1423
1424         dev->backlight_dev = backlight_register(name, dev->bsddev);
1425
1426         return (dev->bd);
1427 }
1428
1429 void
1430 linux_backlight_device_unregister(struct backlight_device *bd)
1431 {
1432
1433         backlight_destroy(bd->dev->backlight_dev);
1434         free(bd->name, M_DEVBUF);
1435         free(bd, M_DEVBUF);
1436 }