Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2017 Masahiro Yamada <yamada.masahiro@socionext.com> |
| 4 | * |
| 5 | * Based on drivers/firmware/psci.c from Linux: |
| 6 | * Copyright (C) 2015 ARM Limited |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 10 | #include <command.h> |
Simon Glass | 9d92245 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 11 | #include <dm.h> |
Simon Glass | 36bf446 | 2019-11-14 12:57:42 -0700 | [diff] [blame] | 12 | #include <irq_func.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 14 | #include <dm/lists.h> |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 15 | #include <efi_loader.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 16 | #include <linux/delay.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 17 | #include <linux/libfdt.h> |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 18 | #include <linux/arm-smccc.h> |
| 19 | #include <linux/errno.h> |
Masahiro Yamada | af4e6d3 | 2017-11-29 15:04:40 +0900 | [diff] [blame] | 20 | #include <linux/printk.h> |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 21 | #include <linux/psci.h> |
| 22 | |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 23 | #define DRIVER_NAME "psci" |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 24 | |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 25 | #define PSCI_METHOD_HVC 1 |
| 26 | #define PSCI_METHOD_SMC 2 |
| 27 | |
Yann Gautier | 5cc7df7 | 2020-07-17 14:20:15 +0200 | [diff] [blame^] | 28 | #if CONFIG_IS_ENABLED(EFI_LOADER) |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 29 | int __efi_runtime_data psci_method; |
Yann Gautier | 5cc7df7 | 2020-07-17 14:20:15 +0200 | [diff] [blame^] | 30 | #else |
| 31 | int psci_method __attribute__ ((section(".data"))); |
| 32 | #endif |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 33 | |
| 34 | unsigned long __efi_runtime invoke_psci_fn |
| 35 | (unsigned long function_id, unsigned long arg0, |
| 36 | unsigned long arg1, unsigned long arg2) |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 37 | { |
| 38 | struct arm_smccc_res res; |
| 39 | |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 40 | /* |
| 41 | * In the __efi_runtime we need to avoid the switch statement. In some |
| 42 | * cases the compiler creates lookup tables to implement switch. These |
| 43 | * tables are not correctly relocated when SetVirtualAddressMap is |
| 44 | * called. |
| 45 | */ |
| 46 | if (psci_method == PSCI_METHOD_SMC) |
| 47 | arm_smccc_smc(function_id, arg0, arg1, arg2, 0, 0, 0, 0, &res); |
| 48 | else if (psci_method == PSCI_METHOD_HVC) |
| 49 | arm_smccc_hvc(function_id, arg0, arg1, arg2, 0, 0, 0, 0, &res); |
| 50 | else |
| 51 | res.a0 = PSCI_RET_DISABLED; |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 52 | return res.a0; |
| 53 | } |
| 54 | |
| 55 | static int psci_bind(struct udevice *dev) |
| 56 | { |
| 57 | /* No SYSTEM_RESET support for PSCI 0.1 */ |
Simon Glass | 911f3ae | 2017-05-18 20:08:57 -0600 | [diff] [blame] | 58 | if (device_is_compatible(dev, "arm,psci-0.2") || |
| 59 | device_is_compatible(dev, "arm,psci-1.0")) { |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 60 | int ret; |
| 61 | |
| 62 | /* bind psci-sysreset optionally */ |
| 63 | ret = device_bind_driver(dev, "psci-sysreset", "psci-sysreset", |
| 64 | NULL); |
| 65 | if (ret) |
Masahiro Yamada | af4e6d3 | 2017-11-29 15:04:40 +0900 | [diff] [blame] | 66 | pr_debug("PSCI System Reset was not bound.\n"); |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | static int psci_probe(struct udevice *dev) |
| 73 | { |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 74 | const char *method; |
| 75 | |
Jon Hunter | fb264ef | 2020-06-18 12:54:38 +0100 | [diff] [blame] | 76 | method = ofnode_read_string(dev_ofnode(dev), "method"); |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 77 | if (!method) { |
Masahiro Yamada | af4e6d3 | 2017-11-29 15:04:40 +0900 | [diff] [blame] | 78 | pr_warn("missing \"method\" property\n"); |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 79 | return -ENXIO; |
| 80 | } |
| 81 | |
| 82 | if (!strcmp("hvc", method)) { |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 83 | psci_method = PSCI_METHOD_HVC; |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 84 | } else if (!strcmp("smc", method)) { |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 85 | psci_method = PSCI_METHOD_SMC; |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 86 | } else { |
Masahiro Yamada | af4e6d3 | 2017-11-29 15:04:40 +0900 | [diff] [blame] | 87 | pr_warn("invalid \"method\" property: %s\n", method); |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 88 | return -EINVAL; |
| 89 | } |
| 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 94 | /** |
| 95 | * void do_psci_probe() - probe PSCI firmware driver |
| 96 | * |
| 97 | * Ensure that psci_method is initialized. |
| 98 | */ |
| 99 | static void __maybe_unused do_psci_probe(void) |
| 100 | { |
| 101 | struct udevice *dev; |
| 102 | |
| 103 | uclass_get_device_by_name(UCLASS_FIRMWARE, DRIVER_NAME, &dev); |
| 104 | } |
| 105 | |
| 106 | #if IS_ENABLED(CONFIG_EFI_LOADER) && IS_ENABLED(CONFIG_PSCI_RESET) |
| 107 | efi_status_t efi_reset_system_init(void) |
| 108 | { |
| 109 | do_psci_probe(); |
| 110 | return EFI_SUCCESS; |
| 111 | } |
| 112 | |
| 113 | void __efi_runtime EFIAPI efi_reset_system(enum efi_reset_type reset_type, |
| 114 | efi_status_t reset_status, |
| 115 | unsigned long data_size, |
| 116 | void *reset_data) |
| 117 | { |
| 118 | if (reset_type == EFI_RESET_COLD || |
| 119 | reset_type == EFI_RESET_WARM || |
| 120 | reset_type == EFI_RESET_PLATFORM_SPECIFIC) { |
| 121 | invoke_psci_fn(PSCI_0_2_FN_SYSTEM_RESET, 0, 0, 0); |
| 122 | } else if (reset_type == EFI_RESET_SHUTDOWN) { |
| 123 | invoke_psci_fn(PSCI_0_2_FN_SYSTEM_OFF, 0, 0, 0); |
| 124 | } |
| 125 | while (1) |
| 126 | ; |
| 127 | } |
| 128 | #endif /* IS_ENABLED(CONFIG_EFI_LOADER) && IS_ENABLED(CONFIG_PSCI_RESET) */ |
| 129 | |
| 130 | #ifdef CONFIG_PSCI_RESET |
| 131 | void reset_misc(void) |
| 132 | { |
| 133 | do_psci_probe(); |
| 134 | invoke_psci_fn(PSCI_0_2_FN_SYSTEM_RESET, 0, 0, 0); |
| 135 | } |
| 136 | #endif /* CONFIG_PSCI_RESET */ |
| 137 | |
| 138 | #ifdef CONFIG_CMD_POWEROFF |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 139 | int do_poweroff(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 140 | { |
| 141 | do_psci_probe(); |
| 142 | |
| 143 | puts("poweroff ...\n"); |
| 144 | udelay(50000); /* wait 50 ms */ |
| 145 | |
| 146 | disable_interrupts(); |
| 147 | invoke_psci_fn(PSCI_0_2_FN_SYSTEM_OFF, 0, 0, 0); |
| 148 | enable_interrupts(); |
| 149 | |
| 150 | log_err("Power off not supported on this platform\n"); |
| 151 | return CMD_RET_FAILURE; |
| 152 | } |
| 153 | #endif |
| 154 | |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 155 | static const struct udevice_id psci_of_match[] = { |
| 156 | { .compatible = "arm,psci" }, |
| 157 | { .compatible = "arm,psci-0.2" }, |
| 158 | { .compatible = "arm,psci-1.0" }, |
| 159 | {}, |
| 160 | }; |
| 161 | |
| 162 | U_BOOT_DRIVER(psci) = { |
Heinrich Schuchardt | 81ea008 | 2018-10-18 12:29:40 +0200 | [diff] [blame] | 163 | .name = DRIVER_NAME, |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 164 | .id = UCLASS_FIRMWARE, |
| 165 | .of_match = psci_of_match, |
| 166 | .bind = psci_bind, |
| 167 | .probe = psci_probe, |
| 168 | }; |