From patchwork Wed Jul 8 12:54:15 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal Simek X-Patchwork-Id: 241046 List-Id: U-Boot discussion From: michal.simek at xilinx.com (Michal Simek) Date: Wed, 8 Jul 2020 14:54:15 +0200 Subject: [PATCH] versal: fix versal PM ret payload size Message-ID: From: Ibai Erkiaga 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 Signed-off-by: Michal Simek --- --- arch/arm/mach-versal/include/mach/sys_proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-versal/include/mach/sys_proto.h b/arch/arm/mach-versal/include/mach/sys_proto.h index 31af049a21c9..cfd480bec17e 100644 --- a/arch/arm/mach-versal/include/mach/sys_proto.h +++ b/arch/arm/mach-versal/include/mach/sys_proto.h @@ -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);