Displaying 12 results from an estimated 12 matches for "drm_pciids".
2009 Nov 14
1
[Bug 25084] New: [PATCH] [drm_pciids] Note NVidia Quadro NVS 295 as supported
http://bugs.freedesktop.org/show_bug.cgi?id=25084
Summary: [PATCH] [drm_pciids] Note NVidia Quadro NVS 295 as
supported
Product: xorg
Version: unspecified
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo...
2007 Sep 21
1
About nVidia 8600M GS (10de:0425 (rev a1))
Hi,
I compiled drm & xf86-video-nouveau to test nouveau yesterday -- the X
server couldn't start. Today, Telek pointed me to
drm/linux-core/drm_pciids.h, where I added my card. This made nouveau
detect my card, and the xerver started successfully.
I didn't test further -- for example I didn't compile the mesa nouveau
code to enable 3D.
So what should I test ?
Snark
PS1: nvidia-glx isn't abi-compatible with my xserver, so I can...
2018 Feb 11
0
[PATCH 0/5] Fix deadlock on runtime suspend in DRM drivers
...de delay.h,
rectified testing patch below:
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
index 50afcf6..beaaf2c 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
@@ -36,6 +36,7 @@
#include <drm/drm_pciids.h>
#include <linux/console.h>
+#include <linux/delay.h>
#include <linux/module.h>
#include <linux/pm_runtime.h>
#include <linux/vga_switcheroo.h>
@@ -718,6 +719,9 @@ static int amdgpu_pmops_runtime_suspend(struct device *dev)
return -EBUSY;
}
+ printk(&qu...
2018 Feb 11
2
[PATCH 0/5] Fix deadlock on runtime suspend in DRM drivers
On Sun, Feb 11, 2018 at 06:58:11PM +0000, Mike Lothian wrote:
> On 11 February 2018 at 09:38, Lukas Wunner <lukas at wunner.de> wrote:
> > The patches for radeon and amdgpu are compile-tested only, I only have a
> > MacBook Pro with an Nvidia GK107 to test. To test the patches, add an
> > "msleep(12*1000);" at the top of the driver's ->runtime_suspend
2008 Jan 14
0
FreeBSD 6.3 and Intel G33
...emory: bind key 6 at 0x006ff000 (pgoffset 1791)
(WW) intel(0): xf86BindGARTMemory: binding of gart memory with key 6
at offset 0x6ff000 failed (Invalid argument)
Fatal server error:
Couldn't bind memory for front buffer
I then added the PCI ID (0x8086 / 0x29c2) to /usr/src/sys/dev/drm/drm_pciids.h
and now I get this in dmesg..
drmsub0: <Intel G33>: (child of agp_i810.c) on agp0
info: [drm] AGP at 0xd2300000 0MB
info: [drm] Initialized i915 1.5.0 20060119
but that does not affect the error from X.
I see a NetBSD patch at
http://mail-index.netbsd.org/netbsd-bugs/2007/09/05/0015.html...
2024 Aug 21
1
[PATCH v2 78/86] drm/radeon: Run DRM default client setup
...10 @@
#include <linux/pci.h>
#include <drm/drm_aperture.h>
+#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
#include <drm/drm_file.h>
+#include <drm/drm_fourcc.h>
#include <drm/drm_gem.h>
#include <drm/drm_ioctl.h>
#include <drm/drm_pciids.h>
@@ -260,6 +262,8 @@ static int radeon_pci_probe(struct pci_dev *pdev,
{
unsigned long flags = 0;
struct drm_device *dev;
+ struct radeon_device *rdev;
+ const struct drm_format_info *format;
int ret;
if (!ent)
@@ -314,7 +318,15 @@ static int radeon_pci_probe(struct pci_dev *pdev,...
2016 May 21
3
[PATCH v5] vga_switcheroo: Add helper for deferred probing
...s (vesafb, efifb etc) */
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c
index b55aa74..a455dc7 100644
--- a/drivers/gpu/drm/radeon/radeon_drv.c
+++ b/drivers/gpu/drm/radeon/radeon_drv.c
@@ -34,11 +34,9 @@
#include "radeon_drv.h"
#include <drm/drm_pciids.h>
-#include <linux/apple-gmux.h>
#include <linux/console.h>
#include <linux/module.h>
#include <linux/pm_runtime.h>
-#include <linux/vgaarb.h>
#include <linux/vga_switcheroo.h>
#include <drm/drm_gem.h>
@@ -340,13 +338,7 @@ static int radeon_pci_p...
2016 May 23
0
[Intel-gfx] [PATCH v5] vga_switcheroo: Add helper for deferred probing
...a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c
> index b55aa74..a455dc7 100644
> --- a/drivers/gpu/drm/radeon/radeon_drv.c
> +++ b/drivers/gpu/drm/radeon/radeon_drv.c
> @@ -34,11 +34,9 @@
> #include "radeon_drv.h"
>
> #include <drm/drm_pciids.h>
> -#include <linux/apple-gmux.h>
> #include <linux/console.h>
> #include <linux/module.h>
> #include <linux/pm_runtime.h>
> -#include <linux/vgaarb.h>
> #include <linux/vga_switcheroo.h>
> #include <drm/drm_gem.h>
>
>...
2016 May 19
2
[PATCH v4] vga_switcheroo: Add helper for deferred probing
...s (vesafb, efifb etc) */
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c
index b55aa74..a455dc7 100644
--- a/drivers/gpu/drm/radeon/radeon_drv.c
+++ b/drivers/gpu/drm/radeon/radeon_drv.c
@@ -34,11 +34,9 @@
#include "radeon_drv.h"
#include <drm/drm_pciids.h>
-#include <linux/apple-gmux.h>
#include <linux/console.h>
#include <linux/module.h>
#include <linux/pm_runtime.h>
-#include <linux/vgaarb.h>
#include <linux/vga_switcheroo.h>
#include <drm/drm_gem.h>
@@ -340,13 +338,7 @@ static int radeon_pci_p...
2016 May 31
2
[PATCH v6 1/2] vga_switcheroo: Add helper for deferred probing
...s (vesafb, efifb etc) */
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c
index b55aa74..a455dc7 100644
--- a/drivers/gpu/drm/radeon/radeon_drv.c
+++ b/drivers/gpu/drm/radeon/radeon_drv.c
@@ -34,11 +34,9 @@
#include "radeon_drv.h"
#include <drm/drm_pciids.h>
-#include <linux/apple-gmux.h>
#include <linux/console.h>
#include <linux/module.h>
#include <linux/pm_runtime.h>
-#include <linux/vgaarb.h>
#include <linux/vga_switcheroo.h>
#include <drm/drm_gem.h>
@@ -340,13 +338,7 @@ static int radeon_pci_p...
2007 Jul 30
0
Nouveau and Debian Unstable
...`/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-486'
CC [M] /home/michael/drm/linux-core/drm_auth.o
CC [M] /home/michael/drm/linux-core/drm_bufs.o
CC [M] /home/michael/drm/linux-core/drm_con...
2009 Jan 10
3
[HEADS UP] drm merged to -STABLE
I just merged drm (Direct Rendering) from HEAD.
- Support for latest Intel chips
- Support and fixes for many AMD/ATI chips r500 and below
- Support AMD/ATI IGP based chips (rs690/rs485)
- Lots of code cleanups
- Lots of other fixes and changes since the existing drm
is 2+ years old
If you are experiencing a "garbled" screen with