summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <[email protected]>2026-04-30 23:31:28 +0200
committerTom Rini <[email protected]>2026-05-12 12:07:57 -0600
commit39117feb21a357207c29490b679cfca0fbbd1a54 (patch)
tree2a177174dff2f92fdf5023b71523559588c18d01
parent1588f7b8a35b342ec30b099d9b011c9904341388 (diff)
power: domain: apple: Add "apple,t8103-pmgr-pwrstate" compatible
After discussion with the devicetree maintainers we agreed to not extend lists with the generic compatible "apple,pmgr-pwrstate" anymore [1]. Use "apple,t8103-pmgr-pwrstate" as base compatible as it is the SoC driver and bindings were originally written for. The t602x (M2 Pro/Max/Ultra) devicetrees submitted in [2] use this compatible as fallback instead of "apple,pmgr-pwrstate". Link: https://lore.kernel.org/asahi/[email protected]/ [1] Link: https://lore.kernel.org/asahi/[email protected]/ [2] Signed-off-by: Janne Grunau <[email protected]> Acked-by: Mark Kettenis <[email protected]>
-rw-r--r--drivers/power/domain/apple-pmgr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/domain/apple-pmgr.c b/drivers/power/domain/apple-pmgr.c
index bf9940621ee..71fedb405da 100644
--- a/drivers/power/domain/apple-pmgr.c
+++ b/drivers/power/domain/apple-pmgr.c
@@ -110,6 +110,7 @@ static int apple_pmgr_of_xlate(struct power_domain *power_domain,
}
static const struct udevice_id apple_pmgr_ids[] = {
+ { .compatible = "apple,t8103-pmgr-pwrstate" },
{ .compatible = "apple,pmgr-pwrstate" },
{ /* sentinel */ }
};