Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Mar 2008 21:51:09 GMT
From:      Volker Werth <volker@vwsoft.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   kern/121808: [patch] teach drm about i915 GME pciid 0x2a12
Message-ID:  <200803172151.m2HLp9Y8024553@www.freebsd.org>
Resent-Message-ID: <200803172200.m2HM02ZT014044@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200803172151.m2HLp9Y8024553>