Kconfig 14 KB

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