aboutsummaryrefslogtreecommitdiff
path: root/board/broadcom/bcmbca/board.c
blob: 4aa1d659d5c7c1ef689769f0bb6a6d2874289c06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// 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)
{
}