Kconfig 1022 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 S5PC100_SETUP_I2C0
  34. bool
  35. default y
  36. help
  37. Common setup code for i2c bus 0.
  38. Note, currently since i2c0 is always compiled, this setup helper
  39. is always compiled with it.
  40. config S5PC100_SETUP_I2C1
  41. bool
  42. help
  43. Common setup code for i2c bus 1.
  44. endif