xref: /aosp_15_r20/external/mesa3d/src/loader/pci_id_driver_map.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
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 iris_predicate(int fd, const char *driver);
48 bool nouveau_zink_predicate(int fd, const char *driver);
49 
50 static const struct {
51    int vendor_id;
52    const char *driver;
53    const int *chip_ids;
54    int num_chips_ids;
55    bool (*predicate)(int fd, const char *driver);
56 } driver_map[] = {
57    { 0x8086, "i915", i915_chip_ids, ARRAY_SIZE(i915_chip_ids) },
58    { 0x8086, "crocus", crocus_chip_ids, ARRAY_SIZE(crocus_chip_ids) },
59    { 0x8086, "iris", NULL, -1, iris_predicate },
60    { 0x1002, "r300", r300_chip_ids, ARRAY_SIZE(r300_chip_ids) },
61    { 0x1002, "r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) },
62    { 0x1002, "radeonsi", NULL, -1 },
63    { 0x10de, "nouveau", NULL, -1, nouveau_zink_predicate },
64    { 0x10de, "zink", NULL, -1, nouveau_zink_predicate },
65    { 0x1af4, "virtio_gpu", virtio_gpu_chip_ids, ARRAY_SIZE(virtio_gpu_chip_ids) },
66    { 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) },
67 };
68 
69 #endif /* _PCI_ID_DRIVER_MAP_H_ */
70