blob: 8ce12c8e9ae9c561f6ed56798c65bb23f24cb814 [file] [log] [blame]
Minkyu Kang6b96a202009-07-20 11:40:01 +09001/*
Steve Sakomand34efc72010-06-08 13:07:46 -07002 * Board specific setup info
3 *
4 * (C) Copyright 2010
5 * Texas Instruments, <www.ti.com>
6 *
7 * Author :
8 * Aneesh V <aneesh@ti.com>
Minkyu Kang6b96a202009-07-20 11:40:01 +09009 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Minkyu Kang6b96a202009-07-20 11:40:01 +090011 */
12
Tom Rini98f92002013-03-14 11:15:25 +000013#include <config.h>
Sricharan508a58f2011-11-15 09:49:55 -050014#include <asm/arch/omap.h>
SRICHARAN R4a0eb752013-04-24 00:41:24 +000015#include <asm/omap_common.h>
Joel A Fernandes90207b62012-09-18 04:30:51 +000016#include <asm/arch/spl.h>
Aneesh V74236ac2012-03-08 07:20:18 +000017#include <linux/linkage.h>
Sricharan78f455c2011-11-15 09:50:03 -050018
Daniel Allred51d06382016-06-27 09:19:17 -050019.arch_extension sec
20
Paul Kocialkowski60c7c302015-07-15 16:02:19 +020021#ifdef CONFIG_SPL
Aneesh V74236ac2012-03-08 07:20:18 +000022ENTRY(save_boot_params)
SRICHARAN R4a0eb752013-04-24 00:41:24 +000023 ldr r1, =OMAP_SRAM_SCRATCH_BOOT_PARAMS
Sricharan78f455c2011-11-15 09:50:03 -050024 str r0, [r1]
Simon Glasse11c6c22015-02-07 10:47:28 -070025 b save_boot_params_ret
Aneesh V74236ac2012-03-08 07:20:18 +000026ENDPROC(save_boot_params)
Keerthy1dbc40e2016-09-14 10:43:33 +053027
28#if !defined(CONFIG_TI_SECURE_DEVICE) && defined(CONFIG_ARMV7_LPAE)
29ENTRY(switch_to_hypervisor)
30
31/*
32 * Switch to hypervisor mode
33 */
34 adr r0, save_sp
35 str sp, [r0]
36 adr r1, restore_from_hyp
37 ldr r0, =0x102
38 b omap_smc1
39restore_from_hyp:
40 adr r0, save_sp
41 ldr sp, [r0]
42 MRC p15, 4, R0, c1, c0, 0
43 ldr r1, =0X1004 @Set cache enable bits for hypervisor mode
44 orr r0, r0, r1
45 MCR p15, 4, R0, c1, c0, 0
46 b switch_to_hypervisor_ret
47save_sp:
48 .word 0x0
49ENDPROC(switch_to_hypervisor)
50#endif
Nishanth Menon49ec9492015-03-09 17:12:05 -050051#endif
Sricharan78f455c2011-11-15 09:50:03 -050052
Nishanth Menon6d8abe62015-03-09 17:12:03 -050053ENTRY(omap_smc1)
Daniel Allred51d06382016-06-27 09:19:17 -050054 push {r4-r12, lr} @ save registers - ROM code may pollute
Aneesh V8b457fa2011-06-16 23:30:52 +000055 @ our registers
Daniel Allred51d06382016-06-27 09:19:17 -050056 mov r12, r0 @ Service
57 mov r0, r1 @ Argument
Nishanth Menon6d8abe62015-03-09 17:12:03 -050058
Daniel Allred51d06382016-06-27 09:19:17 -050059 dsb
60 dmb
61 smc 0 @ SMC #0 to enter monitor mode
62 @ call ROM Code API for the service requested
63 pop {r4-r12, pc}
Nishanth Menon6d8abe62015-03-09 17:12:03 -050064ENDPROC(omap_smc1)
Daniel Allred51d06382016-06-27 09:19:17 -050065
66ENTRY(omap_smc_sec)
67 push {r4-r12, lr} @ save registers - ROM code may pollute
68 @ our registers
69 mov r6, #0xFF @ Indicate new Task call
70 mov r12, #0x00 @ Secure Service ID in R12
71
72 dsb
73 dmb
74 smc 0 @ SMC #0 to enter monitor mode
75
76 b omap_smc_sec_end @ exit at end of the service execution
77 nop
78
79 @ In case of IRQ happening in Secure, then ARM will branch here.
80 @ At that moment, IRQ will be pending and ARM will jump to Non Secure
81 @ IRQ handler
82 mov r12, #0xFE
83
84 dsb
85 dmb
86 smc 0 @ SMC #0 to enter monitor mode
87
88omap_smc_sec_end:
89 pop {r4-r12, pc}
90ENDPROC(omap_smc_sec)