xref: /openbmc/linux/arch/arm/mach-s5pv210/Kconfig (revision 0df04f82)
1# arch/arm/mach-s5pv210/Kconfig
2#
3# Copyright (c) 2010 Samsung Electronics Co., Ltd.
4#		http://www.samsung.com/
5#
6# Licensed under GPLv2
7
8# Configuration options for the S5PV210/S5PC110
9
10if ARCH_S5PV210
11
12config CPU_S5PV210
13	bool
14	select PLAT_S5P
15	select S3C_PL330_DMA
16	select S5P_EXT_INT
17	help
18	  Enable S5PV210 CPU support
19
20choice
21	prompt "Select machine type"
22	depends on ARCH_S5PV210
23	default MACH_SMDKV210
24
25config MACH_SMDKV210
26	bool "SMDKV210"
27	select CPU_S5PV210
28	select ARCH_SPARSEMEM_ENABLE
29	help
30	  Machine support for Samsung SMDKV210
31
32config MACH_SMDKC110
33	bool "SMDKC110"
34	select CPU_S5PV210
35	select ARCH_SPARSEMEM_ENABLE
36	help
37	  Machine support for Samsung SMDKC110
38	  S5PC110(MCP) is one of package option of S5PV210
39
40endchoice
41
42endif
43