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