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 9menuconfig ARC_PLAT_AXS10X 10 bool "Synopsys ARC AXS10x Software Development Platforms" 11 select DW_APB_ICTL 12 select GPIO_DWAPB 13 select OF_GPIO 14 select MIGHT_HAVE_PCI 15 select GENERIC_IRQ_CHIP 16 select GPIOLIB 17 select AXS101 if ISA_ARCOMPACT 18 select AXS103 if ISA_ARCV2 19 help 20 Support for the ARC AXS10x Software Development Platforms. 21 22 The AXS10x Platforms consist of a mainboard with peripherals, 23 on which several daughter cards can be placed. The daughter cards 24 typically contain a CPU and memory. 25 26if ARC_PLAT_AXS10X 27 28config AXS101 29 depends on ISA_ARCOMPACT 30 bool "AXS101 with AXC001 CPU Card (ARC 770D/EM6/AS221)" 31 help 32 This adds support for the 770D/EM6/AS221 CPU Card. Only the ARC 33 770D is supported in Linux. 34 35 The AXS101 Platform consists of an AXS10x mainboard with 36 this daughtercard. Please use the axs101.dts device tree 37 with this configuration. 38 39config AXS103 40 bool "AXS103 with AXC003 CPU Card (ARC HS38x)" 41 depends on ISA_ARCV2 42 help 43 This adds support for the HS38x CPU Card. 44 45 The AXS103 Platform consists of an AXS10x mainboard with 46 this daughtercard. Please use the axs103.dts device tree 47 with this configuration. 48 49endif 50