Kconfig 1012 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. if ARCH_S5P64X0
  8. config CPU_S5P6440
  9. bool
  10. select S3C_PL330_DMA
  11. help
  12. Enable S5P6440 CPU support
  13. config CPU_S5P6450
  14. bool
  15. select S3C_PL330_DMA
  16. help
  17. Enable S5P6450 CPU support
  18. config S5P64X0_SETUP_I2C1
  19. bool
  20. help
  21. Common setup code for i2c bus 1.
  22. # machine support
  23. config MACH_SMDK6440
  24. bool "SMDK6440"
  25. select CPU_S5P6440
  26. select S3C_DEV_I2C1
  27. select S3C_DEV_RTC
  28. select S3C_DEV_WDT
  29. select S3C64XX_DEV_SPI
  30. select SAMSUNG_DEV_ADC
  31. select SAMSUNG_DEV_PWM
  32. select SAMSUNG_DEV_TS
  33. select S5P64X0_SETUP_I2C1
  34. help
  35. Machine support for the Samsung SMDK6440
  36. config MACH_SMDK6450
  37. bool "SMDK6450"
  38. select CPU_S5P6450
  39. select S3C_DEV_I2C1
  40. select S3C_DEV_RTC
  41. select S3C_DEV_WDT
  42. select S3C64XX_DEV_SPI
  43. select SAMSUNG_DEV_ADC
  44. select SAMSUNG_DEV_PWM
  45. select SAMSUNG_DEV_TS
  46. select S5P64X0_SETUP_I2C1
  47. help
  48. Machine support for the Samsung SMDK6450
  49. endif