Kconfig 964 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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_TS
  32. select S5P64X0_SETUP_I2C1
  33. help
  34. Machine support for the Samsung SMDK6440
  35. config MACH_SMDK6450
  36. bool "SMDK6450"
  37. select CPU_S5P6450
  38. select S3C_DEV_I2C1
  39. select S3C_DEV_RTC
  40. select S3C_DEV_WDT
  41. select S3C64XX_DEV_SPI
  42. select SAMSUNG_DEV_ADC
  43. select SAMSUNG_DEV_TS
  44. select S5P64X0_SETUP_I2C1
  45. help
  46. Machine support for the Samsung SMDK6450
  47. endif