diff options
author | Ibai Erkiaga <ibai.erkiaga-elorza@xilinx.com> | 2020-07-02 00:10:58 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2020-08-20 09:49:20 +0200 |
commit | 11b1dcec09f035e3b70a2fc63913ab00991ecba7 (patch) | |
tree | d4aeff6e2ba9e69f8778b1db829c4d3efd8b93d8 | |
parent | 526a67eb35cb1b6cea2b269c9690550dee232b74 (diff) | |
download | u-boot-11b1dcec09f035e3b70a2fc63913ab00991ecba7.tar.gz |
versal: fix versal PM ret payload size
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>
-rw-r--r-- | arch/arm/mach-versal/include/mach/sys_proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-versal/include/mach/sys_proto.h b/arch/arm/mach-versal/include/mach/sys_proto.h index 31af049a21..cfd480bec1 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); |