Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # Copyright 2007 Simtec Electronics
  2. #
  3. # Licensed under GPLv2
  4. config CPU_S3C2412
  5. bool
  6. depends on ARCH_S3C2410
  7. select CPU_ARM926T
  8. select CPU_LLSERIAL_S3C2440
  9. select S3C2412_PM if PM
  10. select S3C2412_DMA if S3C2410_DMA
  11. select S3C2410_GPIO
  12. help
  13. Support for the S3C2412 and S3C2413 SoCs from the S3C24XX line
  14. config CPU_S3C2412_ONLY
  15. bool
  16. depends on ARCH_S3C2410 && !CPU_S3C2400 && !CPU_S3C2410 && \
  17. !CPU_S3C2416 && !CPU_S3C2440 && !CPU_S3C2442 && \
  18. !CPU_S3C2443 && CPU_S3C2412
  19. default y if CPU_S3C2412
  20. config S3C2412_DMA
  21. bool
  22. depends on CPU_S3C2412
  23. help
  24. Internal config node for S3C2412 DMA support
  25. config S3C2412_PM
  26. bool
  27. select S3C2412_PM_SLEEP
  28. help
  29. Internal config node to apply S3C2412 power management
  30. config S3C2412_PM_SLEEP
  31. bool
  32. help
  33. Internal config node to apply sleep for S3C2412 power management.
  34. Can be selected by another SoCs with similar sleep procedure.
  35. # Note, the S3C2412 IOtiming support is in plat-s3c24xx
  36. config S3C2412_CPUFREQ
  37. bool
  38. depends on CPU_FREQ_S3C24XX && CPU_S3C2412
  39. select S3C2412_IOTIMING
  40. default y
  41. help
  42. CPU Frequency scaling support for S3C2412 and S3C2413 SoC CPUs.
  43. menu "S3C2412 Machines"
  44. config MACH_JIVE
  45. bool "Logitech Jive"
  46. select CPU_S3C2412
  47. select S3C_DEV_USB_HOST
  48. select S3C_DEV_NAND
  49. help
  50. Say Y here if you are using the Logitech Jive.
  51. config MACH_JIVE_SHOW_BOOTLOADER
  52. bool "Allow access to bootloader partitions in MTD (EXPERIMENTAL)"
  53. depends on MACH_JIVE && EXPERIMENTAL
  54. config MACH_SMDK2413
  55. bool "SMDK2413"
  56. select CPU_S3C2412
  57. select MACH_S3C2413
  58. select MACH_SMDK
  59. select S3C_DEV_USB_HOST
  60. select S3C_DEV_NAND
  61. help
  62. Say Y here if you are using an SMDK2413
  63. config MACH_S3C2413
  64. bool
  65. help
  66. Internal node for S3C2413 version of SMDK2413, so that
  67. machine_is_s3c2413() will work when MACH_SMDK2413 is
  68. selected
  69. config MACH_SMDK2412
  70. bool "SMDK2412"
  71. select MACH_SMDK2413
  72. help
  73. Say Y here if you are using an SMDK2412
  74. Note, this shares support with SMDK2413, so will automatically
  75. select MACH_SMDK2413.
  76. config MACH_VSTMS
  77. bool "VMSTMS"
  78. select CPU_S3C2412
  79. select S3C_DEV_USB_HOST
  80. select S3C_DEV_NAND
  81. help
  82. Say Y here if you are using an VSTMS board
  83. endmenu