Kconfig 14 KB

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