Kconfig 9.8 KB

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