hardware.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  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. #if defined(CONFIG_AT91RM9200)
  11. # include <asm/arch/at91rm9200.h>
  12. #elif defined(CONFIG_AT91SAM9260) || defined(CONFIG_AT91SAM9G20) || \
  13. defined(CONFIG_AT91SAM9XE)
  14. # include <asm/arch/at91sam9260.h>
  15. #elif defined(CONFIG_AT91SAM9261) || defined(CONFIG_AT91SAM9G10)
  16. # include <asm/arch/at91sam9261.h>
  17. #elif defined(CONFIG_AT91SAM9263)
  18. # include <asm/arch/at91sam9263.h>
  19. #elif defined(CONFIG_AT91SAM9RL)
  20. # include <asm/arch/at91sam9rl.h>
  21. #elif defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45)
  22. # include <asm/arch/at91sam9g45.h>
  23. #elif defined(CONFIG_AT91SAM9N12) || defined(CONFIG_AT91SAM9X5)
  24. # include <asm/arch/at91sam9x5.h>
  25. #elif defined(CONFIG_SAMA5D2)
  26. # include <asm/arch/sama5d2.h>
  27. #elif defined(CONFIG_SAMA5D3)
  28. # include <asm/arch/sama5d3.h>
  29. #elif defined(CONFIG_SAMA5D4)
  30. # include <asm/arch/sama5d4.h>
  31. #else
  32. # error "Unsupported AT91 processor"
  33. #endif
  34. #endif /* __ASM_ARM_ARCH_HARDWARE_H__ */