mailbox: zynqmp: Move struct zynqmp_ipi_msg from sys_proto.h
authorAshok Reddy Soma <ashok.reddy.soma@xilinx.com>
Fri, 22 Jul 2022 08:46:57 +0000 (02:46 -0600)
committerMichal Simek <michal.simek@amd.com>
Tue, 26 Jul 2022 06:36:20 +0000 (08:36 +0200)
Mailbox driver might be need for Versal and other future platforms.
To remove the dependency, move struct zynqmp_ipi_msg to
zynqmp_firmware.h so that mailbox driver compiles for other platforms
easily.

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/20220722084658.30995-5-ashok.reddy.soma@xilinx.com
arch/arm/mach-zynqmp/include/mach/sys_proto.h
drivers/mailbox/zynqmp-ipi.c
include/zynqmp_firmware.h

index 1c12eac..9fffb4e 100644 (file)
@@ -46,11 +46,6 @@ enum {
        TCM_SPLIT,
 };
 
-struct zynqmp_ipi_msg {
-       size_t len;
-       u32 *buf;
-};
-
 int zynq_board_read_rom_ethaddr(unsigned char *ethaddr);
 unsigned int zynqmp_get_silicon_version(void);
 
index 959cce9..3e4ec47 100644 (file)
 #include <dm.h>
 #include <mailbox-uclass.h>
 #include <dm/device_compat.h>
-#include <mach/sys_proto.h>
 #include <linux/ioport.h>
 #include <linux/io.h>
 #include <wait_bit.h>
+#include <zynqmp_firmware.h>
 
 /* IPI bitmasks, register base */
 /* TODO: move reg base to DT */
index 52bc20f..f7a4a39 100644 (file)
@@ -490,4 +490,9 @@ enum zynqmp_pm_request_ack {
 /* PM API versions */
 #define PM_API_VERSION_2               2
 
+struct zynqmp_ipi_msg {
+       size_t len;
+       u32 *buf;
+};
+
 #endif /* _ZYNQMP_FIRMWARE_H_ */