blob: 3c7f36ad8d89d7b215523cf60542fc67af7f5aac [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
David Feng85fd5f12013-12-14 11:47:35 +08002/*
3 * (C) Copyright 2008 Texas Insturments
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * (C) Copyright 2002
10 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
David Feng85fd5f12013-12-14 11:47:35 +080011 */
12
13#include <common.h>
14#include <command.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070015#include <cpu_func.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070016#include <irq_func.h>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <asm/cache.h>
David Feng85fd5f12013-12-14 11:47:35 +080018#include <asm/system.h>
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +080019#include <asm/secure.h>
David Feng85fd5f12013-12-14 11:47:35 +080020#include <linux/compiler.h>
21
Andre Przywara5174d5d2017-01-02 11:48:32 +000022/*
23 * sdelay() - simple spin loop.
24 *
25 * Will delay execution by roughly (@loops * 2) cycles.
26 * This is necessary to be used before timers are accessible.
27 *
28 * A value of "0" will results in 2^64 loops.
29 */
30void sdelay(unsigned long loops)
31{
32 __asm__ volatile ("1:\n" "subs %0, %0, #1\n"
33 "b.ne 1b" : "=r" (loops) : "0"(loops) : "cc");
34}
35
JC Kuof479aca2020-03-26 16:10:09 -070036void __weak board_cleanup_before_linux(void){}
37
David Feng85fd5f12013-12-14 11:47:35 +080038int cleanup_before_linux(void)
39{
40 /*
41 * this function is called just before we call linux
42 * it prepares the processor for linux
43 *
44 * disable interrupt and turn off caches etc ...
45 */
JC Kuof479aca2020-03-26 16:10:09 -070046
47 board_cleanup_before_linux();
48
David Feng85fd5f12013-12-14 11:47:35 +080049 disable_interrupts();
50
Marc Zyngierb67855c2023-02-09 04:54:27 +080051 if (IS_ENABLED(CONFIG_CMO_BY_VA_ONLY)) {
52 /*
53 * Disable D-cache.
54 */
55 dcache_disable();
56 } else {
57 /*
58 * Turn off I-cache and invalidate it
59 */
60 icache_disable();
61 invalidate_icache_all();
David Feng85fd5f12013-12-14 11:47:35 +080062
Marc Zyngierb67855c2023-02-09 04:54:27 +080063 /*
64 * turn off D-cache
65 * dcache_disable() in turn flushes the d-cache and disables
66 * MMU
67 */
68 dcache_disable();
69 invalidate_dcache_all();
70 }
David Feng85fd5f12013-12-14 11:47:35 +080071
72 return 0;
73}
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +080074
75#ifdef CONFIG_ARMV8_PSCI
76static void relocate_secure_section(void)
77{
78#ifdef CONFIG_ARMV8_SECURE_BASE
79 size_t sz = __secure_end - __secure_start;
80
81 memcpy((void *)CONFIG_ARMV8_SECURE_BASE, __secure_start, sz);
82 flush_dcache_range(CONFIG_ARMV8_SECURE_BASE,
83 CONFIG_ARMV8_SECURE_BASE + sz + 1);
84 invalidate_icache_all();
85#endif
86}
87
88void armv8_setup_psci(void)
89{
Michael Walle616833b2022-02-28 13:48:39 +010090 if (current_el() != 3)
91 return;
92
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +080093 relocate_secure_section();
94 secure_ram_addr(psci_setup_vectors)();
95 secure_ram_addr(psci_arch_init)();
96}
97#endif