Merge tag 'u-boot-rockchip-20200501' of https://gitlab.denx.de/u-boot/custodians...
[platform/kernel/u-boot.git] / arch / arm / cpu / armv8 / cpu.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
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>
11  */
12
13 #include <common.h>
14 #include <command.h>
15 #include <cpu_func.h>
16 #include <irq_func.h>
17 #include <asm/system.h>
18 #include <asm/secure.h>
19 #include <linux/compiler.h>
20
21 /*
22  * sdelay() - simple spin loop.
23  *
24  * Will delay execution by roughly (@loops * 2) cycles.
25  * This is necessary to be used before timers are accessible.
26  *
27  * A value of "0" will results in 2^64 loops.
28  */
29 void sdelay(unsigned long loops)
30 {
31         __asm__ volatile ("1:\n" "subs %0, %0, #1\n"
32                           "b.ne 1b" : "=r" (loops) : "0"(loops) : "cc");
33 }
34
35 void __weak board_cleanup_before_linux(void){}
36
37 int cleanup_before_linux(void)
38 {
39         /*
40          * this function is called just before we call linux
41          * it prepares the processor for linux
42          *
43          * disable interrupt and turn off caches etc ...
44          */
45
46         board_cleanup_before_linux();
47
48         disable_interrupts();
49
50         /*
51          * Turn off I-cache and invalidate it
52          */
53         icache_disable();
54         invalidate_icache_all();
55
56         /*
57          * turn off D-cache
58          * dcache_disable() in turn flushes the d-cache and disables MMU
59          */
60         dcache_disable();
61         invalidate_dcache_all();
62
63         return 0;
64 }
65
66 #ifdef CONFIG_ARMV8_PSCI
67 static void relocate_secure_section(void)
68 {
69 #ifdef CONFIG_ARMV8_SECURE_BASE
70         size_t sz = __secure_end - __secure_start;
71
72         memcpy((void *)CONFIG_ARMV8_SECURE_BASE, __secure_start, sz);
73         flush_dcache_range(CONFIG_ARMV8_SECURE_BASE,
74                            CONFIG_ARMV8_SECURE_BASE + sz + 1);
75         invalidate_icache_all();
76 #endif
77 }
78
79 void armv8_setup_psci(void)
80 {
81         relocate_secure_section();
82         secure_ram_addr(psci_setup_vectors)();
83         secure_ram_addr(psci_arch_init)();
84 }
85 #endif