Skip to content
Snippets Groups Projects
Commit e5c6f9f8 authored by Anatolij Gustschin's avatar Anatolij Gustschin Committed by Wolfgang Denk
Browse files

Add Radeon Mobility 9200 pci device id to the radeon driver


This patch extends PCI device id table of the
radeon driver so that the driver will also support
Radeon Mobility 9200 (M9+) based boards.

Signed-off-by: default avatarAnatolij Gustschin <agust@denx.de>
parent 1b8607e1
No related branches found
No related tags found
No related merge requests found
...@@ -86,6 +86,7 @@ ...@@ -86,6 +86,7 @@
#define PCI_CHIP_RV280_5961 0x5961 #define PCI_CHIP_RV280_5961 0x5961
#define PCI_CHIP_RV280_5962 0x5962 #define PCI_CHIP_RV280_5962 0x5962
#define PCI_CHIP_RV280_5964 0x5964 #define PCI_CHIP_RV280_5964 0x5964
#define PCI_CHIP_RV280_5C63 0x5C63
#define PCI_CHIP_RV370_5B60 0x5B60 #define PCI_CHIP_RV370_5B60 0x5B60
#define PCI_CHIP_RV380_5657 0x5657 #define PCI_CHIP_RV380_5657 0x5657
#define PCI_CHIP_R420_554d 0x554d #define PCI_CHIP_R420_554d 0x554d
...@@ -95,6 +96,7 @@ static struct pci_device_id ati_radeon_pci_ids[] = { ...@@ -95,6 +96,7 @@ static struct pci_device_id ati_radeon_pci_ids[] = {
{PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5961}, {PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5961},
{PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5962}, {PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5962},
{PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5964}, {PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5964},
{PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5C63},
{PCI_VENDOR_ID_ATI, PCI_CHIP_RV370_5B60}, {PCI_VENDOR_ID_ATI, PCI_CHIP_RV370_5B60},
{PCI_VENDOR_ID_ATI, PCI_CHIP_RV380_5657}, {PCI_VENDOR_ID_ATI, PCI_CHIP_RV380_5657},
{PCI_VENDOR_ID_ATI, PCI_CHIP_R420_554d}, {PCI_VENDOR_ID_ATI, PCI_CHIP_R420_554d},
...@@ -106,6 +108,7 @@ static u16 ati_radeon_id_family_table[][2] = { ...@@ -106,6 +108,7 @@ static u16 ati_radeon_id_family_table[][2] = {
{PCI_CHIP_RV280_5961, CHIP_FAMILY_RV280}, {PCI_CHIP_RV280_5961, CHIP_FAMILY_RV280},
{PCI_CHIP_RV280_5962, CHIP_FAMILY_RV280}, {PCI_CHIP_RV280_5962, CHIP_FAMILY_RV280},
{PCI_CHIP_RV280_5964, CHIP_FAMILY_RV280}, {PCI_CHIP_RV280_5964, CHIP_FAMILY_RV280},
{PCI_CHIP_RV280_5C63, CHIP_FAMILY_RV280},
{PCI_CHIP_RV370_5B60, CHIP_FAMILY_RV380}, {PCI_CHIP_RV370_5B60, CHIP_FAMILY_RV380},
{PCI_CHIP_RV380_5657, CHIP_FAMILY_RV380}, {PCI_CHIP_RV380_5657, CHIP_FAMILY_RV380},
{PCI_CHIP_R420_554d, CHIP_FAMILY_R420}, {PCI_CHIP_R420_554d, CHIP_FAMILY_R420},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment