Kconfig 1.2 KB

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