firmware: zynqmp: Skip loading config object for Versal
authorAshok Reddy Soma <ashok.reddy.soma@xilinx.com>
Fri, 5 Aug 2022 09:19:56 +0000 (11:19 +0200)
committerMichal Simek <michal.simek@amd.com>
Tue, 13 Sep 2022 09:32:48 +0000 (11:32 +0200)
SET_CONFIGURATION is not yet implemented for Versal platforms. Skip
loading config object for Versal until support is added.

Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/eb7ef6c6de36a1f7d056de43042f96fe3639f18e.1659691195.git.michal.simek@amd.com
drivers/power/domain/zynqmp-power-domain.c

index 6943658..adbbb5f 100644 (file)
@@ -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)