1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2007-2008 4 * Stelian Pop <stelian@popies.net> 5 * Lead Tech Design <www.leadtechdesign.com> 6 */ 7 #ifndef __ASM_ARM_ARCH_HARDWARE_H__ 8 #define __ASM_ARM_ARCH_HARDWARE_H__ 9 10 #if defined(CONFIG_AT91RM9200) 11 # include <asm/arch/at91rm9200.h> 12 #elif defined(CONFIG_AT91SAM9260) || defined(CONFIG_AT91SAM9G20) 13 # include <asm/arch/at91sam9260.h> 14 #elif defined(CONFIG_AT91SAM9261) || defined(CONFIG_AT91SAM9G10) 15 # include <asm/arch/at91sam9261.h> 16 #elif defined(CONFIG_AT91SAM9263) 17 # include <asm/arch/at91sam9263.h> 18 #elif defined(CONFIG_AT91SAM9RL) 19 # include <asm/arch/at91sam9rl.h> 20 #elif defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45) 21 # include <asm/arch/at91sam9g45.h> 22 #elif defined(CONFIG_AT91SAM9N12) || defined(CONFIG_AT91SAM9X5) 23 # include <asm/arch/at91sam9x5.h> 24 #elif defined(CONFIG_SAM9X60) 25 # include <asm/arch/sam9x60.h> 26 #elif defined(CONFIG_SAM9X7) 27 # include <asm/arch/sam9x7.h> 28 #elif defined(CONFIG_SAMA7G5) 29 # include <asm/arch/sama7g5.h> 30 #elif defined(CONFIG_SAMA7D65) 31 # include <asm/arch/sama7d65.h> 32 #elif defined(CONFIG_SAMA5D2) 33 # include <asm/arch/sama5d2.h> 34 #elif defined(CONFIG_SAMA5D3) 35 # include <asm/arch/sama5d3.h> 36 #elif defined(CONFIG_SAMA5D4) 37 # include <asm/arch/sama5d4.h> 38 #else 39 # error "Unsupported AT91 processor" 40 #endif 41 42 #endif /* __ASM_ARM_ARCH_HARDWARE_H__ */ 43