Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 S3C_GPIO_TRACK
  14. select S3C_GPIO_PULL_UPDOWN
  15. select S3C_GPIO_CFG_S3C24XX
  16. select S3C_GPIO_CFG_S3C64XX
  17. select S5P_GPIO_CFG_S5PC1XX
  18. help
  19. Base platform code for any Samsung S5PC1XX device
  20. if PLAT_S5PC1XX
  21. # Configuration options shared by all S3C64XX implementations
  22. config CPU_S5PC100_INIT
  23. bool
  24. help
  25. Common initialisation code for the S5PC1XX
  26. config CPU_S5PC100_CLOCK
  27. bool
  28. help
  29. Common clock support code for the S5PC1XX
  30. # platform specific device setup
  31. config S5PC1XX_SETUP_FB_24BPP
  32. bool
  33. help
  34. Common setup code for S5PC1XX with an 24bpp RGB display helper.
  35. config S5PC1XX_SETUP_I2C0
  36. bool
  37. default y
  38. help
  39. Common setup code for i2c bus 0.
  40. Note, currently since i2c0 is always compiled, this setup helper
  41. is always compiled with it.
  42. config S5PC1XX_SETUP_I2C1
  43. bool
  44. help
  45. Common setup code for i2c bus 1.
  46. config S5PC1XX_SETUP_SDHCI_GPIO
  47. bool
  48. help
  49. Common setup code for SDHCI gpio.
  50. endif