uboot/arch/arm/mach-at91/include/mach/at91sam9_matrix.h
<<
>>
Prefs
   1/*
   2 * Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jrosoft.com>
   3 *
   4 * SPDX-License-Identifier:     GPL-2.0+
   5 */
   6
   7#ifndef __ASM_ARCH_AT91SAM9_MATRIX_H
   8#define __ASM_ARCH_AT91SAM9_MATRIX_H
   9
  10#if defined(CONFIG_AT91SAM9260) || defined(CONFIG_AT91SAM9G20)
  11#include <asm/arch/at91sam9260_matrix.h>
  12#elif defined(CONFIG_AT91SAM9261)
  13#include <asm/arch/at91sam9261_matrix.h>
  14#elif defined(CONFIG_AT91SAM9263)
  15#include <asm/arch/at91sam9263_matrix.h>
  16#elif defined(CONFIG_AT91SAM9RL)
  17#include <asm/arch/at91sam9rl_matrix.h>
  18#elif defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45)
  19#include <asm/arch/at91sam9g45_matrix.h>
  20#elif defined(CONFIG_AT91SAM9N12) || defined(CONFIG_AT91SAM9X5)
  21#include <asm/arch/at91sam9x5_matrix.h>
  22#else
  23#error "Unsupported AT91SAM9/CAP9 processor"
  24#endif
  25
  26#endif /* __ASM_ARCH_AT91SAM9_MATRIX_H */
  27