blob: be414e4e4aca296206e05cadd3534684d6b1c572 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Tom Warren82b51342013-03-25 16:22:26 -07002/*
Tom Warrene5ffffd2014-01-24 12:46:16 -07003 * Copyright (c) 2013-2014, NVIDIA CORPORATION. All rights reserved.
Tom Warren82b51342013-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>
11#include <asm/arch/gp_padctrl.h>
12
Tom Warrenab0cc6b2015-03-04 16:36:00 -070013#ifndef CONFIG_ARM64
Tom Warren82b51342013-03-25 16:22:26 -070014void config_cache(void)
15{
Tom Warren82b51342013-03-25 16:22:26 -070016 u32 reg = 0;
17
18 /* enable SMP mode and FW for CPU0, by writing to Auxiliary Ctl reg */
19 asm volatile(
20 "mrc p15, 0, r0, c1, c0, 1\n"
21 "orr r0, r0, #0x41\n"
22 "mcr p15, 0, r0, c1, c0, 1\n");
23
Tom Warrene5ffffd2014-01-24 12:46:16 -070024 /* Currently, only Tegra114+ needs this L2 cache change to boot Linux */
25 if (tegra_get_chip() < CHIPID_TEGRA114)
Tom Warren82b51342013-03-25 16:22:26 -070026 return;
Tom Warrene5ffffd2014-01-24 12:46:16 -070027
Tom Warren82b51342013-03-25 16:22:26 -070028 /*
29 * Systems with an architectural L2 cache must not use the PL310.
30 * Config L2CTLR here for a data RAM latency of 3 cycles.
31 */
32 asm("mrc p15, 1, %0, c9, c0, 2" : : "r" (reg));
33 reg &= ~7;
34 reg |= 2;
35 asm("mcr p15, 1, %0, c9, c0, 2" : : "r" (reg));
36}
Tom Warrenab0cc6b2015-03-04 16:36:00 -070037#endif