blob: 7f9d7f01337d219310a049d9e5e925aa7dcbc5b5 [file] [log] [blame]
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00001/*
2 * Copyright (C) 2012 Altera Corporation <www.altera.com>
3 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00005 */
6
7#include <common.h>
8#include <asm/io.h>
Pavel Machekc7213802014-09-08 14:08:45 +02009#include <altera.h>
Pavel Machekce340e92014-07-14 14:14:17 +020010#include <miiphy.h>
11#include <netdev.h>
Pavel Machek56a00ab2014-09-09 14:03:28 +020012#include <asm/arch/reset_manager.h>
Pavel Machek57d75eb2014-09-08 14:08:45 +020013#include <asm/arch/system_manager.h>
Pavel Machek529d8a12014-09-08 14:08:45 +020014#include <asm/arch/dwmmc.h>
Marek Vasut56916e42014-09-15 03:58:22 +020015#include <asm/arch/nic301.h>
Pavel Macheke918e332014-09-08 14:08:45 +020016#include <asm/arch/scu.h>
Marek Vasut56916e42014-09-15 03:58:22 +020017#include <asm/pl310.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000018
19DECLARE_GLOBAL_DATA_PTR;
20
Marek Vasut56916e42014-09-15 03:58:22 +020021static struct pl310_regs *const pl310 =
22 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Pavel Machek57d75eb2014-09-08 14:08:45 +020023static struct socfpga_system_manager *sysmgr_regs =
24 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
Marek Vasut56916e42014-09-15 03:58:22 +020025static struct nic301_registers *nic301_regs =
26 (struct nic301_registers *)SOCFPGA_L3REGS_ADDRESS;
Pavel Macheke918e332014-09-08 14:08:45 +020027static struct scu_registers *scu_regs =
28 (struct scu_registers *)SOCFPGA_MPUSCU_ADDRESS;
Pavel Machek57d75eb2014-09-08 14:08:45 +020029
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000030int dram_init(void)
31{
32 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE);
33 return 0;
34}
Pavel Machek57d75eb2014-09-08 14:08:45 +020035
Marek Vasutd5157942014-09-21 13:57:40 +020036void enable_caches(void)
37{
38#ifndef CONFIG_SYS_ICACHE_OFF
39 icache_enable();
40#endif
41#ifndef CONFIG_SYS_DCACHE_OFF
42 dcache_enable();
43#endif
44}
45
Pavel Machek57d75eb2014-09-08 14:08:45 +020046/*
47 * DesignWare Ethernet initialization
48 */
49#ifdef CONFIG_DESIGNWARE_ETH
50int cpu_eth_init(bd_t *bis)
51{
52#if CONFIG_EMAC_BASE == SOCFPGA_EMAC0_ADDRESS
53 const int physhift = SYSMGR_EMACGRP_CTRL_PHYSEL0_LSB;
54#elif CONFIG_EMAC_BASE == SOCFPGA_EMAC1_ADDRESS
55 const int physhift = SYSMGR_EMACGRP_CTRL_PHYSEL1_LSB;
56#else
57#error "Incorrect CONFIG_EMAC_BASE value!"
58#endif
59
60 /* Initialize EMAC. This needs to be done at least once per boot. */
61
62 /*
63 * Putting the EMAC controller to reset when configuring the PHY
64 * interface select at System Manager
65 */
66 socfpga_emac_reset(1);
67
68 /* Clearing emac0 PHY interface select to 0 */
69 clrbits_le32(&sysmgr_regs->emacgrp_ctrl,
70 SYSMGR_EMACGRP_CTRL_PHYSEL_MASK << physhift);
71
72 /* configure to PHY interface select choosed */
73 setbits_le32(&sysmgr_regs->emacgrp_ctrl,
74 SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII << physhift);
75
76 /* Release the EMAC controller from reset */
77 socfpga_emac_reset(0);
78
79 /* initialize and register the emac */
80 return designware_initialize(CONFIG_EMAC_BASE,
81 CONFIG_PHY_INTERFACE_MODE);
82}
83#endif
Chin Liang Seebff262c2014-06-10 02:23:45 -050084
Pavel Machek529d8a12014-09-08 14:08:45 +020085#ifdef CONFIG_DWMMC
86/*
87 * Initializes MMC controllers.
88 * to override, implement board_mmc_init()
89 */
90int cpu_mmc_init(bd_t *bis)
91{
92 return socfpga_dwmmc_init(SOCFPGA_SDMMC_ADDRESS,
93 CONFIG_HPS_SDMMC_BUSWIDTH, 0);
94}
95#endif
96
Chin Liang Seebff262c2014-06-10 02:23:45 -050097#if defined(CONFIG_DISPLAY_CPUINFO)
98/*
99 * Print CPU information
100 */
101int print_cpuinfo(void)
102{
Pavel Machek2f983472014-09-08 14:08:45 +0200103 puts("CPU: Altera SoCFPGA Platform\n");
Chin Liang Seebff262c2014-06-10 02:23:45 -0500104 return 0;
105}
106#endif
107
108#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
109defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
110int overwrite_console(void)
111{
112 return 0;
113}
114#endif
115
Pavel Machekc7213802014-09-08 14:08:45 +0200116#ifdef CONFIG_FPGA
117/*
118 * FPGA programming support for SoC FPGA Cyclone V
119 */
120static Altera_desc altera_fpga[] = {
121 {
122 /* Family */
123 Altera_SoCFPGA,
124 /* Interface type */
125 fast_passive_parallel,
126 /* No limitation as additional data will be ignored */
127 -1,
128 /* No device function table */
129 NULL,
130 /* Base interface address specified in driver */
131 NULL,
132 /* No cookie implementation */
133 0
134 },
135};
136
137/* add device descriptor to FPGA device table */
138static void socfpga_fpga_add(void)
139{
140 int i;
141 fpga_init();
142 for (i = 0; i < ARRAY_SIZE(altera_fpga); i++)
143 fpga_add(fpga_altera, &altera_fpga[i]);
144}
145#else
146static inline void socfpga_fpga_add(void) {}
147#endif
148
Pavel Machek56a00ab2014-09-09 14:03:28 +0200149int arch_cpu_init(void)
150{
151 /*
152 * If the HW watchdog is NOT enabled, make sure it is not running,
153 * for example because it was enabled in the preloader. This might
154 * trigger a watchdog-triggered reboot of Linux kernel later.
155 */
156#ifndef CONFIG_HW_WATCHDOG
157 socfpga_watchdog_reset();
158#endif
159 return 0;
160}
161
Pavel Macheke918e332014-09-08 14:08:45 +0200162/*
163 * Convert all NIC-301 AMBA slaves from secure to non-secure
164 */
165static void socfpga_nic301_slave_ns(void)
166{
167 writel(0x1, &nic301_regs->lwhps2fpgaregs);
168 writel(0x1, &nic301_regs->hps2fpgaregs);
169 writel(0x1, &nic301_regs->acp);
170 writel(0x1, &nic301_regs->rom);
171 writel(0x1, &nic301_regs->ocram);
172 writel(0x1, &nic301_regs->sdrdata);
173}
174
Chin Liang Seebff262c2014-06-10 02:23:45 -0500175int misc_init_r(void)
176{
Pavel Macheke918e332014-09-08 14:08:45 +0200177 socfpga_bridges_reset(1);
178 socfpga_nic301_slave_ns();
179
180 /*
181 * Private components security:
182 * U-Boot : configure private timer, global timer and cpu component
183 * access as non secure for kernel stage (as required by Linux)
184 */
185 setbits_le32(&scu_regs->sacr, 0xfff);
186
Marek Vasut56916e42014-09-15 03:58:22 +0200187 /* Configure the L2 controller to make SDRAM start at 0 */
188#ifdef CONFIG_SOCFPGA_VIRTUAL_TARGET
189 writel(0x2, &nic301_regs->remap);
190#else
191 writel(0x1, &nic301_regs->remap); /* remap.mpuzero */
192 writel(0x1, &pl310->pl310_addr_filter_start);
193#endif
194
Pavel Machekc7213802014-09-08 14:08:45 +0200195 /* Add device descriptor to FPGA device table */
196 socfpga_fpga_add();
Chin Liang Seebff262c2014-06-10 02:23:45 -0500197 return 0;
198}