mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
24 lines
363 B
C
24 lines
363 B
C
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* Copyright (C) 2020 SiFive, Inc
|
||
|
* Pragnesh Patel <pragnesh.patel@sifive.com>
|
||
|
*/
|
||
|
|
||
|
#include <dm.h>
|
||
|
#include <log.h>
|
||
|
|
||
|
int soc_spl_init(void)
|
||
|
{
|
||
|
int ret;
|
||
|
struct udevice *dev;
|
||
|
|
||
|
/* DDR init */
|
||
|
ret = uclass_get_device(UCLASS_RAM, 0, &dev);
|
||
|
if (ret) {
|
||
|
debug("DRAM init failed: %d\n", ret);
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|