blob: 35938b2dfc06df3e8cb0a92d1b4e7d42349d9083 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ley Foon Tanb149f2b2017-04-26 02:44:36 +08002/*
3 * Copyright (C) 2012-2017 Altera Corporation <www.altera.com>
Ley Foon Tanb149f2b2017-04-26 02:44:36 +08004 */
5
6#include <common.h>
7#include <asm/io.h>
Simon Glass5e6201b2019-08-01 09:46:51 -06008#include <env.h>
Ley Foon Tanb149f2b2017-04-26 02:44:36 +08009#include <errno.h>
10#include <fdtdec.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090011#include <linux/libfdt.h>
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080012#include <altera.h>
13#include <miiphy.h>
14#include <netdev.h>
15#include <watchdog.h>
16#include <asm/arch/misc.h>
17#include <asm/arch/reset_manager.h>
18#include <asm/arch/scan_manager.h>
19#include <asm/arch/sdram.h>
20#include <asm/arch/system_manager.h>
21#include <asm/arch/nic301.h>
22#include <asm/arch/scu.h>
23#include <asm/pl310.h>
24
25#include <dt-bindings/reset/altr,rst-mgr.h>
26
27DECLARE_GLOBAL_DATA_PTR;
28
29static struct pl310_regs *const pl310 =
30 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080031static struct nic301_registers *nic301_regs =
32 (struct nic301_registers *)SOCFPGA_L3REGS_ADDRESS;
33static struct scu_registers *scu_regs =
34 (struct scu_registers *)SOCFPGA_MPUSCU_ADDRESS;
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080035
36/*
Ang, Chee Hongff14f162018-12-19 18:35:15 -080037 * FPGA programming support for SoC FPGA Cyclone V
38 */
39static Altera_desc altera_fpga[] = {
40 {
41 /* Family */
42 Altera_SoCFPGA,
43 /* Interface type */
44 fast_passive_parallel,
45 /* No limitation as additional data will be ignored */
46 -1,
47 /* No device function table */
48 NULL,
49 /* Base interface address specified in driver */
50 NULL,
51 /* No cookie implementation */
52 0
53 },
54};
55
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080056static const struct {
57 const u16 pn;
58 const char *name;
59 const char *var;
Masahiro Yamada2337ebe2017-09-12 17:23:39 +090060} socfpga_fpga_model[] = {
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080061 /* Cyclone V E */
62 { 0x2b15, "Cyclone V, E/A2", "cv_e_a2" },
63 { 0x2b05, "Cyclone V, E/A4", "cv_e_a4" },
64 { 0x2b22, "Cyclone V, E/A5", "cv_e_a5" },
65 { 0x2b13, "Cyclone V, E/A7", "cv_e_a7" },
66 { 0x2b14, "Cyclone V, E/A9", "cv_e_a9" },
67 /* Cyclone V GX/GT */
68 { 0x2b01, "Cyclone V, GX/C3", "cv_gx_c3" },
69 { 0x2b12, "Cyclone V, GX/C4", "cv_gx_c4" },
70 { 0x2b02, "Cyclone V, GX/C5 or GT/D5", "cv_gx_c5" },
71 { 0x2b03, "Cyclone V, GX/C7 or GT/D7", "cv_gx_c7" },
72 { 0x2b04, "Cyclone V, GX/C9 or GT/D9", "cv_gx_c9" },
73 /* Cyclone V SE/SX/ST */
74 { 0x2d11, "Cyclone V, SE/A2 or SX/C2", "cv_se_a2" },
75 { 0x2d01, "Cyclone V, SE/A4 or SX/C4", "cv_se_a4" },
76 { 0x2d12, "Cyclone V, SE/A5 or SX/C5 or ST/D5", "cv_se_a5" },
77 { 0x2d02, "Cyclone V, SE/A6 or SX/C6 or ST/D6", "cv_se_a6" },
78 /* Arria V */
79 { 0x2d03, "Arria V, D5", "av_d5" },
Marek Vasut47928cc2019-11-20 22:40:19 +010080 /* Arria V ST/SX */
81 { 0x2d13, "Arria V, ST/D3 or SX/B3", "av_st_d3" },
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080082};
83
84static int socfpga_fpga_id(const bool print_id)
85{
86 const u32 altera_mi = 0x6e;
87 const u32 id = scan_mgr_get_fpga_id();
88
89 const u32 lsb = id & 0x00000001;
90 const u32 mi = (id >> 1) & 0x000007ff;
91 const u32 pn = (id >> 12) & 0x0000ffff;
92 const u32 version = (id >> 28) & 0x0000000f;
93 int i;
94
95 if ((mi != altera_mi) || (lsb != 1)) {
96 printf("FPGA: Not Altera chip ID\n");
97 return -EINVAL;
98 }
99
100 for (i = 0; i < ARRAY_SIZE(socfpga_fpga_model); i++)
101 if (pn == socfpga_fpga_model[i].pn)
102 break;
103
104 if (i == ARRAY_SIZE(socfpga_fpga_model)) {
105 printf("FPGA: Unknown Altera chip, ID 0x%08x\n", id);
106 return -EINVAL;
107 }
108
109 if (print_id)
110 printf("FPGA: Altera %s, version 0x%01x\n",
111 socfpga_fpga_model[i].name, version);
112 return i;
113}
114
115/*
116 * Print CPU information
117 */
118#if defined(CONFIG_DISPLAY_CPUINFO)
119int print_cpuinfo(void)
120{
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800121 const u32 bootinfo = readl(socfpga_get_sysmgr_addr() +
122 SYSMGR_GEN5_BOOTINFO);
123 const u32 bsel = SYSMGR_GET_BOOTINFO_BSEL(bootinfo);
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800124
125 puts("CPU: Altera SoCFPGA Platform\n");
126 socfpga_fpga_id(1);
127
128 printf("BOOT: %s\n", bsel_str[bsel].name);
129 return 0;
130}
131#endif
132
133#ifdef CONFIG_ARCH_MISC_INIT
134int arch_misc_init(void)
135{
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800136 const u32 bsel = readl(socfpga_get_sysmgr_addr() +
137 SYSMGR_GEN5_BOOTINFO) & 0x7;
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800138 const int fpga_id = socfpga_fpga_id(0);
Simon Glass6a38e412017-08-03 12:22:09 -0600139 env_set("bootmode", bsel_str[bsel].mode);
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800140 if (fpga_id >= 0)
Simon Glass6a38e412017-08-03 12:22:09 -0600141 env_set("fpgatype", socfpga_fpga_model[fpga_id].var);
Simon Goldschmidt54d329b2019-01-13 19:58:42 +0100142 return 0;
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800143}
144#endif
145
146/*
147 * Convert all NIC-301 AMBA slaves from secure to non-secure
148 */
149static void socfpga_nic301_slave_ns(void)
150{
151 writel(0x1, &nic301_regs->lwhps2fpgaregs);
152 writel(0x1, &nic301_regs->hps2fpgaregs);
153 writel(0x1, &nic301_regs->acp);
154 writel(0x1, &nic301_regs->rom);
155 writel(0x1, &nic301_regs->ocram);
156 writel(0x1, &nic301_regs->sdrdata);
157}
158
Simon Goldschmidt8e302032018-08-13 21:34:35 +0200159void socfpga_sdram_remap_zero(void)
160{
Simon Goldschmidtda13a0a2018-10-10 14:55:23 +0200161 u32 remap;
162
Simon Goldschmidt8e302032018-08-13 21:34:35 +0200163 socfpga_nic301_slave_ns();
164
165 /*
166 * Private components security:
167 * U-Boot : configure private timer, global timer and cpu component
168 * access as non secure for kernel stage (as required by Linux)
169 */
170 setbits_le32(&scu_regs->sacr, 0xfff);
171
172 /* Configure the L2 controller to make SDRAM start at 0 */
Simon Goldschmidtda13a0a2018-10-10 14:55:23 +0200173 remap = 0x1; /* remap.mpuzero */
174 /* Keep fpga bridge enabled when running from FPGA onchip RAM */
175 if (socfpga_is_booting_from_fpga())
176 remap |= 0x8; /* remap.hps2fpga */
177 writel(remap, &nic301_regs->remap);
178
Simon Goldschmidt8e302032018-08-13 21:34:35 +0200179 writel(0x1, &pl310->pl310_addr_filter_start);
180}
181
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800182static u32 iswgrp_handoff[8];
183
184int arch_early_init_r(void)
185{
186 int i;
187
188 /*
189 * Write magic value into magic register to unlock support for
190 * issuing warm reset. The ancient kernel code expects this
191 * value to be written into the register by the bootloader, so
192 * to support that old code, we write it here instead of in the
193 * reset_cpu() function just before resetting the CPU.
194 */
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800195 writel(0xae9efebc,
196 socfpga_get_sysmgr_addr() + SYSMGR_GEN5_WARMRAMGRP_EN);
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800197
198 for (i = 0; i < 8; i++) /* Cache initial SW setting regs */
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800199 iswgrp_handoff[i] = readl(socfpga_get_sysmgr_addr() +
200 SYSMGR_ISWGRP_HANDOFF_OFFSET(i));
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800201
202 socfpga_bridges_reset(1);
203
Simon Goldschmidt8e302032018-08-13 21:34:35 +0200204 socfpga_sdram_remap_zero();
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800205
206 /* Add device descriptor to FPGA device table */
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800207 socfpga_fpga_add(&altera_fpga[0]);
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800208
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800209 return 0;
210}
211
Tom Rinidf09a192017-12-22 12:19:22 -0500212#ifndef CONFIG_SPL_BUILD
Tom Rinidf09a192017-12-22 12:19:22 -0500213static struct socfpga_sdr_ctrl *sdr_ctrl =
214 (struct socfpga_sdr_ctrl *)SDR_CTRLGRP_ADDRESS;
215
Marek Vasut713a8a22019-04-16 22:28:08 +0200216void do_bridge_reset(int enable, unsigned int mask)
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800217{
Marek Vasut713a8a22019-04-16 22:28:08 +0200218 int i;
219
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800220 if (enable) {
Marek Vasut713a8a22019-04-16 22:28:08 +0200221 socfpga_bridges_set_handoff_regs(!(mask & BIT(0)),
222 !(mask & BIT(1)),
223 !(mask & BIT(2)));
224 for (i = 0; i < 2; i++) { /* Reload SW setting cache */
225 iswgrp_handoff[i] =
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800226 readl(socfpga_get_sysmgr_addr() +
227 SYSMGR_ISWGRP_HANDOFF_OFFSET(i));
Marek Vasut713a8a22019-04-16 22:28:08 +0200228 }
229
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800230 writel(iswgrp_handoff[2],
231 socfpga_get_sysmgr_addr() +
232 SYSMGR_GEN5_FPGAINFGRP_MODULE);
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800233 writel(iswgrp_handoff[3], &sdr_ctrl->fpgaport_rst);
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800234 writel(iswgrp_handoff[0],
235 socfpga_get_rstmgr_addr() + RSTMGR_GEN5_BRGMODRST);
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800236 writel(iswgrp_handoff[1], &nic301_regs->remap);
Marek Vasut22652592019-11-20 22:34:31 +0100237
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800238 writel(0x7, socfpga_get_rstmgr_addr() + RSTMGR_GEN5_BRGMODRST);
239 writel(iswgrp_handoff[0],
240 socfpga_get_rstmgr_addr() + RSTMGR_GEN5_BRGMODRST);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800241 } else {
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800242 writel(0, socfpga_get_sysmgr_addr() +
243 SYSMGR_GEN5_FPGAINFGRP_MODULE);
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800244 writel(0, &sdr_ctrl->fpgaport_rst);
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800245 writel(0x7, socfpga_get_rstmgr_addr() + RSTMGR_GEN5_BRGMODRST);
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800246 writel(1, &nic301_regs->remap);
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800247 }
Ley Foon Tanb149f2b2017-04-26 02:44:36 +0800248}
Tom Rinidf09a192017-12-22 12:19:22 -0500249#endif