versal: fix versal PM ret payload size
authorIbai Erkiaga <ibai.erkiaga-elorza@xilinx.com>
Wed, 1 Jul 2020 23:10:58 +0000 (00:10 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Thu, 20 Aug 2020 07:49:20 +0000 (09:49 +0200)
The PM return payload size is defined as 4 bytes for Versal arquitecture
while the PM calls implemented both in the Versal clock driver and
ZynqMP firmware driver expects 5 bytes length.

Signed-off-by: Ibai Erkiaga <ibai.erkiaga-elorza@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
arch/arm/mach-versal/include/mach/sys_proto.h

index 31af049..cfd480b 100644 (file)
@@ -8,7 +8,7 @@ enum {
        TCM_SPLIT,
 };
 
-#define PAYLOAD_ARG_CNT        4U
+#define PAYLOAD_ARG_CNT        5U
 
 void tcm_init(u8 mode);
 void mem_map_fill(void);