cache.c 878 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2013-2014, NVIDIA CORPORATION. All rights reserved.
  4. */
  5. /* Tegra cache routines */
  6. #include <common.h>
  7. #include <asm/io.h>
  8. #include <asm/arch-tegra/ap.h>
  9. #include <asm/arch/gp_padctrl.h>
  10. #ifndef CONFIG_ARM64
  11. void config_cache(void)
  12. {
  13. u32 reg = 0;
  14. /* enable SMP mode and FW for CPU0, by writing to Auxiliary Ctl reg */
  15. asm volatile(
  16. "mrc p15, 0, r0, c1, c0, 1\n"
  17. "orr r0, r0, #0x41\n"
  18. "mcr p15, 0, r0, c1, c0, 1\n");
  19. /* Currently, only Tegra114+ needs this L2 cache change to boot Linux */
  20. if (tegra_get_chip() < CHIPID_TEGRA114)
  21. return;
  22. /*
  23. * Systems with an architectural L2 cache must not use the PL310.
  24. * Config L2CTLR here for a data RAM latency of 3 cycles.
  25. */
  26. asm("mrc p15, 1, %0, c9, c0, 2" : : "r" (reg));
  27. reg &= ~7;
  28. reg |= 2;
  29. asm("mcr p15, 1, %0, c9, c0, 2" : : "r" (reg));
  30. }
  31. #endif