Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # arch/arm/plat-s5pc1xx/Kconfig
  2. #
  3. # Copyright 2009 Samsung Electronics Co.
  4. # Byungho Min <bhmin@samsung.com>
  5. #
  6. # Licensed under GPLv2
  7. config PLAT_S5PC1XX
  8. bool
  9. depends on ARCH_S5PC1XX
  10. default y
  11. select PLAT_S3C
  12. select ARM_VIC
  13. select NO_IOPORT
  14. select ARCH_REQUIRE_GPIOLIB
  15. select S3C_GPIO_TRACK
  16. select S3C_GPIO_PULL_UPDOWN
  17. select S3C_GPIO_CFG_S3C24XX
  18. select S3C_GPIO_CFG_S3C64XX
  19. select S5P_GPIO_CFG_S5PC1XX
  20. help
  21. Base platform code for any Samsung S5PC1XX device
  22. if PLAT_S5PC1XX
  23. # Configuration options shared by all S3C64XX implementations
  24. config CPU_S5PC100_INIT
  25. bool
  26. help
  27. Common initialisation code for the S5PC1XX
  28. config CPU_S5PC100_CLOCK
  29. bool
  30. help
  31. Common clock support code for the S5PC1XX
  32. # platform specific device setup
  33. config S5PC1XX_SETUP_FB_24BPP
  34. bool
  35. help
  36. Common setup code for S5PC1XX with an 24bpp RGB display helper.
  37. config S5PC1XX_SETUP_I2C0
  38. bool
  39. default y
  40. help
  41. Common setup code for i2c bus 0.
  42. Note, currently since i2c0 is always compiled, this setup helper
  43. is always compiled with it.
  44. config S5PC1XX_SETUP_I2C1
  45. bool
  46. help
  47. Common setup code for i2c bus 1.
  48. endif