Kconfig 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9
# arch/arm/plat-s3c24xx/Kconfig
#
# Copyright 2007 Simtec Electronics
#
# Licensed under GPLv2

config PLAT_S3C24XX
	bool
	depends on ARCH_S3C2410
10
	default y if ARCH_S3C2410
11
	select NO_IOPORT
12
	select ARCH_REQUIRE_GPIOLIB
13
	help
14
	  Base platform code for any Samsung S3C24XX device
15

16 17
if PLAT_S3C24XX

18 19 20 21 22 23 24 25
# code that is shared between a number of the s3c24xx implementations

config S3C2410_CLOCK
	bool
	help
	  Clock code for the S3C2410, and similar processors which
	  is currently includes the S3C2410, S3C2440, S3C2442.

26 27 28 29 30 31
config CPU_S3C244X
	bool
	depends on ARCH_S3C2410 && (CPU_S3C2440 || CPU_S3C2442)
	help
	  Support for S3C2440 and S3C2442 Samsung Mobile CPU based systems.

B
Ben Dooks 已提交
32 33 34 35 36 37 38
config S3C24XX_PWM
	bool "PWM device support"
	select HAVE_PWM
	help
	  Support for exporting the PWM timer blocks via the pwm device
	  system.

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
config PM_SIMTEC
	bool
	help
	  Common power management code for systems that are
	  compatible with the Simtec style of power management

config S3C2410_DMA
	bool "S3C2410 DMA support"
	depends on ARCH_S3C2410
	help
	  S3C2410 DMA support. This is needed for drivers like sound which
	  use the S3C2410's DMA system to move data to and from the
	  peripheral blocks.

config S3C2410_DMA_DEBUG
	bool "S3C2410 DMA support debug"
	depends on ARCH_S3C2410 && S3C2410_DMA
	help
	  Enable debugging output for the DMA code. This option sends info
	  to the kernel log, at priority KERN_DEBUG.

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
# SPI default pin configuration code

config S3C24XX_SPI_BUS0_GPE11_GPE12_GPE13
	bool
	help
	  SPI GPIO configuration code for BUS0 when connected to
	  GPE11, GPE12 and GPE13.

config S3C24XX_SPI_BUS1_GPG5_GPG6_GPG7
	bool
	help
	  SPI GPIO configuration code for BUS 1 when connected to
	  GPG5, GPG6 and GPG7.

# common code for s3c24xx based machines, such as the SMDKs.

76 77 78 79 80
config MACH_SMDK
	bool
	help
	  Common machine code for SMDK2410 and SMDK2440

81
endif