Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Copyright (C) 2013-15 Synopsys, Inc. (www.synopsys.com)
  4. #
  5. menuconfig ARC_PLAT_AXS10X
  6. bool "Synopsys ARC AXS10x Software Development Platforms"
  7. select DW_APB_ICTL
  8. select GPIO_DWAPB
  9. select OF_GPIO
  10. select HAVE_PCI
  11. select GENERIC_IRQ_CHIP
  12. select GPIOLIB
  13. select AXS101 if ISA_ARCOMPACT
  14. select AXS103 if ISA_ARCV2
  15. help
  16. Support for the ARC AXS10x Software Development Platforms.
  17. The AXS10x Platforms consist of a mainboard with peripherals,
  18. on which several daughter cards can be placed. The daughter cards
  19. typically contain a CPU and memory.
  20. if ARC_PLAT_AXS10X
  21. config AXS101
  22. depends on ISA_ARCOMPACT
  23. bool "AXS101 with AXC001 CPU Card (ARC 770D/EM6/AS221)"
  24. help
  25. This adds support for the 770D/EM6/AS221 CPU Card. Only the ARC
  26. 770D is supported in Linux.
  27. The AXS101 Platform consists of an AXS10x mainboard with
  28. this daughtercard. Please use the axs101.dts device tree
  29. with this configuration.
  30. config AXS103
  31. bool "AXS103 with AXC003 CPU Card (ARC HS38x)"
  32. depends on ISA_ARCV2
  33. help
  34. This adds support for the HS38x CPU Card.
  35. The AXS103 Platform consists of an AXS10x mainboard with
  36. this daughtercard. Please use the axs103.dts device tree
  37. with this configuration.
  38. endif