blob: e0af7753b0ecceb7126afba5c0f67ed730f53ad4 [file] [log] [blame]
Chin Liang See70fa4e72013-09-11 11:24:48 -05001/*
Ley Foon Tand5c5e3b2017-04-26 02:44:35 +08002 * Copyright (C) 2013-2017 Altera Corporation <www.altera.com>
Chin Liang See70fa4e72013-09-11 11:24:48 -05003 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <asm/io.h>
9#include <asm/arch/system_manager.h>
Marek Vasut61412722014-09-08 14:08:45 +020010#include <asm/arch/fpga_manager.h>
Chin Liang See70fa4e72013-09-11 11:24:48 -050011
Marek Vasut61412722014-09-08 14:08:45 +020012static struct socfpga_system_manager *sysmgr_regs =
13 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
14
Chin Liang See70fa4e72013-09-11 11:24:48 -050015/*
Marek Vasutefd16d02014-09-08 14:08:45 +020016 * Populate the value for SYSMGR.FPGAINTF.MODULE based on pinmux setting.
17 * The value is not wrote to SYSMGR.FPGAINTF.MODULE but
18 * CONFIG_SYSMGR_ISWGRP_HANDOFF.
19 */
20static void populate_sysmgr_fpgaintf_module(void)
21{
Ley Foon Tand5c5e3b2017-04-26 02:44:35 +080022 u32 handoff_val = 0;
Marek Vasutefd16d02014-09-08 14:08:45 +020023
24 /* ISWGRP_HANDOFF_FPGAINTF */
25 writel(0, &sysmgr_regs->iswgrp_handoff[2]);
26
27 /* Enable the signal for those HPS peripherals that use FPGA. */
28 if (readl(&sysmgr_regs->nandusefpga) == SYSMGR_FPGAINTF_USEFPGA)
29 handoff_val |= SYSMGR_FPGAINTF_NAND;
30 if (readl(&sysmgr_regs->rgmii1usefpga) == SYSMGR_FPGAINTF_USEFPGA)
31 handoff_val |= SYSMGR_FPGAINTF_EMAC1;
32 if (readl(&sysmgr_regs->sdmmcusefpga) == SYSMGR_FPGAINTF_USEFPGA)
33 handoff_val |= SYSMGR_FPGAINTF_SDMMC;
34 if (readl(&sysmgr_regs->rgmii0usefpga) == SYSMGR_FPGAINTF_USEFPGA)
35 handoff_val |= SYSMGR_FPGAINTF_EMAC0;
36 if (readl(&sysmgr_regs->spim0usefpga) == SYSMGR_FPGAINTF_USEFPGA)
37 handoff_val |= SYSMGR_FPGAINTF_SPIM0;
38 if (readl(&sysmgr_regs->spim1usefpga) == SYSMGR_FPGAINTF_USEFPGA)
39 handoff_val |= SYSMGR_FPGAINTF_SPIM1;
40
41 /* populate (not writing) the value for SYSMGR.FPGAINTF.MODULE
42 based on pinmux setting */
43 setbits_le32(&sysmgr_regs->iswgrp_handoff[2], handoff_val);
44
45 handoff_val = readl(&sysmgr_regs->iswgrp_handoff[2]);
46 if (fpgamgr_test_fpga_ready()) {
47 /* Enable the required signals only */
48 writel(handoff_val, &sysmgr_regs->fpgaintfgrp_module);
49 }
50}
51
52/*
Chin Liang See70fa4e72013-09-11 11:24:48 -050053 * Configure all the pin muxes
54 */
55void sysmgr_pinmux_init(void)
56{
Ley Foon Tand5c5e3b2017-04-26 02:44:35 +080057 u32 regs = (u32)&sysmgr_regs->emacio[0];
Marek Vasut7b648732015-08-10 22:17:46 +020058 const u8 *sys_mgr_init_table;
Marek Vasut1100e342015-07-25 11:09:11 +020059 unsigned int len;
Marek Vasut61412722014-09-08 14:08:45 +020060 int i;
Chin Liang See70fa4e72013-09-11 11:24:48 -050061
Marek Vasut1100e342015-07-25 11:09:11 +020062 sysmgr_get_pinmux_table(&sys_mgr_init_table, &len);
63
64 for (i = 0; i < len; i++) {
Marek Vasut61412722014-09-08 14:08:45 +020065 writel(sys_mgr_init_table[i], regs);
66 regs += sizeof(regs);
Chin Liang See70fa4e72013-09-11 11:24:48 -050067 }
Marek Vasutefd16d02014-09-08 14:08:45 +020068
69 populate_sysmgr_fpgaintf_module();
Chin Liang See70fa4e72013-09-11 11:24:48 -050070}
Dinh Nguyen95a2fd32015-03-30 17:01:07 -050071
72/*
73 * This bit allows the bootrom to configure the IOs after a warm reset.
74 */
Marek Vasut8306b1e2015-07-09 04:40:11 +020075void sysmgr_config_warmrstcfgio(int enable)
Dinh Nguyen95a2fd32015-03-30 17:01:07 -050076{
Marek Vasut8306b1e2015-07-09 04:40:11 +020077 if (enable)
78 setbits_le32(&sysmgr_regs->romcodegrp_ctrl,
79 SYSMGR_ROMCODEGRP_CTRL_WARMRSTCFGIO);
80 else
81 clrbits_le32(&sysmgr_regs->romcodegrp_ctrl,
82 SYSMGR_ROMCODEGRP_CTRL_WARMRSTCFGIO);
Dinh Nguyen95a2fd32015-03-30 17:01:07 -050083}