]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
accel/amdxdna: Treat power-off failure as unrecoverable error
authorLizhi Hou <lizhi.hou@amd.com>
Thu, 6 Nov 2025 18:05:21 +0000 (10:05 -0800)
committerLizhi Hou <lizhi.hou@amd.com>
Fri, 7 Nov 2025 16:52:29 +0000 (08:52 -0800)
Failing to set power off indicates an unrecoverable hardware or firmware
error. Update the driver to treat such a failure as a fatal condition
and stop further operations that depend on successful power state
transition.

This prevents undefined behavior when the hardware remains in an
unexpected state after a failed power-off attempt.

Reviewed-by: Mario Limonciello (AMD) <superm1@kernel.org>
Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
Link: https://patch.msgid.link/20251106180521.1095218-1-lizhi.hou@amd.com
drivers/accel/amdxdna/aie2_smu.c

index 11c0e9e7b03aa8996787685c2091ae27077311ef..bd94ee96c2bc0654efe4a9f451554294bf115108 100644 (file)
@@ -147,6 +147,16 @@ int aie2_smu_init(struct amdxdna_dev_hdl *ndev)
 {
        int ret;
 
+       /*
+        * Failing to set power off indicates an unrecoverable hardware or
+        * firmware error.
+        */
+       ret = aie2_smu_exec(ndev, AIE2_SMU_POWER_OFF, 0, NULL);
+       if (ret) {
+               XDNA_ERR(ndev->xdna, "Access power failed, ret %d", ret);
+               return ret;
+       }
+
        ret = aie2_smu_exec(ndev, AIE2_SMU_POWER_ON, 0, NULL);
        if (ret) {
                XDNA_ERR(ndev->xdna, "Power on failed, ret %d", ret);