1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2014 Broadcom Corporation.
10 #include <asm/cache.h>
14 #include <asm/system.h>
15 #include <asm/iproc-common/armpll.h>
17 DECLARE_GLOBAL_DATA_PTR;
20 * board_init - early hardware init
25 * Address of boot parameters passed to kernel
26 * Use default offset 0x100
28 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
34 * dram_init - sets u-boot's idea of sdram size
38 gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
39 CONFIG_SYS_SDRAM_SIZE);
43 int dram_init_banksize(void)
45 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
46 gd->bd->bi_dram[0].size = gd->ram_size;
51 int board_early_init_f(void)
55 /* Setup PLL if required */
56 #if defined(CONFIG_ARMCLK)
57 armpll_config(CONFIG_ARMCLK);
63 #ifdef CONFIG_ARMV7_NONSEC
64 void smp_set_core_boot_addr(unsigned long addr, int corenr)
68 void smp_kick_all_cpus(void)
72 void smp_waitloop(unsigned previous_address)
77 #ifdef CONFIG_BCM_SF2_ETH
78 int board_eth_init(bd_t *bis)
81 printf("Registering BCM sf2 eth\n");
82 rc = bcm_sf2_eth_register(bis, 0);