blob: a63f97406020753baf0efd7ee936b747d9446bdf [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * (C) Copyright 2007-2008
3 * Stelian Pop <stelian@popies.net>
4 * Lead Tech Design <www.leadtechdesign.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8#ifndef __ASM_ARM_ARCH_HARDWARE_H__
9#define __ASM_ARM_ARCH_HARDWARE_H__
10
11#if defined(CONFIG_AT91RM9200)
12# include <asm/arch/at91rm9200.h>
13#elif defined(CONFIG_AT91SAM9260) || defined(CONFIG_AT91SAM9G20) || \
14 defined(CONFIG_AT91SAM9XE)
15# include <asm/arch/at91sam9260.h>
16#elif defined(CONFIG_AT91SAM9261) || defined(CONFIG_AT91SAM9G10)
17# include <asm/arch/at91sam9261.h>
18#elif defined(CONFIG_AT91SAM9263)
19# include <asm/arch/at91sam9263.h>
20#elif defined(CONFIG_AT91SAM9RL)
21# include <asm/arch/at91sam9rl.h>
22#elif defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45)
23# include <asm/arch/at91sam9g45.h>
24#elif defined(CONFIG_AT91SAM9N12) || defined(CONFIG_AT91SAM9X5)
25# include <asm/arch/at91sam9x5.h>
26#elif defined(CONFIG_AT91CAP9)
27# include <asm/arch/at91cap9.h>
28#elif defined(CONFIG_AT91X40)
29# include <asm/arch/at91x40.h>
30#elif defined(CONFIG_SAMA5D3)
31# include <asm/arch/sama5d3.h>
32#else
33# error "Unsupported AT91 processor"
34#endif
35
36#endif /* __ASM_ARM_ARCH_HARDWARE_H__ */