From ad4be07764a44e74a42f17fb99eb0e908bc90673 Mon Sep 17 00:00:00 2001 From: Ch Vamshi Krishna <40261882+chvamshi-xilinx@users.noreply.github.com> Date: Sat, 12 Oct 2024 09:54:47 +0530 Subject: [PATCH] enabling external buffer logic as latest petalinux has ssw change (#8517) Signed-off-by: ch vamshi krishna Co-authored-by: ch vamshi krishna --- build/petalinux.build | 2 +- .../core/edge/user/aie/common_layer/adf_runtime_api.cpp | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/build/petalinux.build b/build/petalinux.build index dda07a9be19..d1a55d7c11f 100644 --- a/build/petalinux.build +++ b/build/petalinux.build @@ -1,3 +1,3 @@ # When updating Petalinux build please file a SH ticket to retain the build # https://jira.xilinx.com/secure/CreateIssue!default.jspa -PETALINUX=/proj/petalinux/2024.2/petalinux-v2024.2_10031251/tool/petalinux-v2024.2-final +PETALINUX=/proj/petalinux/2024.2/petalinux-v2024.2_10101427/tool/petalinux-v2024.2-final diff --git a/src/runtime_src/core/edge/user/aie/common_layer/adf_runtime_api.cpp b/src/runtime_src/core/edge/user/aie/common_layer/adf_runtime_api.cpp index 35db2040316..192b185af7c 100755 --- a/src/runtime_src/core/edge/user/aie/common_layer/adf_runtime_api.cpp +++ b/src/runtime_src/core/edge/user/aie/common_layer/adf_runtime_api.cpp @@ -920,9 +920,7 @@ err_code dma_api::updateBDAddressLin(XAie_MemInst* memInst , uint8_t column, uin int driverStatus = XAIE_OK; XAie_LocType tileLoc = XAie_TileLoc(column, relativeToAbsoluteRow(1, row)); - // uncomment below line once latest Petalinux is available -// driverStatus |= XAie_DmaUpdateBdAddrOff(memInst, tileLoc ,offset, bdId); - + driverStatus |= XAie_DmaUpdateBdAddrOff(memInst, tileLoc ,offset, bdId); if (driverStatus != AieRC::XAIE_OK) return errorMsg(err_code::aie_driver_error, "ERROR: adf::dma_api::updateBDAddressLin: AIE driver error.");