#
# SWICH VIDEO CONFIGURATION
#

config SWICH_VMEM_SIZE
        int "SWICH Video Memory Size in MB"
        range 256 1024
        default 512

config SWICH_FB
	bool "SWICH Frame Buffer Device Support(Display Controller)"
	default y
if SWICH_FB
	source "drivers/video/fbdev/swich/dc/Kconfig"
	endif

config SWICH_GPU
	bool "SWICH Graphic Processing Unit Support"
if SWICH_GPU
choice
	prompt "GPU Driver Version Selection"
	default SWICH_GPU_NEW

config SWICH_GPU_OLD
	bool "Old GPU Driver(4.6.8)"

config SWICH_GPU_NEW
	bool "New GPU Driver(4.6.9)"
endchoice
endif

config SWICH_VPU
	bool "SWICH Video Processing Unit Support"
if SWICH_VPU
choice
	prompt "GPU Driver Version Selection"
	default SWICH_VPU_NEW

config SWICH_VPU_OLD
        bool "Old VPU kernel Driver(original driver for verification)"

config SWICH_VPU_NEW
	bool "New VPU Kernel Driver(along with MMF)"
endchoice
endif

config SWICH_VIDEO_TESTDEV
	default y
	bool "SWICH Video Device Bare Test Support"

config DMAC_TEST
        bool "DMAC test program support"
