Kconfig 1.1 KB

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