mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
47 lines
744 B
C
47 lines
744 B
C
|
/*
|
||
|
* (C) Copyright 2015 Google, Inc
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <dm.h>
|
||
|
#include <ram.h>
|
||
|
|
||
|
DECLARE_GLOBAL_DATA_PTR;
|
||
|
|
||
|
int board_init(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int dram_init(void)
|
||
|
{
|
||
|
struct ram_info ram;
|
||
|
struct udevice *dev;
|
||
|
int ret;
|
||
|
|
||
|
ret = uclass_get_device(UCLASS_RAM, 0, &dev);
|
||
|
if (ret) {
|
||
|
debug("DRAM init failed: %d\n", ret);
|
||
|
return ret;
|
||
|
}
|
||
|
ret = ram_get_info(dev, &ram);
|
||
|
if (ret) {
|
||
|
debug("Cannot get DRAM size: %d\n", ret);
|
||
|
return ret;
|
||
|
}
|
||
|
debug("SDRAM base=%lx, size=%x\n", ram.base, ram.size);
|
||
|
gd->ram_size = ram.size;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#ifndef CONFIG_SYS_DCACHE_OFF
|
||
|
void enable_caches(void)
|
||
|
{
|
||
|
/* Enable D-cache. I-cache is already enabled in start.S */
|
||
|
dcache_enable();
|
||
|
}
|
||
|
#endif
|