Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. default y
  12. select CPU_V6
  13. select PLAT_S3C
  14. select ARM_VIC
  15. select NO_IOPORT
  16. select ARCH_REQUIRE_GPIOLIB
  17. select S3C_GPIO_TRACK
  18. select S3C_GPIO_PULL_UPDOWN
  19. select S3C_GPIO_CFG_S3C24XX
  20. select S3C_GPIO_CFG_S3C64XX
  21. select S3C_DEV_NAND
  22. select USB_ARCH_HAS_OHCI
  23. help
  24. Base platform code for any Samsung S3C64XX device
  25. if PLAT_S3C64XX
  26. # Configuration options shared by all S3C64XX implementations
  27. config CPU_S3C6400_INIT
  28. bool
  29. help
  30. Common initialisation code for the S3C6400 that is shared
  31. by other CPUs in the series, such as the S3C6410.
  32. config CPU_S3C6400_CLOCK
  33. bool
  34. help
  35. Common clock support code for the S3C6400 that is shared
  36. by other CPUs in the series, such as the S3C6410.
  37. config S3C64XX_DMA
  38. bool "S3C64XX DMA"
  39. select S3C_DMA
  40. # platform specific device setup
  41. config S3C64XX_SETUP_I2C0
  42. bool
  43. default y
  44. help
  45. Common setup code for i2c bus 0.
  46. Note, currently since i2c0 is always compiled, this setup helper
  47. is always compiled with it.
  48. config S3C64XX_SETUP_I2C1
  49. bool
  50. help
  51. Common setup code for i2c bus 1.
  52. config S3C64XX_SETUP_FB_24BPP
  53. bool
  54. help
  55. Common setup code for S3C64XX with an 24bpp RGB display helper.
  56. config S3C64XX_SETUP_SDHCI_GPIO
  57. bool
  58. help
  59. Common setup code for S3C64XX SDHCI GPIO configurations
  60. endif