Kconfig 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
# arch/arm/mach-s5pv310/Kconfig
#
# Copyright (c) 2010 Samsung Electronics Co., Ltd.
#		http://www.samsung.com/
#
# Licensed under GPLv2

# Configuration options for the S5PV310

if ARCH_S5PV310

config CPU_S5PV310
	bool
14
	select S3C_PL330_DMA
15 16 17
	help
	  Enable S5PV310 CPU support

18 19 20 21 22
config S5PV310_DEV_PD
	bool
	help
	  Compile in platform device definitions for Power Domain

23 24 25 26 27 28 29 30 31 32
config S5PV310_SETUP_I2C1
	bool
	help
	  Common setup code for i2c bus 1.

config S5PV310_SETUP_I2C2
	bool
	help
	  Common setup code for i2c bus 2.

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
config S5PV310_SETUP_I2C3
	bool
	help
	  Common setup code for i2c bus 3.

config S5PV310_SETUP_I2C4
	bool
	help
	  Common setup code for i2c bus 4.

config S5PV310_SETUP_I2C5
	bool
	help
	  Common setup code for i2c bus 5.

config S5PV310_SETUP_I2C6
	bool
	help
	  Common setup code for i2c bus 6.

config S5PV310_SETUP_I2C7
	bool
	help
	  Common setup code for i2c bus 7.

58 59 60 61 62 63 64 65 66 67 68
config S5PV310_SETUP_SDHCI
	bool
	select S5PV310_SETUP_SDHCI_GPIO
	help
	  Internal helper functions for S5PV310 based SDHCI systems.

config S5PV310_SETUP_SDHCI_GPIO
	bool
	help
	  Common setup code for SDHCI gpio.

69 70 71 72 73
config S5PV310_DEV_SYSMMU
	bool
	help
	  Common setup code for SYSTEM MMU in S5PV310

74 75
# machine support

76 77
menu "S5PC210 Machines"

78 79 80
config MACH_SMDKC210
	bool "SMDKC210"
	select CPU_S5PV310
C
Changhwan Youn 已提交
81
	select S3C_DEV_RTC
82
	select S3C_DEV_WDT
J
Jassi Brar 已提交
83
	select S3C_DEV_I2C1
84 85 86 87
	select S3C_DEV_HSMMC
	select S3C_DEV_HSMMC1
	select S3C_DEV_HSMMC2
	select S3C_DEV_HSMMC3
88
	select S5PV310_DEV_PD
J
Jassi Brar 已提交
89
	select S5PV310_SETUP_I2C1
90
	select S5PV310_SETUP_SDHCI
91
	select S5PV310_DEV_SYSMMU
92 93 94 95
	help
	  Machine support for Samsung SMDKC210
	  S5PC210(MCP) is one of package option of S5PV310

96 97 98
config MACH_UNIVERSAL_C210
	bool "Mobile UNIVERSAL_C210 Board"
	select CPU_S5PV310
99
	select S5P_DEV_ONENAND
100 101 102 103
	select S3C_DEV_HSMMC
	select S3C_DEV_HSMMC2
	select S3C_DEV_HSMMC3
	select S5PV310_SETUP_SDHCI
104 105
	select S3C_DEV_I2C1
	select S5PV310_SETUP_I2C1
106 107 108 109
	help
	  Machine support for Samsung Mobile Universal S5PC210 Reference
	  Board. S5PC210(MCP) is one of package option of S5PV310

110 111 112 113 114 115 116
endmenu

menu "S5PV310 Machines"

config MACH_SMDKV310
	bool "SMDKV310"
	select CPU_S5PV310
C
Changhwan Youn 已提交
117
	select S3C_DEV_RTC
118
	select S3C_DEV_WDT
J
Jassi Brar 已提交
119
	select S3C_DEV_I2C1
120 121 122 123
	select S3C_DEV_HSMMC
	select S3C_DEV_HSMMC1
	select S3C_DEV_HSMMC2
	select S3C_DEV_HSMMC3
124
	select S5PV310_DEV_PD
125
	select S5PV310_DEV_SYSMMU
J
Jassi Brar 已提交
126
	select S5PV310_SETUP_I2C1
127
	select S5PV310_SETUP_SDHCI
128 129 130 131 132
	help
	  Machine support for Samsung SMDKV310

endmenu

133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
comment "Configuration for HSMMC bus width"

menu "Use 8-bit bus width"

config S5PV310_SDHCI_CH0_8BIT
	bool "Channel 0 with 8-bit bus"
	help
	  Support HSMMC Channel 0 8-bit bus.
	  If selected, Channel 1 is disabled.

config S5PV310_SDHCI_CH2_8BIT
	bool "Channel 2 with 8-bit bus"
	help
	  Support HSMMC Channel 2 8-bit bus.
	  If selected, Channel 3 is disabled.

endmenu

151
endif