mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
c05b48af82
This patch adds Samsung SMDKC210 board support file. The SoC of SMDKC210, S5PC210(MCP) is one of package option of S5PV310. And because composition of SMDKC210 and SMDKV310 differs, need SMDKC210 with SMDKV310. Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
54 lines
1017 B
Plaintext
54 lines
1017 B
Plaintext
# 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
|
|
select PLAT_S5P
|
|
help
|
|
Enable S5PV310 CPU support
|
|
|
|
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.
|
|
|
|
# machine support
|
|
|
|
config MACH_SMDKC210
|
|
bool "SMDKC210"
|
|
select CPU_S5PV310
|
|
select ARCH_SPARSEMEM_ENABLE
|
|
help
|
|
Machine support for Samsung SMDKC210
|
|
S5PC210(MCP) is one of package option of S5PV310
|
|
|
|
config MACH_SMDKV310
|
|
bool "SMDKV310"
|
|
select CPU_S5PV310
|
|
select ARCH_SPARSEMEM_ENABLE
|
|
help
|
|
Machine support for Samsung SMDKV310
|
|
|
|
config MACH_UNIVERSAL_C210
|
|
bool "Mobile UNIVERSAL_C210 Board"
|
|
select CPU_S5PV310
|
|
select ARCH_SPARSEMEM_ENABLE
|
|
help
|
|
Machine support for Samsung Mobile Universal S5PC210 Reference
|
|
Board. S5PC210(MCP) is one of package option of S5PV310
|
|
|
|
endif
|