Displaying 1 result from an estimated 1 matches for "drm_bus_host1x".
2024 Jul 26
2
[PATCH v2 02/37] drm/nouveau: handle pci/tegra drm_dev_{alloc, register} from common code
...libdrm? This stuff indeed whitelists busses it accepts to
> report DRM device from:
>
> { "/pci", DRM_BUS_PCI },
> { "/usb", DRM_BUS_USB },
> { "/platform", DRM_BUS_PLATFORM },
> { "/spi", DRM_BUS_PLATFORM },
> { "/host1x", DRM_BUS_HOST1X },
> { "/virtio", DRM_BUS_VIRTIO },
>
> Not a big deal to just add it for a new driver, but obviously we can't just do
> this for an existing one.
>
>> Fortunately it didn't turn out to be necessary, and we
>> can happily probe() against the auxiliary d...