blob: cedb70b66a221228b406c5486f3f630bc3d2a341 [file] [log] [blame]
Pragnesh Patele00653c2020-05-29 11:33:35 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2020 SiFive, Inc
4 * Pragnesh Patel <pragnesh.patel@sifive.com>
5 */
6
7#include <dm.h>
8#include <log.h>
9
Lukas Funke2e71a9e2024-04-24 09:43:38 +020010int spl_dram_init(void)
Pragnesh Patele00653c2020-05-29 11:33:35 +053011{
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}