1 #ifndef _PCI_ID_DRIVER_MAP_H_ 2 #define _PCI_ID_DRIVER_MAP_H_ 3 4 #include <stdbool.h> 5 #include <stddef.h> 6 7 #ifndef __IS_LOADER 8 # error "Only include from loader.c" 9 #endif 10 11 static const int i915_chip_ids[] = { 12 #define CHIPSET(chip, desc, name) chip, 13 #include "pci_ids/i915_pci_ids.h" 14 #undef CHIPSET 15 }; 16 17 static const int i965_chip_ids[] = { 18 #define CHIPSET(chip, family, family_str, name) chip, 19 #include "pci_ids/i965_pci_ids.h" 20 #undef CHIPSET 21 }; 22 23 static const int r100_chip_ids[] = { 24 #define CHIPSET(chip, name, family) chip, 25 #include "pci_ids/radeon_pci_ids.h" 26 #undef CHIPSET 27 }; 28 29 static const int r200_chip_ids[] = { 30 #define CHIPSET(chip, name, family) chip, 31 #include "pci_ids/r200_pci_ids.h" 32 #undef CHIPSET 33 }; 34 35 static const int r300_chip_ids[] = { 36 #define CHIPSET(chip, name, family) chip, 37 #include "pci_ids/r300_pci_ids.h" 38 #undef CHIPSET 39 }; 40 41 static const int r600_chip_ids[] = { 42 #define CHIPSET(chip, name, family) chip, 43 #include "pci_ids/r600_pci_ids.h" 44 #undef CHIPSET 45 }; 46 47 static const int virtio_gpu_chip_ids[] = { 48 #define CHIPSET(chip, name, family) chip, 49 #include "pci_ids/virtio_gpu_pci_ids.h" 50 #undef CHIPSET 51 }; 52 53 static const int vmwgfx_chip_ids[] = { 54 #define CHIPSET(chip, name, family) chip, 55 #include "pci_ids/vmwgfx_pci_ids.h" 56 #undef CHIPSET 57 }; 58 59 bool is_nouveau_vieux(int fd); 60 bool is_kernel_i915(int fd); 61 62 static const struct { 63 int vendor_id; 64 const char *driver; 65 const int *chip_ids; 66 int num_chips_ids; 67 bool (*predicate)(int fd); 68 } driver_map[] = { 69 { 0x8086, "i915", i915_chip_ids, ARRAY_SIZE(i915_chip_ids) }, 70 { 0x8086, "i965", i965_chip_ids, ARRAY_SIZE(i965_chip_ids) }, 71 { 0x8086, "iris", NULL, -1, is_kernel_i915 }, 72 { 0x1002, "radeon", r100_chip_ids, ARRAY_SIZE(r100_chip_ids) }, 73 { 0x1002, "r200", r200_chip_ids, ARRAY_SIZE(r200_chip_ids) }, 74 { 0x1002, "r300", r300_chip_ids, ARRAY_SIZE(r300_chip_ids) }, 75 { 0x1002, "r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) }, 76 { 0x1002, "radeonsi", NULL, -1 }, 77 { 0x10de, "nouveau_vieux", NULL, -1, is_nouveau_vieux }, 78 { 0x10de, "nouveau", NULL, -1, }, 79 { 0x1af4, "virtio_gpu", virtio_gpu_chip_ids, ARRAY_SIZE(virtio_gpu_chip_ids) }, 80 { 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) }, 81 }; 82 83 #endif /* _PCI_ID_DRIVER_MAP_H_ */ 84