mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-21 10:43:06 +00:00
36 lines
438 B
C
36 lines
438 B
C
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* (C) Copyright 2022 Broadcom Ltd.
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <fdtdec.h>
|
||
|
|
||
|
int board_init(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int dram_init(void)
|
||
|
{
|
||
|
if (fdtdec_setup_mem_size_base() != 0)
|
||
|
puts("fdtdec_setup_mem_size_base() has failed\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int dram_init_banksize(void)
|
||
|
{
|
||
|
fdtdec_setup_memory_banksize();
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int print_cpuinfo(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void reset_cpu(ulong addr)
|
||
|
{
|
||
|
}
|