Kconfig 1.4 KB
Newer Older
B
Ben Dooks 已提交
1 2 3 4 5 6 7 8 9 10 11
# 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
12 13
	default y
	select CPU_V6
B
Ben Dooks 已提交
14
	select PLAT_S3C
15
	select ARM_VIC
B
Ben Dooks 已提交
16 17
	select NO_IOPORT
	select ARCH_REQUIRE_GPIOLIB
B
Ben Dooks 已提交
18
	select S3C_GPIO_TRACK
19 20 21
	select S3C_GPIO_PULL_UPDOWN
	select S3C_GPIO_CFG_S3C24XX
	select S3C_GPIO_CFG_S3C64XX
B
Ben Dooks 已提交
22
	select USB_ARCH_HAS_OHCI
B
Ben Dooks 已提交
23 24 25 26 27 28 29
	help
	  Base platform code for any Samsung S3C64XX device

if PLAT_S3C64XX

# Configuration options shared by all S3C64XX implementations

30 31 32 33 34 35
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.

36 37 38 39 40 41
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.

42 43 44 45 46 47 48 49 50 51 52
# platform specific device setup

config S3C64XX_SETUP_I2C0
	bool
	default y
	help
	  Common setup code for i2c bus 0.

	  Note, currently since i2c0 is always compiled, this setup helper
	  is always compiled with it.

53 54 55 56 57
config S3C64XX_SETUP_I2C1
	bool
	help
	  Common setup code for i2c bus 1.

58 59 60 61 62
config S3C64XX_SETUP_FB_24BPP
	bool
	help
	  Common setup code for S3C64XX with an 24bpp RGB display helper.

63 64 65 66 67
config S3C64XX_SETUP_SDHCI_GPIO
	bool
	help
	  Common setup code for S3C64XX SDHCI GPIO configurations

B
Ben Dooks 已提交
68
endif