Kconfig 935 B

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