/* * 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 #include #include #include #include #include #include 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