xref: /openbsd-src/sys/dev/pci/drm/include/linux/kconfig.h (revision 4b70baf6e17fc8b27fc1f7fa7929335753fa94c3)
1 /* Public domain. */
2 
3 #ifndef _LINUX_KCONFIG_H
4 #define _LINUX_KCONFIG_H
5 
6 #include "agp.h"
7 
8 #include <sys/endian.h>
9 
10 #define IS_ENABLED(x) x - 0
11 #define IS_BUILTIN(x) 1
12 
13 #define CONFIG_DRM_FBDEV_OVERALLOC		0
14 #define CONFIG_DRM_I915_DEBUG			0
15 #define CONFIG_DRM_I915_DEBUG_GEM		0
16 #define CONFIG_DRM_I915_FBDEV			1
17 #define CONFIG_DRM_I915_ALPHA_SUPPORT		0
18 #define CONFIG_DRM_I915_CAPTURE_ERROR		1
19 #define CONFIG_DRM_I915_GVT			0
20 #define CONFIG_DRM_I915_SW_FENCE_CHECK_DAG	0
21 #define CONFIG_PM				0
22 #define CONFIG_DRM_AMD_DC			1
23 #define CONFIG_DRM_AMD_DC_DCN1_0		1
24 #define CONFIG_DRM_AMDGPU_CIK			1
25 #define CONFIG_DRM_AMDGPU_SI			1
26 
27 #if BYTE_ORDER == BIG_ENDIAN
28 #define __BIG_ENDIAN
29 #else
30 #define __LITTLE_ENDIAN
31 #endif
32 
33 #if NAGP > 0
34 #define CONFIG_AGP				1
35 #endif
36 
37 #endif
38