2018-05-23 16:17:24 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2016-2018 Intel Corporation <www.intel.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <altera.h>
|
|
|
|
#include <common.h>
|
2019-08-01 15:46:51 +00:00
|
|
|
#include <env.h>
|
2018-05-23 16:17:24 +00:00
|
|
|
#include <errno.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2018-05-23 16:17:24 +00:00
|
|
|
#include <asm/io.h>
|
2020-07-10 15:52:32 +00:00
|
|
|
#include <asm/arch/mailbox_s10.h>
|
|
|
|
#include <asm/arch/misc.h>
|
2018-05-23 16:17:24 +00:00
|
|
|
#include <asm/arch/reset_manager.h>
|
|
|
|
#include <asm/arch/system_manager.h>
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2018-12-20 02:35:15 +00:00
|
|
|
/*
|
|
|
|
* FPGA programming support for SoC FPGA Stratix 10
|
|
|
|
*/
|
|
|
|
static Altera_desc altera_fpga[] = {
|
|
|
|
{
|
|
|
|
/* Family */
|
2020-08-07 03:50:03 +00:00
|
|
|
Intel_FPGA_SDM_Mailbox,
|
2018-12-20 02:35:15 +00:00
|
|
|
/* Interface type */
|
|
|
|
secure_device_manager_mailbox,
|
|
|
|
/* No limitation as additional data will be ignored */
|
|
|
|
-1,
|
|
|
|
/* No device function table */
|
|
|
|
NULL,
|
|
|
|
/* Base interface address specified in driver */
|
|
|
|
NULL,
|
|
|
|
/* No cookie implementation */
|
|
|
|
0
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-05-23 16:17:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Print CPU information
|
|
|
|
*/
|
|
|
|
#if defined(CONFIG_DISPLAY_CPUINFO)
|
|
|
|
int print_cpuinfo(void)
|
|
|
|
{
|
|
|
|
puts("CPU: Intel FPGA SoCFPGA Platform (ARMv8 64bit Cortex-A53)\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_MISC_INIT
|
|
|
|
int arch_misc_init(void)
|
|
|
|
{
|
|
|
|
char qspi_string[13];
|
|
|
|
|
|
|
|
sprintf(qspi_string, "<0x%08x>", cm_get_qspi_controller_clk_hz());
|
|
|
|
env_set("qspi_clock", qspi_string);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int arch_early_init_r(void)
|
|
|
|
{
|
2018-12-20 02:35:15 +00:00
|
|
|
socfpga_fpga_add(&altera_fpga[0]);
|
|
|
|
|
2018-05-23 16:17:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-08-06 03:56:29 +00:00
|
|
|
/* Return 1 if FPGA is ready otherwise return 0 */
|
|
|
|
int is_fpga_config_ready(void)
|
|
|
|
{
|
|
|
|
return (readl(socfpga_get_sysmgr_addr() + SYSMGR_SOC64_FPGA_CONFIG) &
|
|
|
|
SYSMGR_FPGACONFIG_READY_MASK) == SYSMGR_FPGACONFIG_READY_MASK;
|
|
|
|
}
|
|
|
|
|
2019-04-16 20:28:08 +00:00
|
|
|
void do_bridge_reset(int enable, unsigned int mask)
|
2018-05-23 16:17:24 +00:00
|
|
|
{
|
2019-05-03 08:18:27 +00:00
|
|
|
/* Check FPGA status before bridge enable */
|
2020-08-06 03:56:29 +00:00
|
|
|
if (!is_fpga_config_ready()) {
|
|
|
|
puts("FPGA not ready. Bridge reset aborted!\n");
|
|
|
|
return;
|
2019-05-03 08:18:27 +00:00
|
|
|
}
|
|
|
|
|
2018-05-23 16:17:24 +00:00
|
|
|
socfpga_bridges_reset(enable);
|
|
|
|
}
|