1# SPDX-License-Identifier: GPL-2.0-only 2menuconfig ARCH_FOOTBRIDGE 3 bool "FootBridge Implementations" 4 depends on ARCH_MULTI_V4 && !(ARCH_MULTI_V4T || ARCH_MULTI_V5) 5 depends on !(ARCH_MOXART || ARCH_GEMINI || ARCH_SA1100) 6 depends on ATAGS 7 depends on CPU_LITTLE_ENDIAN 8 depends on MMU 9 select ARCH_NO_SG_CHAIN 10 select CPU_SA110 11 select FOOTBRIDGE 12 select NEED_MACH_MEMORY_H 13 help 14 Support for systems based on the DC21285 companion chip 15 ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder. 16 17if ARCH_FOOTBRIDGE 18 19config ARCH_CATS 20 bool "CATS" 21 depends on UNUSED_BOARD_FILES 22 select CLKEVT_I8253 23 select CLKSRC_I8253 24 select ISA 25 select FORCE_PCI 26 help 27 Say Y here if you intend to run this kernel on the CATS. 28 29 Saying N will reduce the size of the Footbridge kernel. 30 31config ARCH_EBSA285_HOST 32 bool "EBSA285 (host mode)" 33 select ARCH_EBSA285 34 select ISA 35 select ARCH_MAY_HAVE_PC_FDC 36 select FORCE_PCI 37 help 38 Say Y here if you intend to run this kernel on the EBSA285 card 39 in host ("central function") mode. 40 41 Saying N will reduce the size of the Footbridge kernel. 42 43config ARCH_NETWINDER 44 bool "NetWinder" 45 select CLKEVT_I8253 46 select CLKSRC_I8253 47 select ISA 48 select FORCE_PCI 49 help 50 Say Y here if you intend to run this kernel on the Rebel.COM 51 NetWinder. Information about this machine can be found at: 52 53 <http://www.netwinder.org/> 54 55 Saying N will reduce the size of the Footbridge kernel. 56 57# Footbridge support 58config FOOTBRIDGE 59 def_bool y 60 select ARCH_MIGHT_HAVE_PC_SERIO 61 select ISA_DMA_API 62 63config ARCH_EBSA285 64 bool 65 66endif 67