Kconfig 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  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. config MACH_NEOCORE926
  195. bool "Adeneo NEOCORE926"
  196. depends on ARCH_AT91SAM9263
  197. help
  198. Select this if you are using the Adeneo Neocore 926 board.
  199. endif
  200. # ----------------------------------------------------------
  201. if ARCH_AT91SAM9RL
  202. comment "AT91SAM9RL Board Type"
  203. config MACH_AT91SAM9RLEK
  204. bool "Atmel AT91SAM9RL-EK Evaluation Kit"
  205. depends on ARCH_AT91SAM9RL
  206. help
  207. Select this if you are using Atmel's AT91SAM9RL-EK Evaluation Kit.
  208. endif
  209. # ----------------------------------------------------------
  210. if ARCH_AT91SAM9G20
  211. comment "AT91SAM9G20 Board Type"
  212. config MACH_AT91SAM9G20EK
  213. bool "Atmel AT91SAM9G20-EK Evaluation Kit"
  214. depends on ARCH_AT91SAM9G20
  215. help
  216. Select this if you are using Atmel's AT91SAM9G20-EK Evaluation Kit.
  217. endif
  218. # ----------------------------------------------------------
  219. if ARCH_AT91CAP9
  220. comment "AT91CAP9 Board Type"
  221. config MACH_AT91CAP9ADK
  222. bool "Atmel AT91CAP9A-DK Evaluation Kit"
  223. depends on ARCH_AT91CAP9
  224. help
  225. Select this if you are using Atmel's AT91CAP9A-DK Evaluation Kit.
  226. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4138>
  227. endif
  228. # ----------------------------------------------------------
  229. if ARCH_AT91X40
  230. comment "AT91X40 Board Type"
  231. config MACH_AT91EB01
  232. bool "Atmel AT91EB01 Evaluation Kit"
  233. help
  234. Select this if you are using Atmel's AT91EB01 Evaluation Kit.
  235. It is also a popular target for simulators such as GDB's
  236. ARM simulator (commonly known as the ARMulator) and the
  237. Skyeye simulator.
  238. endif
  239. # ----------------------------------------------------------
  240. comment "AT91 Board Options"
  241. config MTD_AT91_DATAFLASH_CARD
  242. bool "Enable DataFlash Card support"
  243. depends on (ARCH_AT91RM9200DK || MACH_AT91RM9200EK || MACH_AT91SAM9260EK || MACH_AT91SAM9261EK || MACH_AT91SAM9263EK || MACH_AT91SAM9G20EK || MACH_ECBAT91 || MACH_SAM9_L9260 || MACH_AT91CAP9ADK || MACH_NEOCORE926)
  244. help
  245. Enable support for the DataFlash card.
  246. config MTD_NAND_ATMEL_BUSWIDTH_16
  247. bool "Enable 16-bit data bus interface to NAND flash"
  248. depends on (MACH_AT91SAM9260EK || MACH_AT91SAM9261EK || MACH_AT91SAM9263EK || MACH_AT91SAM9G20EK || MACH_AT91CAP9ADK)
  249. help
  250. On AT91SAM926x boards both types of NAND flash can be present
  251. (8 and 16 bit data bus width).
  252. # ----------------------------------------------------------
  253. comment "AT91 Feature Selections"
  254. config AT91_PROGRAMMABLE_CLOCKS
  255. bool "Programmable Clocks"
  256. help
  257. Select this if you need to program one or more of the PCK0..PCK3
  258. programmable clock outputs.
  259. config AT91_SLOW_CLOCK
  260. bool "Suspend-to-RAM disables main oscillator"
  261. depends on SUSPEND
  262. help
  263. Select this if you want Suspend-to-RAM to save the most power
  264. possible (without powering off the CPU) by disabling the PLLs
  265. and main oscillator so that only the 32 KiHz clock is available.
  266. When only that slow-clock is available, some peripherals lose
  267. functionality. Many can't issue wakeup events unless faster
  268. clocks are available. Some lose their operating state and
  269. need to be completely re-initialized.
  270. config AT91_TIMER_HZ
  271. int "Kernel HZ (jiffies per second)"
  272. range 32 1024
  273. depends on ARCH_AT91
  274. default "128" if ARCH_AT91RM9200
  275. default "100"
  276. help
  277. On AT91rm9200 chips where you're using a system clock derived
  278. from the 32768 Hz hardware clock, this tick rate should divide
  279. it exactly: use a power-of-two value, such as 128 or 256, to
  280. reduce timing errors caused by rounding.
  281. On AT91sam926x chips, or otherwise when using a higher precision
  282. system clock (of at least several MHz), rounding is less of a
  283. problem so it can be safer to use a decimal values like 100.
  284. choice
  285. prompt "Select a UART for early kernel messages"
  286. config AT91_EARLY_DBGU
  287. bool "DBGU"
  288. config AT91_EARLY_USART0
  289. bool "USART0"
  290. config AT91_EARLY_USART1
  291. bool "USART1"
  292. config AT91_EARLY_USART2
  293. bool "USART2"
  294. depends on ! ARCH_AT91X40
  295. config AT91_EARLY_USART3
  296. bool "USART3"
  297. depends on (ARCH_AT91RM9200 || ARCH_AT91SAM9RL || ARCH_AT91SAM9260 || ARCH_AT91SAM9G20)
  298. config AT91_EARLY_USART4
  299. bool "USART4"
  300. depends on ARCH_AT91SAM9260 || ARCH_AT91SAM9G20
  301. config AT91_EARLY_USART5
  302. bool "USART5"
  303. depends on ARCH_AT91SAM9260 || ARCH_AT91SAM9G20
  304. endchoice
  305. endmenu
  306. endif