blob: 6a836370e36dd6d57259e3736cd4c518f1a6c7b7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Zubair Lutfullah Kakakhelebf2b9e2016-07-29 15:11:20 +01002/*
3 * Imagination Technologies MIPSfpga platform code
4 *
5 * Copyright (C) 2016, Imagination Technologies Ltd.
6 *
7 * Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8 *
Zubair Lutfullah Kakakhelebf2b9e2016-07-29 15:11:20 +01009 */
10
11#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -060012#include <init.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Zubair Lutfullah Kakakhelebf2b9e2016-07-29 15:11:20 +010014
Simon Glass088454c2017-03-31 08:40:25 -060015DECLARE_GLOBAL_DATA_PTR;
16
Zubair Lutfullah Kakakhelebf2b9e2016-07-29 15:11:20 +010017/* initialize the DDR Controller and PHY */
Simon Glassf1683aa2017-04-06 12:47:05 -060018int dram_init(void)
Zubair Lutfullah Kakakhelebf2b9e2016-07-29 15:11:20 +010019{
20 /* MIG IP block is smart and doesn't need SW
21 * to do any init */
Simon Glass088454c2017-03-31 08:40:25 -060022 gd->ram_size = CONFIG_SYS_SDRAM_SIZE; /* in bytes */
23
24 return 0;
Zubair Lutfullah Kakakhelebf2b9e2016-07-29 15:11:20 +010025}