blob: 15fee0ad97b9234f4a55eff36384ecb1861b9b39 [file] [log] [blame]
Dinh Nguyen77754402012-10-04 06:46:02 +00001/*
2 * Copyright (C) 2012 Altera Corporation <www.altera.com>
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Dinh Nguyen77754402012-10-04 06:46:02 +00005 */
6
7#include <common.h>
8#include <asm/io.h>
Dinh Nguyen0ef44d12015-04-15 16:44:32 -05009#include <asm/pl310.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000010#include <asm/u-boot.h>
11#include <asm/utils.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000012#include <image.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000013#include <asm/arch/reset_manager.h>
14#include <spl.h>
Chin Liang See5d649d22013-09-11 11:24:48 -050015#include <asm/arch/system_manager.h>
Chin Liang See4c544192013-12-02 12:01:39 -060016#include <asm/arch/freeze_controller.h>
Chin Liang See3ab019e2014-07-22 04:28:35 -050017#include <asm/arch/clock_manager.h>
18#include <asm/arch/scan_manager.h>
Dinh Nguyen37ef0c72015-03-30 17:01:08 -050019#include <asm/arch/sdram.h>
Marek Vasut232fcc62015-07-09 05:15:40 +020020#include <asm/arch/scu.h>
21#include <asm/arch/nic301.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000022
23DECLARE_GLOBAL_DATA_PTR;
24
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050025static struct pl310_regs *const pl310 =
26 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Marek Vasut232fcc62015-07-09 05:15:40 +020027static struct scu_registers *scu_regs =
28 (struct scu_registers *)SOCFPGA_MPUSCU_ADDRESS;
29static struct nic301_registers *nic301_regs =
30 (struct nic301_registers *)SOCFPGA_L3REGS_ADDRESS;
31
32static void socfpga_nic301_slave_ns(void)
33{
34 writel(0x1, &nic301_regs->lwhps2fpgaregs);
35 writel(0x1, &nic301_regs->hps2fpgaregs);
36 writel(0x1, &nic301_regs->acp);
37 writel(0x1, &nic301_regs->rom);
38 writel(0x1, &nic301_regs->ocram);
39 writel(0x1, &nic301_regs->sdrdata);
40}
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050041
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050042void board_init_f(ulong dummy)
43{
44 struct socfpga_system_manager *sysmgr_regs =
45 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
46 unsigned long reg;
47 /*
48 * First C code to run. Clear fake OCRAM ECC first as SBE
49 * and DBE might triggered during power on
50 */
51 reg = readl(&sysmgr_regs->eccgrp_ocram);
52 if (reg & SYSMGR_ECC_OCRAM_SERR)
53 writel(SYSMGR_ECC_OCRAM_SERR | SYSMGR_ECC_OCRAM_EN,
54 &sysmgr_regs->eccgrp_ocram);
55 if (reg & SYSMGR_ECC_OCRAM_DERR)
56 writel(SYSMGR_ECC_OCRAM_DERR | SYSMGR_ECC_OCRAM_EN,
57 &sysmgr_regs->eccgrp_ocram);
58
59 memset(__bss_start, 0, __bss_end - __bss_start);
60
Marek Vasut232fcc62015-07-09 05:15:40 +020061 socfpga_nic301_slave_ns();
62
63 /* Configure ARM MPU SNSAC register. */
64 setbits_le32(&scu_regs->sacr, 0xfff);
65
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050066 /* Remap SDRAM to 0x0 */
Marek Vasut232fcc62015-07-09 05:15:40 +020067 writel(0x1, &nic301_regs->remap); /* remap.mpuzero */
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050068 writel(0x1, &pl310->pl310_addr_filter_start);
69
70 board_init_r(NULL, 0);
71}
72
Dinh Nguyen77754402012-10-04 06:46:02 +000073u32 spl_boot_device(void)
74{
75 return BOOT_DEVICE_RAM;
76}
77
78/*
79 * Board initialization after bss clearance
80 */
81void spl_board_init(void)
82{
Dinh Nguyen89ba8242015-03-30 17:01:09 -050083 unsigned long sdram_size;
Chin Liang See5d649d22013-09-11 11:24:48 -050084#ifndef CONFIG_SOCFPGA_VIRTUAL_TARGET
Marek Vasut93b4abd2015-07-25 08:44:27 +020085 const struct cm_config *cm_default_cfg = cm_get_default_config();
86#endif
Chin Liang Seeddfeb0a2014-03-04 22:13:53 -060087
Chin Liang See4c544192013-12-02 12:01:39 -060088 debug("Freezing all I/O banks\n");
89 /* freeze all IO banks */
90 sys_mgr_frzctrl_freeze_req();
91
Marek Vasuta71df7a2015-07-09 02:51:56 +020092 socfpga_per_reset(SOCFPGA_RESET(SDR), 0);
93 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
94 socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0);
Dinh Nguyen0812a1d2015-03-30 17:01:05 -050095
Dinh Nguyen9fd565d2015-03-30 17:01:06 -050096 timer_init();
97
Chin Liang Seeddfeb0a2014-03-04 22:13:53 -060098 debug("Reconfigure Clock Manager\n");
99 /* reconfigure the PLLs */
Marek Vasut93b4abd2015-07-25 08:44:27 +0200100 cm_basic_init(cm_default_cfg);
Chin Liang Seeddfeb0a2014-03-04 22:13:53 -0600101
Dinh Nguyen08e463e2015-03-30 17:01:07 -0500102 /* Enable bootrom to configure IOs. */
Marek Vasut40687b42015-07-09 04:40:11 +0200103 sysmgr_config_warmrstcfgio(1);
Dinh Nguyen08e463e2015-03-30 17:01:07 -0500104
Chin Liang Seedc4d4aa2014-06-10 01:17:42 -0500105 /* configure the IOCSR / IO buffer settings */
106 if (scan_mgr_configure_iocsr())
107 hang();
108
Marek Vasut4a0080d2015-07-09 04:48:56 +0200109 sysmgr_config_warmrstcfgio(0);
110
Chin Liang See5d649d22013-09-11 11:24:48 -0500111 /* configure the pin muxing through system manager */
Marek Vasut4a0080d2015-07-09 04:48:56 +0200112 sysmgr_config_warmrstcfgio(1);
Chin Liang See5d649d22013-09-11 11:24:48 -0500113 sysmgr_pinmux_init();
Marek Vasut4a0080d2015-07-09 04:48:56 +0200114 sysmgr_config_warmrstcfgio(0);
115
Chin Liang See5d649d22013-09-11 11:24:48 -0500116#endif /* CONFIG_SOCFPGA_VIRTUAL_TARGET */
117
Dinh Nguyen77754402012-10-04 06:46:02 +0000118 /* de-assert reset for peripherals and bridges based on handoff */
119 reset_deassert_peripherals_handoff();
120
Chin Liang See4c544192013-12-02 12:01:39 -0600121 debug("Unfreezing/Thaw all I/O banks\n");
122 /* unfreeze / thaw all IO banks */
123 sys_mgr_frzctrl_thaw_req();
124
Dinh Nguyen77754402012-10-04 06:46:02 +0000125 /* enable console uart printing */
126 preloader_console_init();
Dinh Nguyen37ef0c72015-03-30 17:01:08 -0500127
128 if (sdram_mmr_init_full(0xffffffff) != 0) {
129 puts("SDRAM init failed.\n");
130 hang();
131 }
132
133 debug("SDRAM: Calibrating PHY\n");
134 /* SDRAM calibration */
135 if (sdram_calibration_full() == 0) {
136 puts("SDRAM calibration failed.\n");
137 hang();
138 }
Dinh Nguyen89ba8242015-03-30 17:01:09 -0500139
140 sdram_size = sdram_calculate_size();
141 debug("SDRAM: %ld MiB\n", sdram_size >> 20);
Dinh Nguyen9ad3a4a2015-03-30 17:01:15 -0500142
143 /* Sanity check ensure correct SDRAM size specified */
144 if (get_ram_size(0, sdram_size) != sdram_size) {
145 puts("SDRAM size check failed!\n");
146 hang();
147 }
Dinh Nguyen77754402012-10-04 06:46:02 +0000148}