]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/compat/linuxkpi/common/src/linux_pci.c
linuxkpi: Move lkpi_pci_devres_get_alloc into .c file
[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 linux_pci_register_drm_driver(struct pci_driver *pdrv)
752 {
753         devclass_t dc;
754
755         dc = devclass_create("vgapci");
756         if (dc == NULL)
757                 return (-ENXIO);
758         pdrv->name = "drmn";
759         return (_linux_pci_register_driver(pdrv, dc));
760 }
761
762 void
763 linux_pci_unregister_driver(struct pci_driver *pdrv)
764 {
765         devclass_t bus;
766
767         bus = devclass_find("pci");
768
769         spin_lock(&pci_lock);
770         list_del(&pdrv->node);
771         spin_unlock(&pci_lock);
772         mtx_lock(&Giant);
773         if (bus != NULL)
774                 devclass_delete_driver(bus, &pdrv->bsddriver);
775         mtx_unlock(&Giant);
776 }
777
778 void
779 linux_pci_unregister_drm_driver(struct pci_driver *pdrv)
780 {
781         devclass_t bus;
782
783         bus = devclass_find("vgapci");
784
785         spin_lock(&pci_lock);
786         list_del(&pdrv->node);
787         spin_unlock(&pci_lock);
788         mtx_lock(&Giant);
789         if (bus != NULL)
790                 devclass_delete_driver(bus, &pdrv->bsddriver);
791         mtx_unlock(&Giant);
792 }
793
794 CTASSERT(sizeof(dma_addr_t) <= sizeof(uint64_t));
795
796 struct linux_dma_obj {
797         void            *vaddr;
798         uint64_t        dma_addr;
799         bus_dmamap_t    dmamap;
800         bus_dma_tag_t   dmat;
801 };
802
803 static uma_zone_t linux_dma_trie_zone;
804 static uma_zone_t linux_dma_obj_zone;
805
806 static void
807 linux_dma_init(void *arg)
808 {
809
810         linux_dma_trie_zone = uma_zcreate("linux_dma_pctrie",
811             pctrie_node_size(), NULL, NULL, pctrie_zone_init, NULL,
812             UMA_ALIGN_PTR, 0);
813         linux_dma_obj_zone = uma_zcreate("linux_dma_object",
814             sizeof(struct linux_dma_obj), NULL, NULL, NULL, NULL,
815             UMA_ALIGN_PTR, 0);
816
817 }
818 SYSINIT(linux_dma, SI_SUB_DRIVERS, SI_ORDER_THIRD, linux_dma_init, NULL);
819
820 static void
821 linux_dma_uninit(void *arg)
822 {
823
824         uma_zdestroy(linux_dma_obj_zone);
825         uma_zdestroy(linux_dma_trie_zone);
826 }
827 SYSUNINIT(linux_dma, SI_SUB_DRIVERS, SI_ORDER_THIRD, linux_dma_uninit, NULL);
828
829 static void *
830 linux_dma_trie_alloc(struct pctrie *ptree)
831 {
832
833         return (uma_zalloc(linux_dma_trie_zone, M_NOWAIT));
834 }
835
836 static void
837 linux_dma_trie_free(struct pctrie *ptree, void *node)
838 {
839
840         uma_zfree(linux_dma_trie_zone, node);
841 }
842
843 PCTRIE_DEFINE(LINUX_DMA, linux_dma_obj, dma_addr, linux_dma_trie_alloc,
844     linux_dma_trie_free);
845
846 #if defined(__i386__) || defined(__amd64__) || defined(__aarch64__)
847 static dma_addr_t
848 linux_dma_map_phys_common(struct device *dev, vm_paddr_t phys, size_t len,
849     bus_dma_tag_t dmat)
850 {
851         struct linux_dma_priv *priv;
852         struct linux_dma_obj *obj;
853         int error, nseg;
854         bus_dma_segment_t seg;
855
856         priv = dev->dma_priv;
857
858         /*
859          * If the resultant mapping will be entirely 1:1 with the
860          * physical address, short-circuit the remainder of the
861          * bus_dma API.  This avoids tracking collisions in the pctrie
862          * with the additional benefit of reducing overhead.
863          */
864         if (bus_dma_id_mapped(dmat, phys, len))
865                 return (phys);
866
867         obj = uma_zalloc(linux_dma_obj_zone, M_NOWAIT);
868         if (obj == NULL) {
869                 return (0);
870         }
871         obj->dmat = dmat;
872
873         DMA_PRIV_LOCK(priv);
874         if (bus_dmamap_create(obj->dmat, 0, &obj->dmamap) != 0) {
875                 DMA_PRIV_UNLOCK(priv);
876                 uma_zfree(linux_dma_obj_zone, obj);
877                 return (0);
878         }
879
880         nseg = -1;
881         if (_bus_dmamap_load_phys(obj->dmat, obj->dmamap, phys, len,
882             BUS_DMA_NOWAIT, &seg, &nseg) != 0) {
883                 bus_dmamap_destroy(obj->dmat, obj->dmamap);
884                 DMA_PRIV_UNLOCK(priv);
885                 uma_zfree(linux_dma_obj_zone, obj);
886                 return (0);
887         }
888
889         KASSERT(++nseg == 1, ("More than one segment (nseg=%d)", nseg));
890         obj->dma_addr = seg.ds_addr;
891
892         error = LINUX_DMA_PCTRIE_INSERT(&priv->ptree, obj);
893         if (error != 0) {
894                 bus_dmamap_unload(obj->dmat, obj->dmamap);
895                 bus_dmamap_destroy(obj->dmat, obj->dmamap);
896                 DMA_PRIV_UNLOCK(priv);
897                 uma_zfree(linux_dma_obj_zone, obj);
898                 return (0);
899         }
900         DMA_PRIV_UNLOCK(priv);
901         return (obj->dma_addr);
902 }
903 #else
904 static dma_addr_t
905 linux_dma_map_phys_common(struct device *dev __unused, vm_paddr_t phys,
906     size_t len __unused, bus_dma_tag_t dmat __unused)
907 {
908         return (phys);
909 }
910 #endif
911
912 dma_addr_t
913 linux_dma_map_phys(struct device *dev, vm_paddr_t phys, size_t len)
914 {
915         struct linux_dma_priv *priv;
916
917         priv = dev->dma_priv;
918         return (linux_dma_map_phys_common(dev, phys, len, priv->dmat));
919 }
920
921 #if defined(__i386__) || defined(__amd64__) || defined(__aarch64__)
922 void
923 linux_dma_unmap(struct device *dev, dma_addr_t dma_addr, size_t len)
924 {
925         struct linux_dma_priv *priv;
926         struct linux_dma_obj *obj;
927
928         priv = dev->dma_priv;
929
930         if (pctrie_is_empty(&priv->ptree))
931                 return;
932
933         DMA_PRIV_LOCK(priv);
934         obj = LINUX_DMA_PCTRIE_LOOKUP(&priv->ptree, dma_addr);
935         if (obj == NULL) {
936                 DMA_PRIV_UNLOCK(priv);
937                 return;
938         }
939         LINUX_DMA_PCTRIE_REMOVE(&priv->ptree, dma_addr);
940         bus_dmamap_unload(obj->dmat, obj->dmamap);
941         bus_dmamap_destroy(obj->dmat, obj->dmamap);
942         DMA_PRIV_UNLOCK(priv);
943
944         uma_zfree(linux_dma_obj_zone, obj);
945 }
946 #else
947 void
948 linux_dma_unmap(struct device *dev, dma_addr_t dma_addr, size_t len)
949 {
950 }
951 #endif
952
953 void *
954 linux_dma_alloc_coherent(struct device *dev, size_t size,
955     dma_addr_t *dma_handle, gfp_t flag)
956 {
957         struct linux_dma_priv *priv;
958         vm_paddr_t high;
959         size_t align;
960         void *mem;
961
962         if (dev == NULL || dev->dma_priv == NULL) {
963                 *dma_handle = 0;
964                 return (NULL);
965         }
966         priv = dev->dma_priv;
967         if (priv->dma_coherent_mask)
968                 high = priv->dma_coherent_mask;
969         else
970                 /* Coherent is lower 32bit only by default in Linux. */
971                 high = BUS_SPACE_MAXADDR_32BIT;
972         align = PAGE_SIZE << get_order(size);
973         /* Always zero the allocation. */
974         flag |= M_ZERO;
975         mem = (void *)kmem_alloc_contig(size, flag & GFP_NATIVE_MASK, 0, high,
976             align, 0, VM_MEMATTR_DEFAULT);
977         if (mem != NULL) {
978                 *dma_handle = linux_dma_map_phys_common(dev, vtophys(mem), size,
979                     priv->dmat_coherent);
980                 if (*dma_handle == 0) {
981                         kmem_free((vm_offset_t)mem, size);
982                         mem = NULL;
983                 }
984         } else {
985                 *dma_handle = 0;
986         }
987         return (mem);
988 }
989
990 void
991 linuxkpi_dma_sync(struct device *dev, dma_addr_t dma_addr, size_t size,
992     bus_dmasync_op_t op)
993 {
994         struct linux_dma_priv *priv;
995         struct linux_dma_obj *obj;
996
997         priv = dev->dma_priv;
998
999         if (pctrie_is_empty(&priv->ptree))
1000                 return;
1001
1002         DMA_PRIV_LOCK(priv);
1003         obj = LINUX_DMA_PCTRIE_LOOKUP(&priv->ptree, dma_addr);
1004         if (obj == NULL) {
1005                 DMA_PRIV_UNLOCK(priv);
1006                 return;
1007         }
1008
1009         bus_dmamap_sync(obj->dmat, obj->dmamap, op);
1010         DMA_PRIV_UNLOCK(priv);
1011 }
1012
1013 int
1014 linux_dma_map_sg_attrs(struct device *dev, struct scatterlist *sgl, int nents,
1015     enum dma_data_direction direction, unsigned long attrs __unused)
1016 {
1017         struct linux_dma_priv *priv;
1018         struct scatterlist *sg;
1019         int i, nseg;
1020         bus_dma_segment_t seg;
1021
1022         priv = dev->dma_priv;
1023
1024         DMA_PRIV_LOCK(priv);
1025
1026         /* create common DMA map in the first S/G entry */
1027         if (bus_dmamap_create(priv->dmat, 0, &sgl->dma_map) != 0) {
1028                 DMA_PRIV_UNLOCK(priv);
1029                 return (0);
1030         }
1031
1032         /* load all S/G list entries */
1033         for_each_sg(sgl, sg, nents, i) {
1034                 nseg = -1;
1035                 if (_bus_dmamap_load_phys(priv->dmat, sgl->dma_map,
1036                     sg_phys(sg), sg->length, BUS_DMA_NOWAIT,
1037                     &seg, &nseg) != 0) {
1038                         bus_dmamap_unload(priv->dmat, sgl->dma_map);
1039                         bus_dmamap_destroy(priv->dmat, sgl->dma_map);
1040                         DMA_PRIV_UNLOCK(priv);
1041                         return (0);
1042                 }
1043                 KASSERT(nseg == 0,
1044                     ("More than one segment (nseg=%d)", nseg + 1));
1045
1046                 sg_dma_address(sg) = seg.ds_addr;
1047         }
1048
1049         switch (direction) {
1050         case DMA_BIDIRECTIONAL:
1051                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_PREWRITE);
1052                 break;
1053         case DMA_TO_DEVICE:
1054                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_PREREAD);
1055                 break;
1056         case DMA_FROM_DEVICE:
1057                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_PREWRITE);
1058                 break;
1059         default:
1060                 break;
1061         }
1062
1063         DMA_PRIV_UNLOCK(priv);
1064
1065         return (nents);
1066 }
1067
1068 void
1069 linux_dma_unmap_sg_attrs(struct device *dev, struct scatterlist *sgl,
1070     int nents __unused, enum dma_data_direction direction,
1071     unsigned long attrs __unused)
1072 {
1073         struct linux_dma_priv *priv;
1074
1075         priv = dev->dma_priv;
1076
1077         DMA_PRIV_LOCK(priv);
1078
1079         switch (direction) {
1080         case DMA_BIDIRECTIONAL:
1081                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_POSTREAD);
1082                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_PREREAD);
1083                 break;
1084         case DMA_TO_DEVICE:
1085                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_POSTWRITE);
1086                 break;
1087         case DMA_FROM_DEVICE:
1088                 bus_dmamap_sync(priv->dmat, sgl->dma_map, BUS_DMASYNC_POSTREAD);
1089                 break;
1090         default:
1091                 break;
1092         }
1093
1094         bus_dmamap_unload(priv->dmat, sgl->dma_map);
1095         bus_dmamap_destroy(priv->dmat, sgl->dma_map);
1096         DMA_PRIV_UNLOCK(priv);
1097 }
1098
1099 struct dma_pool {
1100         struct device  *pool_device;
1101         uma_zone_t      pool_zone;
1102         struct mtx      pool_lock;
1103         bus_dma_tag_t   pool_dmat;
1104         size_t          pool_entry_size;
1105         struct pctrie   pool_ptree;
1106 };
1107
1108 #define DMA_POOL_LOCK(pool) mtx_lock(&(pool)->pool_lock)
1109 #define DMA_POOL_UNLOCK(pool) mtx_unlock(&(pool)->pool_lock)
1110
1111 static inline int
1112 dma_pool_obj_ctor(void *mem, int size, void *arg, int flags)
1113 {
1114         struct linux_dma_obj *obj = mem;
1115         struct dma_pool *pool = arg;
1116         int error, nseg;
1117         bus_dma_segment_t seg;
1118
1119         nseg = -1;
1120         DMA_POOL_LOCK(pool);
1121         error = _bus_dmamap_load_phys(pool->pool_dmat, obj->dmamap,
1122             vtophys(obj->vaddr), pool->pool_entry_size, BUS_DMA_NOWAIT,
1123             &seg, &nseg);
1124         DMA_POOL_UNLOCK(pool);
1125         if (error != 0) {
1126                 return (error);
1127         }
1128         KASSERT(++nseg == 1, ("More than one segment (nseg=%d)", nseg));
1129         obj->dma_addr = seg.ds_addr;
1130
1131         return (0);
1132 }
1133
1134 static void
1135 dma_pool_obj_dtor(void *mem, int size, void *arg)
1136 {
1137         struct linux_dma_obj *obj = mem;
1138         struct dma_pool *pool = arg;
1139
1140         DMA_POOL_LOCK(pool);
1141         bus_dmamap_unload(pool->pool_dmat, obj->dmamap);
1142         DMA_POOL_UNLOCK(pool);
1143 }
1144
1145 static int
1146 dma_pool_obj_import(void *arg, void **store, int count, int domain __unused,
1147     int flags)
1148 {
1149         struct dma_pool *pool = arg;
1150         struct linux_dma_obj *obj;
1151         int error, i;
1152
1153         for (i = 0; i < count; i++) {
1154                 obj = uma_zalloc(linux_dma_obj_zone, flags);
1155                 if (obj == NULL)
1156                         break;
1157
1158                 error = bus_dmamem_alloc(pool->pool_dmat, &obj->vaddr,
1159                     BUS_DMA_NOWAIT, &obj->dmamap);
1160                 if (error!= 0) {
1161                         uma_zfree(linux_dma_obj_zone, obj);
1162                         break;
1163                 }
1164
1165                 store[i] = obj;
1166         }
1167
1168         return (i);
1169 }
1170
1171 static void
1172 dma_pool_obj_release(void *arg, void **store, int count)
1173 {
1174         struct dma_pool *pool = arg;
1175         struct linux_dma_obj *obj;
1176         int i;
1177
1178         for (i = 0; i < count; i++) {
1179                 obj = store[i];
1180                 bus_dmamem_free(pool->pool_dmat, obj->vaddr, obj->dmamap);
1181                 uma_zfree(linux_dma_obj_zone, obj);
1182         }
1183 }
1184
1185 struct dma_pool *
1186 linux_dma_pool_create(char *name, struct device *dev, size_t size,
1187     size_t align, size_t boundary)
1188 {
1189         struct linux_dma_priv *priv;
1190         struct dma_pool *pool;
1191
1192         priv = dev->dma_priv;
1193
1194         pool = kzalloc(sizeof(*pool), GFP_KERNEL);
1195         pool->pool_device = dev;
1196         pool->pool_entry_size = size;
1197
1198         if (bus_dma_tag_create(bus_get_dma_tag(dev->bsddev),
1199             align, boundary,            /* alignment, boundary */
1200             priv->dma_mask,             /* lowaddr */
1201             BUS_SPACE_MAXADDR,          /* highaddr */
1202             NULL, NULL,                 /* filtfunc, filtfuncarg */
1203             size,                       /* maxsize */
1204             1,                          /* nsegments */
1205             size,                       /* maxsegsz */
1206             0,                          /* flags */
1207             NULL, NULL,                 /* lockfunc, lockfuncarg */
1208             &pool->pool_dmat)) {
1209                 kfree(pool);
1210                 return (NULL);
1211         }
1212
1213         pool->pool_zone = uma_zcache_create(name, -1, dma_pool_obj_ctor,
1214             dma_pool_obj_dtor, NULL, NULL, dma_pool_obj_import,
1215             dma_pool_obj_release, pool, 0);
1216
1217         mtx_init(&pool->pool_lock, "lkpi-dma-pool", NULL, MTX_DEF);
1218         pctrie_init(&pool->pool_ptree);
1219
1220         return (pool);
1221 }
1222
1223 void
1224 linux_dma_pool_destroy(struct dma_pool *pool)
1225 {
1226
1227         uma_zdestroy(pool->pool_zone);
1228         bus_dma_tag_destroy(pool->pool_dmat);
1229         mtx_destroy(&pool->pool_lock);
1230         kfree(pool);
1231 }
1232
1233 void
1234 lkpi_dmam_pool_destroy(struct device *dev, void *p)
1235 {
1236         struct dma_pool *pool;
1237
1238         pool = *(struct dma_pool **)p;
1239         LINUX_DMA_PCTRIE_RECLAIM(&pool->pool_ptree);
1240         linux_dma_pool_destroy(pool);
1241 }
1242
1243 void *
1244 linux_dma_pool_alloc(struct dma_pool *pool, gfp_t mem_flags,
1245     dma_addr_t *handle)
1246 {
1247         struct linux_dma_obj *obj;
1248
1249         obj = uma_zalloc_arg(pool->pool_zone, pool, mem_flags & GFP_NATIVE_MASK);
1250         if (obj == NULL)
1251                 return (NULL);
1252
1253         DMA_POOL_LOCK(pool);
1254         if (LINUX_DMA_PCTRIE_INSERT(&pool->pool_ptree, obj) != 0) {
1255                 DMA_POOL_UNLOCK(pool);
1256                 uma_zfree_arg(pool->pool_zone, obj, pool);
1257                 return (NULL);
1258         }
1259         DMA_POOL_UNLOCK(pool);
1260
1261         *handle = obj->dma_addr;
1262         return (obj->vaddr);
1263 }
1264
1265 void
1266 linux_dma_pool_free(struct dma_pool *pool, void *vaddr, dma_addr_t dma_addr)
1267 {
1268         struct linux_dma_obj *obj;
1269
1270         DMA_POOL_LOCK(pool);
1271         obj = LINUX_DMA_PCTRIE_LOOKUP(&pool->pool_ptree, dma_addr);
1272         if (obj == NULL) {
1273                 DMA_POOL_UNLOCK(pool);
1274                 return;
1275         }
1276         LINUX_DMA_PCTRIE_REMOVE(&pool->pool_ptree, dma_addr);
1277         DMA_POOL_UNLOCK(pool);
1278
1279         uma_zfree_arg(pool->pool_zone, obj, pool);
1280 }
1281
1282 static int
1283 linux_backlight_get_status(device_t dev, struct backlight_props *props)
1284 {
1285         struct pci_dev *pdev;
1286
1287         linux_set_current(curthread);
1288         pdev = device_get_softc(dev);
1289
1290         props->brightness = pdev->dev.bd->props.brightness;
1291         props->brightness = props->brightness * 100 / pdev->dev.bd->props.max_brightness;
1292         props->nlevels = 0;
1293
1294         return (0);
1295 }
1296
1297 static int
1298 linux_backlight_get_info(device_t dev, struct backlight_info *info)
1299 {
1300         struct pci_dev *pdev;
1301
1302         linux_set_current(curthread);
1303         pdev = device_get_softc(dev);
1304
1305         info->type = BACKLIGHT_TYPE_PANEL;
1306         strlcpy(info->name, pdev->dev.bd->name, BACKLIGHTMAXNAMELENGTH);
1307         return (0);
1308 }
1309
1310 static int
1311 linux_backlight_update_status(device_t dev, struct backlight_props *props)
1312 {
1313         struct pci_dev *pdev;
1314
1315         linux_set_current(curthread);
1316         pdev = device_get_softc(dev);
1317
1318         pdev->dev.bd->props.brightness = pdev->dev.bd->props.max_brightness *
1319                 props->brightness / 100;
1320         pdev->dev.bd->props.power = props->brightness == 0 ?
1321                 4/* FB_BLANK_POWERDOWN */ : 0/* FB_BLANK_UNBLANK */;
1322         return (pdev->dev.bd->ops->update_status(pdev->dev.bd));
1323 }
1324
1325 struct backlight_device *
1326 linux_backlight_device_register(const char *name, struct device *dev,
1327     void *data, const struct backlight_ops *ops, struct backlight_properties *props)
1328 {
1329
1330         dev->bd = malloc(sizeof(*dev->bd), M_DEVBUF, M_WAITOK | M_ZERO);
1331         dev->bd->ops = ops;
1332         dev->bd->props.type = props->type;
1333         dev->bd->props.max_brightness = props->max_brightness;
1334         dev->bd->props.brightness = props->brightness;
1335         dev->bd->props.power = props->power;
1336         dev->bd->data = data;
1337         dev->bd->dev = dev;
1338         dev->bd->name = strdup(name, M_DEVBUF);
1339
1340         dev->backlight_dev = backlight_register(name, dev->bsddev);
1341
1342         return (dev->bd);
1343 }
1344
1345 void
1346 linux_backlight_device_unregister(struct backlight_device *bd)
1347 {
1348
1349         backlight_destroy(bd->dev->backlight_dev);
1350         free(bd->name, M_DEVBUF);
1351         free(bd, M_DEVBUF);
1352 }