Kconfig 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. if ARCH_AT91
  2. menu "Atmel AT91 System-on-Chip"
  3. choice
  4. prompt "Atmel AT91 Processor"
  5. config ARCH_AT91RM9200
  6. bool "AT91RM9200"
  7. config ARCH_AT91SAM9260
  8. bool "AT91SAM9260 or AT91SAM9XE"
  9. config ARCH_AT91SAM9261
  10. bool "AT91SAM9261"
  11. config ARCH_AT91SAM9263
  12. bool "AT91SAM9263"
  13. endchoice
  14. # ----------------------------------------------------------
  15. if ARCH_AT91RM9200
  16. comment "AT91RM9200 Board Type"
  17. config MACH_ONEARM
  18. bool "Ajeco 1ARM Single Board Computer"
  19. depends on ARCH_AT91RM9200
  20. help
  21. Select this if you are using Ajeco's 1ARM Single Board Computer.
  22. <http://www.ajeco.fi/products.htm>
  23. config ARCH_AT91RM9200DK
  24. bool "Atmel AT91RM9200-DK Development board"
  25. depends on ARCH_AT91RM9200
  26. help
  27. Select this if you are using Atmel's AT91RM9200-DK Development board.
  28. (Discontinued)
  29. config MACH_AT91RM9200EK
  30. bool "Atmel AT91RM9200-EK Evaluation Kit"
  31. depends on ARCH_AT91RM9200
  32. help
  33. Select this if you are using Atmel's AT91RM9200-EK Evaluation Kit.
  34. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507>
  35. config MACH_CSB337
  36. bool "Cogent CSB337"
  37. depends on ARCH_AT91RM9200
  38. help
  39. Select this if you are using Cogent's CSB337 board.
  40. <http://www.cogcomp.com/csb_csb337.htm>
  41. config MACH_CSB637
  42. bool "Cogent CSB637"
  43. depends on ARCH_AT91RM9200
  44. help
  45. Select this if you are using Cogent's CSB637 board.
  46. <http://www.cogcomp.com/csb_csb637.htm>
  47. config MACH_CARMEVA
  48. bool "Conitec ARM&EVA"
  49. depends on ARCH_AT91RM9200
  50. help
  51. Select this if you are using Conitec's AT91RM9200-MCU-Module.
  52. <http://www.conitec.net/english/linuxboard.htm>
  53. config MACH_ATEB9200
  54. bool "Embest ATEB9200"
  55. depends on ARCH_AT91RM9200
  56. help
  57. Select this if you are using Embest's ATEB9200 board.
  58. <http://www.embedinfo.com/english/product/ATEB9200.asp>
  59. config MACH_KB9200
  60. bool "KwikByte KB920x"
  61. depends on ARCH_AT91RM9200
  62. help
  63. Select this if you are using KwikByte's KB920x board.
  64. <http://kwikbyte.com/KB9202_description_new.htm>
  65. config MACH_PICOTUX2XX
  66. bool "picotux 200"
  67. depends on ARCH_AT91RM9200
  68. help
  69. Select this if you are using a picotux 200.
  70. <http://www.picotux.com/>
  71. config MACH_KAFA
  72. bool "Sperry-Sun KAFA board"
  73. depends on ARCH_AT91RM9200
  74. help
  75. Select this if you are using Sperry-Sun's KAFA board.
  76. endif
  77. # ----------------------------------------------------------
  78. if ARCH_AT91SAM9260
  79. comment "AT91SAM9260 Variants"
  80. config ARCH_AT91SAM9260_SAM9XE
  81. bool "AT91SAM9XE"
  82. depends on ARCH_AT91SAM9260
  83. help
  84. Select this if you are using Atmel's AT91SAM9XE System-on-Chip.
  85. They are basically AT91SAM9260s with various sizes of embedded Flash.
  86. comment "AT91SAM9260 / AT91SAM9XE Board Type"
  87. config MACH_AT91SAM9260EK
  88. bool "Atmel AT91SAM9260-EK / AT91SAM9XE Evaluation Kit"
  89. depends on ARCH_AT91SAM9260
  90. help
  91. Select this if you are using Atmel's AT91SAM9260-EK or AT91SAM9XE Evaluation Kit
  92. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3933>
  93. endif
  94. # ----------------------------------------------------------
  95. if ARCH_AT91SAM9261
  96. comment "AT91SAM9261 Board Type"
  97. config MACH_AT91SAM9261EK
  98. bool "Atmel AT91SAM9261-EK Evaluation Kit"
  99. depends on ARCH_AT91SAM9261
  100. help
  101. Select this if you are using Atmel's AT91SAM9261-EK Evaluation Kit.
  102. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3820>
  103. endif
  104. # ----------------------------------------------------------
  105. if ARCH_AT91SAM9263
  106. comment "AT91SAM9263 Board Type"
  107. config MACH_AT91SAM9263EK
  108. bool "Atmel AT91SAM9263-EK Evaluation Kit"
  109. depends on ARCH_AT91SAM9263
  110. help
  111. Select this if you are using Atmel's AT91SAM9263-EK Evaluation Kit.
  112. <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4057>
  113. endif
  114. # ----------------------------------------------------------
  115. comment "AT91 Board Options"
  116. config MTD_AT91_DATAFLASH_CARD
  117. bool "Enable DataFlash Card support"
  118. depends on (ARCH_AT91RM9200DK || MACH_AT91RM9200EK || MACH_AT91SAM9260EK || MACH_AT91SAM9261EK || MACH_AT91SAM9263EK)
  119. help
  120. Enable support for the DataFlash card.
  121. config MTD_NAND_AT91_BUSWIDTH_16
  122. bool "Enable 16-bit data bus interface to NAND flash"
  123. depends on (MACH_AT91SAM9260EK || MACH_AT91SAM9261EK || MACH_AT91SAM9263EK)
  124. help
  125. On AT91SAM926x boards both types of NAND flash can be present
  126. (8 and 16 bit data bus width).
  127. # ----------------------------------------------------------
  128. comment "AT91 Feature Selections"
  129. config AT91_PROGRAMMABLE_CLOCKS
  130. bool "Programmable Clocks"
  131. help
  132. Select this if you need to program one or more of the PCK0..PCK3
  133. programmable clock outputs.
  134. endmenu
  135. endif