blob: ea0b2283a2c41705333f083e726eb3fa3b7791ee [file] [log] [blame]
Green Wan7f337432021-05-27 06:52:07 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2020-201 SiFive, Inc
4 * Pragnesh Patel <pragnesh.patel@sifive.com>
5 */
6
7#include <dm.h>
8#include <log.h>
9
10int spl_soc_init(void)
11{
12 int ret;
13 struct udevice *dev;
14
15 /* DDR init */
16 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
17 if (ret) {
18 debug("DRAM init failed: %d\n", ret);
19 return ret;
20 }
21
22 return 0;
23}