2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2013-10-18 09:47:24 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2013 Keymile AG
|
|
|
|
* Valentin Longchamp <valentin.longchamp@keymile.com>
|
|
|
|
*
|
|
|
|
* Copyright 2011,2012 Freescale Semiconductor, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2019-08-01 15:46:51 +00:00
|
|
|
#include <env.h>
|
2019-12-28 17:44:54 +00:00
|
|
|
#include <fdt_support.h>
|
2019-11-14 19:57:46 +00:00
|
|
|
#include <init.h>
|
2013-10-18 09:47:24 +00:00
|
|
|
#include <netdev.h>
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <asm/mmu.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/cache.h>
|
|
|
|
#include <asm/immap_85xx.h>
|
|
|
|
#include <asm/fsl_law.h>
|
|
|
|
#include <asm/fsl_serdes.h>
|
|
|
|
#include <asm/fsl_portals.h>
|
|
|
|
#include <asm/fsl_liodn.h>
|
|
|
|
#include <fm_eth.h>
|
|
|
|
|
|
|
|
#include "../common/common.h"
|
2020-01-10 11:47:42 +00:00
|
|
|
#include "../common/qrio.h"
|
2013-10-18 09:47:24 +00:00
|
|
|
#include "kmp204x.h"
|
|
|
|
|
2015-02-10 16:10:15 +00:00
|
|
|
static uchar ivm_content[CONFIG_SYS_IVM_EEPROM_MAX_LEN];
|
|
|
|
|
2013-10-18 09:47:24 +00:00
|
|
|
int checkboard(void)
|
|
|
|
{
|
2019-11-26 18:09:02 +00:00
|
|
|
printf("Board: Keymile %s\n", CONFIG_SYS_CONFIG_NAME);
|
2013-10-18 09:47:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ZL30158_RST 8
|
2014-04-30 13:01:46 +00:00
|
|
|
#define BFTIC4_RST 0
|
2014-06-03 07:05:18 +00:00
|
|
|
#define RSTRQSR1_WDT_RR 0x00200000
|
|
|
|
#define RSTRQSR1_SW_RR 0x00100000
|
2013-10-18 09:47:24 +00:00
|
|
|
|
|
|
|
int board_early_init_f(void)
|
|
|
|
{
|
|
|
|
ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
|
2014-06-03 07:05:18 +00:00
|
|
|
bool cpuwd_flag = false;
|
2013-10-18 09:47:24 +00:00
|
|
|
|
2014-06-03 07:05:20 +00:00
|
|
|
/* configure mode for uP reset request */
|
|
|
|
qrio_uprstreq(UPREQ_CORE_RST);
|
|
|
|
|
2013-10-18 09:47:24 +00:00
|
|
|
/* board only uses the DDR_MCK0, so disable the DDR_MCK1/2/3 */
|
|
|
|
setbits_be32(&gur->ddrclkdr, 0x001f000f);
|
|
|
|
|
2014-06-03 07:05:18 +00:00
|
|
|
/* set reset reason according CPU register */
|
|
|
|
if ((gur->rstrqsr1 & (RSTRQSR1_WDT_RR | RSTRQSR1_SW_RR)) ==
|
|
|
|
RSTRQSR1_WDT_RR)
|
|
|
|
cpuwd_flag = true;
|
|
|
|
|
|
|
|
qrio_cpuwd_flag(cpuwd_flag);
|
|
|
|
/* clear CPU bits by writing 1 */
|
|
|
|
setbits_be32(&gur->rstrqsr1, RSTRQSR1_WDT_RR | RSTRQSR1_SW_RR);
|
|
|
|
|
2014-04-30 13:01:46 +00:00
|
|
|
/* set the BFTIC's prstcfg to reset at power-up and unit reset only */
|
|
|
|
qrio_prstcfg(BFTIC4_RST, PRSTCFG_POWUP_UNIT_RST);
|
|
|
|
/* and enable WD on it */
|
|
|
|
qrio_wdmask(BFTIC4_RST, true);
|
2013-10-18 09:47:24 +00:00
|
|
|
|
2014-08-19 13:40:04 +00:00
|
|
|
/* set the ZL30138's prstcfg to reset at power-up only */
|
|
|
|
qrio_prstcfg(ZL30158_RST, PRSTCFG_POWUP_RST);
|
2014-04-30 13:01:46 +00:00
|
|
|
/* and take it out of reset as soon as possible (needed for Hooper) */
|
|
|
|
qrio_prst(ZL30158_RST, false, false);
|
2013-10-18 09:47:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_early_init_r(void)
|
|
|
|
{
|
2014-01-27 10:49:12 +00:00
|
|
|
int ret = 0;
|
2013-10-18 09:47:24 +00:00
|
|
|
/* Flush d-cache and invalidate i-cache of any FLASH data */
|
|
|
|
flush_dcache();
|
|
|
|
invalidate_icache();
|
|
|
|
|
|
|
|
set_liodns();
|
2017-12-15 21:01:00 +00:00
|
|
|
setup_qbman_portals();
|
2013-10-18 09:47:24 +00:00
|
|
|
|
2014-01-27 10:49:12 +00:00
|
|
|
ret = trigger_fpga_config();
|
|
|
|
if (ret)
|
|
|
|
printf("error triggering PCIe FPGA config\n");
|
|
|
|
|
2014-05-02 08:48:41 +00:00
|
|
|
/* enable the Unit LED (red) & Boot LED (on) */
|
|
|
|
qrio_set_leds();
|
|
|
|
|
2014-05-02 08:49:27 +00:00
|
|
|
/* enable Application Buffer */
|
|
|
|
qrio_enable_app_buffer();
|
|
|
|
|
2020-01-10 11:47:41 +00:00
|
|
|
return 0;
|
2013-10-18 09:47:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long get_board_sys_clk(unsigned long dummy)
|
|
|
|
{
|
|
|
|
return 66666666;
|
|
|
|
}
|
|
|
|
|
2014-04-30 13:01:46 +00:00
|
|
|
#define ETH_FRONT_PHY_RST 15
|
|
|
|
#define QSFP2_RST 11
|
|
|
|
#define QSFP1_RST 10
|
|
|
|
#define ZL30343_RST 9
|
|
|
|
|
2014-02-03 07:45:40 +00:00
|
|
|
int misc_init_f(void)
|
|
|
|
{
|
|
|
|
/* configure QRIO pis for i2c deblocking */
|
|
|
|
i2c_deblock_gpio_cfg();
|
|
|
|
|
2014-04-30 13:01:46 +00:00
|
|
|
/* configure the front phy's prstcfg and take it out of reset */
|
|
|
|
qrio_prstcfg(ETH_FRONT_PHY_RST, PRSTCFG_POWUP_UNIT_CORE_RST);
|
|
|
|
qrio_prst(ETH_FRONT_PHY_RST, false, false);
|
|
|
|
|
2014-08-19 13:40:04 +00:00
|
|
|
/* set the ZL30343 prstcfg to reset at power-up only */
|
|
|
|
qrio_prstcfg(ZL30343_RST, PRSTCFG_POWUP_RST);
|
2014-04-30 13:01:46 +00:00
|
|
|
/* and enable the WD on it */
|
|
|
|
qrio_wdmask(ZL30343_RST, true);
|
|
|
|
|
|
|
|
/* set the QSFPs' prstcfg to reset at power-up and unit rst only */
|
|
|
|
qrio_prstcfg(QSFP1_RST, PRSTCFG_POWUP_UNIT_RST);
|
|
|
|
qrio_prstcfg(QSFP2_RST, PRSTCFG_POWUP_UNIT_RST);
|
|
|
|
|
|
|
|
/* and enable the WD on them */
|
|
|
|
qrio_wdmask(QSFP1_RST, true);
|
|
|
|
qrio_wdmask(QSFP2_RST, true);
|
|
|
|
|
2014-02-03 07:45:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-18 09:47:24 +00:00
|
|
|
#define NUM_SRDS_BANKS 2
|
|
|
|
|
|
|
|
int misc_init_r(void)
|
|
|
|
{
|
|
|
|
serdes_corenet_t *regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
|
|
|
|
u32 expected[NUM_SRDS_BANKS] = {SRDS_PLLCR0_RFCK_SEL_100,
|
|
|
|
SRDS_PLLCR0_RFCK_SEL_125};
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
/* check SERDES reference clocks */
|
|
|
|
for (i = 0; i < NUM_SRDS_BANKS; i++) {
|
|
|
|
u32 actual = in_be32(®s->bank[i].pllcr0);
|
|
|
|
actual &= SRDS_PLLCR0_RFCK_SEL_MASK;
|
|
|
|
if (actual != expected[i]) {
|
|
|
|
printf("Warning: SERDES bank %u expects reference \
|
|
|
|
clock %sMHz, but actual is %sMHz\n", i + 1,
|
|
|
|
serdes_clock_to_string(expected[i]),
|
|
|
|
serdes_clock_to_string(actual));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-25 16:24:14 +00:00
|
|
|
ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN,
|
|
|
|
CONFIG_PIGGY_MAC_ADDRESS_OFFSET);
|
2013-10-18 09:47:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_HUSH_INIT_VAR)
|
|
|
|
int hush_init_var(void)
|
|
|
|
{
|
2015-02-10 16:10:15 +00:00
|
|
|
ivm_analyze_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN);
|
2013-10-18 09:47:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_LAST_STAGE_INIT)
|
2014-04-30 13:01:46 +00:00
|
|
|
|
2013-10-18 09:47:24 +00:00
|
|
|
int last_stage_init(void)
|
|
|
|
{
|
2014-05-02 08:49:27 +00:00
|
|
|
#if defined(CONFIG_KMCOGE4)
|
|
|
|
/* on KMCOGE4, the BFTIC4 is on the LBAPP2 */
|
|
|
|
struct bfticu_iomap *bftic4 =
|
|
|
|
(struct bfticu_iomap *)CONFIG_SYS_LBAPP2_BASE;
|
|
|
|
u8 dip_switch = in_8((u8 *)&(bftic4->mswitch)) & BFTICU_DIPSWITCH_MASK;
|
|
|
|
|
|
|
|
if (dip_switch != 0) {
|
|
|
|
/* start bootloader */
|
|
|
|
puts("DIP: Enabled\n");
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("actual_bank", "0");
|
2014-05-02 08:49:27 +00:00
|
|
|
}
|
|
|
|
#endif
|
2013-10-18 09:47:24 +00:00
|
|
|
set_km_env();
|
2014-04-30 13:01:46 +00:00
|
|
|
|
2013-10-18 09:47:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_DPAA_FMAN
|
|
|
|
void fdt_fixup_fman_mac_addresses(void *blob)
|
|
|
|
{
|
|
|
|
int node, i, ret;
|
|
|
|
char *tmp, *end;
|
|
|
|
unsigned char mac_addr[6];
|
|
|
|
|
|
|
|
/* get the mac addr from env */
|
2017-08-03 18:22:12 +00:00
|
|
|
tmp = env_get("ethaddr");
|
2013-10-18 09:47:24 +00:00
|
|
|
if (!tmp) {
|
|
|
|
printf("ethaddr env variable not defined\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
mac_addr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
|
|
|
|
if (tmp)
|
|
|
|
tmp = (*end) ? end+1 : end;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find the correct fdt ethernet path and correct it */
|
|
|
|
node = fdt_path_offset(blob, "/soc/fman/ethernet@e8000");
|
|
|
|
if (node < 0) {
|
|
|
|
printf("no /soc/fman/ethernet path offset\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ret = fdt_setprop(blob, node, "local-mac-address", &mac_addr, 6);
|
|
|
|
if (ret) {
|
|
|
|
printf("error setting local-mac-address property\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-10-24 00:58:47 +00:00
|
|
|
int ft_board_setup(void *blob, bd_t *bd)
|
2013-10-18 09:47:24 +00:00
|
|
|
{
|
|
|
|
phys_addr_t base;
|
|
|
|
phys_size_t size;
|
|
|
|
|
|
|
|
ft_cpu_setup(blob, bd);
|
|
|
|
|
2017-08-03 18:22:15 +00:00
|
|
|
base = env_get_bootm_low();
|
|
|
|
size = env_get_bootm_size();
|
2013-10-18 09:47:24 +00:00
|
|
|
|
|
|
|
fdt_fixup_memory(blob, (u64)base, (u64)size);
|
|
|
|
|
|
|
|
#if defined(CONFIG_HAS_FSL_DR_USB) || defined(CONFIG_HAS_FSL_MPH_USB)
|
2016-09-16 11:42:15 +00:00
|
|
|
fsl_fdt_fixup_dr_usb(blob, bd);
|
2013-10-18 09:47:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
pci_of_setup(blob, bd);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
fdt_fixup_liodn(blob);
|
|
|
|
#ifdef CONFIG_SYS_DPAA_FMAN
|
|
|
|
fdt_fixup_fman_ethernet(blob);
|
|
|
|
fdt_fixup_fman_mac_addresses(blob);
|
|
|
|
#endif
|
2014-10-24 00:58:47 +00:00
|
|
|
|
|
|
|
return 0;
|
2013-10-18 09:47:24 +00:00
|
|
|
}
|
2014-04-30 13:01:44 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_POST)
|
|
|
|
|
|
|
|
/* DIC26_SELFTEST GPIO used to start factory test sw */
|
2020-01-10 11:47:42 +00:00
|
|
|
#define SELFTEST_PORT QRIO_GPIO_A
|
2014-04-30 13:01:44 +00:00
|
|
|
#define SELFTEST_PIN 31
|
|
|
|
|
|
|
|
int post_hotkeys_pressed(void)
|
|
|
|
{
|
|
|
|
qrio_gpio_direction_input(SELFTEST_PORT, SELFTEST_PIN);
|
|
|
|
return qrio_get_gpio(SELFTEST_PORT, SELFTEST_PIN);
|
|
|
|
}
|
|
|
|
#endif
|