xref: /optee_os/core/arch/arm/plat-ti/main.c (revision 75c6da9db3bd65fa6a84aff1951a32f587b1abce)
1 /*
2  * Copyright (c) 2015, Linaro Limited
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  * this list of conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright notice,
12  * this list of conditions and the following disclaimer in the documentation
13  * and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
19  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  * POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #include <platform_config.h>
29 #include <console.h>
30 #include <stdint.h>
31 #include <string.h>
32 #include <assert.h>
33 #include <drivers/gic.h>
34 #include <drivers/serial8250_uart.h>
35 #include <arm.h>
36 #include <kernel/generic_boot.h>
37 #include <kernel/panic.h>
38 #include <kernel/pm_stubs.h>
39 #include <trace.h>
40 #include <kernel/misc.h>
41 #include <kernel/mutex.h>
42 #include <kernel/tee_time.h>
43 #include <kernel/tee_common_otp.h>
44 #include <mm/core_mmu.h>
45 #include <mm/core_memprot.h>
46 #include <tee/entry_std.h>
47 #include <tee/entry_fast.h>
48 #include <console.h>
49 #include <sm/sm.h>
50 
51 #define PLAT_HW_UNIQUE_KEY_LENGTH 32
52 
53 static struct gic_data gic_data;
54 static struct serial8250_uart_data console_data __early_bss;
55 static uint8_t plat_huk[PLAT_HW_UNIQUE_KEY_LENGTH];
56 
57 register_phys_mem(MEM_AREA_IO_SEC, SECRAM_BASE, SECRAM_SIZE);
58 register_phys_mem(MEM_AREA_IO_SEC, GICC_BASE, GICC_SIZE);
59 register_phys_mem(MEM_AREA_IO_SEC, GICD_BASE, GICD_SIZE);
60 register_phys_mem(MEM_AREA_IO_NSEC, CONSOLE_UART_BASE,
61 		  SERIAL8250_UART_REG_SIZE);
62 
63 register_phys_mem(MEM_AREA_IO_SEC,
64 		  ROUNDDOWN(SECRAM_BASE, CORE_MMU_DEVICE_SIZE),
65 		  CORE_MMU_DEVICE_SIZE);
66 
67 void main_init_gic(void)
68 {
69 	vaddr_t gicc_base;
70 	vaddr_t gicd_base;
71 
72 	gicc_base = (vaddr_t)phys_to_virt(GICC_BASE, MEM_AREA_IO_SEC);
73 	gicd_base = (vaddr_t)phys_to_virt(GICD_BASE, MEM_AREA_IO_SEC);
74 
75 	if (!gicc_base || !gicd_base)
76 		panic();
77 
78 	gic_init(&gic_data, gicc_base, gicd_base);
79 	itr_init(&gic_data.chip);
80 }
81 
82 void main_secondary_init_gic(void)
83 {
84 	gic_cpu_init(&gic_data);
85 }
86 
87 static void main_fiq(void)
88 {
89 	gic_it_handle(&gic_data);
90 }
91 
92 static const struct thread_handlers handlers = {
93 	.std_smc = tee_entry_std,
94 	.fast_smc = tee_entry_fast,
95 	.nintr = main_fiq,
96 	.cpu_on = pm_panic,
97 	.cpu_off = pm_panic,
98 	.cpu_suspend = pm_panic,
99 	.cpu_resume = pm_panic,
100 	.system_off = pm_panic,
101 	.system_reset = pm_panic,
102 };
103 
104 const struct thread_handlers *generic_boot_get_handlers(void)
105 {
106 	return &handlers;
107 }
108 
109 struct plat_nsec_ctx {
110 	uint32_t usr_sp;
111 	uint32_t usr_lr;
112 	uint32_t svc_sp;
113 	uint32_t svc_lr;
114 	uint32_t svc_spsr;
115 	uint32_t abt_sp;
116 	uint32_t abt_lr;
117 	uint32_t abt_spsr;
118 	uint32_t und_sp;
119 	uint32_t und_lr;
120 	uint32_t und_spsr;
121 	uint32_t irq_sp;
122 	uint32_t irq_lr;
123 	uint32_t irq_spsr;
124 	uint32_t fiq_sp;
125 	uint32_t fiq_lr;
126 	uint32_t fiq_spsr;
127 	uint32_t fiq_rx[5];
128 	uint32_t mon_lr;
129 	uint32_t mon_spsr;
130 };
131 
132 struct plat_boot_args {
133 	struct plat_nsec_ctx nsec_ctx;
134 	uint8_t huk[PLAT_HW_UNIQUE_KEY_LENGTH];
135 };
136 
137 void init_sec_mon(unsigned long nsec_entry)
138 {
139 	struct plat_boot_args *plat_boot_args;
140 	struct sm_nsec_ctx *nsec_ctx;
141 
142 	plat_boot_args = phys_to_virt(nsec_entry, MEM_AREA_IO_SEC);
143 	if (!plat_boot_args)
144 		panic();
145 
146 	/* Invalidate cache to fetch data from external memory */
147 	cache_op_inner(DCACHE_AREA_INVALIDATE,
148 			plat_boot_args, sizeof(*plat_boot_args));
149 
150 	/* Initialize secure monitor */
151 	nsec_ctx = sm_get_nsec_ctx();
152 
153 	nsec_ctx->mode_regs.usr_sp = plat_boot_args->nsec_ctx.usr_sp;
154 	nsec_ctx->mode_regs.usr_lr = plat_boot_args->nsec_ctx.usr_lr;
155 	nsec_ctx->mode_regs.irq_spsr = plat_boot_args->nsec_ctx.irq_spsr;
156 	nsec_ctx->mode_regs.irq_sp = plat_boot_args->nsec_ctx.irq_sp;
157 	nsec_ctx->mode_regs.irq_lr = plat_boot_args->nsec_ctx.irq_lr;
158 	nsec_ctx->mode_regs.svc_spsr = plat_boot_args->nsec_ctx.svc_spsr;
159 	nsec_ctx->mode_regs.svc_sp = plat_boot_args->nsec_ctx.svc_sp;
160 	nsec_ctx->mode_regs.svc_lr = plat_boot_args->nsec_ctx.svc_lr;
161 	nsec_ctx->mode_regs.abt_spsr = plat_boot_args->nsec_ctx.abt_spsr;
162 	nsec_ctx->mode_regs.abt_sp = plat_boot_args->nsec_ctx.abt_sp;
163 	nsec_ctx->mode_regs.abt_lr = plat_boot_args->nsec_ctx.abt_lr;
164 	nsec_ctx->mode_regs.und_spsr = plat_boot_args->nsec_ctx.und_spsr;
165 	nsec_ctx->mode_regs.und_sp = plat_boot_args->nsec_ctx.und_sp;
166 	nsec_ctx->mode_regs.und_lr = plat_boot_args->nsec_ctx.und_lr;
167 	nsec_ctx->mon_lr = plat_boot_args->nsec_ctx.mon_lr;
168 	nsec_ctx->mon_spsr = plat_boot_args->nsec_ctx.mon_spsr;
169 
170 	memcpy(plat_huk, plat_boot_args->huk, sizeof(plat_boot_args->huk));
171 }
172 
173 void console_init(void)
174 {
175 	serial8250_uart_init(&console_data, CONSOLE_UART_BASE,
176 			     CONSOLE_UART_CLK_IN_HZ, CONSOLE_BAUDRATE);
177 	register_serial_console(&console_data.chip);
178 }
179 
180 #if defined(CFG_OTP_SUPPORT)
181 
182 void tee_otp_get_hw_unique_key(struct tee_hw_unique_key *hwkey)
183 {
184 	memcpy(&hwkey->data[0], &plat_huk[0], sizeof(hwkey->data));
185 }
186 
187 #endif
188