Kconfig 901 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. help
  16. Base platform code for any Samsung S5PC1XX device
  17. if PLAT_S5PC1XX
  18. # Configuration options shared by all S3C64XX implementations
  19. config CPU_S5PC100_INIT
  20. bool
  21. help
  22. Common initialisation code for the S5PC1XX
  23. config CPU_S5PC100_CLOCK
  24. bool
  25. help
  26. Common clock support code for the S5PC1XX
  27. # platform specific device setup
  28. config S5PC100_SETUP_I2C0
  29. bool
  30. default y
  31. help
  32. Common setup code for i2c bus 0.
  33. Note, currently since i2c0 is always compiled, this setup helper
  34. is always compiled with it.
  35. config S5PC100_SETUP_I2C1
  36. bool
  37. help
  38. Common setup code for i2c bus 1.
  39. endif