Kconfig 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. if ARCH_OMAP
  2. menu "TI OMAP Implementations"
  3. config ARCH_OMAP_OTG
  4. bool
  5. choice
  6. prompt "OMAP System Type"
  7. default ARCH_OMAP2PLUS
  8. config ARCH_OMAP1
  9. bool "TI OMAP1"
  10. select COMMON_CLKDEV
  11. help
  12. "Systems based on omap7xx, omap15xx or omap16xx"
  13. config ARCH_OMAP2PLUS
  14. bool "TI OMAP2/3/4"
  15. select COMMON_CLKDEV
  16. help
  17. "Systems based on omap24xx, omap34xx or omap44xx"
  18. config ARCH_OMAP2
  19. bool "TI OMAP2"
  20. depends on ARCH_OMAP2PLUS
  21. select CPU_V6
  22. config ARCH_OMAP3
  23. bool "TI OMAP3"
  24. depends on ARCH_OMAP2PLUS
  25. select CPU_V7
  26. select USB_ARCH_HAS_EHCI
  27. config ARCH_OMAP4
  28. bool "TI OMAP4"
  29. depends on ARCH_OMAP2PLUS
  30. select CPU_V7
  31. select ARM_GIC
  32. endchoice
  33. comment "OMAP Feature Selections"
  34. config OMAP_DEBUG_DEVICES
  35. bool
  36. help
  37. For debug cards on TI reference boards.
  38. config OMAP_DEBUG_LEDS
  39. bool
  40. depends on OMAP_DEBUG_DEVICES
  41. default y if LEDS || LEDS_OMAP_DEBUG
  42. config OMAP_RESET_CLOCKS
  43. bool "Reset unused clocks during boot"
  44. depends on ARCH_OMAP
  45. help
  46. Say Y if you want to reset unused clocks during boot.
  47. This option saves power, but assumes all drivers are
  48. using the clock framework. Broken drivers that do not
  49. yet use clock framework may not work with this option.
  50. If you are booting from another operating system, you
  51. probably do not want this option enabled until your
  52. device drivers work properly.
  53. config OMAP_MUX
  54. bool "OMAP multiplexing support"
  55. depends on ARCH_OMAP
  56. default y
  57. help
  58. Pin multiplexing support for OMAP boards. If your bootloader
  59. sets the multiplexing correctly, say N. Otherwise, or if unsure,
  60. say Y.
  61. config OMAP_MUX_DEBUG
  62. bool "Multiplexing debug output"
  63. depends on OMAP_MUX
  64. help
  65. Makes the multiplexing functions print out a lot of debug info.
  66. This is useful if you want to find out the correct values of the
  67. multiplexing registers.
  68. config OMAP_MUX_WARNINGS
  69. bool "Warn about pins the bootloader didn't set up"
  70. depends on OMAP_MUX
  71. default y
  72. help
  73. Choose Y here to warn whenever driver initialization logic needs
  74. to change the pin multiplexing setup. When there are no warnings
  75. printed, it's safe to deselect OMAP_MUX for your product.
  76. config OMAP_MCBSP
  77. bool "McBSP support"
  78. depends on ARCH_OMAP
  79. default y
  80. help
  81. Say Y here if you want support for the OMAP Multichannel
  82. Buffered Serial Port.
  83. config OMAP_MBOX_FWK
  84. tristate "Mailbox framework support"
  85. depends on ARCH_OMAP
  86. help
  87. Say Y here if you want to use OMAP Mailbox framework support for
  88. DSP, IVA1.0 and IVA2 in OMAP1/2/3.
  89. config OMAP_IOMMU
  90. tristate
  91. config OMAP_IOMMU_DEBUG
  92. depends on OMAP_IOMMU
  93. tristate
  94. choice
  95. prompt "System timer"
  96. default OMAP_MPU_TIMER
  97. config OMAP_MPU_TIMER
  98. bool "Use mpu timer"
  99. help
  100. Select this option if you want to use the OMAP mpu timer. This
  101. timer provides more intra-tick resolution than the 32KHz timer,
  102. but consumes more power.
  103. config OMAP_32K_TIMER
  104. bool "Use 32KHz timer"
  105. depends on ARCH_OMAP16XX || ARCH_OMAP2PLUS
  106. help
  107. Select this option if you want to enable the OMAP 32KHz timer.
  108. This timer saves power compared to the OMAP_MPU_TIMER, and has
  109. support for no tick during idle. The 32KHz timer provides less
  110. intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is
  111. currently only available for OMAP16XX, 24XX, 34XX and OMAP4.
  112. endchoice
  113. config OMAP_32K_TIMER_HZ
  114. int "Kernel internal timer frequency for 32KHz timer"
  115. range 32 1024
  116. depends on OMAP_32K_TIMER
  117. default "128"
  118. help
  119. Kernel internal timer frequency should be a divisor of 32768,
  120. such as 64 or 128.
  121. config OMAP_DM_TIMER
  122. bool "Use dual-mode timer"
  123. depends on ARCH_OMAP16XX || ARCH_OMAP2PLUS
  124. help
  125. Select this option if you want to use OMAP Dual-Mode timers.
  126. config OMAP_SERIAL_WAKE
  127. bool "Enable wake-up events for serial ports"
  128. depends on ARCH_OMAP1 && OMAP_MUX
  129. default y
  130. help
  131. Select this option if you want to have your system wake up
  132. to data on the serial RX line. This allows you to wake the
  133. system from serial console.
  134. choice
  135. prompt "OMAP PM layer selection"
  136. depends on ARCH_OMAP
  137. default OMAP_PM_NOOP
  138. config OMAP_PM_NONE
  139. bool "No PM layer"
  140. config OMAP_PM_NOOP
  141. bool "No-op/debug PM layer"
  142. endchoice
  143. endmenu
  144. endif