blob: d6fe7d35af1766f6f734870820c8d468a347afda [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00002/*
3 * Copyright (C) 2012 Altera Corporation <www.altera.com>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00004 */
5
6#include <common.h>
7#include <asm/io.h>
Dinh Nguyene6a52ca2015-04-15 16:44:32 -05008#include <asm/pl310.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00009#include <asm/u-boot.h>
10#include <asm/utils.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000011#include <image.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000012#include <asm/arch/reset_manager.h>
13#include <spl.h>
Chin Liang See70fa4e72013-09-11 11:24:48 -050014#include <asm/arch/system_manager.h>
Chin Liang See6ae44732013-12-02 12:01:39 -060015#include <asm/arch/freeze_controller.h>
Chin Liang See112cb0d2014-07-22 04:28:35 -050016#include <asm/arch/clock_manager.h>
Tien Fong Cheef3f525c2017-12-05 15:58:08 +080017#include <asm/arch/misc.h>
Chin Liang See112cb0d2014-07-22 04:28:35 -050018#include <asm/arch/scan_manager.h>
Dinh Nguyenea344582015-03-30 17:01:08 -050019#include <asm/arch/sdram.h>
Marek Vasutaf657612015-07-09 05:15:40 +020020#include <asm/arch/scu.h>
21#include <asm/arch/nic301.h>
Ley Foon Tan9db517e2017-04-26 02:44:45 +080022#include <asm/sections.h>
23#include <fdtdec.h>
24#include <watchdog.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000025
26DECLARE_GLOBAL_DATA_PTR;
27
Dinh Nguyene6a52ca2015-04-15 16:44:32 -050028static struct pl310_regs *const pl310 =
29 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Marek Vasutaf657612015-07-09 05:15:40 +020030static struct scu_registers *scu_regs =
31 (struct scu_registers *)SOCFPGA_MPUSCU_ADDRESS;
32static struct nic301_registers *nic301_regs =
33 (struct nic301_registers *)SOCFPGA_L3REGS_ADDRESS;
Ley Foon Tan9db517e2017-04-26 02:44:45 +080034static const struct socfpga_system_manager *sysmgr_regs =
Marek Vasut46193c32015-07-21 16:11:16 +020035 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
Marek Vasutaf657612015-07-09 05:15:40 +020036
Marek Vasut1a7728f2015-07-09 05:36:23 +020037u32 spl_boot_device(void)
38{
Marek Vasut46193c32015-07-21 16:11:16 +020039 const u32 bsel = readl(&sysmgr_regs->bootinfo);
40
Ley Foon Tan9db517e2017-04-26 02:44:45 +080041 switch (SYSMGR_GET_BOOTINFO_BSEL(bsel)) {
Marek Vasut46193c32015-07-21 16:11:16 +020042 case 0x1: /* FPGA (HPS2FPGA Bridge) */
43 return BOOT_DEVICE_RAM;
44 case 0x2: /* NAND Flash (1.8V) */
45 case 0x3: /* NAND Flash (3.0V) */
Marek Vasut796c4c22015-12-20 04:00:42 +010046 socfpga_per_reset(SOCFPGA_RESET(NAND), 0);
Marek Vasut46193c32015-07-21 16:11:16 +020047 return BOOT_DEVICE_NAND;
48 case 0x4: /* SD/MMC External Transceiver (1.8V) */
49 case 0x5: /* SD/MMC Internal Transceiver (3.0V) */
50 socfpga_per_reset(SOCFPGA_RESET(SDMMC), 0);
51 socfpga_per_reset(SOCFPGA_RESET(DMA), 0);
52 return BOOT_DEVICE_MMC1;
53 case 0x6: /* QSPI Flash (1.8V) */
54 case 0x7: /* QSPI Flash (3.0V) */
55 socfpga_per_reset(SOCFPGA_RESET(QSPI), 0);
56 return BOOT_DEVICE_SPI;
57 default:
58 printf("Invalid boot device (bsel=%08x)!\n", bsel);
59 hang();
60 }
Marek Vasut1029caf2015-07-10 00:04:23 +020061}
Ley Foon Tan3305ba72018-05-24 00:17:27 +080062
63#ifdef CONFIG_SPL_MMC_SUPPORT
64u32 spl_boot_mode(const u32 boot_device)
65{
66#if defined(CONFIG_SPL_FAT_SUPPORT) || defined(CONFIG_SPL_EXT_SUPPORT)
67 return MMCSD_MODE_FS;
68#else
69 return MMCSD_MODE_RAW;
70#endif
71}
72#endif
Marek Vasut1029caf2015-07-10 00:04:23 +020073
Marek Vasutaf657612015-07-09 05:15:40 +020074static void socfpga_nic301_slave_ns(void)
75{
76 writel(0x1, &nic301_regs->lwhps2fpgaregs);
77 writel(0x1, &nic301_regs->hps2fpgaregs);
78 writel(0x1, &nic301_regs->acp);
79 writel(0x1, &nic301_regs->rom);
80 writel(0x1, &nic301_regs->ocram);
81 writel(0x1, &nic301_regs->sdrdata);
82}
Dinh Nguyene6a52ca2015-04-15 16:44:32 -050083
Dinh Nguyene6a52ca2015-04-15 16:44:32 -050084void board_init_f(ulong dummy)
85{
Marek Vasut1a7728f2015-07-09 05:36:23 +020086 const struct cm_config *cm_default_cfg = cm_get_default_config();
Marek Vasut1a7728f2015-07-09 05:36:23 +020087 unsigned long sdram_size;
Dinh Nguyene6a52ca2015-04-15 16:44:32 -050088 unsigned long reg;
Marek Vasut1a7728f2015-07-09 05:36:23 +020089
Dinh Nguyene6a52ca2015-04-15 16:44:32 -050090 /*
91 * First C code to run. Clear fake OCRAM ECC first as SBE
92 * and DBE might triggered during power on
93 */
94 reg = readl(&sysmgr_regs->eccgrp_ocram);
95 if (reg & SYSMGR_ECC_OCRAM_SERR)
96 writel(SYSMGR_ECC_OCRAM_SERR | SYSMGR_ECC_OCRAM_EN,
97 &sysmgr_regs->eccgrp_ocram);
98 if (reg & SYSMGR_ECC_OCRAM_DERR)
99 writel(SYSMGR_ECC_OCRAM_DERR | SYSMGR_ECC_OCRAM_EN,
100 &sysmgr_regs->eccgrp_ocram);
101
102 memset(__bss_start, 0, __bss_end - __bss_start);
103
Marek Vasutaf657612015-07-09 05:15:40 +0200104 socfpga_nic301_slave_ns();
105
106 /* Configure ARM MPU SNSAC register. */
107 setbits_le32(&scu_regs->sacr, 0xfff);
108
Dinh Nguyene6a52ca2015-04-15 16:44:32 -0500109 /* Remap SDRAM to 0x0 */
Marek Vasutaf657612015-07-09 05:15:40 +0200110 writel(0x1, &nic301_regs->remap); /* remap.mpuzero */
Dinh Nguyene6a52ca2015-04-15 16:44:32 -0500111 writel(0x1, &pl310->pl310_addr_filter_start);
112
Chin Liang See6ae44732013-12-02 12:01:39 -0600113 debug("Freezing all I/O banks\n");
114 /* freeze all IO banks */
115 sys_mgr_frzctrl_freeze_req();
116
Marek Vasut8784e7e2015-07-09 05:21:02 +0200117 /* Put everything into reset but L4WD0. */
118 socfpga_per_reset_all();
119 /* Put FPGA bridges into reset too. */
120 socfpga_bridges_reset(1);
121
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200122 socfpga_per_reset(SOCFPGA_RESET(SDR), 0);
123 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
124 socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0);
Dinh Nguyen2c6fca32015-03-30 17:01:05 -0500125
Dinh Nguyenb47180b2015-03-30 17:01:06 -0500126 timer_init();
127
Chin Liang Seecb350602014-03-04 22:13:53 -0600128 debug("Reconfigure Clock Manager\n");
129 /* reconfigure the PLLs */
Ley Foon Tanec6f8822017-04-26 02:44:33 +0800130 if (cm_basic_init(cm_default_cfg))
131 hang();
Chin Liang Seecb350602014-03-04 22:13:53 -0600132
Dinh Nguyen95a2fd32015-03-30 17:01:07 -0500133 /* Enable bootrom to configure IOs. */
Marek Vasut8306b1e2015-07-09 04:40:11 +0200134 sysmgr_config_warmrstcfgio(1);
Dinh Nguyen95a2fd32015-03-30 17:01:07 -0500135
Chin Liang See63550242014-06-10 01:17:42 -0500136 /* configure the IOCSR / IO buffer settings */
137 if (scan_mgr_configure_iocsr())
138 hang();
139
Marek Vasut6d4a4b42015-07-09 04:48:56 +0200140 sysmgr_config_warmrstcfgio(0);
141
Chin Liang See70fa4e72013-09-11 11:24:48 -0500142 /* configure the pin muxing through system manager */
Marek Vasut6d4a4b42015-07-09 04:48:56 +0200143 sysmgr_config_warmrstcfgio(1);
Chin Liang See70fa4e72013-09-11 11:24:48 -0500144 sysmgr_pinmux_init();
Marek Vasut6d4a4b42015-07-09 04:48:56 +0200145 sysmgr_config_warmrstcfgio(0);
146
Marek Vasut8784e7e2015-07-09 05:21:02 +0200147 /* De-assert reset for peripherals and bridges based on handoff */
Dinh Nguyenad51f7c2012-10-04 06:46:02 +0000148 reset_deassert_peripherals_handoff();
Marek Vasut8784e7e2015-07-09 05:21:02 +0200149 socfpga_bridges_reset(0);
Dinh Nguyenad51f7c2012-10-04 06:46:02 +0000150
Chin Liang See6ae44732013-12-02 12:01:39 -0600151 debug("Unfreezing/Thaw all I/O banks\n");
152 /* unfreeze / thaw all IO banks */
153 sys_mgr_frzctrl_thaw_req();
154
Dinh Nguyenad51f7c2012-10-04 06:46:02 +0000155 /* enable console uart printing */
156 preloader_console_init();
Dinh Nguyenea344582015-03-30 17:01:08 -0500157
158 if (sdram_mmr_init_full(0xffffffff) != 0) {
159 puts("SDRAM init failed.\n");
160 hang();
161 }
162
163 debug("SDRAM: Calibrating PHY\n");
164 /* SDRAM calibration */
165 if (sdram_calibration_full() == 0) {
166 puts("SDRAM calibration failed.\n");
167 hang();
168 }
Dinh Nguyen4b86cbb2015-03-30 17:01:09 -0500169
170 sdram_size = sdram_calculate_size();
171 debug("SDRAM: %ld MiB\n", sdram_size >> 20);
Dinh Nguyen66ea63f2015-03-30 17:01:15 -0500172
173 /* Sanity check ensure correct SDRAM size specified */
174 if (get_ram_size(0, sdram_size) != sdram_size) {
175 puts("SDRAM size check failed!\n");
176 hang();
177 }
Marek Vasut8784e7e2015-07-09 05:21:02 +0200178
179 socfpga_bridges_reset(1);
Marek Vasut1a7728f2015-07-09 05:36:23 +0200180
Marek Vasutffb8e7f2015-07-12 15:23:28 +0200181 /* Configure simple malloc base pointer into RAM. */
182 gd->malloc_base = CONFIG_SYS_TEXT_BASE + (1024 * 1024);
Dinh Nguyenad51f7c2012-10-04 06:46:02 +0000183}