Kconfig 3.5 KB

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