Kconfig 1.2 KB

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