Kconfig 13 KB

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