diff mbox series

firmware: zynqmp: Skip loading config object for Versal

Message ID 20220824121813.11253-1-ashok.reddy.soma@amd.com
State Accepted
Commit ad8024e0406404bc63dd4468ac75c87eaec5cca0
Delegated to: Michal Simek
Headers show
Series firmware: zynqmp: Skip loading config object for Versal | expand

Commit Message

Ashok Reddy Soma Aug. 24, 2022, 12:18 p.m. UTC
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(-)

Comments

Michal Simek Aug. 31, 2022, 8:12 a.m. UTC | #1
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.1659691195.git.michal.simek@amd.com/

M
diff mbox series

Patch

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)