diff -urNp x-ref/drivers/video/radeon.h x/drivers/video/radeon.h --- x-ref/drivers/video/radeon.h 2002-11-29 02:23:09.000000000 +0100 +++ x/drivers/video/radeon.h 2003-03-01 05:21:58.000000000 +0100 @@ -13,6 +13,7 @@ #define PCI_DEVICE_ID_RADEON_LY 0x4c59 #define PCI_DEVICE_ID_RADEON_LZ 0x4c5a #define PCI_DEVICE_ID_RADEON_PM 0x4c52 +#define PCI_DEVICE_ID_RADEON_LF 0x4c66 #define PCI_DEVICE_ID_RADEON_QL 0x514c #define PCI_DEVICE_ID_RADEON_QW 0x5157 diff -urNp x-ref/drivers/video/radeonfb.c x/drivers/video/radeonfb.c --- x-ref/drivers/video/radeonfb.c 2002-11-29 02:23:09.000000000 +0100 +++ x/drivers/video/radeonfb.c 2003-03-01 05:27:46.000000000 +0100 @@ -19,6 +19,7 @@ * 2001-11-18 DFP fixes, Kevin Hendricks, 0.1.3 * 2001-11-29 more cmap, backlight fixes, Benjamin Herrenschmidt * 2002-01-18 DFP panel detection via BIOS, Michael Clark, 0.1.4 + * 2003-01-28 added Radeon Mobility 9000, Alvaro Lopez Ortega * * Special thanks to ATI DevRel team for their hardware donations. * @@ -101,7 +102,8 @@ enum radeon_chips { RADEON_LW, /* Radeon Mobility M7 */ RADEON_LY, /* Radeon Mobility M6 */ RADEON_LZ, /* Radeon Mobility M6 */ - RADEON_PM /* Radeon Mobility P/M */ + RADEON_LF, /* Radeon Mobility 9000 */ + RADEON_PM /* Radeon Mobility P/M */ }; @@ -128,6 +130,7 @@ static struct pci_device_id radeonfb_pci { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LW, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LW}, { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LY, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LY}, { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LZ, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LZ}, + { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LF}, { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_PM, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_PM}, { 0, } }; @@ -858,9 +861,14 @@ static int radeonfb_pci_register (struct strcpy(rinfo->name, "Radeon M6 LZ "); rinfo->hasCRTC2 = 1; break; - case PCI_DEVICE_ID_RADEON_PM: + case PCI_DEVICE_ID_RADEON_LF: + strcpy(rinfo->name, "Radeon R250 LF"); + rinfo->hasCRTC2 = 1; + break; + case PCI_DEVICE_ID_RADEON_PM: strcpy(rinfo->name, "Radeon P/M "); rinfo->hasCRTC2 = 1; + break; default: return -ENODEV; }