1 #ifndef _RADEON_CHIPSET_H
2 #define _RADEON_CHIPSET_H
3 /* Including xf86PciInfo.h introduces a bunch of errors...
6 /* General chip classes:
7 * r100 includes R100, RV100, RV200, RS100, RS200, RS250.
8 * r200 includes R200, RV250, RV280, RS300.
9 * r300 includes R300, RV350, RV370.
14 #define RADEON_CLASSIC 1
15 #define CHIPSET(id, name, family) PCI_CHIP_##name = id,
16 #include "pci_ids/radeon_pci_ids.h"
17 #include "pci_ids/r200_pci_ids.h"
18 #include "pci_ids/r300_pci_ids.h"
19 #include "pci_ids/r600_pci_ids.h"
75 /* General classes of Radeons, as described above the device ID section */
76 #define RADEON_CLASS_R100 (0 << 0)
77 #define RADEON_CLASS_R200 (1 << 0)
78 #define RADEON_CLASS_R300 (2 << 0)
79 #define RADEON_CLASS_R600 (3 << 0)
80 #define RADEON_CLASS_MASK (3 << 0)
82 #define RADEON_CHIPSET_TCL (1 << 2) /* tcl support - any radeon */
83 #define RADEON_CHIPSET_BROKEN_STENCIL (1 << 3) /* r100 stencil bug */
84 #define R200_CHIPSET_YCBCR_BROKEN (1 << 4) /* r200 ycbcr bug */
86 #endif /* _RADEON_CHIPSET_H */