sdram.h 344 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright Altera Corporation (C) 2014-2015
  4. */
  5. #ifndef _SDRAM_H_
  6. #define _SDRAM_H_
  7. #ifndef __ASSEMBLY__
  8. #if defined(CONFIG_TARGET_SOCFPGA_GEN5)
  9. #include <asm/arch/sdram_gen5.h>
  10. #elif defined(CONFIG_TARGET_SOCFPGA_ARRIA10)
  11. #include <asm/arch/sdram_arria10.h>
  12. #endif
  13. #endif
  14. #endif /* _SDRAM_H_ */