search for: drm_module

Displaying 6 results from an estimated 6 matches for "drm_module".

Did you mean: drm_modules
2024 Aug 23
1
[PATCH v2 11/86] drm/atmel-hdlcd: Run DRM default client setup
....h> > +#include <drm/drm_client_setup.h> > #include <drm/drm_drv.h> > #include <drm/drm_fbdev_dma.h> > +#include <drm/drm_fourcc.h> > #include <drm/drm_gem_dma_helper.h> > #include <drm/drm_gem_framebuffer_helper.h> > #include <drm/drm_module.h> > @@ -865,7 +867,7 @@ static int atmel_hlcdc_dc_drm_probe(struct platform_device *pdev) > if (ret) > goto err_unload; > > - drm_fbdev_dma_setup(ddev, 24); > + drm_client_setup_with_fourcc(ddev, DRM_FORMAT_RGB888); > > return 0; I looks like a patch is missi...
2024 Aug 21
1
[PATCH v2 56/86] drm/mgag200: Run DRM default client setup
...lt;drm/drm_atomic_helper.h> +#include <drm/drm_client_setup.h> #include <drm/drm_drv.h> #include <drm/drm_fbdev_shmem.h> #include <drm/drm_file.h> +#include <drm/drm_fourcc.h> #include <drm/drm_ioctl.h> #include <drm/drm_managed.h> #include <drm/drm_module.h> @@ -129,6 +131,7 @@ static const struct drm_driver mgag200_driver = { .minor = DRIVER_MINOR, .patchlevel = DRIVER_PATCHLEVEL, DRM_GEM_SHMEM_DRIVER_OPS, + DRM_FBDEV_SHMEM_DRIVER_OPS, }; /* @@ -314,7 +317,7 @@ mgag200_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)...
2008 Jul 19
1
Cannot compile nouveau.o in drm with kernel 2.6.26
...g to compile nouveau.o in drm/linux-core on linux kernel 2.6.26. Drm itself compiles and installs correctly. I am using the latest drm git. I cannot access bugzilla from the nouveau page because it says it has an invalid security certificate. root at default:~/drm/linux-core# make nouveau.o make DRM_MODULES=nouveau.o modules make[1]: Entering directory `/root/drm/linux-core' make -C /lib/modules/2.6.26/source SUBDIRS=`pwd` DRMSRCDIR=`pwd` modules make[2]: Entering directory `/usr/src/linux-2.6.26' CC [M] /root/drm/linux-core/drm_auth.o In file included from include/linux/gfp.h:4,...
2007 May 17
2
[Bug 10980] New: "Nouveau" kernel modules even built when not requested
...omponent: Drivers/DRI/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy: jfrieben at hotmail.com After checking out "mesa/drm" from the "fdo" development tree, I change the working directory to "drm/linux-core". After executing 'make DRM_MODULES=savage' not only "drm.ko" and "savage.ko" get built but also "nouveau.ko" which had not been requested. A simple mistake in the Makefile, I guess. -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email ------- You are receiving this mail beca...
2007 Jul 30
0
Nouveau and Debian Unstable
...kdir -p "/usr/lib/pkgconfig" /usr/bin/install -c -m 644 'libdrm.pc' '/usr/lib/pkgconfig/libdrm.pc' make[2]: Leaving directory `/home/michael/drm' make[1]: Leaving directory `/home/michael/drm' debian:/home/michael/drm# cd linux-core && make nouveau.o make DRM_MODULES=nouveau.o modules make[1]: Entering directory `/home/michael/drm/linux-core' sh ../scripts/create_linux_pci_lists.sh < ../shared-core/drm_pciids.txt make -C /lib/modules/2.6.22-1-486/build SUBDIRS=`pwd` DRMSRCDIR=`pwd` modules make[2]: Entering directory `/usr/src/linux-headers-2.6.22-1-48...
2023 Feb 15
17
[PATCH 00/17] cirrus: Modernize the cirrus driver
Update the cirrus driver to follow current best practices. While the driver's hardware is obsolete, the cirrus driver is still one of the go-to modules to learn about writing a DRM driver. So keep it in good shape. Patches 1 to 3 simplify blitting and convert it to the DRM's current helpers. Patches 4 to 8 replace simple-KMS helpers with DRM's regular atomic helpers. The former are