diff options
author | Chia-I Wu <olvaffe@gmail.com> | 2011-08-24 14:05:29 +0800 |
---|---|---|
committer | Chia-I Wu <olvaffe@gmail.com> | 2011-08-24 14:52:40 +0800 |
commit | 64591d8f71b902b32d07122e91a1e1a3129dab61 (patch) | |
tree | be1fca3630d494f626eb0c70d030f300c656f445 /pci_ids | |
parent | 74a2f65af1c31d9239988ecdeca8dfbda46dc2e9 (diff) | |
download | external_drm_gralloc-64591d8f71b902b32d07122e91a1e1a3129dab61.zip external_drm_gralloc-64591d8f71b902b32d07122e91a1e1a3129dab61.tar.gz external_drm_gralloc-64591d8f71b902b32d07122e91a1e1a3129dab61.tar.bz2 |
update pci_ids
Diffstat (limited to 'pci_ids')
-rw-r--r-- | pci_ids/pci_id_driver_map.h | 7 | ||||
-rw-r--r-- | pci_ids/r600_pci_ids.h | 2 | ||||
-rw-r--r-- | pci_ids/vmwgfx_pci_ids.h | 1 |
3 files changed, 10 insertions, 0 deletions
diff --git a/pci_ids/pci_id_driver_map.h b/pci_ids/pci_id_driver_map.h index 9112efd..c3eec14 100644 --- a/pci_ids/pci_id_driver_map.h +++ b/pci_ids/pci_id_driver_map.h @@ -53,6 +53,12 @@ static const int r600_chip_ids[] = { #undef CHIPSET }; +static const int vmwgfx_chip_ids[] = { +#define CHIPSET(chip, name, family) chip, +#include "pci_ids/vmwgfx_pci_ids.h" +#undef CHIPSET +}; + static const struct { int vendor_id; const char *driver; @@ -71,6 +77,7 @@ static const struct { { 0x1002, "r300", r300_chip_ids, ARRAY_SIZE(r300_chip_ids) }, { 0x1002, "r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) }, { 0x10de, "nouveau", NULL, -1 }, + { 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) }, { 0x0000, NULL, NULL, 0 }, }; diff --git a/pci_ids/r600_pci_ids.h b/pci_ids/r600_pci_ids.h index 3340458..725270a 100644 --- a/pci_ids/r600_pci_ids.h +++ b/pci_ids/r600_pci_ids.h @@ -249,6 +249,7 @@ CHIPSET(0x6749, TURKS_6749, TURKS) CHIPSET(0x6750, TURKS_6750, TURKS) CHIPSET(0x6758, TURKS_6758, TURKS) CHIPSET(0x6759, TURKS_6759, TURKS) +CHIPSET(0x675F, TURKS_675F, TURKS) CHIPSET(0x6760, CAICOS_6760, CAICOS) CHIPSET(0x6761, CAICOS_6761, CAICOS) @@ -260,4 +261,5 @@ CHIPSET(0x6766, CAICOS_6766, CAICOS) CHIPSET(0x6767, CAICOS_6767, CAICOS) CHIPSET(0x6768, CAICOS_6768, CAICOS) CHIPSET(0x6770, CAICOS_6770, CAICOS) +CHIPSET(0x6778, CAICOS_6778, CAICOS) CHIPSET(0x6779, CAICOS_6779, CAICOS) diff --git a/pci_ids/vmwgfx_pci_ids.h b/pci_ids/vmwgfx_pci_ids.h new file mode 100644 index 0000000..124d75b --- /dev/null +++ b/pci_ids/vmwgfx_pci_ids.h @@ -0,0 +1 @@ +CHIPSET(0x0405, SVGAII, SVGAII) |