xref: /OK3568_Linux_fs/u-boot/board/imgtec/xilfpga/xilfpga.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * Imagination Technologies MIPSfpga platform code
3  *
4  * Copyright (C) 2016, Imagination Technologies Ltd.
5  *
6  * Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
7  *
8  * SPDX-License-Identifier:	GPL-2.0+
9  *
10  */
11 
12 #include <common.h>
13 
14 DECLARE_GLOBAL_DATA_PTR;
15 
16 /* initialize the DDR Controller and PHY */
dram_init(void)17 int dram_init(void)
18 {
19 	/* MIG IP block is smart and doesn't need SW
20 	 * to do any init */
21 	gd->ram_size = CONFIG_SYS_SDRAM_SIZE;	/* in bytes */
22 
23 	return 0;
24 }
25