summaryrefslogtreecommitdiff
path: root/core/arch/arm/plat-sunxi/smp_boot.S
blob: 9e798424c0e05ae34b901879133b58d496bddb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * Copyright (c) 2014, Allwinner Technology Co., Ltd.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <asm.S>
#include <arm.h>
#include <arm32_macros.S>
#include <sm/optee_smc.h>
#include <sm/teesmc_opteed_macros.h>
#include <sm/teesmc_opteed.h>
#include <kernel/unwind.h>


FUNC smp_init_vector , :
	b	.       /* Reset */
	b	.	/* Undef */
	b	.	/* Syscall */
	b	.	/* Prefetch abort */
	b	.	/* Data abort */
	b	.	/* Reserved */
	b	.	/* IRQ */
	b	.	/* FIQ */
END_FUNC smp_init_vector

FUNC sunxi_secondary_entry , :
UNWIND(	.fnstart)
UNWIND(	.cantunwind)
	/* secondary CPUs internal initialization */
	read_sctlr r0
	orr	r0, r0, #SCTLR_A
	write_sctlr r0
	
	/* install smp initialization vector */
	ldr	r0, =smp_init_vector
	write_vbar r0

	/* Setup tmp stack */
        bl      get_core_pos
        add     r0, r0, #1
        ldr     r2, =stack_tmp_stride
        ldr     r1, [r2]
        mul     r2, r0, r1
        ldr     r1, =stack_tmp
        ldr     sp, [r1, r2]

        /* NSACR configuration */
    	read_nsacr  r1
	orr     r1, r1, #NSACR_CP10
	orr     r1, r1, #NSACR_CP11
	orr     r1, r1, #NSACR_NS_SMP
	write_nsacr  r1
    	mcr     p15, 0, r1, c1, c1, 2
	
	/* Enable SMP bit */
    	read_actlr  r0
	orr     r0, r0, #ACTLR_SMP
    	write_actlr r0
	
	/* fixup some platform limits */
	bl	sunxi_secondary_fixup
	
	/* initialize gic cpu interface */
	ldr	r0, =gic_data
    	bl      gic_cpu_init
	
	/* secure env initialization */
	bl	core_init_mmu_regs
	bl	cpu_mmu_enable
	bl	cpu_mmu_enable_icache
	bl	cpu_mmu_enable_dcache

	/* Initialize thread handling and secure monitor */
	ldr	r0, =sunxi_secondary_ns_entry
	ldr     r0, [r0]
	bl	main_init

	mov	r0, #TEESMC_OPTEED_RETURN_ENTRY_DONE
	smc	#0
	b	.	/* SMC should not return */
UNWIND(	.fnend)
END_FUNC sunxi_secondary_entry