From owner-freebsd-bugs@FreeBSD.ORG Wed Mar 19 00:40:03 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 5522D1065673 for ; Wed, 19 Mar 2008 00:40:03 +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 5013A8FC27 for ; Wed, 19 Mar 2008 00:40:03 +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 m2J0e37T032234 for ; Wed, 19 Mar 2008 00:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m2J0e3pW032230; Wed, 19 Mar 2008 00:40:03 GMT (envelope-from gnats) Date: Wed, 19 Mar 2008 00:40:03 GMT Message-Id: <200803190040.m2J0e3pW032230@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Volker Cc: Subject: Re: i386/121550: Can't config graphics for ATI Radeon Xpress 200M X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Volker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2008 00:40:03 -0000 The following reply was made to PR i386/121550; it has been noted by GNATS. From: Volker To: bug-followup@FreeBSD.org, mad-scientist@safe-mail.net, admin@lissyara.su Cc: Subject: Re: i386/121550: Can't config graphics for ATI Radeon Xpress 200M Date: Wed, 19 Mar 2008 01:37:48 +0100 This is a multi-part message in MIME format. --------------010801000801030106080703 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Harry, Alex, please try the following patch against /usr/src/sys/dev/drm/drm_pciids.h and recompile + reinstall kernel. After rebooting and starting X, the device might have the chance to get recognized. I'm pretty quite unsure about the chipset used so this patch has been created by guessing wildly. This patch is a modified patch taken from the NetBSD project. Please test and provide feedback. Thanks! --------------010801000801030106080703 Content-Type: text/x-patch; name="drm_pciids.h.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="drm_pciids.h.diff" --- sys/dev/drm/drm_pciids.h.orig 2008-03-19 00:59:01.000000000 +0100 +++ sys/dev/drm/drm_pciids.h 2008-03-19 01:22:35.000000000 +0100 @@ -105,12 +105,16 @@ {0x1002, 0x5653, CHIP_RV410|CHIP_IS_MOBILITY|CHIP_NEW_MEMMAP, "ATI Radeon Mobility X700 M26"}, \ {0x1002, 0x5834, CHIP_RS300|CHIP_IS_IGP, "ATI Radeon RS300 9100 IGP"}, \ {0x1002, 0x5835, CHIP_RS300|CHIP_IS_IGP|CHIP_IS_MOBILITY, "ATI Radeon RS300 Mobility IGP"}, \ + {0x1002, 0x5954, CHIP_RS400|CHIP_IS_IGP|CHIP_IS_MOBILITY, "ATI Radeon Xpress 200M"}, \ + {0x1002, 0x5955, CHIP_RS400|CHIP_IS_IGP|CHIP_IS_MOBILITY, "ATI Radeon Xpress 200M"}, \ {0x1002, 0x5960, CHIP_RV280, "ATI Radeon RV280 9250"}, \ {0x1002, 0x5961, CHIP_RV280, "ATI Radeon RV280 9200"}, \ {0x1002, 0x5962, CHIP_RV280, "ATI Radeon RV280 9200"}, \ {0x1002, 0x5964, CHIP_RV280, "ATI Radeon RV280 9200 SE"}, \ {0x1002, 0x5965, CHIP_RV280, "ATI FireMV 2200 PCI"}, \ {0x1002, 0x5969, CHIP_RV100, "ATI ES1000 RN50"}, \ + {0x1002, 0x5974, CHIP_RS400|CHIP_IS_IGP|CHIP_IS_MOBILITY, "ATI Radeon Xpress 200"}, \ + {0x1002, 0x5975, CHIP_RS400|CHIP_IS_IGP|CHIP_IS_MOBILITY, "ATI Radeon Xpress 200"}, \ {0x1002, 0x5b60, CHIP_RV380|CHIP_NEW_MEMMAP, "ATI Radeon RV370 X300 SE"}, \ {0x1002, 0x5b62, CHIP_RV380|CHIP_NEW_MEMMAP, "ATI Radeon RV370 X600 Pro"}, \ {0x1002, 0x5b63, CHIP_RV380|CHIP_NEW_MEMMAP, "ATI Radeon RV370 X550"}, \ --------------010801000801030106080703--