[PATCH 10/10] pmdomain: samsung: add support for google,gs101-pd

André Draszik posted 10 patches 2 months ago
There is a newer version of this series
[PATCH 10/10] pmdomain: samsung: add support for google,gs101-pd
Posted by André Draszik 2 months ago
Compared to other previous designs supported by this driver, the status
is just one bit. There is nothing unusual here.

Signed-off-by: André Draszik <andre.draszik@linaro.org>
---
 drivers/pmdomain/samsung/exynos-pm-domains.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/pmdomain/samsung/exynos-pm-domains.c b/drivers/pmdomain/samsung/exynos-pm-domains.c
index 06e1b0eaca18205a549c8e8136ee15279eb3089d..9e62da2162884fbc1f4b3809cdd89181fb534095 100644
--- a/drivers/pmdomain/samsung/exynos-pm-domains.c
+++ b/drivers/pmdomain/samsung/exynos-pm-domains.c
@@ -81,8 +81,15 @@ static const struct exynos_pm_domain_config exynos5433_cfg = {
 	.need_early_sync_state	= true,
 };
 
+static const struct exynos_pm_domain_config gs101_cfg = {
+	.local_pwr_cfg		= BIT(0),
+};
+
 static const struct of_device_id exynos_pm_domain_of_match[] = {
 	{
+		.compatible = "google,gs101-pd",
+		.data = &gs101_cfg,
+	}, {
 		.compatible = "samsung,exynos4210-pd",
 		.data = &exynos4210_cfg,
 	}, {

-- 
2.51.0.618.g983fd99d29-goog

Re: [PATCH 10/10] pmdomain: samsung: add support for google,gs101-pd
Posted by Krzysztof Kozlowski 1 month, 4 weeks ago
On 07/10/2025 01:43, André Draszik wrote:
> Compared to other previous designs supported by this driver, the status
> is just one bit. There is nothing unusual here.
> 
> Signed-off-by: André Draszik <andre.draszik@linaro.org>
> ---
>  drivers/pmdomain/samsung/exynos-pm-domains.c | 7 +++++++

This should be squashed with patch #8. There is no point to handle
syscon parent regmap outside of GS.

Best regards,
Krzysztof