1
2
3
4
5
6
7
8
9
10
11
12#include <common.h>
13#include <asm/armv7.h>
14#include <asm/gic.h>
15#include <asm/io.h>
16#include <asm/secure.h>
17
18static 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
31 unsigned periphbase;
32
33
34 asm("mrc p15, 4, %0, c15, c0, 0\n" : "=r" (periphbase));
35
36
37
38
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
49
50
51void __weak protect_secure_section(void) {}
52
53static void relocate_secure_section(void)
54{
55#ifdef CONFIG_ARMV7_SECURE_BASE
56 size_t sz = __secure_end - __secure_start;
57 unsigned long szflush = ALIGN(sz + 1, CONFIG_SYS_CACHELINE_SIZE);
58
59 memcpy((void *)CONFIG_ARMV7_SECURE_BASE, __secure_start, sz);
60
61 flush_dcache_range(CONFIG_ARMV7_SECURE_BASE,
62 CONFIG_ARMV7_SECURE_BASE + szflush);
63 protect_secure_section();
64 invalidate_icache_all();
65#endif
66}
67
68static void kick_secondary_cpus_gic(unsigned long gicdaddr)
69{
70
71 writel(1U << 24, gicdaddr + GICD_SGIR);
72}
73
74void __weak smp_kick_all_cpus(void)
75{
76 unsigned long gic_dist_addr;
77
78 gic_dist_addr = get_gicd_base_address();
79 if (gic_dist_addr == -1)
80 return;
81
82 kick_secondary_cpus_gic(gic_dist_addr);
83}
84
85__weak void psci_board_init(void)
86{
87}
88
89int armv7_init_nonsec(void)
90{
91 unsigned int reg;
92 unsigned itlinesnr, i;
93 unsigned long gic_dist_addr;
94
95
96 reg = read_id_pfr1();
97 if ((reg & 0xF0) == 0) {
98 printf("nonsec: Security extensions not implemented.\n");
99 return -1;
100 }
101
102
103
104
105
106
107
108 gic_dist_addr = get_gicd_base_address();
109 if (gic_dist_addr == -1)
110 return -1;
111
112
113 writel(readl(gic_dist_addr + GICD_CTLR) | 0x03,
114 gic_dist_addr + GICD_CTLR);
115
116
117 itlinesnr = readl(gic_dist_addr + GICD_TYPER) & 0x1f;
118
119
120
121
122
123 for (i = 1; i <= itlinesnr; i++)
124 writel((unsigned)-1, gic_dist_addr + GICD_IGROUPRn + 4 * i);
125
126 psci_board_init();
127
128
129
130
131
132
133
134 relocate_secure_section();
135
136#ifndef CONFIG_ARMV7_PSCI
137 smp_set_core_boot_addr((unsigned long)secure_ram_addr(_smp_pen), -1);
138 smp_kick_all_cpus();
139#endif
140
141
142 secure_ram_addr(_nonsec_init)();
143 return 0;
144}
145