2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-06-23 22:15:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Freescale Semiconductor
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <netdev.h>
|
|
|
|
#include <fsl_ifc.h>
|
|
|
|
#include <fsl_ddr.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <fdt_support.h>
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2015-01-06 21:19:02 +00:00
|
|
|
#include <fsl-mc/fsl_mc.h>
|
2019-08-02 15:44:25 +00:00
|
|
|
#include <env_internal.h>
|
2015-10-26 11:47:50 +00:00
|
|
|
#include <asm/arch/soc.h>
|
2014-06-23 22:15:56 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
int board_init(void)
|
|
|
|
{
|
|
|
|
init_final_memctl_regs();
|
2014-07-14 11:45:44 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_ENV_IS_NOWHERE
|
|
|
|
gd->env_addr = (ulong)&default_environment[0];
|
|
|
|
#endif
|
|
|
|
|
2014-06-23 22:15:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_early_init_f(void)
|
|
|
|
{
|
2015-03-21 02:28:12 +00:00
|
|
|
fsl_lsch3_early_init_f();
|
2014-06-23 22:15:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 17:21:05 +00:00
|
|
|
void detail_board_ddr_info(void)
|
|
|
|
{
|
|
|
|
puts("\nDDR ");
|
|
|
|
print_size(gd->bd->bi_dram[0].size + gd->bd->bi_dram[1].size, "");
|
|
|
|
print_ddr_info(0);
|
2015-11-09 11:12:07 +00:00
|
|
|
#ifdef CONFIG_SYS_FSL_HAS_DP_DDR
|
2016-04-04 18:41:26 +00:00
|
|
|
if (soc_has_dp_ddr() && gd->bd->bi_dram[2].size) {
|
2014-08-13 17:21:05 +00:00
|
|
|
puts("\nDP-DDR ");
|
|
|
|
print_size(gd->bd->bi_dram[2].size, "");
|
|
|
|
print_ddr_info(CONFIG_DP_DDR_CTRL);
|
|
|
|
}
|
2015-11-09 11:12:07 +00:00
|
|
|
#endif
|
2014-08-13 17:21:05 +00:00
|
|
|
}
|
|
|
|
|
2015-03-19 16:20:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_MISC_INIT)
|
|
|
|
int arch_misc_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-06-23 22:15:56 +00:00
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMC91111
|
|
|
|
error = smc91111_initialize(0, CONFIG_SMC91111_BASE);
|
|
|
|
#endif
|
|
|
|
|
2017-05-05 10:12:29 +00:00
|
|
|
#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
|
2014-06-23 22:15:56 +00:00
|
|
|
error = cpu_eth_init(bis);
|
|
|
|
#endif
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2017-05-05 10:12:29 +00:00
|
|
|
#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
|
2014-06-23 22:15:56 +00:00
|
|
|
void fdt_fixup_board_enet(void *fdt)
|
|
|
|
{
|
|
|
|
int offset;
|
|
|
|
|
2016-03-02 22:37:13 +00:00
|
|
|
offset = fdt_path_offset(fdt, "/soc/fsl-mc");
|
2015-01-06 21:19:02 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: Remove this when backward compatibility
|
2016-03-02 22:37:13 +00:00
|
|
|
* with old DT node (/fsl-mc) is no longer needed.
|
2015-01-06 21:19:02 +00:00
|
|
|
*/
|
|
|
|
if (offset < 0)
|
2016-03-02 22:37:13 +00:00
|
|
|
offset = fdt_path_offset(fdt, "/fsl-mc");
|
2015-01-06 21:19:02 +00:00
|
|
|
|
|
|
|
if (offset < 0) {
|
|
|
|
printf("%s: ERROR: fsl-mc node not found in device tree (error %d)\n",
|
|
|
|
__func__, offset);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-12-18 13:01:17 +00:00
|
|
|
if (get_mc_boot_status() == 0 &&
|
|
|
|
(is_lazy_dpl_addr_valid() || get_dpl_apply_status() == 0))
|
2014-06-23 22:15:56 +00:00
|
|
|
fdt_status_okay(fdt, offset);
|
|
|
|
else
|
|
|
|
fdt_status_fail(fdt, offset);
|
|
|
|
}
|
2016-11-17 00:02:57 +00:00
|
|
|
|
|
|
|
void board_quiesce_devices(void)
|
|
|
|
{
|
|
|
|
fsl_mc_ldpaa_exit(gd->bd);
|
|
|
|
}
|
2014-06-23 22:15:56 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_OF_BOARD_SETUP
|
2014-10-24 00:58:47 +00:00
|
|
|
int ft_board_setup(void *blob, bd_t *bd)
|
2014-06-23 22:15:56 +00:00
|
|
|
{
|
2015-05-28 09:24:10 +00:00
|
|
|
u64 base[CONFIG_NR_DRAM_BANKS];
|
|
|
|
u64 size[CONFIG_NR_DRAM_BANKS];
|
2014-06-23 22:15:56 +00:00
|
|
|
|
2014-09-08 19:20:01 +00:00
|
|
|
ft_cpu_setup(blob, bd);
|
|
|
|
|
2015-05-28 09:24:10 +00:00
|
|
|
/* fixup DT for the two GPP DDR banks */
|
|
|
|
base[0] = gd->bd->bi_dram[0].start;
|
|
|
|
size[0] = gd->bd->bi_dram[0].size;
|
|
|
|
base[1] = gd->bd->bi_dram[1].start;
|
|
|
|
size[1] = gd->bd->bi_dram[1].size;
|
|
|
|
|
2017-03-06 17:02:28 +00:00
|
|
|
#ifdef CONFIG_RESV_RAM
|
|
|
|
/* reduce size if reserved memory is within this bank */
|
|
|
|
if (gd->arch.resv_ram >= base[0] &&
|
|
|
|
gd->arch.resv_ram < base[0] + size[0])
|
|
|
|
size[0] = gd->arch.resv_ram - base[0];
|
|
|
|
else if (gd->arch.resv_ram >= base[1] &&
|
|
|
|
gd->arch.resv_ram < base[1] + size[1])
|
|
|
|
size[1] = gd->arch.resv_ram - base[1];
|
|
|
|
#endif
|
|
|
|
|
2015-05-28 09:24:10 +00:00
|
|
|
fdt_fixup_memory_banks(blob, base, size, 2);
|
2014-06-23 22:15:56 +00:00
|
|
|
|
2018-08-20 10:31:14 +00:00
|
|
|
fdt_fsl_mc_fixup_iommu_map_entry(blob);
|
|
|
|
|
2017-05-05 10:12:29 +00:00
|
|
|
#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
|
2014-06-23 22:15:56 +00:00
|
|
|
fdt_fixup_board_enet(blob);
|
|
|
|
#endif
|
2014-10-24 00:58:47 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-06-23 22:15:56 +00:00
|
|
|
}
|
|
|
|
#endif
|
2017-05-24 16:40:21 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_RESET_PHY_R)
|
|
|
|
void reset_phy(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
2018-12-27 04:37:59 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_TFABOOT
|
|
|
|
void *env_sf_get_env_addr(void)
|
|
|
|
{
|
|
|
|
return (void *)(CONFIG_SYS_FSL_QSPI_BASE1 + CONFIG_ENV_OFFSET);
|
|
|
|
}
|
|
|
|
#endif
|