blob: d7063490e222092e04e634df94e3edafe225ecad [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Tom Warrend0edce42013-03-25 16:22:26 -07002/*
Tom Warren2f5dac92014-01-24 12:46:16 -07003 * Copyright (c) 2013-2014, NVIDIA CORPORATION. All rights reserved.
Tom Warrend0edce42013-03-25 16:22:26 -07004 */
5
6/* Tegra cache routines */
7
8#include <common.h>
9#include <asm/io.h>
10#include <asm/arch-tegra/ap.h>
Thierry Reding9e578192019-04-15 11:32:19 +020011#if IS_ENABLED(CONFIG_TEGRA_GP_PADCTRL)
Tom Warrend0edce42013-03-25 16:22:26 -070012#include <asm/arch/gp_padctrl.h>
Thierry Reding9e578192019-04-15 11:32:19 +020013#endif
Tom Warrend0edce42013-03-25 16:22:26 -070014
Tom Warren7aaa5a62015-03-04 16:36:00 -070015#ifndef CONFIG_ARM64
Tom Warrend0edce42013-03-25 16:22:26 -070016void config_cache(void)
17{
Tom Warrend0edce42013-03-25 16:22:26 -070018 u32 reg = 0;
19
20 /* enable SMP mode and FW for CPU0, by writing to Auxiliary Ctl reg */
21 asm volatile(
22 "mrc p15, 0, r0, c1, c0, 1\n"
23 "orr r0, r0, #0x41\n"
24 "mcr p15, 0, r0, c1, c0, 1\n");
25
Tom Warren2f5dac92014-01-24 12:46:16 -070026 /* Currently, only Tegra114+ needs this L2 cache change to boot Linux */
27 if (tegra_get_chip() < CHIPID_TEGRA114)
Tom Warrend0edce42013-03-25 16:22:26 -070028 return;
Tom Warren2f5dac92014-01-24 12:46:16 -070029
Tom Warrend0edce42013-03-25 16:22:26 -070030 /*
31 * Systems with an architectural L2 cache must not use the PL310.
32 * Config L2CTLR here for a data RAM latency of 3 cycles.
33 */
34 asm("mrc p15, 1, %0, c9, c0, 2" : : "r" (reg));
35 reg &= ~7;
36 reg |= 2;
37 asm("mcr p15, 1, %0, c9, c0, 2" : : "r" (reg));
38}
Tom Warren7aaa5a62015-03-04 16:36:00 -070039#endif