blob: 9c533060b85522120a3b000ad220291d3d95cbeb [file] [log] [blame]
Andre Przywara1ef92382013-09-19 18:06:42 +02001/*
2 * (C) Copyright 2013
Andre Przywaraf833e792013-10-07 10:56:51 +02003 * Andre Przywara, Linaro <andre.przywara@linaro.org>
Andre Przywara1ef92382013-09-19 18:06:42 +02004 *
5 * Routines to transition ARMv7 processors from secure into non-secure state
Andre Przywarad4296882013-09-19 18:06:45 +02006 * and from non-secure SVC into HYP mode
Andre Przywara1ef92382013-09-19 18:06:42 +02007 * needed to enable ARMv7 virtualization for current hypervisors
8 *
Andre Przywaraf833e792013-10-07 10:56:51 +02009 * SPDX-License-Identifier: GPL-2.0+
Andre Przywara1ef92382013-09-19 18:06:42 +020010 */
11
12#include <common.h>
13#include <asm/armv7.h>
14#include <asm/gic.h>
15#include <asm/io.h>
Marc Zyngierf510aea2014-07-12 14:24:03 +010016#include <asm/secure.h>
Andre Przywara1ef92382013-09-19 18:06:42 +020017
Andre Przywara1ef92382013-09-19 18:06:42 +020018static unsigned int read_id_pfr1(void)
19{
20 unsigned int reg;
21
22 asm("mrc p15, 0, %0, c0, c1, 1\n" : "=r"(reg));
23 return reg;
24}
25
26static unsigned long get_gicd_base_address(void)
27{
28#ifdef CONFIG_ARM_GIC_BASE_ADDRESS
29 return CONFIG_ARM_GIC_BASE_ADDRESS + GIC_DIST_OFFSET;
30#else
Andre Przywara1ef92382013-09-19 18:06:42 +020031 unsigned periphbase;
32
Andre Przywara1ef92382013-09-19 18:06:42 +020033 /* get the GIC base address from the CBAR register */
34 asm("mrc p15, 4, %0, c15, c0, 0\n" : "=r" (periphbase));
35
36 /* the PERIPHBASE can be mapped above 4 GB (lower 8 bits used to
37 * encode this). Bail out here since we cannot access this without
38 * enabling paging.
39 */
40 if ((periphbase & 0xff) != 0) {
41 printf("nonsec: PERIPHBASE is above 4 GB, no access.\n");
42 return -1;
43 }
44
45 return (periphbase & CBAR_MASK) + GIC_DIST_OFFSET;
46#endif
47}
48
Ian Campbell73169872015-04-21 07:18:36 +020049/* Define a specific version of this function to enable any available
50 * hardware protections for the reserved region */
51void __weak protect_secure_section(void) {}
52
Marc Zyngierf510aea2014-07-12 14:24:03 +010053static void relocate_secure_section(void)
54{
55#ifdef CONFIG_ARMV7_SECURE_BASE
56 size_t sz = __secure_end - __secure_start;
57
58 memcpy((void *)CONFIG_ARMV7_SECURE_BASE, __secure_start, sz);
59 flush_dcache_range(CONFIG_ARMV7_SECURE_BASE,
60 CONFIG_ARMV7_SECURE_BASE + sz + 1);
Ian Campbell73169872015-04-21 07:18:36 +020061 protect_secure_section();
Marc Zyngierf510aea2014-07-12 14:24:03 +010062 invalidate_icache_all();
63#endif
64}
65
Andre Przywaraba6a1692013-09-19 18:06:44 +020066static void kick_secondary_cpus_gic(unsigned long gicdaddr)
67{
68 /* kick all CPUs (except this one) by writing to GICD_SGIR */
69 writel(1U << 24, gicdaddr + GICD_SGIR);
70}
71
72void __weak smp_kick_all_cpus(void)
73{
tang yuantian56992742014-12-17 12:58:04 +080074 unsigned long gic_dist_addr;
75
76 gic_dist_addr = get_gicd_base_address();
77 if (gic_dist_addr == -1)
78 return;
79
Andre Przywaraba6a1692013-09-19 18:06:44 +020080 kick_secondary_cpus_gic(gic_dist_addr);
81}
82
Jan Kiszkace416fa2015-04-21 07:18:34 +020083__weak void psci_board_init(void)
84{
85}
86
Marc Zyngierf510aea2014-07-12 14:24:03 +010087int armv7_init_nonsec(void)
Andre Przywara1ef92382013-09-19 18:06:42 +020088{
89 unsigned int reg;
90 unsigned itlinesnr, i;
tang yuantian56992742014-12-17 12:58:04 +080091 unsigned long gic_dist_addr;
Andre Przywara1ef92382013-09-19 18:06:42 +020092
93 /* check whether the CPU supports the security extensions */
94 reg = read_id_pfr1();
95 if ((reg & 0xF0) == 0) {
96 printf("nonsec: Security extensions not implemented.\n");
97 return -1;
98 }
99
100 /* the SCR register will be set directly in the monitor mode handler,
101 * according to the spec one should not tinker with it in secure state
102 * in SVC mode. Do not try to read it once in non-secure state,
103 * any access to it will trap.
104 */
105
106 gic_dist_addr = get_gicd_base_address();
107 if (gic_dist_addr == -1)
108 return -1;
109
110 /* enable the GIC distributor */
111 writel(readl(gic_dist_addr + GICD_CTLR) | 0x03,
112 gic_dist_addr + GICD_CTLR);
113
114 /* TYPER[4:0] contains an encoded number of available interrupts */
115 itlinesnr = readl(gic_dist_addr + GICD_TYPER) & 0x1f;
116
117 /* set all bits in the GIC group registers to one to allow access
118 * from non-secure state. The first 32 interrupts are private per
119 * CPU and will be set later when enabling the GIC for each core
120 */
121 for (i = 1; i <= itlinesnr; i++)
122 writel((unsigned)-1, gic_dist_addr + GICD_IGROUPRn + 4 * i);
123
Jan Kiszkace416fa2015-04-21 07:18:34 +0200124 psci_board_init();
125
Peng Fan02251ee2015-02-04 18:15:09 +0800126 /*
127 * Relocate secure section before any cpu runs in secure ram.
128 * smp_kick_all_cpus may enable other cores and runs into secure
129 * ram, so need to relocate secure section before enabling other
130 * cores.
131 */
132 relocate_secure_section();
133
Marc Zyngierf510aea2014-07-12 14:24:03 +0100134#ifndef CONFIG_ARMV7_PSCI
135 smp_set_core_boot_addr((unsigned long)secure_ram_addr(_smp_pen), -1);
Andre Przywaraba6a1692013-09-19 18:06:44 +0200136 smp_kick_all_cpus();
Marc Zyngierf510aea2014-07-12 14:24:03 +0100137#endif
Andre Przywaraba6a1692013-09-19 18:06:44 +0200138
139 /* call the non-sec switching code on this CPU also */
Marc Zyngierf510aea2014-07-12 14:24:03 +0100140 secure_ram_addr(_nonsec_init)();
Andre Przywara1ef92382013-09-19 18:06:42 +0200141 return 0;
142}