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 8 #ifndef __ASSEMBLY__ 9 10 #if defined(CONFIG_TARGET_SOCFPGA_GEN5) 11 #include <asm/arch/sdram_gen5.h> 12 #elif defined(CONFIG_TARGET_SOCFPGA_ARRIA10) 13 #include <asm/arch/sdram_arria10.h> 14 #endif 15 16 #endif 17 #endif /* _SDRAM_H_ */ 18