Kconfig 9.7 KB

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