63fb1ae01b65261ddc87ae20077681da1d2adba5
[mesa.git] / src / loader / pci_id_driver_map.h
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 ARRAY_SIZE
8 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
9 #endif
10
11 #ifndef __IS_LOADER
12 # error "Only include from loader.c"
13 #endif
14
15 static const int i915_chip_ids[] = {
16 #define CHIPSET(chip, desc, name) chip,
17 #include "pci_ids/i915_pci_ids.h"
18 #undef CHIPSET
19 };
20
21 static const int i965_chip_ids[] = {
22 #define CHIPSET(chip, family, name) chip,
23 #define IRIS 0 /* all i965 devices */
24 #include "pci_ids/i965_pci_ids.h"
25 #undef IRIS
26 #undef CHIPSET
27 };
28
29 static const int iris_chip_ids_1[] = {
30 #define CHIPSET(chip, family, name) chip,
31 #define IRIS 1 /* iris devices to try before i965 */
32 #include "pci_ids/i965_pci_ids.h"
33 #undef IRIS
34 #undef CHIPSET
35 };
36
37 static const int iris_chip_ids_2[] = {
38 #define CHIPSET(chip, family, name) chip,
39 #define IRIS 2 /* iris devices to try after i965 */
40 #include "pci_ids/i965_pci_ids.h"
41 #undef IRIS
42 #undef CHIPSET
43 };
44
45 static const int r100_chip_ids[] = {
46 #define CHIPSET(chip, name, family) chip,
47 #include "pci_ids/radeon_pci_ids.h"
48 #undef CHIPSET
49 };
50
51 static const int r200_chip_ids[] = {
52 #define CHIPSET(chip, name, family) chip,
53 #include "pci_ids/r200_pci_ids.h"
54 #undef CHIPSET
55 };
56
57 static const int r300_chip_ids[] = {
58 #define CHIPSET(chip, name, family) chip,
59 #include "pci_ids/r300_pci_ids.h"
60 #undef CHIPSET
61 };
62
63 static const int r600_chip_ids[] = {
64 #define CHIPSET(chip, name, family) chip,
65 #include "pci_ids/r600_pci_ids.h"
66 #undef CHIPSET
67 };
68
69 static const int radeonsi_chip_ids[] = {
70 #define CHIPSET(chip, family) chip,
71 #include "pci_ids/radeonsi_pci_ids.h"
72 #undef CHIPSET
73 };
74
75 static const int virtio_gpu_chip_ids[] = {
76 #define CHIPSET(chip, name, family) chip,
77 #include "pci_ids/virtio_gpu_pci_ids.h"
78 #undef CHIPSET
79 };
80
81 static const int vmwgfx_chip_ids[] = {
82 #define CHIPSET(chip, name, family) chip,
83 #include "pci_ids/vmwgfx_pci_ids.h"
84 #undef CHIPSET
85 };
86
87 bool is_nouveau_vieux(int fd);
88
89 static const struct {
90 int vendor_id;
91 const char *driver;
92 const int *chip_ids;
93 int num_chips_ids;
94 bool (*predicate)(int fd);
95 } driver_map[] = {
96 { 0x8086, "i915", i915_chip_ids, ARRAY_SIZE(i915_chip_ids) },
97 { 0x8086, "iris", iris_chip_ids_1, ARRAY_SIZE(iris_chip_ids_1) },
98 { 0x8086, "i965", i965_chip_ids, ARRAY_SIZE(i965_chip_ids) },
99 { 0x8086, "iris", iris_chip_ids_2, ARRAY_SIZE(iris_chip_ids_2) },
100 { 0x1002, "radeon", r100_chip_ids, ARRAY_SIZE(r100_chip_ids) },
101 { 0x1002, "r200", r200_chip_ids, ARRAY_SIZE(r200_chip_ids) },
102 { 0x1002, "r300", r300_chip_ids, ARRAY_SIZE(r300_chip_ids) },
103 { 0x1002, "r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) },
104 { 0x1002, "radeonsi", radeonsi_chip_ids, ARRAY_SIZE(radeonsi_chip_ids) },
105 { 0x10de, "nouveau_vieux", NULL, -1, is_nouveau_vieux },
106 { 0x10de, "nouveau", NULL, -1, },
107 { 0x1af4, "virtio_gpu", virtio_gpu_chip_ids, ARRAY_SIZE(virtio_gpu_chip_ids) },
108 { 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) },
109 { 0x0000, NULL, NULL, 0 },
110 };
111
112 #endif /* _PCI_ID_DRIVER_MAP_H_ */