kern/121808: [patch] teach drm about i915 GME pciid 0x2a12

Volker Werth volker at vwsoft.com
Mon Mar 17 22:00:03 UTC 2008


>Number:         121808
>Category:       kern
>Synopsis:       [patch] teach drm about i915 GME pciid 0x2a12
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Mar 17 22:00:02 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Volker Werth
>Release:        7.0-R
>Organization:
>Environment:
not handy
>Description:
teach src/sys/dev/drm about Intel i965 GME device id
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

--- drm_pciids.h.orig	2008-03-17 15:59:18.000000000 +0100
+++ drm_pciids.h.new	2008-03-17 16:00:45.000000000 +0100
@@ -293,6 +293,7 @@
 	{0x8086, 0x2982, 0, "Intel i965G"}, \
 	{0x8086, 0x2992, 0, "Intel i965Q"}, \
 	{0x8086, 0x29A2, 0, "Intel i965G"}, \
+	{0x8086, 0x2A12, 0, "Intel i965GME"}, \
 	{0, 0, 0, NULL}
 
 #define imagine_PCI_IDS \

--- i915_dma.c.orig	2008-03-17 16:02:30.000000000 +0100
+++ i915_dma.c.new	2008-03-17 16:02:48.000000000 +0100
@@ -37,7 +37,8 @@
 #define IS_I965G(dev)  (dev->pci_device == 0x2972 || \
 			dev->pci_device == 0x2982 || \
 			dev->pci_device == 0x2992 || \
-			dev->pci_device == 0x29A2)
+			dev->pci_device == 0x29A2 || \
+			dev->pci_device == 0x2A12)
 
 
 /* Really want an OS-independent resettable timer.  Would like to have


>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-bugs mailing list