pci_ids: add vmwgfx pci id list
authorChia-I Wu <olv@lunarg.com>
Wed, 24 Aug 2011 05:48:25 +0000 (13:48 +0800)
committerChia-I Wu <olvaffe@gmail.com>
Sat, 27 Aug 2011 09:28:30 +0000 (17:28 +0800)
There is only one chipset

 15ad:0405 VMware SVGA II Adapter

include/pci_ids/pci_id_driver_map.h
include/pci_ids/vmwgfx_pci_ids.h [new file with mode: 0644]

index 54b56d5f991d28fe0edfe3ffa57312aa687b3d67..232359f6e0d03688c98531b88ae879d3c9836edb 100644 (file)
@@ -45,6 +45,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;
@@ -60,6 +66,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/include/pci_ids/vmwgfx_pci_ids.h b/include/pci_ids/vmwgfx_pci_ids.h
new file mode 100644 (file)
index 0000000..124d75b
--- /dev/null
@@ -0,0 +1 @@
+CHIPSET(0x0405, SVGAII, SVGAII)