• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 crocus_chip_ids[] = {
18 #define CHIPSET(chip, family, family_str, name) chip,
19 #include "pci_ids/crocus_pci_ids.h"
20 #undef CHIPSET
21 };
22 
23 static const int r300_chip_ids[] = {
24 #define CHIPSET(chip, name, family) chip,
25 #include "pci_ids/r300_pci_ids.h"
26 #undef CHIPSET
27 };
28 
29 static const int r600_chip_ids[] = {
30 #define CHIPSET(chip, name, family) chip,
31 #include "pci_ids/r600_pci_ids.h"
32 #undef CHIPSET
33 };
34 
35 static const int virtio_gpu_chip_ids[] = {
36 #define CHIPSET(chip, name, family) chip,
37 #include "pci_ids/virtio_gpu_pci_ids.h"
38 #undef CHIPSET
39 };
40 
41 static const int vmwgfx_chip_ids[] = {
42 #define CHIPSET(chip, name, family) chip,
43 #include "pci_ids/vmwgfx_pci_ids.h"
44 #undef CHIPSET
45 };
46 
47 bool is_kernel_i915(int fd);
48 
49 static const struct {
50    int vendor_id;
51    const char *driver;
52    const int *chip_ids;
53    int num_chips_ids;
54    bool (*predicate)(int fd);
55 } driver_map[] = {
56    { 0x8086, "i915", i915_chip_ids, ARRAY_SIZE(i915_chip_ids) },
57    { 0x8086, "crocus", crocus_chip_ids, ARRAY_SIZE(crocus_chip_ids) },
58    { 0x8086, "iris", NULL, -1, is_kernel_i915 },
59    { 0x1002, "r300", r300_chip_ids, ARRAY_SIZE(r300_chip_ids) },
60    { 0x1002, "r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) },
61    { 0x1002, "radeonsi", NULL, -1 },
62    { 0x10de, "nouveau", NULL, -1, },
63    { 0x1af4, "virtio_gpu", virtio_gpu_chip_ids, ARRAY_SIZE(virtio_gpu_chip_ids) },
64    { 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) },
65 };
66 
67 #endif /* _PCI_ID_DRIVER_MAP_H_ */
68