Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # arch/arm/mach-s3c6410/Kconfig
  2. #
  3. # Copyright 2008 Openmoko, Inc.
  4. # Copyright 2008 Simtec Electronics
  5. #
  6. # Licensed under GPLv2
  7. # Configuration options for the S3C6410 CPU
  8. config CPU_S3C6410
  9. bool
  10. select CPU_S3C6400_INIT
  11. select CPU_S3C6400_CLOCK
  12. help
  13. Enable S3C6410 CPU support
  14. config S3C6410_SETUP_SDHCI
  15. bool
  16. help
  17. Internal helper functions for S3C6410 based SDHCI systems
  18. config MACH_SMDK6410
  19. bool "SMDK6410"
  20. select CPU_S3C6410
  21. select S3C_DEV_HSMMC
  22. select S3C_DEV_HSMMC1
  23. select S3C_DEV_I2C1
  24. select S3C_DEV_FB
  25. select S3C6410_SETUP_SDHCI
  26. select S3C64XX_SETUP_I2C1
  27. select S3C64XX_SETUP_FB_24BPP
  28. help
  29. Machine support for the Samsung SMDK6410
  30. # At least some of the SMDK6410s were shipped with the card detect
  31. # for the MMC/SD slots connected to the same input. This means that
  32. # either the boards need to be altered to have channel0 to an alternate
  33. # configuration or that only one slot can be used.
  34. choice
  35. prompt "SMDK6410 MMC/SD slot setup"
  36. depends on MACH_SMDK6410
  37. config SMDK6410_SD_CH0
  38. bool "Use channel 0 only"
  39. depends on MACH_SMDK6410
  40. help
  41. Select CON7 (channel 0) as the MMC/SD slot, as
  42. at least some SMDK6410 boards come with the
  43. resistors fitted so that the card detects for
  44. channels 0 and 1 are the same.
  45. config SMDK6410_SD_CH1
  46. bool "Use channel 1 only"
  47. depends on MACH_SMDK6410
  48. help
  49. Select CON6 (channel 1) as the MMC/SD slot, as
  50. at least some SMDK6410 boards come with the
  51. resistors fitted so that the card detects for
  52. channels 0 and 1 are the same.
  53. endchoice