Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 SAMSUNG_IRQ_VIC_TIMER
  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. config S5PC1XX_SETUP_SDHCI_GPIO
  49. bool
  50. help
  51. Common setup code for SDHCI gpio.
  52. endif