Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 2 | /** |
| 3 | * (C) Copyright 2014, Cavium Inc. |
Michal Simek | 3c85417 | 2017-05-29 09:11:32 +0200 | [diff] [blame] | 4 | * (C) Copyright 2017, Xilinx Inc. |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 5 | * |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 6 | **/ |
| 7 | |
| 8 | #include <asm-offsets.h> |
| 9 | #include <config.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 10 | #include <asm/cache.h> |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 11 | #include <asm/macro.h> |
Beniamino Galvani | 5a07abb | 2016-05-08 08:30:14 +0200 | [diff] [blame] | 12 | #include <asm/psci.h> |
Simon Glass | c3dc39a | 2020-05-10 11:39:55 -0600 | [diff] [blame] | 13 | #include <asm/ptrace.h> |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 14 | #include <asm/system.h> |
| 15 | |
| 16 | /* |
| 17 | * Issue the hypervisor call |
| 18 | * |
| 19 | * x0~x7: input arguments |
| 20 | * x0~x3: output arguments |
| 21 | */ |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 22 | static void hvc_call(struct pt_regs *args) |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 23 | { |
| 24 | asm volatile( |
| 25 | "ldr x0, %0\n" |
| 26 | "ldr x1, %1\n" |
| 27 | "ldr x2, %2\n" |
| 28 | "ldr x3, %3\n" |
| 29 | "ldr x4, %4\n" |
| 30 | "ldr x5, %5\n" |
| 31 | "ldr x6, %6\n" |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 32 | "hvc #0\n" |
| 33 | "str x0, %0\n" |
| 34 | "str x1, %1\n" |
| 35 | "str x2, %2\n" |
| 36 | "str x3, %3\n" |
| 37 | : "+m" (args->regs[0]), "+m" (args->regs[1]), |
| 38 | "+m" (args->regs[2]), "+m" (args->regs[3]) |
| 39 | : "m" (args->regs[4]), "m" (args->regs[5]), |
Ibai Erkiaga | 1721b82 | 2019-02-25 10:11:45 +0000 | [diff] [blame] | 40 | "m" (args->regs[6]) |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 41 | : "x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7", |
| 42 | "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", |
| 43 | "x16", "x17"); |
| 44 | } |
| 45 | |
| 46 | /* |
| 47 | * void smc_call(arg0, arg1...arg7) |
| 48 | * |
| 49 | * issue the secure monitor call |
| 50 | * |
| 51 | * x0~x7: input arguments |
| 52 | * x0~x3: output arguments |
| 53 | */ |
| 54 | |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 55 | void smc_call(struct pt_regs *args) |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 56 | { |
| 57 | asm volatile( |
| 58 | "ldr x0, %0\n" |
| 59 | "ldr x1, %1\n" |
| 60 | "ldr x2, %2\n" |
| 61 | "ldr x3, %3\n" |
| 62 | "ldr x4, %4\n" |
| 63 | "ldr x5, %5\n" |
| 64 | "ldr x6, %6\n" |
| 65 | "smc #0\n" |
| 66 | "str x0, %0\n" |
| 67 | "str x1, %1\n" |
| 68 | "str x2, %2\n" |
| 69 | "str x3, %3\n" |
| 70 | : "+m" (args->regs[0]), "+m" (args->regs[1]), |
| 71 | "+m" (args->regs[2]), "+m" (args->regs[3]) |
| 72 | : "m" (args->regs[4]), "m" (args->regs[5]), |
| 73 | "m" (args->regs[6]) |
| 74 | : "x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7", |
| 75 | "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", |
| 76 | "x16", "x17"); |
| 77 | } |
Beniamino Galvani | 5a07abb | 2016-05-08 08:30:14 +0200 | [diff] [blame] | 78 | |
Alexander Graf | 51bfb5b | 2016-08-16 21:08:46 +0200 | [diff] [blame] | 79 | /* |
| 80 | * For now, all systems we support run at least in EL2 and thus |
| 81 | * trigger PSCI calls to EL3 using SMC. If anyone ever wants to |
| 82 | * use PSCI on U-Boot running below a hypervisor, please detect |
| 83 | * this and set the flag accordingly. |
| 84 | */ |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 85 | static const bool use_smc_for_psci = true; |
Alexander Graf | 51bfb5b | 2016-08-16 21:08:46 +0200 | [diff] [blame] | 86 | |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 87 | void __noreturn psci_system_reset(void) |
Beniamino Galvani | 5a07abb | 2016-05-08 08:30:14 +0200 | [diff] [blame] | 88 | { |
| 89 | struct pt_regs regs; |
| 90 | |
| 91 | regs.regs[0] = ARM_PSCI_0_2_FN_SYSTEM_RESET; |
| 92 | |
Alexander Graf | 51bfb5b | 2016-08-16 21:08:46 +0200 | [diff] [blame] | 93 | if (use_smc_for_psci) |
Beniamino Galvani | 5a07abb | 2016-05-08 08:30:14 +0200 | [diff] [blame] | 94 | smc_call(®s); |
| 95 | else |
| 96 | hvc_call(®s); |
| 97 | |
| 98 | while (1) |
| 99 | ; |
| 100 | } |
Alexander Graf | 3ee655e | 2016-08-16 21:08:47 +0200 | [diff] [blame] | 101 | |
Rajesh Ravi | 41acbc5 | 2019-11-22 14:50:01 -0800 | [diff] [blame] | 102 | void __noreturn psci_system_reset2(u32 reset_level, u32 cookie) |
| 103 | { |
| 104 | struct pt_regs regs; |
| 105 | |
| 106 | regs.regs[0] = ARM_PSCI_0_2_FN64_SYSTEM_RESET2; |
| 107 | regs.regs[1] = PSCI_RESET2_TYPE_VENDOR | reset_level; |
| 108 | regs.regs[2] = cookie; |
| 109 | if (use_smc_for_psci) |
| 110 | smc_call(®s); |
| 111 | else |
| 112 | hvc_call(®s); |
| 113 | |
| 114 | while (1) |
| 115 | ; |
| 116 | } |
| 117 | |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 118 | void __noreturn psci_system_off(void) |
Alexander Graf | 3ee655e | 2016-08-16 21:08:47 +0200 | [diff] [blame] | 119 | { |
| 120 | struct pt_regs regs; |
| 121 | |
| 122 | regs.regs[0] = ARM_PSCI_0_2_FN_SYSTEM_OFF; |
| 123 | |
| 124 | if (use_smc_for_psci) |
| 125 | smc_call(®s); |
| 126 | else |
| 127 | hvc_call(®s); |
| 128 | |
| 129 | while (1) |
| 130 | ; |
| 131 | } |