Kconfig 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. if ARCH_AT91
  2. menu "Atmel AT91 System-on-Chip"
  3. choice
  4. prompt "Atmel AT91 Processor"
  5. config ARCH_AT91RM9200
  6. bool "AT91RM9200"
  7. select GENERIC_TIME
  8. select GENERIC_CLOCKEVENTS
  9. config ARCH_AT91SAM9260
  10. bool "AT91SAM9260 or AT91SAM9XE"
  11. select GENERIC_TIME
  12. select GENERIC_CLOCKEVENTS
  13. config ARCH_AT91SAM9261
  14. bool "AT91SAM9261"
  15. select GENERIC_TIME
  16. select GENERIC_CLOCKEVENTS
  17. config ARCH_AT91SAM9263
  18. bool "AT91SAM9263"
  19. select GENERIC_TIME
  20. select GENERIC_CLOCKEVENTS
  21. config ARCH_AT91SAM9RL
  22. bool "AT91SAM9RL"
  23. select GENERIC_TIME
  24. select GENERIC_CLOCKEVENTS
  25. config ARCH_AT91CAP9
  26. bool "AT91CAP9"
  27. select GENERIC_TIME
  28. select GENERIC_CLOCKEVENTS
  29. config ARCH_AT91X40
  30. bool "AT91x40"
  31. endchoice
  32. config AT91_PMC_UNIT
  33. bool
  34. default !ARCH_AT91X40
  35. # ----------------------------------------------------------
  36. if ARCH_AT91RM9200
  37. comment "AT91RM9200 Board Type"
  38. config MACH_ONEARM
  39. bool "Ajeco 1ARM Single Board Computer"
  40. depends on ARCH_AT91RM9200
  41. help
  42. Select this if you are using Ajeco's 1ARM Single Board Computer.
  43. <http://www.ajeco.fi/products.htm>
  44. config ARCH_AT91RM9200DK
  45. bool "Atmel AT91RM9200-DK Development board"
  46. depends on ARCH_AT91RM9200
  47. help
  48. Select this if you are using Atmel's AT91RM9200-DK Development board.
  49. (Discontinued)
  50. config MACH_AT91RM9200EK
  51. bool "Atmel AT91RM9200-EK Evaluation Kit"
  52. depends on ARCH_AT91RM9200
  53. help
  54. Select this if you are using Atmel's AT91RM9200-EK Evaluation Kit.
  55. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507>
  56. config MACH_CSB337
  57. bool "Cogent CSB337"
  58. depends on ARCH_AT91RM9200
  59. help
  60. Select this if you are using Cogent's CSB337 board.
  61. <http://www.cogcomp.com/csb_csb337.htm>
  62. config MACH_CSB637
  63. bool "Cogent CSB637"
  64. depends on ARCH_AT91RM9200
  65. help
  66. Select this if you are using Cogent's CSB637 board.
  67. <http://www.cogcomp.com/csb_csb637.htm>
  68. config MACH_CARMEVA
  69. bool "Conitec ARM&EVA"
  70. depends on ARCH_AT91RM9200
  71. help
  72. Select this if you are using Conitec's AT91RM9200-MCU-Module.
  73. <http://www.conitec.net/english/linuxboard.htm>
  74. config MACH_ATEB9200
  75. bool "Embest ATEB9200"
  76. depends on ARCH_AT91RM9200
  77. help
  78. Select this if you are using Embest's ATEB9200 board.
  79. <http://www.embedinfo.com/english/product/ATEB9200.asp>
  80. config MACH_KB9200
  81. bool "KwikByte KB920x"
  82. depends on ARCH_AT91RM9200
  83. help
  84. Select this if you are using KwikByte's KB920x board.
  85. <http://kwikbyte.com/KB9202_description_new.htm>
  86. config MACH_PICOTUX2XX
  87. bool "picotux 200"
  88. depends on ARCH_AT91RM9200
  89. help
  90. Select this if you are using a picotux 200.
  91. <http://www.picotux.com/>
  92. config MACH_KAFA
  93. bool "Sperry-Sun KAFA board"
  94. depends on ARCH_AT91RM9200
  95. help
  96. Select this if you are using Sperry-Sun's KAFA board.
  97. config MACH_ECBAT91
  98. bool "emQbit ECB_AT91 SBC"
  99. depends on ARCH_AT91RM9200
  100. help
  101. Select this if you are using emQbit's ECB_AT91 board.
  102. <http://wiki.emqbit.com/free-ecb-at91>
  103. config MACH_YL9200
  104. bool "ucDragon YL-9200"
  105. depends on ARCH_AT91RM9200
  106. help
  107. Select this if you are using the ucDragon YL-9200 board.
  108. endif
  109. # ----------------------------------------------------------
  110. if ARCH_AT91SAM9260
  111. comment "AT91SAM9260 Variants"
  112. config ARCH_AT91SAM9260_SAM9XE
  113. bool "AT91SAM9XE"
  114. depends on ARCH_AT91SAM9260
  115. help
  116. Select this if you are using Atmel's AT91SAM9XE System-on-Chip.
  117. They are basically AT91SAM9260s with various sizes of embedded Flash.
  118. comment "AT91SAM9260 / AT91SAM9XE Board Type"
  119. config MACH_AT91SAM9260EK
  120. bool "Atmel AT91SAM9260-EK / AT91SAM9XE Evaluation Kit"
  121. depends on ARCH_AT91SAM9260
  122. help
  123. Select this if you are using Atmel's AT91SAM9260-EK or AT91SAM9XE Evaluation Kit
  124. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3933>
  125. config MACH_CAM60
  126. bool "KwikByte KB9260 (CAM60) board"
  127. depends on ARCH_AT91SAM9260
  128. help
  129. Select this if you are using KwikByte's KB9260 (CAM60) board based on the Atmel AT91SAM9260.
  130. <http://www.kwikbyte.com/KB9260.html>
  131. config MACH_SAM9_L9260
  132. bool "Olimex SAM9-L9260 board"
  133. depends on ARCH_AT91SAM9260
  134. help
  135. Select this if you are using Olimex's SAM9-L9260 board based on the Atmel AT91SAM9260.
  136. <http://www.olimex.com/dev/sam9-L9260.html>
  137. config MACH_USB_A9260
  138. bool "CALAO USB-A9260"
  139. depends on ARCH_AT91SAM9260
  140. help
  141. Select this if you are using a Calao Systems USB-A9260.
  142. <http://www.calao-systems.com>
  143. config MACH_QIL_A9260
  144. bool "CALAO QIL-A9260 board"
  145. depends on ARCH_AT91SAM9260
  146. help
  147. Select this if you are using a Calao Systems QIL-A9260 Board.
  148. <http://www.calao-systems.com>
  149. endif
  150. # ----------------------------------------------------------
  151. if ARCH_AT91SAM9261
  152. comment "AT91SAM9261 Board Type"
  153. config MACH_AT91SAM9261EK
  154. bool "Atmel AT91SAM9261-EK Evaluation Kit"
  155. depends on ARCH_AT91SAM9261
  156. help
  157. Select this if you are using Atmel's AT91SAM9261-EK Evaluation Kit.
  158. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3820>
  159. endif
  160. # ----------------------------------------------------------
  161. if ARCH_AT91SAM9263
  162. comment "AT91SAM9263 Board Type"
  163. config MACH_AT91SAM9263EK
  164. bool "Atmel AT91SAM9263-EK Evaluation Kit"
  165. depends on ARCH_AT91SAM9263
  166. help
  167. Select this if you are using Atmel's AT91SAM9263-EK Evaluation Kit.
  168. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4057>
  169. config MACH_USB_A9263
  170. bool "CALAO USB-A9263"
  171. depends on ARCH_AT91SAM9263
  172. help
  173. Select this if you are using a Calao Systems USB-A9263.
  174. <http://www.calao-systems.com>
  175. endif
  176. # ----------------------------------------------------------
  177. if ARCH_AT91SAM9RL
  178. comment "AT91SAM9RL Board Type"
  179. config MACH_AT91SAM9RLEK
  180. bool "Atmel AT91SAM9RL-EK Evaluation Kit"
  181. depends on ARCH_AT91SAM9RL
  182. help
  183. Select this if you are using Atmel's AT91SAM9RL-EK Evaluation Kit.
  184. endif
  185. # ----------------------------------------------------------
  186. if ARCH_AT91CAP9
  187. comment "AT91CAP9 Board Type"
  188. config MACH_AT91CAP9ADK
  189. bool "Atmel AT91CAP9A-DK Evaluation Kit"
  190. depends on ARCH_AT91CAP9
  191. help
  192. Select this if you are using Atmel's AT91CAP9A-DK Evaluation Kit.
  193. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4138>
  194. endif
  195. # ----------------------------------------------------------
  196. if ARCH_AT91X40
  197. comment "AT91X40 Board Type"
  198. config MACH_AT91EB01
  199. bool "Atmel AT91EB01 Evaluation Kit"
  200. help
  201. Select this if you are using Atmel's AT91EB01 Evaluation Kit.
  202. It is also a popular target for simulators such as GDB's
  203. ARM simulator (commonly known as the ARMulator) and the
  204. Skyeye simulator.
  205. endif
  206. # ----------------------------------------------------------
  207. comment "AT91 Board Options"
  208. config MTD_AT91_DATAFLASH_CARD
  209. bool "Enable DataFlash Card support"
  210. depends on (ARCH_AT91RM9200DK || MACH_AT91RM9200EK || MACH_AT91SAM9260EK || MACH_AT91SAM9261EK || MACH_AT91SAM9263EK || MACH_AT91CAP9ADK || MACH_SAM9_L9260 || MACH_ECBAT91)
  211. help
  212. Enable support for the DataFlash card.
  213. config MTD_NAND_AT91_BUSWIDTH_16
  214. bool "Enable 16-bit data bus interface to NAND flash"
  215. depends on (MACH_AT91SAM9260EK || MACH_AT91SAM9261EK || MACH_AT91SAM9263EK || MACH_AT91CAP9ADK)
  216. help
  217. On AT91SAM926x boards both types of NAND flash can be present
  218. (8 and 16 bit data bus width).
  219. # ----------------------------------------------------------
  220. comment "AT91 Feature Selections"
  221. config AT91_PROGRAMMABLE_CLOCKS
  222. bool "Programmable Clocks"
  223. help
  224. Select this if you need to program one or more of the PCK0..PCK3
  225. programmable clock outputs.
  226. config AT91_TIMER_HZ
  227. int "Kernel HZ (jiffies per second)"
  228. range 32 1024
  229. depends on ARCH_AT91
  230. default "128" if ARCH_AT91RM9200
  231. default "100"
  232. help
  233. On AT91rm9200 chips where you're using a system clock derived
  234. from the 32768 Hz hardware clock, this tick rate should divide
  235. it exactly: use a power-of-two value, such as 128 or 256, to
  236. reduce timing errors caused by rounding.
  237. On AT91sam926x chips, or otherwise when using a higher precision
  238. system clock (of at least several MHz), rounding is less of a
  239. problem so it can be safer to use a decimal values like 100.
  240. choice
  241. prompt "Select a UART for early kernel messages"
  242. config AT91_EARLY_DBGU
  243. bool "DBGU"
  244. config AT91_EARLY_USART0
  245. bool "USART0"
  246. config AT91_EARLY_USART1
  247. bool "USART1"
  248. config AT91_EARLY_USART2
  249. bool "USART2"
  250. depends on ! ARCH_AT91X40
  251. config AT91_EARLY_USART3
  252. bool "USART3"
  253. depends on (ARCH_AT91RM9200 || ARCH_AT91SAM9RL || ARCH_AT91SAM9260)
  254. config AT91_EARLY_USART4
  255. bool "USART4"
  256. depends on ARCH_AT91SAM9260
  257. config AT91_EARLY_USART5
  258. bool "USART5"
  259. depends on ARCH_AT91SAM9260
  260. endchoice
  261. endmenu
  262. endif