Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #
  2. # Copyright (C) 2013-15 Synopsys, Inc. (www.synopsys.com)
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License version 2 as
  6. # published by the Free Software Foundation.
  7. #
  8. menuconfig ARC_PLAT_AXS10X
  9. bool "Synopsys ARC AXS10x Software Development Platforms"
  10. select DW_APB_ICTL
  11. select GPIO_DWAPB
  12. select OF_GPIO
  13. select MIGHT_HAVE_PCI
  14. select GENERIC_IRQ_CHIP
  15. select GPIOLIB
  16. select AXS101 if ISA_ARCOMPACT
  17. select AXS103 if ISA_ARCV2
  18. help
  19. Support for the ARC AXS10x Software Development Platforms.
  20. The AXS10x Platforms consist of a mainboard with peripherals,
  21. on which several daughter cards can be placed. The daughter cards
  22. typically contain a CPU and memory.
  23. if ARC_PLAT_AXS10X
  24. config AXS101
  25. depends on ISA_ARCOMPACT
  26. bool "AXS101 with AXC001 CPU Card (ARC 770D/EM6/AS221)"
  27. help
  28. This adds support for the 770D/EM6/AS221 CPU Card. Only the ARC
  29. 770D is supported in Linux.
  30. The AXS101 Platform consists of an AXS10x mainboard with
  31. this daughtercard. Please use the axs101.dts device tree
  32. with this configuration.
  33. config AXS103
  34. bool "AXS103 with AXC003 CPU Card (ARC HS38x)"
  35. depends on ISA_ARCV2
  36. help
  37. This adds support for the HS38x CPU Card.
  38. The AXS103 Platform consists of an AXS10x mainboard with
  39. this daughtercard. Please use the axs103.dts device tree
  40. with this configuration.
  41. endif