Commit 60d804c2f3ddd0071348c6e65999e19b4d07d16a

Authored by Marek Vasut
1 parent 7056efcc32

arm: socfpga: pl310: Map SDRAM to 0x0

Configure the PL310 address filter to make sure DRAM is mapped to 0x0.
This code also configures the "remap" register of NIC-301 and sets the
required 'mpuzero' bit.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Chin Liang See <clsee@altera.com>
Cc: Dinh Nguyen <dinguyen@altera.com>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Cc: Tom Rini <trini@ti.com>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Pavel Machek <pavel@denx.de>
Acked-by: Pavel Machek <pavel@denx.de>

Showing 1 changed file with 14 additions and 0 deletions Side-by-side Diff

arch/arm/cpu/armv7/socfpga/misc.c
... ... @@ -12,11 +12,17 @@
12 12 #include <asm/arch/reset_manager.h>
13 13 #include <asm/arch/system_manager.h>
14 14 #include <asm/arch/dwmmc.h>
  15 +#include <asm/arch/nic301.h>
  16 +#include <asm/pl310.h>
15 17  
16 18 DECLARE_GLOBAL_DATA_PTR;
17 19  
  20 +static struct pl310_regs *const pl310 =
  21 + (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
18 22 static struct socfpga_system_manager *sysmgr_regs =
19 23 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
  24 +static struct nic301_registers *nic301_regs =
  25 + (struct nic301_registers *)SOCFPGA_L3REGS_ADDRESS;
20 26  
21 27 int dram_init(void)
22 28 {
... ... @@ -142,6 +148,14 @@
142 148  
143 149 int misc_init_r(void)
144 150 {
  151 + /* Configure the L2 controller to make SDRAM start at 0 */
  152 +#ifdef CONFIG_SOCFPGA_VIRTUAL_TARGET
  153 + writel(0x2, &nic301_regs->remap);
  154 +#else
  155 + writel(0x1, &nic301_regs->remap); /* remap.mpuzero */
  156 + writel(0x1, &pl310->pl310_addr_filter_start);
  157 +#endif
  158 +
145 159 /* Add device descriptor to FPGA device table */
146 160 socfpga_fpga_add();
147 161 return 0;