Kconfig 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. if ARCH_AT91
  2. config HAVE_AT91_DATAFLASH_CARD
  3. bool
  4. config HAVE_NAND_ATMEL_BUSWIDTH_16
  5. bool
  6. config HAVE_AT91_USART3
  7. bool
  8. config HAVE_AT91_USART4
  9. bool
  10. config HAVE_AT91_USART5
  11. bool
  12. menu "Atmel AT91 System-on-Chip"
  13. choice
  14. prompt "Atmel AT91 Processor"
  15. config ARCH_AT91RM9200
  16. bool "AT91RM9200"
  17. select CPU_ARM920T
  18. select GENERIC_CLOCKEVENTS
  19. select HAVE_AT91_USART3
  20. config ARCH_AT91SAM9260
  21. bool "AT91SAM9260 or AT91SAM9XE"
  22. select CPU_ARM926T
  23. select GENERIC_CLOCKEVENTS
  24. select HAVE_AT91_USART3
  25. select HAVE_AT91_USART4
  26. select HAVE_AT91_USART5
  27. config ARCH_AT91SAM9261
  28. bool "AT91SAM9261"
  29. select CPU_ARM926T
  30. select GENERIC_CLOCKEVENTS
  31. select HAVE_FB_ATMEL
  32. config ARCH_AT91SAM9G10
  33. bool "AT91SAM9G10"
  34. select CPU_ARM926T
  35. select GENERIC_CLOCKEVENTS
  36. select HAVE_FB_ATMEL
  37. config ARCH_AT91SAM9263
  38. bool "AT91SAM9263"
  39. select CPU_ARM926T
  40. select GENERIC_CLOCKEVENTS
  41. select HAVE_FB_ATMEL
  42. config ARCH_AT91SAM9RL
  43. bool "AT91SAM9RL"
  44. select CPU_ARM926T
  45. select GENERIC_CLOCKEVENTS
  46. select HAVE_AT91_USART3
  47. select HAVE_FB_ATMEL
  48. config ARCH_AT91SAM9G20
  49. bool "AT91SAM9G20"
  50. select CPU_ARM926T
  51. select GENERIC_CLOCKEVENTS
  52. select HAVE_AT91_USART3
  53. select HAVE_AT91_USART4
  54. select HAVE_AT91_USART5
  55. config ARCH_AT91SAM9G45
  56. bool "AT91SAM9G45"
  57. select CPU_ARM926T
  58. select GENERIC_CLOCKEVENTS
  59. select HAVE_AT91_USART3
  60. select HAVE_FB_ATMEL
  61. config ARCH_AT91CAP9
  62. bool "AT91CAP9"
  63. select CPU_ARM926T
  64. select GENERIC_CLOCKEVENTS
  65. select HAVE_FB_ATMEL
  66. config ARCH_AT572D940HF
  67. bool "AT572D940HF"
  68. select CPU_ARM926T
  69. select GENERIC_CLOCKEVENTS
  70. config ARCH_AT91X40
  71. bool "AT91x40"
  72. select ARCH_USES_GETTIMEOFFSET
  73. endchoice
  74. config AT91_PMC_UNIT
  75. bool
  76. default !ARCH_AT91X40
  77. # ----------------------------------------------------------
  78. if ARCH_AT91RM9200
  79. comment "AT91RM9200 Board Type"
  80. config MACH_ONEARM
  81. bool "Ajeco 1ARM Single Board Computer"
  82. help
  83. Select this if you are using Ajeco's 1ARM Single Board Computer.
  84. <http://www.ajeco.fi/products.htm>
  85. config ARCH_AT91RM9200DK
  86. bool "Atmel AT91RM9200-DK Development board"
  87. select HAVE_AT91_DATAFLASH_CARD
  88. help
  89. Select this if you are using Atmel's AT91RM9200-DK Development board.
  90. (Discontinued)
  91. config MACH_AT91RM9200EK
  92. bool "Atmel AT91RM9200-EK Evaluation Kit"
  93. select HAVE_AT91_DATAFLASH_CARD
  94. help
  95. Select this if you are using Atmel's AT91RM9200-EK Evaluation Kit.
  96. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507>
  97. config MACH_CSB337
  98. bool "Cogent CSB337"
  99. help
  100. Select this if you are using Cogent's CSB337 board.
  101. <http://www.cogcomp.com/csb_csb337.htm>
  102. config MACH_CSB637
  103. bool "Cogent CSB637"
  104. help
  105. Select this if you are using Cogent's CSB637 board.
  106. <http://www.cogcomp.com/csb_csb637.htm>
  107. config MACH_CARMEVA
  108. bool "Conitec ARM&EVA"
  109. help
  110. Select this if you are using Conitec's AT91RM9200-MCU-Module.
  111. <http://www.conitec.net/english/linuxboard.htm>
  112. config MACH_ATEB9200
  113. bool "Embest ATEB9200"
  114. help
  115. Select this if you are using Embest's ATEB9200 board.
  116. <http://www.embedinfo.com/english/product/ATEB9200.asp>
  117. config MACH_KB9200
  118. bool "KwikByte KB920x"
  119. help
  120. Select this if you are using KwikByte's KB920x board.
  121. <http://kwikbyte.com/KB9202_description_new.htm>
  122. config MACH_PICOTUX2XX
  123. bool "picotux 200"
  124. help
  125. Select this if you are using a picotux 200.
  126. <http://www.picotux.com/>
  127. config MACH_KAFA
  128. bool "Sperry-Sun KAFA board"
  129. help
  130. Select this if you are using Sperry-Sun's KAFA board.
  131. config MACH_ECBAT91
  132. bool "emQbit ECB_AT91 SBC"
  133. select HAVE_AT91_DATAFLASH_CARD
  134. help
  135. Select this if you are using emQbit's ECB_AT91 board.
  136. <http://wiki.emqbit.com/free-ecb-at91>
  137. config MACH_YL9200
  138. bool "ucDragon YL-9200"
  139. help
  140. Select this if you are using the ucDragon YL-9200 board.
  141. config MACH_CPUAT91
  142. bool "Eukrea CPUAT91"
  143. help
  144. Select this if you are using the Eukrea Electromatique's
  145. CPUAT91 board <http://www.eukrea.com/>.
  146. config MACH_ECO920
  147. bool "eco920"
  148. help
  149. Select this if you are using the eco920 board
  150. endif
  151. # ----------------------------------------------------------
  152. if ARCH_AT91SAM9260
  153. comment "AT91SAM9260 Variants"
  154. config ARCH_AT91SAM9260_SAM9XE
  155. bool "AT91SAM9XE"
  156. help
  157. Select this if you are using Atmel's AT91SAM9XE System-on-Chip.
  158. They are basically AT91SAM9260s with various sizes of embedded Flash.
  159. comment "AT91SAM9260 / AT91SAM9XE Board Type"
  160. config MACH_AT91SAM9260EK
  161. bool "Atmel AT91SAM9260-EK / AT91SAM9XE Evaluation Kit"
  162. select HAVE_AT91_DATAFLASH_CARD
  163. select HAVE_NAND_ATMEL_BUSWIDTH_16
  164. help
  165. Select this if you are using Atmel's AT91SAM9260-EK or AT91SAM9XE Evaluation Kit
  166. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3933>
  167. config MACH_CAM60
  168. bool "KwikByte KB9260 (CAM60) board"
  169. help
  170. Select this if you are using KwikByte's KB9260 (CAM60) board based on the Atmel AT91SAM9260.
  171. <http://www.kwikbyte.com/KB9260.html>
  172. config MACH_SAM9_L9260
  173. bool "Olimex SAM9-L9260 board"
  174. select HAVE_AT91_DATAFLASH_CARD
  175. help
  176. Select this if you are using Olimex's SAM9-L9260 board based on the Atmel AT91SAM9260.
  177. <http://www.olimex.com/dev/sam9-L9260.html>
  178. config MACH_AFEB9260
  179. bool "Custom afeb9260 board v1"
  180. help
  181. Select this if you are using custom afeb9260 board based on
  182. open hardware design. Select this for revision 1 of the board.
  183. <svn://194.85.238.22/home/users/george/svn/arm9eb>
  184. <http://groups.google.com/group/arm9fpga-evolution-board>
  185. config MACH_USB_A9260
  186. bool "CALAO USB-A9260"
  187. help
  188. Select this if you are using a Calao Systems USB-A9260.
  189. <http://www.calao-systems.com>
  190. config MACH_QIL_A9260
  191. bool "CALAO QIL-A9260 board"
  192. help
  193. Select this if you are using a Calao Systems QIL-A9260 Board.
  194. <http://www.calao-systems.com>
  195. config MACH_CPU9260
  196. bool "Eukrea CPU9260 board"
  197. help
  198. Select this if you are using a Eukrea Electromatique's
  199. CPU9260 Board <http://www.eukrea.com/>
  200. endif
  201. # ----------------------------------------------------------
  202. if ARCH_AT91SAM9261
  203. comment "AT91SAM9261 Board Type"
  204. config MACH_AT91SAM9261EK
  205. bool "Atmel AT91SAM9261-EK Evaluation Kit"
  206. select HAVE_AT91_DATAFLASH_CARD
  207. select HAVE_NAND_ATMEL_BUSWIDTH_16
  208. help
  209. Select this if you are using Atmel's AT91SAM9261-EK Evaluation Kit.
  210. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3820>
  211. endif
  212. # ----------------------------------------------------------
  213. if ARCH_AT91SAM9G10
  214. comment "AT91SAM9G10 Board Type"
  215. config MACH_AT91SAM9G10EK
  216. bool "Atmel AT91SAM9G10-EK Evaluation Kit"
  217. select HAVE_AT91_DATAFLASH_CARD
  218. select HAVE_NAND_ATMEL_BUSWIDTH_16
  219. help
  220. Select this if you are using Atmel's AT91SAM9G10-EK Evaluation Kit.
  221. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4588>
  222. endif
  223. # ----------------------------------------------------------
  224. if ARCH_AT91SAM9263
  225. comment "AT91SAM9263 Board Type"
  226. config MACH_AT91SAM9263EK
  227. bool "Atmel AT91SAM9263-EK Evaluation Kit"
  228. select HAVE_AT91_DATAFLASH_CARD
  229. select HAVE_NAND_ATMEL_BUSWIDTH_16
  230. help
  231. Select this if you are using Atmel's AT91SAM9263-EK Evaluation Kit.
  232. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4057>
  233. config MACH_USB_A9263
  234. bool "CALAO USB-A9263"
  235. help
  236. Select this if you are using a Calao Systems USB-A9263.
  237. <http://www.calao-systems.com>
  238. config MACH_NEOCORE926
  239. bool "Adeneo NEOCORE926"
  240. select HAVE_AT91_DATAFLASH_CARD
  241. help
  242. Select this if you are using the Adeneo Neocore 926 board.
  243. endif
  244. # ----------------------------------------------------------
  245. if ARCH_AT91SAM9RL
  246. comment "AT91SAM9RL Board Type"
  247. config MACH_AT91SAM9RLEK
  248. bool "Atmel AT91SAM9RL-EK Evaluation Kit"
  249. help
  250. Select this if you are using Atmel's AT91SAM9RL-EK Evaluation Kit.
  251. endif
  252. # ----------------------------------------------------------
  253. if ARCH_AT91SAM9G20
  254. comment "AT91SAM9G20 Board Type"
  255. config MACH_AT91SAM9G20EK
  256. bool "Atmel AT91SAM9G20-EK Evaluation Kit"
  257. select HAVE_AT91_DATAFLASH_CARD
  258. select HAVE_NAND_ATMEL_BUSWIDTH_16
  259. help
  260. Select this if you are using Atmel's AT91SAM9G20-EK Evaluation Kit
  261. that embeds only one SD/MMC slot.
  262. config MACH_AT91SAM9G20EK_2MMC
  263. bool "Atmel AT91SAM9G20-EK Evaluation Kit with 2 SD/MMC Slots"
  264. select HAVE_NAND_ATMEL_BUSWIDTH_16
  265. help
  266. Select this if you are using an Atmel AT91SAM9G20-EK Evaluation Kit
  267. with 2 SD/MMC Slots. This is the case for AT91SAM9G20-EK rev. C and
  268. onwards.
  269. config MACH_CPU9G20
  270. bool "Eukrea CPU9G20 board"
  271. help
  272. Select this if you are using a Eukrea Electromatique's
  273. CPU9G20 Board <http://www.eukrea.com/>
  274. config MACH_PORTUXG20
  275. bool "taskit PortuxG20"
  276. help
  277. Select this if you are using taskit's PortuxG20.
  278. <http://www.taskit.de/en/>
  279. config MACH_STAMP9G20
  280. bool "taskit Stamp9G20 CPU module"
  281. help
  282. Select this if you are using taskit's Stamp9G20 CPU module on its
  283. evaluation board.
  284. <http://www.taskit.de/en/>
  285. endif
  286. if (ARCH_AT91SAM9260 || ARCH_AT91SAM9G20)
  287. comment "AT91SAM9260/AT91SAM9G20 boards"
  288. config MACH_SNAPPER_9260
  289. bool "Bluewater Systems Snapper 9260/9G20 module"
  290. help
  291. Select this if you are using the Bluewater Systems Snapper 9260 or
  292. Snapper 9G20 modules.
  293. <http://www.bluewatersys.com/>
  294. endif
  295. # ----------------------------------------------------------
  296. if ARCH_AT91SAM9G45
  297. comment "AT91SAM9G45 Board Type"
  298. config MACH_AT91SAM9G45EKES
  299. bool "Atmel AT91SAM9G45-EKES Evaluation Kit"
  300. select HAVE_NAND_ATMEL_BUSWIDTH_16
  301. help
  302. Select this if you are using Atmel's AT91SAM9G45-EKES Evaluation Kit.
  303. "ES" at the end of the name means that this board is an
  304. Engineering Sample.
  305. endif
  306. # ----------------------------------------------------------
  307. if ARCH_AT91CAP9
  308. comment "AT91CAP9 Board Type"
  309. config MACH_AT91CAP9ADK
  310. bool "Atmel AT91CAP9A-DK Evaluation Kit"
  311. select HAVE_AT91_DATAFLASH_CARD
  312. select HAVE_NAND_ATMEL_BUSWIDTH_16
  313. help
  314. Select this if you are using Atmel's AT91CAP9A-DK Evaluation Kit.
  315. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4138>
  316. endif
  317. # ----------------------------------------------------------
  318. if ARCH_AT572D940HF
  319. comment "AT572D940HF Board Type"
  320. config MACH_AT572D940HFEB
  321. bool "AT572D940HF-EK"
  322. depends on ARCH_AT572D940HF
  323. select HAVE_AT91_DATAFLASH_CARD
  324. select HAVE_NAND_ATMEL_BUSWIDTH_16
  325. help
  326. Select this if you are using Atmel's AT572D940HF-EK evaluation kit.
  327. <http://www.atmel.com/products/diopsis/default.asp>
  328. endif
  329. # ----------------------------------------------------------
  330. if ARCH_AT91X40
  331. comment "AT91X40 Board Type"
  332. config MACH_AT91EB01
  333. bool "Atmel AT91EB01 Evaluation Kit"
  334. help
  335. Select this if you are using Atmel's AT91EB01 Evaluation Kit.
  336. It is also a popular target for simulators such as GDB's
  337. ARM simulator (commonly known as the ARMulator) and the
  338. Skyeye simulator.
  339. endif
  340. # ----------------------------------------------------------
  341. comment "AT91 Board Options"
  342. config MTD_AT91_DATAFLASH_CARD
  343. bool "Enable DataFlash Card support"
  344. depends on HAVE_AT91_DATAFLASH_CARD
  345. help
  346. Enable support for the DataFlash card.
  347. config MTD_NAND_ATMEL_BUSWIDTH_16
  348. bool "Enable 16-bit data bus interface to NAND flash"
  349. depends on HAVE_NAND_ATMEL_BUSWIDTH_16
  350. help
  351. On AT91SAM926x boards both types of NAND flash can be present
  352. (8 and 16 bit data bus width).
  353. # ----------------------------------------------------------
  354. comment "AT91 Feature Selections"
  355. config AT91_PROGRAMMABLE_CLOCKS
  356. bool "Programmable Clocks"
  357. help
  358. Select this if you need to program one or more of the PCK0..PCK3
  359. programmable clock outputs.
  360. config AT91_SLOW_CLOCK
  361. bool "Suspend-to-RAM disables main oscillator"
  362. depends on SUSPEND
  363. help
  364. Select this if you want Suspend-to-RAM to save the most power
  365. possible (without powering off the CPU) by disabling the PLLs
  366. and main oscillator so that only the 32 KiHz clock is available.
  367. When only that slow-clock is available, some peripherals lose
  368. functionality. Many can't issue wakeup events unless faster
  369. clocks are available. Some lose their operating state and
  370. need to be completely re-initialized.
  371. config AT91_TIMER_HZ
  372. int "Kernel HZ (jiffies per second)"
  373. range 32 1024
  374. depends on ARCH_AT91
  375. default "128" if ARCH_AT91RM9200
  376. default "100"
  377. help
  378. On AT91rm9200 chips where you're using a system clock derived
  379. from the 32768 Hz hardware clock, this tick rate should divide
  380. it exactly: use a power-of-two value, such as 128 or 256, to
  381. reduce timing errors caused by rounding.
  382. On AT91sam926x chips, or otherwise when using a higher precision
  383. system clock (of at least several MHz), rounding is less of a
  384. problem so it can be safer to use a decimal values like 100.
  385. choice
  386. prompt "Select a UART for early kernel messages"
  387. config AT91_EARLY_DBGU
  388. bool "DBGU"
  389. config AT91_EARLY_USART0
  390. bool "USART0"
  391. config AT91_EARLY_USART1
  392. bool "USART1"
  393. config AT91_EARLY_USART2
  394. bool "USART2"
  395. depends on ! ARCH_AT91X40
  396. config AT91_EARLY_USART3
  397. bool "USART3"
  398. depends on HAVE_AT91_USART3
  399. config AT91_EARLY_USART4
  400. bool "USART4"
  401. depends on HAVE_AT91_USART4
  402. config AT91_EARLY_USART5
  403. bool "USART5"
  404. depends on HAVE_AT91_USART5
  405. endchoice
  406. endmenu
  407. endif