Kconfig 749 字节
Newer Older
B
Ben Dooks 已提交
1 2 3 4 5 6 7 8 9 10 11 12
# arch/arm/plat-s3c64xx/Kconfig
#
# Copyright 2008 Openmoko, Inc.
# Copyright 2008 Simtec Electronics
#	Ben Dooks <ben@simtec.co.uk>
#
# Licensed under GPLv2

config PLAT_S3C64XX
	bool
	depends on ARCH_S3C64XX
	select PLAT_S3C
13
	select ARM_VIC
B
Ben Dooks 已提交
14 15 16 17 18 19 20 21 22 23
	default y
	select NO_IOPORT
	select ARCH_REQUIRE_GPIOLIB
	help
	  Base platform code for any Samsung S3C64XX device

if PLAT_S3C64XX

# Configuration options shared by all S3C64XX implementations

24 25 26 27 28 29
config CPU_S3C6400_INIT
	bool
	help
	  Common initialisation code for the S3C6400 that is shared
	  by other CPUs in the series, such as the S3C6410.

30 31 32 33 34 35
config CPU_S3C6400_CLOCK
	bool
	help
	  Common clock support code for the S3C6400 that is shared
	  by other CPUs in the series, such as the S3C6410.

B
Ben Dooks 已提交
36
endif