Kconfig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. endif
  73. # ----------------------------------------------------------
  74. if ARCH_AT91SAM9261
  75. comment "AT91SAM9261 Board Type"
  76. endif
  77. # ----------------------------------------------------------
  78. comment "AT91 Feature Selections"
  79. config AT91_PROGRAMMABLE_CLOCKS
  80. bool "Programmable Clocks"
  81. help
  82. Select this if you need to program one or more of the PCK0..PCK3
  83. programmable clock outputs.
  84. endmenu
  85. endif