Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Copyright 2008 Openmoko, Inc.
  2. # Copyright 2008 Simtec Electronics
  3. # Ben Dooks <ben@simtec.co.uk>
  4. #
  5. # Licensed under GPLv2
  6. config PLAT_S3C64XX
  7. bool
  8. depends on ARCH_S3C64XX
  9. default y
  10. select CPU_V6
  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 S3C_DEV_NAND
  20. select USB_ARCH_HAS_OHCI
  21. help
  22. Base platform code for any Samsung S3C64XX device
  23. if PLAT_S3C64XX
  24. # Configuration options shared by all S3C64XX implementations
  25. config CPU_S3C6400_INIT
  26. bool
  27. help
  28. Common initialisation code for the S3C6400 that is shared
  29. by other CPUs in the series, such as the S3C6410.
  30. config CPU_S3C6400_CLOCK
  31. bool
  32. help
  33. Common clock support code for the S3C6400 that is shared
  34. by other CPUs in the series, such as the S3C6410.
  35. config S3C64XX_DMA
  36. bool "S3C64XX DMA"
  37. select S3C_DMA
  38. # platform specific device setup
  39. config S3C64XX_SETUP_I2C0
  40. bool
  41. default y
  42. help
  43. Common setup code for i2c bus 0.
  44. Note, currently since i2c0 is always compiled, this setup helper
  45. is always compiled with it.
  46. config S3C64XX_SETUP_I2C1
  47. bool
  48. help
  49. Common setup code for i2c bus 1.
  50. config S3C64XX_SETUP_FB_24BPP
  51. bool
  52. help
  53. Common setup code for S3C64XX with an 24bpp RGB display helper.
  54. config S3C64XX_SETUP_SDHCI_GPIO
  55. bool
  56. help
  57. Common setup code for S3C64XX SDHCI GPIO configurations
  58. endif