Kconfig 13 KB

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