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 #if 0 25 #define CONFIG_DRM_AMDGPU_CIK 1 26 #define CONFIG_DRM_AMDGPU_SI 1 27 #endif 28 29 #if BYTE_ORDER == BIG_ENDIAN 30 #define __BIG_ENDIAN 31 #else 32 #define __LITTLE_ENDIAN 33 #endif 34 35 #if NAGP > 0 36 #define CONFIG_AGP 1 37 #endif 38 39 #endif 40