blob: a6cc78454dabf0f84f08932d542ed8edcf6f2c02 [file] [log] [blame]
Ley Foon Tanf80cb342018-05-24 00:17:24 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2016-2018 Intel Corporation <www.intel.com>
4 *
5 */
6
7#include <altera.h>
Chee Hong Angf18fe842020-07-10 23:52:32 +08008#include <asm/arch/mailbox_s10.h>
9#include <asm/arch/misc.h>
Ley Foon Tanf80cb342018-05-24 00:17:24 +080010#include <asm/arch/reset_manager.h>
11#include <asm/arch/system_manager.h>
Siew Chin Lime377bf22021-08-10 11:26:35 +080012#include <asm/io.h>
13#include <asm/global_data.h>
14#include <env.h>
15#include <errno.h>
16#include <init.h>
17#include <log.h>
Tom Rini3fb5b2f2022-03-30 18:07:23 -040018#include <mach/clock_manager.h>
Ley Foon Tanf80cb342018-05-24 00:17:24 +080019
20DECLARE_GLOBAL_DATA_PTR;
21
Ley Foon Tanf80cb342018-05-24 00:17:24 +080022/*
Ang, Chee Hongff14f162018-12-19 18:35:15 -080023 * FPGA programming support for SoC FPGA Stratix 10
24 */
25static Altera_desc altera_fpga[] = {
26 {
27 /* Family */
Chee Hong Ang14192452020-08-07 11:50:03 +080028 Intel_FPGA_SDM_Mailbox,
Ang, Chee Hongff14f162018-12-19 18:35:15 -080029 /* Interface type */
30 secure_device_manager_mailbox,
31 /* No limitation as additional data will be ignored */
32 -1,
33 /* No device function table */
34 NULL,
35 /* Base interface address specified in driver */
36 NULL,
37 /* No cookie implementation */
38 0
39 },
40};
41
Ley Foon Tanf80cb342018-05-24 00:17:24 +080042/*
43 * Print CPU information
44 */
45#if defined(CONFIG_DISPLAY_CPUINFO)
46int print_cpuinfo(void)
47{
48 puts("CPU: Intel FPGA SoCFPGA Platform (ARMv8 64bit Cortex-A53)\n");
49
50 return 0;
51}
52#endif
53
54#ifdef CONFIG_ARCH_MISC_INIT
55int arch_misc_init(void)
56{
57 char qspi_string[13];
58
59 sprintf(qspi_string, "<0x%08x>", cm_get_qspi_controller_clk_hz());
60 env_set("qspi_clock", qspi_string);
61
Ley Foon Tanf80cb342018-05-24 00:17:24 +080062 return 0;
63}
64#endif
65
66int arch_early_init_r(void)
67{
Ang, Chee Hongff14f162018-12-19 18:35:15 -080068 socfpga_fpga_add(&altera_fpga[0]);
69
Ley Foon Tanf80cb342018-05-24 00:17:24 +080070 return 0;
71}
72
Chee Hong Ang61e91992020-08-06 11:56:29 +080073/* Return 1 if FPGA is ready otherwise return 0 */
74int is_fpga_config_ready(void)
75{
76 return (readl(socfpga_get_sysmgr_addr() + SYSMGR_SOC64_FPGA_CONFIG) &
77 SYSMGR_FPGACONFIG_READY_MASK) == SYSMGR_FPGACONFIG_READY_MASK;
78}
79
Marek Vasut713a8a22019-04-16 22:28:08 +020080void do_bridge_reset(int enable, unsigned int mask)
Ley Foon Tanf80cb342018-05-24 00:17:24 +080081{
Ang, Chee Hongd7404452019-05-03 01:18:27 -070082 /* Check FPGA status before bridge enable */
Chee Hong Ang61e91992020-08-06 11:56:29 +080083 if (!is_fpga_config_ready()) {
84 puts("FPGA not ready. Bridge reset aborted!\n");
85 return;
Ang, Chee Hongd7404452019-05-03 01:18:27 -070086 }
87
Ley Foon Tanf80cb342018-05-24 00:17:24 +080088 socfpga_bridges_reset(enable);
89}