Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # arch/arm/plat-s3c64xx/Kconfig
  2. #
  3. # Copyright 2008 Openmoko, Inc.
  4. # Copyright 2008 Simtec Electronics
  5. # Ben Dooks <ben@simtec.co.uk>
  6. #
  7. # Licensed under GPLv2
  8. config PLAT_S3C64XX
  9. bool
  10. depends on ARCH_S3C64XX
  11. select PLAT_S3C
  12. select ARM_VIC
  13. default y
  14. select NO_IOPORT
  15. select ARCH_REQUIRE_GPIOLIB
  16. select S3C_GPIO_TRACK
  17. select S3C_GPIO_PULL_UPDOWN
  18. select S3C_GPIO_CFG_S3C24XX
  19. select S3C_GPIO_CFG_S3C64XX
  20. help
  21. Base platform code for any Samsung S3C64XX device
  22. if PLAT_S3C64XX
  23. # Configuration options shared by all S3C64XX implementations
  24. config CPU_S3C6400_INIT
  25. bool
  26. help
  27. Common initialisation code for the S3C6400 that is shared
  28. by other CPUs in the series, such as the S3C6410.
  29. config CPU_S3C6400_CLOCK
  30. bool
  31. help
  32. Common clock support code for the S3C6400 that is shared
  33. by other CPUs in the series, such as the S3C6410.
  34. # platform specific device setup
  35. config S3C64XX_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 S3C64XX_SETUP_I2C1
  43. bool
  44. help
  45. Common setup code for i2c bus 1.
  46. config S3C64XX_SETUP_FB_24BPP
  47. bool
  48. help
  49. Common setup code for S3C64XX with an 24bpp RGB display helper.
  50. endif