From owner-freebsd-bugs@FreeBSD.ORG Mon Mar 17 22:00:02 2008 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D59CE106566C for ; Mon, 17 Mar 2008 22:00:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AC4C08FC1C for ; Mon, 17 Mar 2008 22:00:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m2HM02Zt014045 for ; Mon, 17 Mar 2008 22:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m2HM02ZT014044; Mon, 17 Mar 2008 22:00:02 GMT (envelope-from gnats) Resent-Date: Mon, 17 Mar 2008 22:00:02 GMT Resent-Message-Id: <200803172200.m2HM02ZT014044@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Volker Werth Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05D691065672 for ; Mon, 17 Mar 2008 21:54:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id E2C458FC28 for ; Mon, 17 Mar 2008 21:54:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m2HLp9jE024564 for ; Mon, 17 Mar 2008 21:51:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.2/8.14.1/Submit) id m2HLp9Y8024553; Mon, 17 Mar 2008 21:51:09 GMT (envelope-from nobody) Message-Id: <200803172151.m2HLp9Y8024553@www.freebsd.org> Date: Mon, 17 Mar 2008 21:51:09 GMT From: Volker Werth To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/121808: [patch] teach drm about i915 GME pciid 0x2a12 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Mar 2008 22:00:03 -0000 >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: