Kconfig 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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_OMAP1
  8. config ARCH_OMAP1
  9. bool "TI OMAP1"
  10. config ARCH_OMAP2
  11. bool "TI OMAP2"
  12. endchoice
  13. comment "OMAP Feature Selections"
  14. config OMAP_DEBUG_DEVICES
  15. bool
  16. help
  17. For debug cards on TI reference boards.
  18. config OMAP_DEBUG_LEDS
  19. bool
  20. depends on OMAP_DEBUG_DEVICES
  21. default y if LEDS || LEDS_OMAP_DEBUG
  22. config OMAP_RESET_CLOCKS
  23. bool "Reset unused clocks during boot"
  24. depends on ARCH_OMAP
  25. help
  26. Say Y if you want to reset unused clocks during boot.
  27. This option saves power, but assumes all drivers are
  28. using the clock framework. Broken drivers that do not
  29. yet use clock framework may not work with this option.
  30. If you are booting from another operating system, you
  31. probably do not want this option enabled until your
  32. device drivers work properly.
  33. config OMAP_MUX
  34. bool "OMAP multiplexing support"
  35. depends on ARCH_OMAP
  36. default y
  37. help
  38. Pin multiplexing support for OMAP boards. If your bootloader
  39. sets the multiplexing correctly, say N. Otherwise, or if unsure,
  40. say Y.
  41. config OMAP_MUX_DEBUG
  42. bool "Multiplexing debug output"
  43. depends on OMAP_MUX
  44. help
  45. Makes the multiplexing functions print out a lot of debug info.
  46. This is useful if you want to find out the correct values of the
  47. multiplexing registers.
  48. config OMAP_MUX_WARNINGS
  49. bool "Warn about pins the bootloader didn't set up"
  50. depends on OMAP_MUX
  51. default y
  52. help
  53. Choose Y here to warn whenever driver initialization logic needs
  54. to change the pin multiplexing setup. When there are no warnings
  55. printed, it's safe to deselect OMAP_MUX for your product.
  56. config OMAP_MCBSP
  57. bool "McBSP support"
  58. depends on ARCH_OMAP
  59. default y
  60. help
  61. Say Y here if you want support for the OMAP Multichannel
  62. Buffered Serial Port.
  63. choice
  64. prompt "System timer"
  65. default OMAP_MPU_TIMER
  66. config OMAP_MPU_TIMER
  67. bool "Use mpu timer"
  68. help
  69. Select this option if you want to use the OMAP mpu timer. This
  70. timer provides more intra-tick resolution than the 32KHz timer,
  71. but consumes more power.
  72. config OMAP_32K_TIMER
  73. bool "Use 32KHz timer"
  74. depends on ARCH_OMAP16XX || ARCH_OMAP24XX
  75. help
  76. Select this option if you want to enable the OMAP 32KHz timer.
  77. This timer saves power compared to the OMAP_MPU_TIMER, and has
  78. support for no tick during idle. The 32KHz timer provides less
  79. intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is
  80. currently only available for OMAP16XX and 24XX.
  81. endchoice
  82. config OMAP_32K_TIMER_HZ
  83. int "Kernel internal timer frequency for 32KHz timer"
  84. range 32 1024
  85. depends on OMAP_32K_TIMER
  86. default "128"
  87. help
  88. Kernel internal timer frequency should be a divisor of 32768,
  89. such as 64 or 128.
  90. config OMAP_DM_TIMER
  91. bool "Use dual-mode timer"
  92. depends on ARCH_OMAP16XX || ARCH_OMAP24XX
  93. help
  94. Select this option if you want to use OMAP Dual-Mode timers.
  95. choice
  96. prompt "Low-level debug console UART"
  97. depends on ARCH_OMAP
  98. default OMAP_LL_DEBUG_UART1
  99. config OMAP_LL_DEBUG_UART1
  100. bool "UART1"
  101. config OMAP_LL_DEBUG_UART2
  102. bool "UART2"
  103. config OMAP_LL_DEBUG_UART3
  104. bool "UART3"
  105. endchoice
  106. config OMAP_SERIAL_WAKE
  107. bool "Enable wake-up events for serial ports"
  108. depends on OMAP_MUX
  109. default y
  110. help
  111. Select this option if you want to have your system wake up
  112. to data on the serial RX line. This allows you to wake the
  113. system from serial console.
  114. endmenu
  115. endif