Kconfig 13 KB

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