Kconfig 1.2 KB

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