Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jan 2003 15:54:07 -0500 (EST)
From:      Colin Perkins <csp@csperkins.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   kern/47271: Missing PCI ID for Radeon Mobility graphics adaptor
Message-ID:  <200301202054.h0KKs7ZL004254@purple.nge.isi.edu>

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

>Number:         47271
>Category:       kern
>Synopsis:       Missing PCI ID for Radeon Mobility graphics adaptor
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jan 20 13:00:00 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     Colin Perkins
>Release:        FreeBSD 4.7-STABLE i386
>Organization:
USC/ISI
>Environment:
System: FreeBSD purple.nge.isi.edu 4.7-STABLE FreeBSD 4.7-STABLE #1: Mon Jan 13 22:52:18 EST 2003 root@purple.nge.isi.edu:/usr/obj/usr/src/sys/PURPLE i386
on an IBM ThinkPad X22

>Description:

pci_vga_match() is missing the PCI device ID for Radeon Mobility LY cards,
and so doesn't correctly report their presence in the boot log. A cosmetic
issue only, the enclosed patch doesn't affect functionality.

>How-To-Repeat:

Boot system. Dmesg shows
	pci1: <ATI model 4c59 graphics accelerator> at 0.0 irq 11
but it would be nice if it showed the card name. 

>Fix:

In /usr/src/sys/pci apply the following:

*** pcisupport.c.orig   Mon Jan 13 22:39:37 2003
--- pcisupport.c        Mon Jan 13 22:44:43 2003
***************
*** 1537,1542 ****
--- 1537,1544 ----
                        chip = "Mobility-1"; break;
                case 0x4c52:
                        chip = "RageMobility-P/M"; break;
+               case 0x4c59:
+                       chip = "Radeon Mobility LY"; break;
                case 0x475a:
                        chip = "Mach64-GZ"; break;
                case 0x5245:


If it's worth updating this table, XFree86 has a more complete list of PCI
IDs in xc/programs/Xserver/hw/xfree86/commonxf86.PciInfo.h. 
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




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