firmware: xilinx: Remove eemi ops for get_api_version
authorRajan Vaja <rajan.vaja@xilinx.com>
Fri, 24 Apr 2020 20:57:43 +0000 (13:57 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 28 Apr 2020 13:38:38 +0000 (15:38 +0200)
Use direct function calls instead of using eemi ops. So remove
eemi ops for get_api_version and use direct function call.

Signed-off-by: Rajan Vaja <rajan.vaja@xilinx.com>
Signed-off-by: Jolly Shah <jolly.shah@xilinx.com>
Link: https://lore.kernel.org/r/1587761887-4279-2-git-send-email-jolly.shah@xilinx.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/firmware/xilinx/zynqmp-debug.c
drivers/firmware/xilinx/zynqmp.c
drivers/soc/xilinx/zynqmp_power.c
include/linux/firmware/xlnx-zynqmp.h

index 43bc6cfdab45ea3a8803870c183c5e8264652a0c..06a21efe68298839bb6380d161d4512b4627d263 100644 (file)
@@ -92,7 +92,7 @@ static int process_api_request(u32 pm_id, u64 *pm_api_arg, u32 *pm_api_ret)
 
        switch (pm_id) {
        case PM_GET_API_VERSION:
-               ret = eemi_ops->get_api_version(&pm_api_version);
+               ret = zynqmp_pm_get_api_version(&pm_api_version);
                sprintf(debugfs_buf, "PM-API Version = %d.%d\n",
                        pm_api_version >> 16, pm_api_version & 0xffff);
                break;
index 41b65164a3671fa9e1d6b89995099cdb01dbf6c0..36dab68344df5b168abec9c2b1ffb639ab4d6615 100644 (file)
@@ -219,7 +219,7 @@ static u32 pm_tz_version;
  *
  * Return: Returns status, either success or error+reason
  */
-static int zynqmp_pm_get_api_version(u32 *version)
+int zynqmp_pm_get_api_version(u32 *version)
 {
        u32 ret_payload[PAYLOAD_ARG_CNT];
        int ret;
@@ -237,6 +237,7 @@ static int zynqmp_pm_get_api_version(u32 *version)
 
        return ret;
 }
+EXPORT_SYMBOL_GPL(zynqmp_pm_get_api_version);
 
 /**
  * zynqmp_pm_get_chipid - Get silicon ID registers
@@ -734,7 +735,6 @@ static int zynqmp_pm_aes_engine(const u64 address, u32 *out)
 }
 
 static const struct zynqmp_eemi_ops eemi_ops = {
-       .get_api_version = zynqmp_pm_get_api_version,
        .get_chipid = zynqmp_pm_get_chipid,
        .query_data = zynqmp_pm_query_data,
        .clock_enable = zynqmp_pm_clock_enable,
index 09227895d21679083d80e6029f05fa51640d2692..d327d9ef0e81b9085bc6ef31e371b76c8482c7ec 100644 (file)
@@ -186,11 +186,11 @@ static int zynqmp_pm_probe(struct platform_device *pdev)
        if (IS_ERR(eemi_ops))
                return PTR_ERR(eemi_ops);
 
-       if (!eemi_ops->get_api_version || !eemi_ops->init_finalize)
+       if (!eemi_ops->init_finalize)
                return -ENXIO;
 
        eemi_ops->init_finalize();
-       eemi_ops->get_api_version(&pm_api_version);
+       zynqmp_pm_get_api_version(&pm_api_version);
 
        /* Check PM API version number */
        if (pm_api_version < ZYNQMP_PM_VERSION)
index 8efa5ac22d7e8bc1e85c3c2ab356700816cf7e8a..a21abcdb1020285994941f8ac181b41af7a56fc3 100644 (file)
@@ -294,7 +294,6 @@ struct zynqmp_pm_query_data {
 };
 
 struct zynqmp_eemi_ops {
-       int (*get_api_version)(u32 *version);
        int (*get_chipid)(u32 *idcode, u32 *version);
        int (*fpga_load)(const u64 address, const u32 size, const u32 flags);
        int (*fpga_get_status)(u32 *value);
@@ -331,11 +330,16 @@ int zynqmp_pm_invoke_fn(u32 pm_api_id, u32 arg0, u32 arg1,
 
 #if IS_REACHABLE(CONFIG_ZYNQMP_FIRMWARE)
 const struct zynqmp_eemi_ops *zynqmp_pm_get_eemi_ops(void);
+int zynqmp_pm_get_api_version(u32 *version);
 #else
 static inline struct zynqmp_eemi_ops *zynqmp_pm_get_eemi_ops(void)
 {
        return ERR_PTR(-ENODEV);
 }
+static inline int zynqmp_pm_get_api_version(u32 *version)
+{
+       return -ENODEV;
+}
 #endif
 
 #endif /* __FIRMWARE_ZYNQMP_H__ */