]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/imgtec/xilfpga/xilfpga.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / board / imgtec / xilfpga / xilfpga.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
ebf2b9e3
ZLK
2/*
3 * Imagination Technologies MIPSfpga platform code
4 *
5 * Copyright (C) 2016, Imagination Technologies Ltd.
6 *
7 * Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8 *
ebf2b9e3
ZLK
9 */
10
d678a59d 11#include <common.h>
691d719d 12#include <init.h>
401d1c4f 13#include <asm/global_data.h>
ebf2b9e3 14
088454cd
SG
15DECLARE_GLOBAL_DATA_PTR;
16
ebf2b9e3 17/* initialize the DDR Controller and PHY */
f1683aa7 18int dram_init(void)
ebf2b9e3
ZLK
19{
20 /* MIG IP block is smart and doesn't need SW
21 * to do any init */
aa6e94de 22 gd->ram_size = CFG_SYS_SDRAM_SIZE; /* in bytes */
088454cd
SG
23
24 return 0;
ebf2b9e3 25}