]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
firmware: stratix10-svc: fix bug in saving controller data
authorKhairul Anuar Romli <khairul.anuar.romli@altera.com>
Sun, 2 Nov 2025 23:21:28 +0000 (07:21 +0800)
committerDinh Nguyen <dinguyen@kernel.org>
Mon, 3 Nov 2025 12:24:19 +0000 (06:24 -0600)
Fix the incorrect usage of platform_set_drvdata and dev_set_drvdata. They
both are of the same data and overrides each other. This resulted in the
rmmod of the svc driver to fail and throw a kernel panic for kthread_stop
and fifo free.

Fixes: b5dc75c915cd ("firmware: stratix10-svc: extend svc to support new RSU features")
Cc: stable@vger.kernel.org # 6.6+
Signed-off-by: Ang Tien Sung <tiensung.ang@altera.com>
Signed-off-by: Khairul Anuar Romli <khairul.anuar.romli@altera.com>
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
drivers/firmware/stratix10-svc.c

index e3f990d888d71829f0ab22b8a59aa7af0316bea0..00f58e27f6de530fa20ad08c23a09a0778ba3b0b 100644 (file)
@@ -134,6 +134,7 @@ struct stratix10_svc_data {
  * @complete_status: state for completion
  * @svc_fifo_lock: protect access to service message data queue
  * @invoke_fn: function to issue secure monitor call or hypervisor call
+ * @svc: manages the list of client svc drivers
  *
  * This struct is used to create communication channels for service clients, to
  * handle secure monitor or hypervisor call.
@@ -150,6 +151,7 @@ struct stratix10_svc_controller {
        struct completion complete_status;
        spinlock_t svc_fifo_lock;
        svc_invoke_fn *invoke_fn;
+       struct stratix10_svc *svc;
 };
 
 /**
@@ -1206,6 +1208,7 @@ static int stratix10_svc_drv_probe(struct platform_device *pdev)
                ret = -ENOMEM;
                goto err_free_kfifo;
        }
+       controller->svc = svc;
 
        svc->stratix10_svc_rsu = platform_device_alloc(STRATIX10_RSU, 0);
        if (!svc->stratix10_svc_rsu) {
@@ -1237,8 +1240,6 @@ static int stratix10_svc_drv_probe(struct platform_device *pdev)
        if (ret)
                goto err_unregister_fcs_dev;
 
-       dev_set_drvdata(dev, svc);
-
        pr_info("Intel Service Layer Driver Initialized\n");
 
        return 0;
@@ -1256,8 +1257,8 @@ err_destroy_pool:
 
 static void stratix10_svc_drv_remove(struct platform_device *pdev)
 {
-       struct stratix10_svc *svc = dev_get_drvdata(&pdev->dev);
        struct stratix10_svc_controller *ctrl = platform_get_drvdata(pdev);
+       struct stratix10_svc *svc = ctrl->svc;
 
        of_platform_depopulate(ctrl->dev);