blob: 0e9cb97832dd6de96fa9b9b1b68d55dd74464b9e [file] [log] [blame]
Tom Warrend0edce42013-03-25 16:22:26 -07001/*
Tom Warren2f5dac92014-01-24 12:46:16 -07002 * Copyright (c) 2013-2014, NVIDIA CORPORATION. All rights reserved.
Tom Warrend0edce42013-03-25 16:22:26 -07003 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17/* Tegra cache routines */
18
19#include <common.h>
20#include <asm/io.h>
21#include <asm/arch-tegra/ap.h>
22#include <asm/arch/gp_padctrl.h>
23
Tom Warren7aaa5a62015-03-04 16:36:00 -070024#ifndef CONFIG_ARM64
Tom Warrend0edce42013-03-25 16:22:26 -070025void config_cache(void)
26{
Tom Warrend0edce42013-03-25 16:22:26 -070027 u32 reg = 0;
28
29 /* enable SMP mode and FW for CPU0, by writing to Auxiliary Ctl reg */
30 asm volatile(
31 "mrc p15, 0, r0, c1, c0, 1\n"
32 "orr r0, r0, #0x41\n"
33 "mcr p15, 0, r0, c1, c0, 1\n");
34
Tom Warren2f5dac92014-01-24 12:46:16 -070035 /* Currently, only Tegra114+ needs this L2 cache change to boot Linux */
36 if (tegra_get_chip() < CHIPID_TEGRA114)
Tom Warrend0edce42013-03-25 16:22:26 -070037 return;
Tom Warren2f5dac92014-01-24 12:46:16 -070038
Tom Warrend0edce42013-03-25 16:22:26 -070039 /*
40 * Systems with an architectural L2 cache must not use the PL310.
41 * Config L2CTLR here for a data RAM latency of 3 cycles.
42 */
43 asm("mrc p15, 1, %0, c9, c0, 2" : : "r" (reg));
44 reg &= ~7;
45 reg |= 2;
46 asm("mcr p15, 1, %0, c9, c0, 2" : : "r" (reg));
47}
Tom Warren7aaa5a62015-03-04 16:36:00 -070048#endif