Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Santosh Shilimkar | ba9456a | 2011-06-06 17:56:49 +0530 | [diff] [blame] | 2 | /* |
| 3 | * OMAP Secure API infrastructure. |
| 4 | * |
| 5 | * Copyright (C) 2011 Texas Instruments, Inc. |
| 6 | * Santosh Shilimkar <santosh.shilimkar@ti.com> |
Pali Rohár | 4748a72 | 2013-09-18 21:43:56 +0200 | [diff] [blame] | 7 | * Copyright (C) 2012 Ivaylo Dimitrov <freemangordon@abv.bg> |
| 8 | * Copyright (C) 2013 Pali Rohár <pali.rohar@gmail.com> |
Santosh Shilimkar | ba9456a | 2011-06-06 17:56:49 +0530 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/io.h> |
Santosh Shilimkar | 259ee57 | 2011-06-06 20:28:23 +0530 | [diff] [blame] | 14 | #include <linux/memblock.h> |
Santosh Shilimkar | ba9456a | 2011-06-06 17:56:49 +0530 | [diff] [blame] | 15 | |
| 16 | #include <asm/cacheflush.h> |
Russell King | 716a3dc | 2012-01-13 15:00:51 +0000 | [diff] [blame] | 17 | #include <asm/memblock.h> |
Santosh Shilimkar | ba9456a | 2011-06-06 17:56:49 +0530 | [diff] [blame] | 18 | |
Tony Lindgren | c1db9d7 | 2012-09-20 11:41:14 -0700 | [diff] [blame] | 19 | #include "omap-secure.h" |
Santosh Shilimkar | ba9456a | 2011-06-06 17:56:49 +0530 | [diff] [blame] | 20 | |
Santosh Shilimkar | 259ee57 | 2011-06-06 20:28:23 +0530 | [diff] [blame] | 21 | static phys_addr_t omap_secure_memblock_base; |
| 22 | |
Santosh Shilimkar | ba9456a | 2011-06-06 17:56:49 +0530 | [diff] [blame] | 23 | /** |
| 24 | * omap_sec_dispatcher: Routine to dispatch low power secure |
| 25 | * service routines |
| 26 | * @idx: The HAL API index |
| 27 | * @flag: The flag indicating criticality of operation |
| 28 | * @nargs: Number of valid arguments out of four. |
| 29 | * @arg1, arg2, arg3 args4: Parameters passed to secure API |
| 30 | * |
| 31 | * Return the non-zero error value on failure. |
| 32 | */ |
| 33 | u32 omap_secure_dispatcher(u32 idx, u32 flag, u32 nargs, u32 arg1, u32 arg2, |
| 34 | u32 arg3, u32 arg4) |
| 35 | { |
| 36 | u32 ret; |
| 37 | u32 param[5]; |
| 38 | |
| 39 | param[0] = nargs; |
| 40 | param[1] = arg1; |
| 41 | param[2] = arg2; |
| 42 | param[3] = arg3; |
| 43 | param[4] = arg4; |
| 44 | |
| 45 | /* |
| 46 | * Secure API needs physical address |
| 47 | * pointer for the parameters |
| 48 | */ |
| 49 | flush_cache_all(); |
| 50 | outer_clean_range(__pa(param), __pa(param + 5)); |
| 51 | ret = omap_smc2(idx, flag, __pa(param)); |
| 52 | |
| 53 | return ret; |
| 54 | } |
Santosh Shilimkar | 259ee57 | 2011-06-06 20:28:23 +0530 | [diff] [blame] | 55 | |
| 56 | /* Allocate the memory to save secure ram */ |
| 57 | int __init omap_secure_ram_reserve_memblock(void) |
| 58 | { |
Santosh Shilimkar | 259ee57 | 2011-06-06 20:28:23 +0530 | [diff] [blame] | 59 | u32 size = OMAP_SECURE_RAM_STORAGE; |
| 60 | |
R Sricharan | 7a28529 | 2012-09-12 12:44:13 +0530 | [diff] [blame] | 61 | size = ALIGN(size, SECTION_SIZE); |
| 62 | omap_secure_memblock_base = arm_memblock_steal(size, SECTION_SIZE); |
Santosh Shilimkar | 259ee57 | 2011-06-06 20:28:23 +0530 | [diff] [blame] | 63 | |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | phys_addr_t omap_secure_ram_mempool_base(void) |
| 68 | { |
| 69 | return omap_secure_memblock_base; |
| 70 | } |
Pali Rohár | 4748a72 | 2013-09-18 21:43:56 +0200 | [diff] [blame] | 71 | |
Arnd Bergmann | 863204c | 2017-12-06 14:17:17 +0100 | [diff] [blame] | 72 | #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM) |
Tony Lindgren | d09220a | 2017-11-27 08:57:26 -0800 | [diff] [blame] | 73 | u32 omap3_save_secure_ram(void __iomem *addr, int size) |
| 74 | { |
| 75 | u32 ret; |
| 76 | u32 param[5]; |
| 77 | |
| 78 | if (size != OMAP3_SAVE_SECURE_RAM_SZ) |
| 79 | return OMAP3_SAVE_SECURE_RAM_SZ; |
| 80 | |
| 81 | param[0] = 4; /* Number of arguments */ |
| 82 | param[1] = __pa(addr); /* Physical address for saving */ |
| 83 | param[2] = 0; |
| 84 | param[3] = 1; |
| 85 | param[4] = 1; |
| 86 | |
| 87 | ret = save_secure_ram_context(__pa(param)); |
| 88 | |
| 89 | return ret; |
| 90 | } |
Arnd Bergmann | 863204c | 2017-12-06 14:17:17 +0100 | [diff] [blame] | 91 | #endif |
Tony Lindgren | d09220a | 2017-11-27 08:57:26 -0800 | [diff] [blame] | 92 | |
Pali Rohár | 4748a72 | 2013-09-18 21:43:56 +0200 | [diff] [blame] | 93 | /** |
| 94 | * rx51_secure_dispatcher: Routine to dispatch secure PPA API calls |
| 95 | * @idx: The PPA API index |
| 96 | * @process: Process ID |
| 97 | * @flag: The flag indicating criticality of operation |
| 98 | * @nargs: Number of valid arguments out of four. |
| 99 | * @arg1, arg2, arg3 args4: Parameters passed to secure API |
| 100 | * |
| 101 | * Return the non-zero error value on failure. |
| 102 | * |
| 103 | * NOTE: rx51_secure_dispatcher differs from omap_secure_dispatcher because |
| 104 | * it calling omap_smc3() instead omap_smc2() and param[0] is nargs+1 |
| 105 | */ |
| 106 | u32 rx51_secure_dispatcher(u32 idx, u32 process, u32 flag, u32 nargs, |
| 107 | u32 arg1, u32 arg2, u32 arg3, u32 arg4) |
| 108 | { |
| 109 | u32 ret; |
| 110 | u32 param[5]; |
| 111 | |
| 112 | param[0] = nargs+1; /* RX-51 needs number of arguments + 1 */ |
| 113 | param[1] = arg1; |
| 114 | param[2] = arg2; |
| 115 | param[3] = arg3; |
| 116 | param[4] = arg4; |
| 117 | |
| 118 | /* |
| 119 | * Secure API needs physical address |
| 120 | * pointer for the parameters |
| 121 | */ |
| 122 | local_irq_disable(); |
| 123 | local_fiq_disable(); |
| 124 | flush_cache_all(); |
| 125 | outer_clean_range(__pa(param), __pa(param + 5)); |
| 126 | ret = omap_smc3(idx, process, flag, __pa(param)); |
| 127 | flush_cache_all(); |
| 128 | local_fiq_enable(); |
| 129 | local_irq_enable(); |
| 130 | |
| 131 | return ret; |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * rx51_secure_update_aux_cr: Routine to modify the contents of Auxiliary Control Register |
| 136 | * @set_bits: bits to set in ACR |
| 137 | * @clr_bits: bits to clear in ACR |
| 138 | * |
| 139 | * Return the non-zero error value on failure. |
| 140 | */ |
| 141 | u32 rx51_secure_update_aux_cr(u32 set_bits, u32 clear_bits) |
| 142 | { |
| 143 | u32 acr; |
| 144 | |
| 145 | /* Read ACR */ |
| 146 | asm volatile ("mrc p15, 0, %0, c1, c0, 1" : "=r" (acr)); |
| 147 | acr &= ~clear_bits; |
| 148 | acr |= set_bits; |
| 149 | |
| 150 | return rx51_secure_dispatcher(RX51_PPA_WRITE_ACR, |
| 151 | 0, |
| 152 | FLAG_START_CRITICAL, |
| 153 | 1, acr, 0, 0, 0); |
| 154 | } |
Pali Rohár | d2065e2 | 2013-09-20 15:25:07 +0200 | [diff] [blame] | 155 | |
| 156 | /** |
| 157 | * rx51_secure_rng_call: Routine for HW random generator |
| 158 | */ |
| 159 | u32 rx51_secure_rng_call(u32 ptr, u32 count, u32 flag) |
| 160 | { |
| 161 | return rx51_secure_dispatcher(RX51_PPA_HWRNG, |
| 162 | 0, |
| 163 | NO_FLAG, |
| 164 | 3, ptr, count, flag, 0); |
| 165 | } |