[PATCH] firmware: zynqmp: Skip loading config object for Versal

SET_CONFIGURATION is not yet implemented for Versal platforms. Skip loading config object for Versal until support is added and load it only for ZYNQMP platforms.
Signed-off-by: Ashok Reddy Soma ashok.reddy.soma@amd.com ---
drivers/power/domain/zynqmp-power-domain.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/power/domain/zynqmp-power-domain.c b/drivers/power/domain/zynqmp-power-domain.c index 6943658be4..adbbb5fdd9 100644 --- a/drivers/power/domain/zynqmp-power-domain.c +++ b/drivers/power/domain/zynqmp-power-domain.c @@ -25,7 +25,10 @@ static int zynqmp_power_domain_request(struct power_domain *power_domain) { dev_dbg(power_domain->dev, "Request for id: %ld\n", power_domain->id);
- return zynqmp_pmufw_node(power_domain->id); + if (IS_ENABLED(CONFIG_ARCH_ZYNQMP)) + return zynqmp_pmufw_node(power_domain->id); + + return 0; }
static int zynqmp_power_domain_free(struct power_domain *power_domain)

On 8/24/22 14:18, Ashok Reddy Soma wrote:
SET_CONFIGURATION is not yet implemented for Versal platforms. Skip loading config object for Versal until support is added and load it only for ZYNQMP platforms.
Signed-off-by: Ashok Reddy Soma ashok.reddy.soma@amd.com
drivers/power/domain/zynqmp-power-domain.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/power/domain/zynqmp-power-domain.c b/drivers/power/domain/zynqmp-power-domain.c index 6943658be4..adbbb5fdd9 100644 --- a/drivers/power/domain/zynqmp-power-domain.c +++ b/drivers/power/domain/zynqmp-power-domain.c @@ -25,7 +25,10 @@ static int zynqmp_power_domain_request(struct power_domain *power_domain) { dev_dbg(power_domain->dev, "Request for id: %ld\n", power_domain->id);
- return zynqmp_pmufw_node(power_domain->id);
if (IS_ENABLED(CONFIG_ARCH_ZYNQMP))
return zynqmp_pmufw_node(power_domain->id);
return 0; }
static int zynqmp_power_domain_free(struct power_domain *power_domain)
I have sent this already. That's why ignoring this patch.
https://lore.kernel.org/all/eb7ef6c6de36a1f7d056de43042f96fe3639f18e.1659691...
M
participants (2)
-
Ashok Reddy Soma
-
Michal Simek