Commit 86acdce2ba ("common: add config for board_init() call")
introduced CONFIG_BOARD_INIT option. This option can be disabled for the
boards where board_init() function is not needed. Remove empty
board_init() calls for all boards where it's possible, and disable
CONFIG_BOARD_INIT in all related defconfigs.
This cleanup was made semi-automatically using these scripts: [1].
No functional change, but the binary size for the modified boards is
reduced a bit.
[1] https://github.com/joe-skb7/uboot-convert-scripts/tree/master/remove-board-init
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Tested-by: Adam Ford <aford173@gmail.com> #imx8mm_beacon
Tested-by: Bryan Brattlof <bb@ti.com>
Acked-by: Peng Fan <peng.fan@nxp.com> #NXP boards
46 lines
814 B
C
46 lines
814 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2019-20 Sean Anderson <seanga2@gmail.com>
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <clk.h>
|
|
#include <dm.h>
|
|
#include <fdt_support.h>
|
|
#include <asm/io.h>
|
|
|
|
phys_size_t get_effective_memsize(void)
|
|
{
|
|
return CFG_SYS_SDRAM_SIZE;
|
|
}
|
|
|
|
static int sram_init(void)
|
|
{
|
|
int ret, i;
|
|
const char * const banks[] = { "sram0", "sram1", "aisram" };
|
|
ofnode memory;
|
|
struct clk clk;
|
|
|
|
/* Enable RAM clocks */
|
|
memory = ofnode_by_compatible(ofnode_null(), "canaan,k210-sram");
|
|
if (ofnode_equal(memory, ofnode_null()))
|
|
return -ENOENT;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(banks); i++) {
|
|
ret = clk_get_by_name_nodev(memory, banks[i], &clk);
|
|
if (ret)
|
|
continue;
|
|
|
|
ret = clk_enable(&clk);
|
|
if (ret)
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int board_early_init_f(void)
|
|
{
|
|
return sram_init();
|
|
}
|