blob: a3f5b4364e5c02ae1431bc4fdfd7ae63bd51c8c7 [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>
8#include <common.h>
Simon Glass5e6201b2019-08-01 09:46:51 -06009#include <env.h>
Ley Foon Tanf80cb342018-05-24 00:17:24 +080010#include <errno.h>
11#include <fdtdec.h>
12#include <miiphy.h>
13#include <netdev.h>
14#include <asm/io.h>
15#include <asm/arch/reset_manager.h>
16#include <asm/arch/system_manager.h>
17#include <asm/arch/misc.h>
18#include <asm/pl310.h>
19#include <linux/libfdt.h>
Ang, Chee Hongd7404452019-05-03 01:18:27 -070020#include <asm/arch/mailbox_s10.h>
Ley Foon Tanf80cb342018-05-24 00:17:24 +080021
22#include <dt-bindings/reset/altr,rst-mgr-s10.h>
23
24DECLARE_GLOBAL_DATA_PTR;
25
Ley Foon Tanf80cb342018-05-24 00:17:24 +080026/*
Ang, Chee Hongff14f162018-12-19 18:35:15 -080027 * FPGA programming support for SoC FPGA Stratix 10
28 */
29static Altera_desc altera_fpga[] = {
30 {
31 /* Family */
32 Intel_FPGA_Stratix10,
33 /* Interface type */
34 secure_device_manager_mailbox,
35 /* No limitation as additional data will be ignored */
36 -1,
37 /* No device function table */
38 NULL,
39 /* Base interface address specified in driver */
40 NULL,
41 /* No cookie implementation */
42 0
43 },
44};
45
46/*
Ley Foon Tanf80cb342018-05-24 00:17:24 +080047 * DesignWare Ethernet initialization
48 */
49#ifdef CONFIG_ETH_DESIGNWARE
50
51static u32 socfpga_phymode_setup(u32 gmac_index, const char *phymode)
52{
53 u32 modereg;
54
55 if (!phymode)
56 return -EINVAL;
57
Ooi, Joyce0e182f22018-09-24 23:31:45 -070058 if (!strcmp(phymode, "mii") || !strcmp(phymode, "gmii") ||
59 !strcmp(phymode, "sgmii"))
Ley Foon Tanf80cb342018-05-24 00:17:24 +080060 modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_GMII_MII;
61 else if (!strcmp(phymode, "rgmii"))
62 modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII;
63 else if (!strcmp(phymode, "rmii"))
64 modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RMII;
65 else
66 return -EINVAL;
67
Ley Foon Tan0b1680e2019-11-27 15:55:18 +080068 clrsetbits_le32(socfpga_get_sysmgr_addr() + SYSMGR_SOC64_EMAC0 +
Ley Foon Tan3d3a8602019-11-08 10:38:20 +080069 gmac_index,
70 SYSMGR_EMACGRP_CTRL_PHYSEL_MASK, modereg);
Ley Foon Tanf80cb342018-05-24 00:17:24 +080071
72 return 0;
73}
74
75static int socfpga_set_phymode(void)
76{
77 const void *fdt = gd->fdt_blob;
78 struct fdtdec_phandle_args args;
79 const char *phy_mode;
80 u32 gmac_index;
Ooi, Joyce0e182f22018-09-24 23:31:45 -070081 int nodes[3]; /* Max. 3 GMACs */
Ley Foon Tanf80cb342018-05-24 00:17:24 +080082 int ret, count;
83 int i, node;
84
85 count = fdtdec_find_aliases_for_id(fdt, "ethernet",
86 COMPAT_ALTERA_SOCFPGA_DWMAC,
87 nodes, ARRAY_SIZE(nodes));
88 for (i = 0; i < count; i++) {
89 node = nodes[i];
90 if (node <= 0)
91 continue;
92
93 ret = fdtdec_parse_phandle_with_args(fdt, node, "resets",
94 "#reset-cells", 1, 0,
95 &args);
96 if (ret || args.args_count != 1) {
97 debug("GMAC%i: Failed to parse DT 'resets'!\n", i);
98 continue;
99 }
100
101 gmac_index = args.args[0] - EMAC0_RESET;
102
103 phy_mode = fdt_getprop(fdt, node, "phy-mode", NULL);
104 ret = socfpga_phymode_setup(gmac_index, phy_mode);
105 if (ret) {
106 debug("GMAC%i: Failed to parse DT 'phy-mode'!\n", i);
107 continue;
108 }
109 }
110
111 return 0;
112}
113#else
114static int socfpga_set_phymode(void)
115{
116 return 0;
117};
118#endif
119
120/*
121 * Print CPU information
122 */
123#if defined(CONFIG_DISPLAY_CPUINFO)
124int print_cpuinfo(void)
125{
126 puts("CPU: Intel FPGA SoCFPGA Platform (ARMv8 64bit Cortex-A53)\n");
127
128 return 0;
129}
130#endif
131
132#ifdef CONFIG_ARCH_MISC_INIT
133int arch_misc_init(void)
134{
135 char qspi_string[13];
136
137 sprintf(qspi_string, "<0x%08x>", cm_get_qspi_controller_clk_hz());
138 env_set("qspi_clock", qspi_string);
139
140 socfpga_set_phymode();
141 return 0;
142}
143#endif
144
145int arch_early_init_r(void)
146{
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800147 socfpga_fpga_add(&altera_fpga[0]);
148
Ley Foon Tanf80cb342018-05-24 00:17:24 +0800149 return 0;
150}
151
Marek Vasut713a8a22019-04-16 22:28:08 +0200152void do_bridge_reset(int enable, unsigned int mask)
Ley Foon Tanf80cb342018-05-24 00:17:24 +0800153{
Ang, Chee Hongd7404452019-05-03 01:18:27 -0700154 /* Check FPGA status before bridge enable */
155 if (enable) {
156 int ret = mbox_get_fpga_config_status(MBOX_RECONFIG_STATUS);
157
158 if (ret && ret != MBOX_CFGSTAT_STATE_CONFIG)
159 ret = mbox_get_fpga_config_status(MBOX_CONFIG_STATUS);
160
161 if (ret)
162 return;
163 }
164
Ley Foon Tanf80cb342018-05-24 00:17:24 +0800165 socfpga_bridges_reset(enable);
166}