summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/include/linux/kconfig.h
blob: 10f0b7582d2c7a6e710a3a6cd136de1906ee1e30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* Public domain. */

#ifndef _LINUX_KCONFIG_H
#define _LINUX_KCONFIG_H

#include "agp.h"

#include <sys/endian.h>

#define IS_ENABLED(x) x - 0
#define IS_BUILTIN(x) 1

#define CONFIG_DRM_FBDEV_OVERALLOC		0
#define CONFIG_DRM_I915_DEBUG			0
#define CONFIG_DRM_I915_DEBUG_GEM		0
#define CONFIG_DRM_I915_FBDEV			1
#define CONFIG_DRM_I915_ALPHA_SUPPORT		0
#define CONFIG_DRM_I915_CAPTURE_ERROR		1
#define CONFIG_DRM_I915_GVT			0
#define CONFIG_DRM_I915_SW_FENCE_CHECK_DAG	0
#define CONFIG_PM				0
#define CONFIG_DRM_AMD_DC			1
#define CONFIG_DRM_AMD_DC_DCN1_0		1
#if 0
#define CONFIG_DRM_AMDGPU_CIK			1
#define CONFIG_DRM_AMDGPU_SI			1
#endif

#if BYTE_ORDER == BIG_ENDIAN
#define __BIG_ENDIAN
#else
#define __LITTLE_ENDIAN
#endif

#if NAGP > 0
#define CONFIG_AGP				1
#endif

#endif