linux/arch/arm/mach-s5p64x0/Kconfig
<<
>>
Prefs
   1# arch/arm/mach-s5p64x0/Kconfig
   2#
   3# Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
   4#               http://www.samsung.com/
   5#
   6# Licensed under GPLv2
   7
   8if ARCH_S5P64X0
   9
  10config CPU_S5P6440
  11        bool
  12        select S3C_PL330_DMA
  13        help
  14          Enable S5P6440 CPU support
  15
  16config CPU_S5P6450
  17        bool
  18        select S3C_PL330_DMA
  19        help
  20          Enable S5P6450 CPU support
  21
  22config S5P64X0_SETUP_I2C1
  23        bool
  24        help
  25          Common setup code for i2c bus 1.
  26
  27# machine support
  28
  29config MACH_SMDK6440
  30        bool "SMDK6440"
  31        select CPU_S5P6440
  32        select S3C_DEV_I2C1
  33        select S3C_DEV_RTC
  34        select S3C_DEV_WDT
  35        select S3C64XX_DEV_SPI
  36        select SAMSUNG_DEV_ADC
  37        select SAMSUNG_DEV_TS
  38        select S5P64X0_SETUP_I2C1
  39        help
  40          Machine support for the Samsung SMDK6440
  41
  42config MACH_SMDK6450
  43        bool "SMDK6450"
  44        select CPU_S5P6450
  45        select S3C_DEV_I2C1
  46        select S3C_DEV_RTC
  47        select S3C_DEV_WDT
  48        select S3C64XX_DEV_SPI
  49        select SAMSUNG_DEV_ADC
  50        select SAMSUNG_DEV_TS
  51        select S5P64X0_SETUP_I2C1
  52        help
  53          Machine support for the Samsung SMDK6450
  54
  55endif
  56