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