]> www.infradead.org Git - users/willy/pagecache.git/commitdiff
platform/x86: thinkpad_acpi: Fix registration of tpacpi platform driver
authorMark Pearson <mpearson-lenovo@squebb.ca>
Tue, 11 Feb 2025 17:36:11 +0000 (12:36 -0500)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Wed, 12 Feb 2025 11:49:37 +0000 (13:49 +0200)
The recent platform profile changes prevent the tpacpi platform driver
from registering. This error is seen in the kernel logs, and the
various tpacpi entries are not created:

[ 7550.642171] platform thinkpad_acpi: Resources present before probing

This happens because devm_platform_profile_register() is called before
tpacpi_pdev probes (thanks to Kurt Borja for identifying the root
cause).

For now revert back to the old platform_profile_register to fix the
issue. This is quick fix and will be re-implemented later as more
testing is needed for full solution.

Tested on X1 Carbon G12.

Fixes: 31658c916fa6 ("platform/x86: thinkpad_acpi: Use devm_platform_profile_register()")
Signed-off-by: Mark Pearson <mpearson-lenovo@squebb.ca>
Reviewed-by: Kurt Borja <kuurtb@gmail.com>
Link: https://lore.kernel.org/r/20250211173620.16522-1-mpearson-lenovo@squebb.ca
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
drivers/platform/x86/thinkpad_acpi.c

index 99cdea723d32c79aa033e27978c0297558cff548..72a10ed2017ce4ba84c64973e092700eaa7d3fae 100644 (file)
@@ -10668,8 +10668,8 @@ static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)
                        "DYTC version %d: thermal mode available\n", dytc_version);
 
        /* Create platform_profile structure and register */
-       tpacpi_pprof = devm_platform_profile_register(&tpacpi_pdev->dev, "thinkpad-acpi",
-                                                     NULL, &dytc_profile_ops);
+       tpacpi_pprof = platform_profile_register(&tpacpi_pdev->dev, "thinkpad-acpi-profile",
+                                                NULL, &dytc_profile_ops);
        /*
         * If for some reason platform_profiles aren't enabled
         * don't quit terminally.
@@ -10687,8 +10687,15 @@ static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)
        return 0;
 }
 
+static void dytc_profile_exit(void)
+{
+       if (!IS_ERR_OR_NULL(tpacpi_pprof))
+               platform_profile_remove(tpacpi_pprof);
+}
+
 static struct ibm_struct  dytc_profile_driver_data = {
        .name = "dytc-profile",
+       .exit = dytc_profile_exit,
 };
 
 /*************************************************************************