From 832330f9abe3e3a04894f65c8c718fee46e6dd9a Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Tue, 29 Aug 2023 16:11:27 -0500 Subject: meta-xilinx-standalone: Branch embeddedsw integration to 2024.1 Signed-off-by: Mark Hatle --- .../classes/xlnx-embeddedsw.bbclass | 2 ++ .../recipes-bsp/embeddedsw/fsbl-firmware_2024.1.bb | 11 +++++++ .../recipes-bsp/embeddedsw/plm-firmware_2024.1.bb | 29 ++++++++++++++++++ .../recipes-bsp/embeddedsw/pmu-firmware_2024.1.bb | 16 ++++++++++ .../recipes-bsp/embeddedsw/psm-firmware_2024.1.bb | 34 ++++++++++++++++++++++ 5 files changed, 92 insertions(+) create mode 100644 meta-xilinx-standalone/recipes-bsp/embeddedsw/fsbl-firmware_2024.1.bb create mode 100644 meta-xilinx-standalone/recipes-bsp/embeddedsw/plm-firmware_2024.1.bb create mode 100644 meta-xilinx-standalone/recipes-bsp/embeddedsw/pmu-firmware_2024.1.bb create mode 100644 meta-xilinx-standalone/recipes-bsp/embeddedsw/psm-firmware_2024.1.bb (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 47b1e5dd..1d242550 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -5,10 +5,12 @@ REPO ??= "git://github.com/Xilinx/embeddedsw.git;protocol=https" ESW_BRANCH[2023.1] = "xlnx_rel_v2023.1" ESW_BRANCH[2023.2] = "xlnx_rel_v2023.2-next" +ESW_BRANCH[2024.1] = "xlnx_rel_v2023.2-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" ESW_REV[2023.2] = "8070822a60c8a6e869522e9febd72ed7b188358d" +ESW_REV[2024.1] = "8070822a60c8a6e869522e9febd72ed7b188358d" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" diff --git a/meta-xilinx-standalone/recipes-bsp/embeddedsw/fsbl-firmware_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/embeddedsw/fsbl-firmware_2024.1.bb new file mode 100644 index 00000000..8816dc4d --- /dev/null +++ b/meta-xilinx-standalone/recipes-bsp/embeddedsw/fsbl-firmware_2024.1.bb @@ -0,0 +1,11 @@ +require fsbl-firmware.inc + +FILESPATH .= ":${FILE_DIRNAME}/embeddedsw/2023.1:${FILE_DIRNAME}/embeddedsw" + +SRC_URI += " \ + file://makefile-skip-copy_bsp.sh.patch \ + file://fsbl-fixups.patch \ + " + +# This version does not build for zynq +COMPATIBLE_MACHINE:zynq = "none" diff --git a/meta-xilinx-standalone/recipes-bsp/embeddedsw/plm-firmware_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/embeddedsw/plm-firmware_2024.1.bb new file mode 100644 index 00000000..37861b75 --- /dev/null +++ b/meta-xilinx-standalone/recipes-bsp/embeddedsw/plm-firmware_2024.1.bb @@ -0,0 +1,29 @@ +require plm-firmware.inc + +# Separate build directories for versal and versal-net +SOC_DIR = "versal" +SOC_DIR:versal-net = "versal_net" +B = "${S}/lib/sw_apps/versal_plm/src/${SOC_DIR}" + +BSP_DIR ?= "${B}/../../misc/versal_plm_bsp" + +FILESPATH .= ":${FILE_DIRNAME}/embeddedsw/2023.1:${FILE_DIRNAME}/embeddedsw" + +SRC_URI += " \ + file://makefile-skip-copy_bsp.sh.patch \ + file://0001-versal_fw-Fixup-core-makefiles.patch \ + " + +EXTRA_COMPILER_FLAGS = "-g -ffunction-sections -fdata-sections -Wall -Wextra -Os -flto -ffat-lto-objects" + +do_configure() { + # manually do the copy_bsp step first, so as to be able to fix up use of + # mb-* commands + ${B}/../../misc/${SOC_DIR}/copy_bsp.sh +} + +do_compile() { + oe_runmake + + ${MB_OBJCOPY} -O binary ${B}/${ESW_COMPONENT} ${B}/${ESW_COMPONENT}.bin +} diff --git a/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmu-firmware_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmu-firmware_2024.1.bb new file mode 100644 index 00000000..fe6deddc --- /dev/null +++ b/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmu-firmware_2024.1.bb @@ -0,0 +1,16 @@ +require pmu-firmware.inc + +FILESPATH .= ":${FILE_DIRNAME}/embeddedsw/2023.1:${FILE_DIRNAME}/embeddedsw" + +SRC_URI += " \ + file://makefile-skip-copy_bsp.sh.patch \ + file://0001-zynqmp_pmufw-Fixup-core-makefiles.patch \ + " + +EXTRA_COMPILER_FLAGS = "-ffunction-sections -fdata-sections -Wall -Wextra -Os -flto -ffat-lto-objects" + +do_compile() { + oe_runmake + + ${MB_OBJCOPY} -O binary ${B}/${ESW_COMPONENT} ${B}/${ESW_COMPONENT}.bin +} diff --git a/meta-xilinx-standalone/recipes-bsp/embeddedsw/psm-firmware_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/embeddedsw/psm-firmware_2024.1.bb new file mode 100644 index 00000000..569c5a46 --- /dev/null +++ b/meta-xilinx-standalone/recipes-bsp/embeddedsw/psm-firmware_2024.1.bb @@ -0,0 +1,34 @@ +require psm-firmware.inc + +# Separate build directories for versal and versal-net +SOC_DIR = "versal" +SOC_DIR:versal-net = "versal_net" +B = "${S}/lib/sw_apps/versal_psmfw/src/${SOC_DIR}" + +BSP_DIR ?= "${B}/../../misc/versal_psmfw_bsp" + +FILESPATH .= ":${FILE_DIRNAME}/embeddedsw/2023.1:${FILE_DIRNAME}/embeddedsw" + +SRC_URI += " \ + file://makefile-skip-copy_bsp.sh.patch \ + file://0001-versal_fw-Fixup-core-makefiles.patch \ + " + +EXTRA_COMPILER_FLAGS = "-g -ffunction-sections -fdata-sections -Wall -Wextra" + +# Override default since we're in a subdirectory deeper now... +do_configure() { + # manually do the copy_bsp step first, so as to be able to fix up use of + # mb-* commands + if [ ${SOC_DIR} != "versal" ]; then + ${B}/../../misc/${SOC_DIR}/copy_bsp.sh + else + ${B}/../../misc/copy_bsp.sh + fi +} + +do_compile() { + oe_runmake + + ${MB_OBJCOPY} -O binary ${B}/${ESW_COMPONENT} ${B}/${ESW_COMPONENT}.bin +} -- cgit v1.2.3-54-g00ecf From e1721285eb79c0660c07bd569188362239f07ab5 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Thu, 7 Sep 2023 15:54:09 -0500 Subject: embeddedsw : Updated SRCREV for 2023.2_2975 xilpm: versal_net: fix force power down issue xilpm: versal_net: fix suspend resume issue xilpm: versal_net: Add DDRMC5 bisr support sw_services: xilpuf: Declare variables that are passed to server in data section sw_services:xilloader:Added Redundancy for KekSrc sw_apps:versal_plm:EAM Error Check After PMC CDO sw_services:xilplmi:Security Review Fixes iicps: Add SDT flow support for xiicps_eeprom_intr_example iicps: Update Receive Polled and Interrupt Handler functions as modular gpiops: Add support for pmc, versal and versal-net in sdt flow Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 1d242550..e81ffe25 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -9,7 +9,7 @@ ESW_BRANCH[2024.1] = "xlnx_rel_v2023.2-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" -ESW_REV[2023.2] = "8070822a60c8a6e869522e9febd72ed7b188358d" +ESW_REV[2023.2] = "6ccd026d115ed986ccb1541c62dc7dac21bf2ab8" ESW_REV[2024.1] = "8070822a60c8a6e869522e9febd72ed7b188358d" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" -- cgit v1.2.3-54-g00ecf From 1a892bb945054125207c3350500c93643064ac92 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 5 Sep 2023 12:50:53 +0530 Subject: embeddedsw : Updated SRCREV for 2023.2_3567 sw_services:xilnvm: Fix SW-BP-REDUNDANCY drivers: trngpsx: Add volatile keyword to avoid optimization drivers: trngpsx: Remove Dead code sw_services:xilsecure: Fix updating KAT mask bits for external modules gpio: Add support for peripheral test for gpio in SDT flow sw_services: xilplmi: Reread from efuse cache sw_apps:versal_plm: Change exception print to DEBUG_PRINT_ALWAYS sw_services:xilplmi: DEBUG_PRINT_ALWAYS for critical error prints sw_services:xilplmi: Change PLM debug level to 0 for XilSEM xdmapcie: Replace csr-slcr property to populate xilpm: versal_net: clear pcil for rpu only sw_services:xilplmi:Added PSM Address range check xilpm: versal_net: skip halt if core is powered down sw_services:xilplmi:Updated IPI Timeout Value Revert "Revert "sw_services:xilsecure:Fix ECDSA boot failure on qemu"" xilsem: Replace Versal net SHA3 instance function with new API name avbuf: Ported changes for using the SDT flow dpdma: Ported changes for using the SDT flow dppsu: Ported changes for using the SDT flow Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index e81ffe25..36ef59b3 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -9,8 +9,8 @@ ESW_BRANCH[2024.1] = "xlnx_rel_v2023.2-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" -ESW_REV[2023.2] = "6ccd026d115ed986ccb1541c62dc7dac21bf2ab8" -ESW_REV[2024.1] = "8070822a60c8a6e869522e9febd72ed7b188358d" +ESW_REV[2023.2] = "4b382e452bdc148cb10c99da03f0201150dbfe4d" +ESW_REV[2024.1] = "4b382e452bdc148cb10c99da03f0201150dbfe4d" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 796daff6ad7d5a241a967bee8b09f5e41b7a35f3 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 6 Sep 2023 21:47:53 +0530 Subject: embeddedsw : Updated SRCREV for 2023.2_7295 xilnvm: Validate DME key before programming xilocp: XPPU configurations for DME operations sdps: change data type of BaseAddress sdps: Fix MISRA C-2012 Rule 8.5 violation sdps: Fix MISRA C-2012 Rule 15.5 violation sdps: Fix MISRA C-2012 Rule 14.4 violation sdps: Fix MISRA C-2012 Rule 12.1 violation sdps: Fix MISRA C-2012 Rule 10.6 violation sdps: Fix MISRA C-2012 Rule 10.4 violation sdps: Fix MISRA C-2012 Rule 10.1 violation sdps: Fix MISRA C-2012 Rule 4.7 violation ipipsu: Fix HIS_COMF violations qspipsu: src: Fix code format issues with checkpatch tool qspipsu: src: Update Polled transfer and Interrupt Handler functions as modular xilfpga: Add proper ifdef platform checks sw_services: xilmailbox: Fix HIS_COMF violations sw_services: xilplmi: Added the NullCheck for EmInit parameters update Embedded SW license file for 2023.2 release sw_apps: imgsel: versal image selector clean up sw_services:xilskey: Fixed MISRA-C Rule 8.5 violation rfdc: SDT Add Dependency Files Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 36ef59b3..e4e78038 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -9,8 +9,8 @@ ESW_BRANCH[2024.1] = "xlnx_rel_v2023.2-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" -ESW_REV[2023.2] = "4b382e452bdc148cb10c99da03f0201150dbfe4d" -ESW_REV[2024.1] = "4b382e452bdc148cb10c99da03f0201150dbfe4d" +ESW_REV[2023.2] = "27ae5596270e2e4cc6a0ae23bcc80d49b4754724" +ESW_REV[2024.1] = "27ae5596270e2e4cc6a0ae23bcc80d49b4754724" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" @@ -18,7 +18,7 @@ EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}" LICENSE = "MIT" LIC_FILES_CHKSUM[xlnx_rel_v2023.1] = '3c310a3ee2197a4c92c6a0e2937c207c' -LIC_FILES_CHKSUM[xlnx_rel_v2023.2-next] = '3c310a3ee2197a4c92c6a0e2937c207c' +LIC_FILES_CHKSUM[xlnx_rel_v2023.2-next] = '6677b545d223964a4906f97a2229bfc5' LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('BRANCH')) or '0'}" SRC_URI = "${EMBEDDEDSW_SRCURI}" -- cgit v1.2.3-54-g00ecf From ba29858f3804a78de6b68880017f5f80916ba013 Mon Sep 17 00:00:00 2001 From: Sandeep Gundlupet Raju Date: Sun, 17 Sep 2023 21:15:31 -0600 Subject: xlnx-embeddedsw.bbclass: Update branch and SRCREV for 2024.1 Changes from master-next branch: xilplmi: Fix MISRA C violation 13.4 xilplmi: Fixed MISRA C violation for Rule 17.7 xilplmi: Fix MISRA C violations for Rule 14.4 xilplmi: Fix MISRA C violation 10.8 xilplmi: MISRA C violation 10.3 updated for changelog dp21txss , v_hdmitxss1 and other components cmake: toolchainfiles: microblaze-plm_toolchain.cmake: Fix VERSAL_PLM redefined warning cmake: toolchainfiles: microblaze-p*: Force the CMAKE_MACHINE variable lib: sw_services: xilplmi: Fix implicit declaration of function 'Xil_SetMBFrequency' warning lib: sw_services: xiltimer: Move the Xil_SetMBFrequency() API declaration to xiltimer.h scripts: pyesw: library_utils: Return proper error code lib: sw_services: xiltimer: Make changes with checkpatch lib: sw_services: xiltimer: Fix incorrect TTC counter handling for Zynq lib: sw_services: xiltimer: Fix sleep handling logic in scutimer adapter lib: sw_services: xiltimer: Add scutimer support for SDT flow ttcps: Fixed source code-format issue. ttcps: Fix HIS_COMF violations ttcps: Fix MISRA-C violation for RULE 14.3 ttcps: Fix MISRA-C violations for 10.7 and 12.2 ttcps: Fix MISRA-c violation for Rule 10.4 ttcps: Remove unnecessary call to XTtcPs_ClearInterruptStatus ttcps: Fix MISRA-C violations for Rule 10.5 ttcps: Fix MISRA-C violations for Rule 10.3 qspipsu: Update XQspiPsu_PolledRecvData and XQspiPsu_PolledMessageTransfer functions qspipsu: Fix MISRA-C violation 2.2 and 2.6 qspipsu: Fix MISRA-C violation 10.1 qspipsu: Fix MISRA-C violation 8.13 xilpm:versal_net: save and restore PL devices' hierarchy xilpm:versal_net: Restore missing Pl Devices during PLM update xloader:versal_net: save and restore image info table contents xilpm:versal_common: fix potential issue on array out of bound. sw_services:xilpuf:Fixed MISRA-C Rule 2.5 violation xilpm: versal: Update version to 5.2 for next release ThirdParty: sw_services: OpenAMP: sdt: Remove A53, A72 and A78 support ThirdParty: sw_services: Libmetal: sdt: Add support for PMUFW and PMC xilskey: added SDT support for examples xilpm: versal: server: Add XPM_POLL_TIMEOUT definition for CPPUTEST xilffs: Fix compilation warning usb: usbpsu: fix HIS_RETURN violation Updated changelog for cpu, versal_plm and other components tmr_inject: Fix style issues in the driver sources tmr_manager: Correct the syntax for xlnx, mask-rst-value property sw_services:xilpki:Fixed doxygen warnings sw_services:xilsecure: Avoid returning XST_SUCCESS incase of glitch sw_services: xilocp: Avoid returning XST_SUCCESS incase of glitch scugic: Fixed source code-format issue. scugic: Include xplatform_info.h for all processors scugic: Fix HIS_COMF violations scugic: Fix MISRA C violation for Rule 14.4 scugic: Fix MISRA-C violation for Rule 10.3 sw_services:xilsecure:Removed NO_EFFECT coverity warning fix. nandpsu: Update the clock node qspipsu: Update the clock node uartpsu: Update the clock node iicps: Update the clock node lib: standalone: Add the clocking to the standalone openamp: apps: zynqmp_r5: freertos: Remove call to vPortEnableInterrupt() cframe: Fixed MISRA-C violation 8.13 cframe: Fixed MISRA-C violation 4.6 cframe: Fixed MISRA-C violation 7.2 cframe: Fixed MISRA-C violation 10.4 cframe: Fixed MISRA-C violation 10.1 trngpsx: add SDT support sw_services:xilplmi:Remove redundant code sdps: Update YAML with Versal NET eMMC compatible sdps: Add support to read Tap configurations Xilloader: PCR security review comments xilocp: Fixed Security review comments for OCP BSP: riscv: Fix definitions for hpmevent registers xilpm: Update SSIT temperature propagation xilpm: versal: server: Fix sub-system restart on vek280 iicps: Fix doxygen warnings usb: usbpsu: src: fix HIS_VOCF metric violation usb: usbpsu: src: fix MISRA C-2012 Rule 10.3 violation mipicsiss: Removing linker script sw_services: xilsecure: Removed unused code of TRNG in xilsecure library sw_Services: xilsecure: Restricted XSecure_EccRandInit API to VersalNet sw_services: xilsecure: Use CacheInvalidate as per ARM recommendations sw_services:xilnvm:Fixed doxygen warnings xilpm: versal_common: server: Add missing code while integrating into Rigel workflow ospipsv: Fix MISRA-C Rule 8.13 violation sw_services:xilplmi:Sec COE Review Fixes uartlite: Correct SDT and interrupt checks in xuartlite_intr_tapp_example csudma:Fix HIS_COMF violations axidma: Fix sg_cyclic_intr example failure on r5 ipipsu: Update macros to resolve redefinition issue Updated version to latest in examples/index.html for multiple drivers BSP: microblaze: Fix prototypes of few cache APIs plm: versal_net: Use Reserved DDR Region for DS storage during update xilpki: fix issues with PKI IRQ signal lib: sw_apps: zynqmp_pmufw: Fix compilation error when ENABLE_RECOVERY flag is enabled in sdt flow xilpdi:Fix MISRA C violations for Rule 12.1 scuwdt: Update examples to stop the wdt at the end of the test scutimer: Update examples to stop the timer at end of the test xilplmi: versal: Allow loading of ELFs to XRAM dmaps: Fix example instance structure handling v_hdmitx1: Add support for configurable VTEM packets esw: Fix CMAKE_MACHINE for plm and psm microblaze processors in versalnet cmake: UserConfig.cmake: Disable USER_COMPILE_PROFILING_ENABLE configuration scripts: pyesw: build_bsp: Use cmake --build with verbose esw: Properly handle the processor extra compiler options ThirdParty: sw_services: lwip213: Fix the target name in clean target xilpki: Update XPki_GetVersion() API prototype cpu_riscv: Fix addgroup tag dp14rxss: Enable HDCP2X Timer handler calling function only when HDCP2X is enabled. xilpm: versal: server: Fix MISRA-C rule 10.4 xilpm: versal_common: server: Fix MISRA-C rule 8.13 sw_apps: zynqmp_pmufw: Fix MISRA-C rule 10.4 dfeprach: Remove immediate trigger dfeccf: Remove immediate trigger dfeofdm: Remove immediate trigger dfemix: Remove immediate trigger sw_services: xilpuf: Declare variable that are passed to server in data section srec_spi_bootloader: Adding a check in cmake to throw proper error srec_spi_bootloader: Adding linker_constraint for heap section in yaml srec_bootloader: Adding linker_constraint for heap section in yaml DP21: Add support for DP21 linkrates video_common: Fix compilation warning v_hdmitxss1: added tx compliance changes v_hdmirxss1: added tx compliance values v_hdmiphy1: Added new registers xilpm: versal: server: Add NPI read after enabling privilege write access for AIE2 dpdma: dppsu: Remove tapp section from yaml files xilnvm: Validate DME key before programming xilocp: XPPU configurations for DME operations sdps: change data type of BaseAddress sdps: Fix MISRA C-2012 Rule 8.5 violation sdps: Fix MISRA C-2012 Rule 15.5 violation sdps: Fix MISRA C-2012 Rule 14.4 violation sdps: Fix MISRA C-2012 Rule 12.1 violation sdps: Fix MISRA C-2012 Rule 10.6 violation sdps: Fix MISRA C-2012 Rule 10.4 violation sdps: Fix MISRA C-2012 Rule 10.1 violation sdps: Fix MISRA C-2012 Rule 4.7 violation ipipsu: Fix HIS_COMF violations qspipsu: src: Fix code format issues with checkpatch tool qspipsu: src: Update Polled transfer and Interrupt Handler functions as modular xilfpga: Add proper ifdef platform checks sw_services: xilmailbox: Fix HIS_COMF violations sw_services: xilplmi: Added the NullCheck for EmInit parameters update Embedded SW license file for 2023.2 release sw_apps: imgsel: versal image selector clean up sw_services:xilskey: Fixed MISRA-C Rule 8.5 violation rfdc: SDT Add Dependency Files sw_services:xilnvm: Fix SW-BP-REDUNDANCY drivers: trngpsx: Add volatile keyword to avoid optimization drivers: trngpsx: Remove Dead code sw_services:xilsecure: Fix updating KAT mask bits for external modules gpio: Add support for peripheral test for gpio in SDT flow sw_services: xilplmi: Reread from efuse cache sw_apps:versal_plm: Change exception print to DEBUG_PRINT_ALWAYS sw_services:xilplmi: DEBUG_PRINT_ALWAYS for critical error prints sw_services:xilplmi: Change PLM debug level to 0 for XilSEM xdmapcie: Replace csr-slcr property to populate xilpm: versal_net: clear pcil for rpu only sw_services:xilplmi:Added PSM Address range check xilpm: versal_net: skip halt if core is powered down sw_services:xilplmi:Updated IPI Timeout Value Revert "Revert "sw_services:xilsecure:Fix ECDSA boot failure on qemu"" xilsem: Replace Versal net SHA3 instance function with new API name avbuf: Ported changes for using the SDT flow dpdma: Ported changes for using the SDT flow dppsu: Ported changes for using the SDT flow xilpm: versal_net: fix force power down issue xilpm: versal_net: fix suspend resume issue xilpm: versal_net: Add DDRMC5 bisr support sw_services: xilpuf: Declare variables that are passed to server in data section sw_services:xilloader:Added Redundancy for KekSrc sw_apps:versal_plm:EAM Error Check After PMC CDO sw_services:xilplmi:Security Review Fixes iicps: Add SDT flow support for xiicps_eeprom_intr_example iicps: Update Receive Polled and Interrupt Handler functions as modular gpiops: Add support for pmc, versal and versal-net in sdt flow updated changelog for axiethernet and xilflash sw_services:xilloader: Remove check to validate MH secure state with PLM video_common: Add support for HF-SCDB in EDID parser Updated changelog for ospipsv and bram Signed-off-by: Sandeep Gundlupet Raju --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index e4e78038..b09ba84f 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -5,12 +5,12 @@ REPO ??= "git://github.com/Xilinx/embeddedsw.git;protocol=https" ESW_BRANCH[2023.1] = "xlnx_rel_v2023.1" ESW_BRANCH[2023.2] = "xlnx_rel_v2023.2-next" -ESW_BRANCH[2024.1] = "xlnx_rel_v2023.2-next" +ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" ESW_REV[2023.2] = "27ae5596270e2e4cc6a0ae23bcc80d49b4754724" -ESW_REV[2024.1] = "27ae5596270e2e4cc6a0ae23bcc80d49b4754724" +ESW_REV[2024.1] = "43f71f1373466ac510aa7fa44b89301cbcaf3611" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" @@ -19,6 +19,7 @@ EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}" LICENSE = "MIT" LIC_FILES_CHKSUM[xlnx_rel_v2023.1] = '3c310a3ee2197a4c92c6a0e2937c207c' LIC_FILES_CHKSUM[xlnx_rel_v2023.2-next] = '6677b545d223964a4906f97a2229bfc5' +LIC_FILES_CHKSUM[master-next] = '6677b545d223964a4906f97a2229bfc5' LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('BRANCH')) or '0'}" SRC_URI = "${EMBEDDEDSW_SRCURI}" -- cgit v1.2.3-54-g00ecf From c9f4f632d5f1c4692a5bcf5303fe91ecd9755822 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 8 Sep 2023 18:54:12 +0530 Subject: embeddedsw : Updated SRCREV for 2023.2_9143 cpu_riscv: Fix addgroup tag dp14rxss: Enable HDCP2X Timer handler calling function only when HDCP2X is enabled. xilpm: versal: server: Fix MISRA-C rule 10.4 xilpm: versal_common: server: Fix MISRA-C rule 8.13 sw_apps: zynqmp_pmufw: Fix MISRA-C rule 10.4 dfeprach: Remove immediate trigger dfeccf: Remove immediate trigger dfeofdm: Remove immediate trigger dfemix: Remove immediate trigger sw_services: xilpuf: Declare variable that are passed to server in data section srec_spi_bootloader: Adding a check in cmake to throw proper error srec_spi_bootloader: Adding linker_constraint for heap section in yaml srec_bootloader: Adding linker_constraint for heap section in yaml DP21: Add support for DP21 linkrates video_common: Fix compilation warning xilpm: versal: server: Add NPI read after enabling privilege write access for AIE2 dpdma: dppsu: Remove tapp section from yaml files Signed-off-by: Siva Addepalli Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index b09ba84f..20b2b4a0 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -9,7 +9,7 @@ ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" -ESW_REV[2023.2] = "27ae5596270e2e4cc6a0ae23bcc80d49b4754724" +ESW_REV[2023.2] = "ea73baf7767b879075b11b5a7831a9b0f90e59cc" ESW_REV[2024.1] = "43f71f1373466ac510aa7fa44b89301cbcaf3611" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" -- cgit v1.2.3-54-g00ecf From 4c8ee28682acaa7d680fd368dd93543363762139 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 11 Sep 2023 16:13:34 +0530 Subject: embeddedsw : Updated SRCREV for 2023.2_2891 ospipsv: Fix MISRA-C Rule 8.13 violation sw_services:xilplmi:Sec COE Review Fixes uartlite: Correct SDT and interrupt checks in xuartlite_intr_tapp_example csudma:Fix HIS_COMF violations axidma: Fix sg_cyclic_intr example failure on r5 Updated version number to latest in examples/index.html for multiple drivers BSP: microblaze: Fix prototypes of few cache APIs plm: versal_net: Use Reserved DDR Region for DS storage during update xilpki: fix issues with PKI IRQ signal lib: sw_apps: zynqmp_pmufw: Fix compilation error when ENABLE_RECOVERY flag is enabled in sdt flow xilpdi:Fix MISRA C violations for Rule 12.1 scuwdt: Update examples to stop the wdt at the end of the test scutimer: Update examples to stop the timer at end of the test xilplmi: versal: Allow loading of ELFs to XRAM dmaps: Fix example instance structure handling v_hdmitx1: Add support for configurable VTEM packets esw: Fix CMAKE_MACHINE for plm and psm microblaze processors in versalnet cmake: UserConfig.cmake: Disable USER_COMPILE_PROFILING_ENABLE configuration scripts: pyesw: build_bsp: Use cmake --build with verbose esw: Properly handle the processor extra compiler options ThirdParty: sw_services: lwip213: Fix the target name in clean target xilpki: Update XPki_GetVersion() API prototype Signed-off-by: Siva Addepalli Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 20b2b4a0..02cfa5ad 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -9,7 +9,7 @@ ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" -ESW_REV[2023.2] = "ea73baf7767b879075b11b5a7831a9b0f90e59cc" +ESW_REV[2023.2] = "5829c0d9de3f9c3d05163fed983c09b5a22ee276" ESW_REV[2024.1] = "43f71f1373466ac510aa7fa44b89301cbcaf3611" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" -- cgit v1.2.3-54-g00ecf From a30bb08a098bb1f747f53ca6bb1ddf87c7e911b5 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 14 Sep 2023 12:50:57 +0530 Subject: embeddedsw : Updated SRCREV for 2023.2_5147 xilffs: Fix compilation warning usb: usbpsu: fix HIS_RETURN violation Updated changelog for cpu, versal_plm and other components tmr_inject: Fix style issues in the driver sources tmr_manager: Correct the syntax for xlnx, mask-rst-value property sw_services:xilpki:Fixed doxygen warnings sw_services:xilsecure: Avoid returning XST_SUCCESS incase of glitch sw_services: xilocp: Avoid returning XST_SUCCESS incase of glitch scugic: Fixed source code-format issue. scugic: Include xplatform_info.h for all processors scugic: Fix HIS_COMF violations scugic: Fix MISRA C violation for Rule 14.4 scugic: Fix MISRA-C violation for Rule 10.3 sw_services:xilsecure:Removed NO_EFFECT coverity warning fix. nandpsu: Update the clock node qspipsu: Update the clock node uartpsu: Update the clock node iicps: Update the clock node lib: standalone: Add the clocking to the standalone v_hdmitxss1: added tx compliance changes v_hdmirxss1: added tx compliance values v_hdmiphy1: Added new registers openamp: apps: zynqmp_r5: freertos: Remove call to vPortEnableInterrupt() cframe: Fixed MISRA-C violation 8.13 cframe: Fixed MISRA-C violation 4.6 cframe: Fixed MISRA-C violation 7.2 cframe: Fixed MISRA-C violation 10.4 cframe: Fixed MISRA-C violation 10.1 trngpsx: add SDT support sdps: Update YAML with Versal NET eMMC compatible sdps: Add support to read Tap configurations sw_services:xilplmi:Remove redundant code Xilloader: PCR security review comments xilocp: Fixed Security review comments for OCP BSP: riscv: Fix definitions for hpmevent registers xilpm: Update SSIT temperature propagation xilpm: versal: server: Fix sub-system restart on vek280 iicps: Fix doxygen warnings mipicsiss: Removing linker script usb: usbpsu: src: fix HIS_VOCF metric violation usb: usbpsu: src: fix MISRA C-2012 Rule 10.3 violation sw_services: xilsecure: Removed unused code of TRNG in xilsecure library sw_Services: xilsecure: Restricted XSecure_EccRandInit API to VersalNet sw_services: xilsecure: Use CacheInvalidate as per ARM recommendations xilpm: versal_common: server: Add missing code while integrating into Rigel workflow Signed-off-by: Siva Addepalli Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 02cfa5ad..ac5254c1 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -9,7 +9,7 @@ ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" -ESW_REV[2023.2] = "5829c0d9de3f9c3d05163fed983c09b5a22ee276" +ESW_REV[2023.2] = "79ba04717ca52a460438f4ec2da12186248adf97" ESW_REV[2024.1] = "43f71f1373466ac510aa7fa44b89301cbcaf3611" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" -- cgit v1.2.3-54-g00ecf From 0437b89c2e3c47c39c115b1a645e5a4caefeff0a Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 15 Sep 2023 16:04:22 +0530 Subject: embeddedsw : Updated SRCREV for 2023.2_2231 mipicsiss:Updated files with VEK280 Pre-Production board xilloader: Fix MISRA C violation 17.8 xilloader: Fix MISRA C violation 17.7 xilplmi: Fix MISRA C violation 12.2 xilloader: Fix MISRA C violation 12.1 xilloader: Fix MISRA C violation 10.3 xilloader: Fix MISRA C violations for Directive 4.5. v_hdmitxss1: Added tx compliance values v_hdmirxss1: Added tx compliance values ThirdParty: sw_services: Libmetal: sdt: Remove A78 support xilsem: Fix NPI Scan Status after In Place PLM Update Revert "xilpm:versal_net: save and restore PL devices hierarchy" Revert "xilpm:versal_net: Restore missing Pl Devices during PLM update" Revert "xloader:versal_net: save and restore image info table contents" Revert "xilpm:versal_common: fix potential issue on array out of bound." xilplmi: Fix MISRA C violation 13.4 xilplmi: Fixed MISRA C violation for Rule 17.7 xilplmi: Fix MISRA C violations for Rule 14.4 xilplmi: Fix MISRA C violation 10.8 xilplmi: MISRA C violation 10.3 updated for changelog dp21txss , v_hdmitxss1 and other components xilskey: added SDT support for examples xilpm: versal: server: Add XPM_POLL_TIMEOUT definition for CPPUTEST cmake: toolchainfiles: microblaze-plm_toolchain.cmake: Fix VERSAL_PLM redefined warning cmake: toolchainfiles: microblaze-p*: Force the CMAKE_MACHINE variable lib: sw_services: xilplmi: Fix implicit declaration of function Xil_SetMBFrequency warning lib: sw_services: xiltimer: Move the Xil_SetMBFrequency() API declaration to xiltimer.h sw_services:xilnvm:Fixed doxygen warnings scripts: pyesw: library_utils: Return proper error code ipipsu: Update macros to resolve redefinition issue lib: sw_services: xiltimer: Make changes with checkpatch lib: sw_services: xiltimer: Fix incorrect TTC counter handling for Zynq lib: sw_services: xiltimer: Fix sleep handling logic in scutimer adapter lib: sw_services: xiltimer: Add scutimer support for SDT flow ttcps: Fixed source code-format issue. ttcps: Fix HIS_COMF violations ttcps: Fix MISRA-C violation for RULE 14.3 ttcps: Fix MISRA-C violations for 10.7 and 12.2 ttcps: Fix MISRA-c violation for Rule 10.4 ttcps: Remove unnecessary call to XTtcPs_ClearInterruptStatus ttcps: Fix MISRA-C violations for Rule 10.5 ttcps: Fix MISRA-C violations for Rule 10.3 qspipsu: Update XQspiPsu_PolledRecvData and XQspiPsu_PolledMessageTransfer functions qspipsu: Fix MISRA-C violation 2.2 and 2.6 qspipsu: Fix MISRA-C violation 10.1 qspipsu: Fix MISRA-C violation 8.13 xilpm:versal_net: save and restore PL devices hierarchy xilpm:versal_net: Restore missing Pl Devices during PLM update xloader:versal_net: save and restore image info table contents xilpm:versal_common: fix potential issue on array out of bound. sw_services:xilpuf:Fixed MISRA-C Rule 2.5 violation ThirdParty: sw_services: OpenAMP: sdt: Remove A53, A72 and A78 support ThirdParty: sw_services: Libmetal: sdt: Add support for PMUFW and PMC Signed-off-by: Siva Addepalli Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index ac5254c1..9dde65c8 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -9,7 +9,7 @@ ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" -ESW_REV[2023.2] = "79ba04717ca52a460438f4ec2da12186248adf97" +ESW_REV[2023.2] = "8c698994fb414274b530a1d1d36146a3ca69f993" ESW_REV[2024.1] = "43f71f1373466ac510aa7fa44b89301cbcaf3611" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" -- cgit v1.2.3-54-g00ecf From 0ddfcd9ff7826b24cc4806f401c0d4e1d667532c Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 18 Sep 2023 23:41:03 +0530 Subject: embeddedsw : Updated SRCREV for 2023.2_4139 sw_services: XilSecure: Input Validations are added for xsecure_elliptic.c file xilpm: examples: Integrate self-suspend example into vitisng/rigle flow sw_services:xilnvm:server: Avoid returning XST_SUCCESS incase of glitch sw_services:xilnvm:client: Avoid returning XST_SUCCESS incase of glitch sw_services: xilnvm: Add volatile keyword to avoid optimization sw_services: xilnvm: Fix assigning Status to XST_SUCCESS sw_services: xilnvm: Fix SW-BP-REDUNDANCY in XNvm_EfuseWriteDmeRevoke and XNvm_EfusePrgmIv lib: sw_apps: Fix race condition in the app CMakeLists.txt for sdt flow versal: Fix for ssit security review comments wdttb: Fixed MISRA-C violation 10.4 wdttb: Fix MISRA C violation 12.1 Fix internal security review comments bsp:standalone: Fixed source code-format issue. bsp:standalone: Fix MISRA-C violation for Rule 12.1 bsp:standalone: Fix MISRA-C violation for Rule 7.2 bsp:standalone: Fix MISRA-C violation for Directive 4.6 bsp:standalone: Fix Misra-c violation for Rule 10.3 xilpm:versal_net: save and restore PL devices hierarchy xilpm:versal_net: Restore missing Pl Devices during PLM update xloader:versal_net: save and restore image info table contents xilpm:versal_common: fix potential issue on array out of bound. updated for changelog xadcps and other components xilpm: versal: server: Fix MISRA-C violation for rule 8.13 xilpm: versal: server: Fix MISRA-C violation for rule 12.1 updated for changelog uartlite sw_services:xilocp:Fixes for Doxygen warnings dpdma: Fix MISRA-C rule 12.1 violation dpdma: Fix MISRA-C rule 15.5 violation Signed-off-by: Siva Addepalli Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 9dde65c8..0189d1d8 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -9,7 +9,7 @@ ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" -ESW_REV[2023.2] = "8c698994fb414274b530a1d1d36146a3ca69f993" +ESW_REV[2023.2] = "6dd9d8283c5545c35353089e8ece1acb6c0d20b7" ESW_REV[2024.1] = "43f71f1373466ac510aa7fa44b89301cbcaf3611" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" -- cgit v1.2.3-54-g00ecf From f5de8f11b7d288ca234ae19390392d2c44639335 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 28 Sep 2023 12:50:51 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_4491 scripts: pyesw: library_utils: Pull the xilflash library irrespective of the hardware dependency Revert "uartps: Fix xuartps_intr_example compilation errors in SDT flow" sw_services:xilsecure:Fixed MISRA-C Rule 12.2 violation sw_services:xilsecure:Fixed compilation warning for ecdsa example sw_services:xilsecure:Fixed MISRA-C Rule 10.3 and 10.4 violations sw_services:xilsecure:Fixed misra-c Rule 8.13 violation sw_services:xilsecure:Fixed coverity warnings updated for ddrcpsu changelog sw_services: xilcert: Replace XSecure_MemCpy64 with Xil_SMemCpy sw_services: xilcert: Fix the value of UEID extension scripts: pyesw: reconfig_bsp: Add support for older platforms/bsp axidma: Fix simple interrupt example for SDT flow Xilsecure: Add version header file for client mode VersalNet: Disable cache for xilpuf and xilnvm libraries xilplmi: fixed missing header inclusion lib: sw_apps: Update the User Compile and Link options for c++ sources lib: sw_apps: Fix linker script LINK_DEPENDS in system device-tree flow updated for changelog vtc uartps: Fix xuartps_intr_example compilation errors in SDT flow sw_services:xilpuf:Fixed doxygen warnings sw_services:xilsecure:Fixed doxygen warnings dp14txss: Removed XST_FAILURE return from XDpTxSs_SubcoreInitHdcp22() dp14rxss: Removed XST_FAILURE return from XDpRxSs_SubcoreInitHdcp22() sw_services: xilloader: Use correct mask to indicate KAT for SHA3 Instance 1 is run xilocp: Allowed PCR mask for GetPcr shall be 0xFF sw_services:xilsecure:Fix HIS COMF Violations for server. re-updated for changelog xilpm versal_psmfw: assert reset in power down sequence xilpm: versal_net: assert reset before setting operation mode xilpm: server: Fix max DDRMC count in PlDev -> MemCtrlr link sw_services:xilnvm:Fixed MISRA-C Rule 12.2 violation sw_services:xilnvm:Fixed MISRA-C Rule 8.3 violation sw_services:xilnvm:Fixed MISRA-C Rule 8.7 violation sw_services:xilnvm: Fixed MISRA-C Rule 2.5 violation reupdated emacps changelog sw_services: xilnvm: Fix review comments updated for changelog avbuf and other components sw_services: xilloader: Move KAT & hash calculation out of PLM_OCP macro xiltimer: Implement new API to get the library version info xilmailbox: Implement new API to get the library version info xilffs: Implement new API to get the library version info trngpsv: Fix MISRA-C violation 2.5 trngpsv: Fix MISRA-C violations 8.13 trngpsv: Fix MISRA-C violations 12.1 trngpsv: Fix MISRA-C violations 10.1 sw_services:xilfpga: Fixed source code-format issues sw_services:xilfpga: Fix MISRA-C violations for Rule 10.3 v_hdmitxss1: updated defines for tx pre and post cursor v_hdmirxss1: updated define for pre and post cursor Updated for cframe and other components sw_services:xilsecure:zynqmp:Fixed MISRA-C Rule 15.6 violation sw_services:xilsecure:zynqmp: Fixed MISRA-C Rule 17.8 violation sw_services:xilsecure:zynqmp: Fixed MISRA-C Rule 7.2 sw_services:xilsecure:zynqmp: Fixed MISRA_C Rule 11.9 xilsecure:zynqmp: Fixed MISRA-C violations sw_apps: versal_psmfw: Update PSMFW release version lib: sw_apps: Match title and description for OpenAMP and Libmetal apps sw_services:xilsecure:Fixed NO_EFFECT coverity warning scripts: pyesw: retarget_app: Add support for retargeting application for different platform scripts: pyesw: reconfig_bsp: Add support for shared platform/bsp sw_services: XilSecure: Input Validations are added for xsecure_elliptic.c file xilpm: examples: Integrate self-suspend example into vitisng/rigle flow sw_services:xilnvm:server: Avoid returning XST_SUCCESS incase of glitch sw_services:xilnvm:client: Avoid returning XST_SUCCESS incase of glitch sw_services: xilnvm: Add volatile keyword to avoid optimization sw_services: xilnvm: Fix assigning Status to XST_SUCCESS sw_services: xilnvm: Fix SW-BP-REDUNDANCY in XNvm_EfuseWriteDmeRevoke and XNvm_EfusePrgmIv lib: sw_apps: Fix race condition in the app CMakeLists.txt for sdt flow versal: Fix for ssit security review comments wdttb: Fixed MISRA-C violation 10.4 wdttb: Fix MISRA C violation 12.1 Fix internal security review comments bsp:standalone: Fixed source code-format issue. bsp:standalone: Fix MISRA-C violation for Rule 12.1 bsp:standalone: Fix MISRA-C violation for Rule 7.2 bsp:standalone: Fix MISRA-C violation for Directive 4.6 bsp:standalone: Fix Misra-c violation for Rule 10.3 xilpm:versal_net: save and restore PL devices hierarchy xilpm:versal_net: Restore missing Pl Devices during PLM update xloader:versal_net: save and restore image info table contents xilpm:versal_common: fix potential issue on array out of bound. updated for changelog xadcps and other components xilsecure: Added Check for All Zero Exponent Case xilpm: versal: server: Fix MISRA-C violation for rule 8.13 xilpm: versal: server: Fix MISRA-C violation for rule 12.1 updated for changelog uartlite sw_services:xilocp:Fixes for Doxygen warnings xilpm: versal: server: Clear spurious errors from NPD ScanClear dpdma: Fix MISRA-C rule 12.1 violation dpdma: Fix MISRA-C rule 15.5 violation mipicsiss:Updated files with VEK280 Pre-Production board ThirdParty: sw_services: Libmetal: sdt: Remove A78 support xilloader: Fix MISRA C violation 17.8 xilloader: Fix MISRA C violation 17.7 xilplmi: Fix MISRA C violation 12.2 xilloader: Fix MISRA C violation 12.1 xilloader: Fix MISRA C violation 10.3 xilloader: Fix MISRA C violations for Directive 4.5. v_hdmitxss1: Added tx compliance values v_hdmirxss1: Added tx compliance values xilsem: Fix NPI Scan Status after In Place PLM Update Revert "xilpm:versal_net: save and restore PL devices hierarchy" Revert "xilpm:versal_net: Restore missing Pl Devices during PLM update" Revert "xloader:versal_net: save and restore image info table contents" Revert "xilpm:versal_common: fix potential issue on array out of bound." Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 0189d1d8..25b1387f 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" ESW_REV[2023.2] = "6dd9d8283c5545c35353089e8ece1acb6c0d20b7" -ESW_REV[2024.1] = "43f71f1373466ac510aa7fa44b89301cbcaf3611" +ESW_REV[2024.1] = "716bcfce8a466cd3f7ef49995edf902dadf9bafb" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From b08db91422cd107f101371a5cfca789bdee8d4ae Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 4 Oct 2023 17:43:12 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_6559 sw_apps: img_rcvry: enable dhcp capabilities xilpm: versal_common: server: Fix compiler warning sw_services:xilplmi:In-Place Update from Image Store iomodule: Fixed source code-format issue. iomodule: Fix pointer-compare warning emc: Update addtogroup to Overview xilpuf: updated BSP options visibility xilpuf: updated the message type xilpuf: updated version number xilnvm: changed BSP options visibility xilnvm: updated version number xilsecure: changed BSP options visibility xilsecure: build scripts cleanup xilsecure: changed error type xilsecure: updated version number update Embedded SW license 2023.2 release sw_apps: img_rcvry: image recover GUI changes for SC sw_services: xilplmi: Add secure lockdown as EAM error actions Revert "sw_services: xilloader: Move KAT & hash calculation out of PLM_OCP macro" xilpm: versal: server: Add BISR support for BFRB module plm: versal_net: Fix Error Handling after In-Place PLM Update Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 25b1387f..6ff03ecb 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" ESW_REV[2023.2] = "6dd9d8283c5545c35353089e8ece1acb6c0d20b7" -ESW_REV[2024.1] = "716bcfce8a466cd3f7ef49995edf902dadf9bafb" +ESW_REV[2024.1] = "3fa1c3a5e3056c68280f84da0ff8da4a4e0d7631" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" @@ -19,7 +19,7 @@ EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}" LICENSE = "MIT" LIC_FILES_CHKSUM[xlnx_rel_v2023.1] = '3c310a3ee2197a4c92c6a0e2937c207c' LIC_FILES_CHKSUM[xlnx_rel_v2023.2-next] = '6677b545d223964a4906f97a2229bfc5' -LIC_FILES_CHKSUM[master-next] = '6677b545d223964a4906f97a2229bfc5' +LIC_FILES_CHKSUM[master-next] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('BRANCH')) or '0'}" SRC_URI = "${EMBEDDEDSW_SRCURI}" -- cgit v1.2.3-54-g00ecf From 09f5338fa872ad6ff4724929986c1a343aeb7c66 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Tue, 3 Oct 2023 15:36:42 -0500 Subject: embeddedsw: Update to release version Move to release branch, which is rebased from the dev branch Changelog: scripts: pyesw: build_app: Add command line arg to specify .repo.yaml path update Embedded SW license 2023.2 release scripts: pyesw: library_utils: Pull the xilflash library irrespective of the hardware dependency sw_services:xilsecure:Fixed MISRA-C Rule 12.2 violation sw_services:xilsecure:Fixed compilation warning for ecdsa example sw_services:xilsecure:Fixed MISRA-C Rule 10.3 and 10.4 violations sw_services:xilsecure:Fixed misra-c Rule 8.13 violation sw_services:xilsecure:Fixed coverity warnings updated for ddrcpsu changelog Revert "uartps: Fix xuartps_intr_example compilation errors in SDT flow" xilsem: Update copyright information in xsem_ebdgoldendata.c updated for license and copyright xilpm: versal: server: Add XPM_POLL_TIMEOUT definition for CPPUTEST xilskey: added SDT support for examples Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 6ff03ecb..3fdc22e0 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -4,12 +4,12 @@ ESW_VER ?= "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or 'master' REPO ??= "git://github.com/Xilinx/embeddedsw.git;protocol=https" ESW_BRANCH[2023.1] = "xlnx_rel_v2023.1" -ESW_BRANCH[2023.2] = "xlnx_rel_v2023.2-next" +ESW_BRANCH[2023.2] = "xlnx_rel_v2023.2" ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" -ESW_REV[2023.2] = "6dd9d8283c5545c35353089e8ece1acb6c0d20b7" +ESW_REV[2023.2] = "19ade382dd3b8a89aa737d9a67ceb2d28c6ab1bc" ESW_REV[2024.1] = "3fa1c3a5e3056c68280f84da0ff8da4a4e0d7631" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" @@ -18,7 +18,7 @@ EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}" LICENSE = "MIT" LIC_FILES_CHKSUM[xlnx_rel_v2023.1] = '3c310a3ee2197a4c92c6a0e2937c207c' -LIC_FILES_CHKSUM[xlnx_rel_v2023.2-next] = '6677b545d223964a4906f97a2229bfc5' +LIC_FILES_CHKSUM[xlnx_rel_v2023.2] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM[master-next] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('BRANCH')) or '0'}" -- cgit v1.2.3-54-g00ecf From 16f76bc2f35029e6864e49670af0ef66be7b3694 Mon Sep 17 00:00:00 2001 From: John Toomey Date: Fri, 18 Aug 2023 17:38:12 +0100 Subject: xlnx-embeddedsw: Update 2023.1 branch to xlnx_rel_v2023.1_update This change includes the Kria K24/KD240 changes in xlnx-embeddedsw by default for all embeddedsw components Signed-off-by: John Toomey Signed-off-by: Mark Hatle (cherry picked from commit 20bbd9c268299c2b11d7fc4fc1abcbf576b5e9ff) Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 3fdc22e0..6745a374 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -3,12 +3,12 @@ ESW_VER ?= "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or 'master' REPO ??= "git://github.com/Xilinx/embeddedsw.git;protocol=https" -ESW_BRANCH[2023.1] = "xlnx_rel_v2023.1" +ESW_BRANCH[2023.1] = "xlnx_rel_v2023.1_update" ESW_BRANCH[2023.2] = "xlnx_rel_v2023.2" ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" -ESW_REV[2023.1] = "e24fe92b5517ee447e560790e798cad792f53bab" +ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "19ade382dd3b8a89aa737d9a67ceb2d28c6ab1bc" ESW_REV[2024.1] = "3fa1c3a5e3056c68280f84da0ff8da4a4e0d7631" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" @@ -17,7 +17,7 @@ EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH' EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}" LICENSE = "MIT" -LIC_FILES_CHKSUM[xlnx_rel_v2023.1] = '3c310a3ee2197a4c92c6a0e2937c207c' +LIC_FILES_CHKSUM[xlnx_rel_v2023.1_update] = '3c310a3ee2197a4c92c6a0e2937c207c' LIC_FILES_CHKSUM[xlnx_rel_v2023.2] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM[master-next] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('BRANCH')) or '0'}" -- cgit v1.2.3-54-g00ecf From 9d54e4a73270b39108ba208c5ba787f728c95114 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 12 Oct 2023 15:19:43 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_1571 wdttb: Remove unneeded depends section from the yaml bsp:standalone: Fixed source code-format issue. bsp:standalone: Add support for string format specifiers within the xil_printf scripts: pyesw: open_amp: Extend cleanup support for Libmetal and OpenAMP scripts: pyesw: open_amp: Simplify openamp-lopper run scripts: pyesw: open_amp: Add support for Zynq for OpenAMP and Libmetal in BSP scripts: Enable OpenAMP and Libmetal demos to mimic convention of other ESW apps XilOcp: Handle the CDO command, whose payload is more than 8 words on chunk boundary VersalNet: Add support for SCR enabled RSA quiet mode lib:Fixed source code-format issue. bsp:standalone: Update Memory test API in BSP. lib: sw_apps: memory_test: Update test to cover whole memory as mentioned in memory range. lib:sw_apps: Support memory tests for memory size more than 4 GB spips: data: Update header file and driver version spips: Fix name mismatch issue of tpm_polled_example srio: Fixed Source code-format issues. srio: Update addtogroup issue scripts: pyesw: build_app: Add command line arg to specify .repo.yaml path Adding required yaml and cmake files xio.*: adding io mapping related files fs-xspi.* using the common configs Using the configs from xparameters.h file CMakeLists.txt: adding xio.h and xio.c files to MB xilpm: versal_common: server: Remove PM_CLOCK_GET_RATE API sw_services:xilloader: Remove SHA3 initialization sw_services:xilloader:Run KAT during Authenticated Jtag message Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 6745a374..f96ecc50 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "19ade382dd3b8a89aa737d9a67ceb2d28c6ab1bc" -ESW_REV[2024.1] = "3fa1c3a5e3056c68280f84da0ff8da4a4e0d7631" +ESW_REV[2024.1] = "753e4c3ebf3b6365fadf6771e244a6e08979b92b" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 2384364064570d2ff5ad3beeefae5c7b326b856b Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 13 Oct 2023 20:57:13 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8803 sdps: Fix code format issues sdps: Fix compilation error on Microblaze RISC-V sdps: Increment driver version versal_psmfw: versal_net: remove p-channel request from APU req power down Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index f96ecc50..84f21d23 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "19ade382dd3b8a89aa737d9a67ceb2d28c6ab1bc" -ESW_REV[2024.1] = "753e4c3ebf3b6365fadf6771e244a6e08979b92b" +ESW_REV[2024.1] = "237028b8a409a1f45c5b2f9841d8a040664bb948" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From d0cc263f53e0a6b5b74b3e84cab4a4987c8971b6 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 16 Oct 2023 18:14:17 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_6055 xxvethernet: Updated xxvethernet driver code to support USXGMII IP xxvethernet: Update driver version qspipsu: data: Add support for versal premium qspipsu: data: Increment version number xilffs: Add support for TRIM operation in SDT flow sw_services:xilnvm: Fixed MISRA-C Rule 5.5 violation coresightps_dcc: Fix compilation error for Microblaze RISC-V BSP:cortexr5: Fix style issues in mpu_r52.c BSP:cortexr5: Add MPU region for HNIC address space sw_services: xilplmi: Add redundancy to TAMPER_RESP_0 and TAMPER_TRIG writes sw_services: xilplmi: Enable Slave Error for PSM_GLOBAL ThirdParty: libmetal: 2024.1 version libmetal: revert vfio changes Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 84f21d23..757513e9 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "19ade382dd3b8a89aa737d9a67ceb2d28c6ab1bc" -ESW_REV[2024.1] = "237028b8a409a1f45c5b2f9841d8a040664bb948" +ESW_REV[2024.1] = "530469b7b3e477b14ef72238368faeccf06e268a" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 56f0f8ec5625ac5efbcf11112989fe495a73209e Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 17 Oct 2023 18:24:02 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_3599 sw_services:xilsecure:Fixed OVER_RUN coverity warning for versalnet sw_services:xilsecure:Fixed MISRA-C Rule 18.1 violation and OVER_RUN coverity warning sw_services:xilsecure:Fixed MISRA-C Rule 8.13 violation sw_services:xilsecure:Fixed MISRA-C Rule 8.7 violation sw_services:xilsecure:Fixed MISRA-C Rule 12.2 violation sw_services:xilsecure:Fixed REVERSE_INULL coverity warning Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 757513e9..761006d8 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "19ade382dd3b8a89aa737d9a67ceb2d28c6ab1bc" -ESW_REV[2024.1] = "530469b7b3e477b14ef72238368faeccf06e268a" +ESW_REV[2024.1] = "587a5592e807c1124034dfa733dced17bebf0c5c" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 52dc87e5d1970ec86c3c92b591183eb3c4a04697 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 20 Oct 2023 12:52:53 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8703 lib: sw_apps: freertos lwip: include "xparameters.h" scripts: pyesw: repo.py: pick the latest version esw: Rename the NON_YOCTO variable to YOCTO lib: sw_apps: Revise the template apps CMakeLists.txt link dependencies esw: Update the CMakeLists.txt to support yocto flow scripts: pyesw: create_example: Update the script to support the use case of having an example in a subfolder scripts: pyesw: enable ninja cmake generator by default for windows platform scripts: pyesw: create_bsp: Improve hardware meta-data generation xilpm:versal_net: add save and restore xpm_notifiers xilpm:versal_common: use Subsystems Id instead of pointer plm: versal_net: add hook to call XPmUpdate_RestoreAllNodes xilpm: versal_net: Add each Node to AllNodes array to track xilpm: versal_net: Add xpm_update xilpm: versal_net: Save ByteBuffer and its address xilpm: versal_net: Add xpm_update_data.h xilpm: versal: Add macro to mark restore region xilpm: versal_net: Revert support PLM update sw_services:xilsecure:versal_net: MISRA C Rule 8.13 for PMC sw_services:xilsecure:versal_net: MISRA C Rule 1.1 for PMC sw_services:xilsecure:versal_net: MISRA C Rule 8.8 for PMC sw_services:xilsecure:versal_net: MISRA C Rule 17.7 for PMC sw_services:xilsecure:versal_net: MISRA C Rule 12.1 for PMC sw_services:xilsecure:versal_net: MISRA C Rule 10.4 for PMC sw_services:xilsecure:versal_net: MISRA C Rule 10.3 for PMC sw_services: xilnvm: Check if all required eFUSEs are programmed before programming Decrypt only eFUSEs xilffs: Move Xilffs_GetLibVersion() to xilffs.h obsolete drivers components ycrcb2rgb, deinterlacer and rgb2ycrcb Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 761006d8..44dca75b 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "19ade382dd3b8a89aa737d9a67ceb2d28c6ab1bc" -ESW_REV[2024.1] = "587a5592e807c1124034dfa733dced17bebf0c5c" +ESW_REV[2024.1] = "c62753a4278de3d5d9da8cfb4f3355b98ae17baf" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 9cfdd8ef90b087b05776e6f4e96df3d057ddaa30 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 25 Oct 2023 15:15:43 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_2731 xilskey: Added API to get version info for xilskey library xilsecure: Added API to get version info for keyunwrap feature xilplmi: Added API to get version info for xilplmi library xilocp: Added API to get version info for xilocp library fs-boot.*: adding STDOUT_BASEADRESSES for uart BSP: cortexr5: armclang: Fix stack initialization sw_services:xilloader: Fix compilation warning when PLM_EN_ADD_PPKS macro is enabled versal: Extend 5PPK support to new devices xilpm:versal_common: fix issue with XPmNotifier_Register tmr_manager: Remove the XTMR_Manager_InjectionTest API declaration cfupmc: Updated Overview for addtogroup for 2024.1 cframe: Updated Overview for addtogroup for 2024.1 dfeofdm: Support for FFT size 512 dfeofdm: Doxygen documenatation update Updated SDK release year and SDK release quarter scripts: pyesw: create_bsp: Copy the common cmake meta-data file to domain directory Updated for oboslete driver xilisf Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 1b3bb827..7aaa34b0 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "c62753a4278de3d5d9da8cfb4f3355b98ae17baf" +ESW_REV[2024.1] = "c30e3bc9277e155789d2f28e883aeb12d6c1e194" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From f03cf783e2e67063f44ae2593cee22069d94825c Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 25 Oct 2023 23:21:31 -1200 Subject: embeddedsw : Updated SRCREV for 2024.1_1335 xilpm: zynqmp: client: Remove bool pattern definition zynqmp_pmufw: Remove custom bool definition sw_services:xilloader:Sec Review Fixes Signed-off-by: Siva Addepalli --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 7aaa34b0..43a6adb0 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "c30e3bc9277e155789d2f28e883aeb12d6c1e194" +ESW_REV[2024.1] = "0ec730944067d154a851afe83e840377a2b4a93a" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 3cac7c64e27fd83685af68a9aa5264b9bd03c30d Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 27 Oct 2023 16:58:49 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8439 xilpm: versal_net: server: Add auto generated pin control files xilpm: versal_common: server: move common pinctrl functions --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 43a6adb0..42bce870 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "0ec730944067d154a851afe83e840377a2b4a93a" +ESW_REV[2024.1] = "567486d3dd44a9c79f6200cbaf636ac6b5764033" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From dc0e4a9f29f13d615f8511f05c68838d58666f13 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 30 Oct 2023 16:17:38 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8163 sw_services:xilnvm:Deprecated server mode for versalnet sw_services:xilpuf:Deprecated server mode for versalnet --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 42bce870..cafa9e25 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "567486d3dd44a9c79f6200cbaf636ac6b5764033" +ESW_REV[2024.1] = "2722dd4fcefd7949b9f11bf9aa7bafa9e4894e8a" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 2da48fed87e34867790a9b56822c683141311c8b Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 31 Oct 2023 14:36:36 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5131 cmake: Findcommon: Include a common meta package for the Yocto flow xilskey: Update XilSkey_ZynqMpEfuseAccess doxygen xilpm: versal_net: Add CPM5N rail node ID --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index cafa9e25..be44149d 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -10,7 +10,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "2722dd4fcefd7949b9f11bf9aa7bafa9e4894e8a" +ESW_REV[2024.1] = "2cb906f0bf0b18571bc0887daf32d8428ee8c435" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 1be0239558d3b6d1a0d92759543f6ad6695e9e0a Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Fri, 27 Oct 2023 07:44:26 -0600 Subject: xlnx-embeddedsw: Define a floating git version While the 'git' version should never be preferred, some may find it useful for development. However, this was causing a parse error in some configurations: fsbl-firmware_git.bb: Exception during build_dependencies for T bb.data_smart.ExpansionError: Failure expanding variable SRCPV, expression was ${@bb.fetch2.get_srcrev(d)} which triggered exception FetchError: Fetcher failure: Unable to resolve 'git' in upstream git repository in git ls-remote output for github.com/Xilinx/embeddedsw.git The variable dependency chain for the failure is: SRCPV -> PV -> WORKDIR -> T Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index be44149d..89a86997 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -3,11 +3,13 @@ ESW_VER ?= "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or 'master' REPO ??= "git://github.com/Xilinx/embeddedsw.git;protocol=https" +ESW_BRANCH[git] = "master" ESW_BRANCH[2023.1] = "xlnx_rel_v2023.1_update" ESW_BRANCH[2023.2] = "xlnx_rel_v2023.2" ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" +ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" ESW_REV[2024.1] = "2cb906f0bf0b18571bc0887daf32d8428ee8c435" @@ -17,6 +19,7 @@ EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH' EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}" LICENSE = "MIT" +LIC_FILES_CHKSUM[master] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM[xlnx_rel_v2023.1_update] = '3c310a3ee2197a4c92c6a0e2937c207c' LIC_FILES_CHKSUM[xlnx_rel_v2023.2] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM[master-next] = '9fceecdbcad88698f265578f3d4cb26c' -- cgit v1.2.3-54-g00ecf From d8766ac9a2a3670f2dcc9341c1fd1e49a8b74816 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 1 Nov 2023 12:52:07 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5195 ospipsv: data: Update dependency_files inorder to pull dependency files automatically ospipsv: data: Update driver version i2srx: Add SDT support for I2S Receiver drivers i2srx: Add support for SDT support for I2SRX drivers vphy: Add support for system device-tree flow vphy: Add support for system device-tree flow uartlite: Fix yaml file to pull the uartlite driver v_hdmitxss1: Add support for SDT flow v_hdmitx1: Add support for SDT flow v_hdmirxss1: Add support for SDT flow v_hdmirx1: Add support for SDT flow v_hdmiphy1: Add support for SDT flow v_hdmi_common: Add support for SDT flow --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 89a86997..ac33b532 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "2cb906f0bf0b18571bc0887daf32d8428ee8c435" +ESW_REV[2024.1] = "d5d33326102d9d2e3d4063989b0269126a75a433" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From b5cda23f9e2d9135fbf8207240c0ce17d7ea7aba Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 2 Nov 2023 15:12:21 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_2579 csudma: Add a CMake file to support compiling driver examples in the Yocto flow Warp_Init Driver: Warp_Init driver ported for decoupling flow Warp_filter Driver: Warp_filter driver ported for decoupling flow SCD Driver: SCD driver ported for decoupling flow Multiscaler Driver: Multiscaler driver ported for decoupling flow Mixer Driver: Mixer driver ported for decoupling flow Gammalut Driver: Gammalut driver ported for decoupling flow Demosaic Driver: Demosaic driver ported for decoupling flow VPSS Driver: VPSS driver ported for decoupling flow vscaler Driver: vscaler driver ported for decoupling flow vcresampler Driver: vcresampler driver ported for decoupling flow VTC driver: Added interrupts parameter to yaml file. letterbox Driver: letterbox driver ported for decoupling flow hscaler Driver: hscaler driver ported for decoupling flow hcresampler Driver: hcresampler driver ported for decoupling flow Deintercaler Driver: Deintercaler driver ported for decoupling flow CSC Driver: CSC driver ported for decoupling flow i2stx: Add support for system device-tree flow i2stx: Add support for System device-tree flow BSP: Add support for RISC-V delay routines --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index ac33b532..68e15be4 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "d5d33326102d9d2e3d4063989b0269126a75a433" +ESW_REV[2024.1] = "08ab18e1221e768b754f5dc96dd2d25e632632c7" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 24677437696fc115502ab23ac7c0d17f6aa313ac Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 3 Nov 2023 14:26:52 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_3703 xilplmi: Added code to Trigger Error Out freertos: Add support for stdin and stdout config parameter selection sw_services:xilloader:Redundancy Fixes dp14rxss: Add support for system device-tree flow dp14rxss: Add support for system device-tree flow scripts: pyesw: Fix nul file is showing up in the exported platform --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 68e15be4..1f4aedd7 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "08ab18e1221e768b754f5dc96dd2d25e632632c7" +ESW_REV[2024.1] = "765913e38b2fd313666abc76775ee21822b6e1e5" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From c5575daa407961ab4c9ad8a0967c125e05c36e5b Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 6 Nov 2023 15:08:04 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_7491 scripts: pyesw: library_utils: Fix race condition in the xilpm cfg object generation sw_services: xilsecure: Updated API for ECDH dp14: Add support for system device-tree flow dp14: Add support for system device-tree flow sw_services: xilcert: Updated Issuer field in DevAK Certificate sw_services: xilcert: Update library version for 2024.1 xilpm: versal_net: add hbm support --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 1f4aedd7..33977687 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "765913e38b2fd313666abc76775ee21822b6e1e5" +ESW_REV[2024.1] = "e02c4b788494ed376e3a4aa3d23da02f50dcbf28" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From a14e61f3e69439066ac6ab1d5fe7eba60446de2b Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 7 Nov 2023 17:06:49 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_9623 v_hdmirxss1: example: Fix application compilation error in SDT flow v_hdmiphy1: Fix yaml file to pull the hdmiphy1 driver for ZU+ devices freertos10_xilinx: Move extern variable declarations from macro --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 33977687..5e1442cd 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "e02c4b788494ed376e3a4aa3d23da02f50dcbf28" +ESW_REV[2024.1] = "397712f04d7f6a7dd5a2abb033f3a5ec4840cdbf" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From d4e854bd33dd97a7d23eabbbdeca89b0791c4d73 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 8 Nov 2023 15:47:08 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8467 xilsecure: Add input validations in all ipihandlers xilpuf: Add input validations in all ipihandlers xilnvm: Add input validations in all ipihandlers sw_services: xilsecure: Fix compilation warning sw_services: xilnvm: Fix compilation warning --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 5e1442cd..d0b20418 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "397712f04d7f6a7dd5a2abb033f3a5ec4840cdbf" +ESW_REV[2024.1] = "bd8b5a0e3ae9c1f895c17b1f641b5733486f4501" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 30f70eeb647f261b35b7e316e61b2cae534805a4 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 9 Nov 2023 15:13:04 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5107 ipipsu: Fix compilation warning ipipsu: Update the driver version mbox: Add microblaze-v platform check mbox: Update the driver version clk_wiz: Add microblaze-v platform check clk_wiz: Update the driver version xilmailbox: Add microblaze-v platform check qspipsu: Add microblaze-v platform check sdps: Add microblaze-v platform check lib: bsp: standalone: Deprecate IOCTL_SET_SGMII_MODE ID sw_services: xilpm: versal: Remove IOCTL_SET_SGMII_MODE ID bsp:standalone: Modify translation_table for versal net in SDT Flow sw_services:xilsecure:zynqmp:Fixed INIT_TO_NULL coverity warning VersalNet: Add support to run KAT for xilocp and xilcert --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index d0b20418..0ba08e7c 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "bd8b5a0e3ae9c1f895c17b1f641b5733486f4501" +ESW_REV[2024.1] = "74010c0dc7d0b6b624da1546253da26297e1f5ce" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 28f14681bf73f1ac9a1ff859b9ffe64a97af5f7d Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 10 Nov 2023 15:15:48 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_4815 resetps: Remove unused XPAR_PSU_PSS_REF_CLK_FREQ_HZ --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 0ba08e7c..547465b4 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "74010c0dc7d0b6b624da1546253da26297e1f5ce" +ESW_REV[2024.1] = "8582d420d5a00c39c3f78c6a8bb4a8a579df20e0" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From b18c9874194be827367d2659714589ba1618fdaf Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 14 Nov 2023 23:04:28 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_2887 freertos10_xilinx: Update standalone version freertos10_xilinx: Update FreeRTOS kernel clockps: Fix the redefinition of the macros versal_psmfw: fix ocm retention error sw_services:xilloader:Security COE review fixes --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 547465b4..0aa46338 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "8582d420d5a00c39c3f78c6a8bb4a8a579df20e0" +ESW_REV[2024.1] = "2b99df5e395a7425dda8cc3aa4ade82e54d09d1c" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From faf21e40ac972e4b9ee3eddb79c5140f03b9364e Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 15 Nov 2023 17:31:50 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_9867 scripts: pyesw: Remove the dependency of xiltimer in embedded applications scripts: pyesw: validate_bsp: Make adjustments to library availability checks based on the processor list that supports it sw_services: Add input validation in XOcp_ProcessCmd sw_services: xilocp: Fixed violation of MISRA C Rule 8.3 sw_services: xilocp: Fixed violation of MISRA C Rule 10.4 sw_services: xilocp: Fixed violation of MISRA C Rule 4.7 sw_services: xilocp: Fixed violation of MISRA C Rule 8.9 sw_services: xilocp: Add comments for macros sw_services: xilocp: Move handling of SetSwPcrConfig CDO mipicsiss:ZCU102 xmipi_example.c and xmipi_menu.c Updated. mipicsiss:Version updated for 2024.1 xilpm: versal: split xpm_pin headers --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 0aa46338..be4a90a4 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "2b99df5e395a7425dda8cc3aa4ade82e54d09d1c" +ESW_REV[2024.1] = "0148dd3345e01d502c24e311d486a947296e9ea5" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 0a5a84c47c90a75fb8e08841c091e587ffa55b97 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 17 Nov 2023 11:26:07 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_3223 xilpm: versal_net: split xpm_requirement.h to platform specific headers xilpm: versal_net: subsystem layout and plm update xilpm:versal_net: xpm_update enhance support xilpm: versal_net: Change data layout to help PLM update xilsem:GT Scan SHA computation moved out of the arbitration sequence. sw_apps:memory_tests: Exclude pcie related memory regions --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index be4a90a4..0fd15fed 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "0148dd3345e01d502c24e311d486a947296e9ea5" +ESW_REV[2024.1] = "d9b132c366ace752a26cc44ff6118d9b0c560b04" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From c9a51a19e2859e4b7054a2e1ee4501d814e14eed Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 20 Nov 2023 15:49:04 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_4327 sw_services: xilfpga: Adds proper validations checks for input parameters sw_services: xilplmi: Update error action to NONE after disabling the error axipcie: Overview add to driver axipcie: Update mdd version axipcie: Update copyright year axipcie: Added properties to support SDT flow. xilffs: Update FATFS to fix the issues in 0.15 version qspipsu: Add support for W25Q256JW Winbond flash part ipipsu: Update for the name change xilffs: Fix MISRA-C violations cpu_riscv: Update makefile to fix compilation issues on windows machines xilpm:versal_net: Restore custom error handlers --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 0fd15fed..1bd68834 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "d9b132c366ace752a26cc44ff6118d9b0c560b04" +ESW_REV[2024.1] = "8fbb3b54b39963ce38c1a55bb18d1dd12030b221" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 6f3b7a9c8524f38ca1c67a8ae496a52a2c8574c9 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 21 Nov 2023 16:18:27 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_4899 VPSS subcores: Corrected errors in subcore drivers. v_mix: Example application correction VPSS Driver: TCL modification to fix GPIO reset parameter issue. mbox: Add dependencies for the examples cframe, cfupmc: Add compatible strings for latest pmcps versions --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 1bd68834..f703a6ab 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "8fbb3b54b39963ce38c1a55bb18d1dd12030b221" +ESW_REV[2024.1] = "44440f8794c46c2fd6be0582cc8e432eedf6be66" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 1b802c4678324bb2be521122247e23a0f8c9b16d Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 24 Nov 2023 12:51:24 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5891 zynqmp_pmufw: Update the value of DEFAULT_SECTIONS_NUM macro zynqmp_pmufw: update release version to 2024.1 pciepsu: Update mdd version pciepsu: Fix BAR allocation to consider maximum size of BAR region pceipsu: Fix macro declaration for header type mask pciepsu: Fix the BAR allocation in pciepsu driver based on endpoint request v_axi4s_remap: Example design application v_axi4s_remap: Added Decoupling flow support in driver sources v_axi4s_remap: Added Yaml file for decoupling flow. xilpm: versal_net: client: Use self suspend in cpuidle callback xilpm: versal_common: server: add restart timer handler xilpm: versal_common: server: Mark core as pending power down xilpm: versal_common: server: Add new state for indicating CPU off xilpm: versal_common: server: remove check for is core up xilpm: versal_common: server: skip force power down of cores qspipsu: Add support for IS25LP02G ISSI flash part --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index f703a6ab..4b69946f 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "44440f8794c46c2fd6be0582cc8e432eedf6be66" +ESW_REV[2024.1] = "ca5a8225f1105d64a66ed1e99b98f7b8635faf39" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 111638a5cda0e6691b743683b857d3c9c7f17fc8 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Wed, 22 Nov 2023 22:13:22 -0700 Subject: xilinx-standalone.inc: Set default libmetal provider Signed-off-by: Mark Hatle --- meta-xilinx-standalone/conf/distro/xilinx-standalone.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc index 814cb9cd..27c19081 100644 --- a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc +++ b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc @@ -25,8 +25,8 @@ COMPATIBLE_HOST ?= "${COMPATOS}" # Clear defaults PREFERRED_PROVIDER_virtual/kernel = "linux-dummy" +PREFERRED_PROVIDER_libmetal = "libmetal-xlnx" -PREFERRED_VERSION_libmetal-xlnx = "${@'standalone' if 'xilinx-standalone-exp' in d.getVar('BBFILE_COLLECTIONS').split() else ''}" PREFERRED_VERSION_open-amp-xlnx = "${@'standalone' if 'xilinx-standalone-exp' in d.getVar('BBFILE_COLLECTIONS').split() else ''}" # Workaround for pulling in nativesdk-mingw-w64-winpthreads -- cgit v1.2.3-54-g00ecf From a02c5b648b92a92218ae307c84b9621c5c9b2225 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 28 Nov 2023 16:47:28 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_6087 xilplmi: implemented user modules drivers: Fixed source code-format issue. drivers: Fix compilation errors reported with -std=c2x compiler flag lib: bsp: standalone: Enhance the ability to generate XPAR_CPU_ID definitions based on the reg property in the SDT flow freertos: Move the selection of config parameters for stdin and stdout into a separate header xilpm:versal_net: subsystem ipimask restore --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 4b69946f..adf3e270 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "ca5a8225f1105d64a66ed1e99b98f7b8635faf39" +ESW_REV[2024.1] = "25f0dc91e02944c8db08d1efa9fe801f5ec00753" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From cef3bde0286df491c26d6cc9389be346256c5262 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 29 Nov 2023 15:16:48 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8163 scripts: pyesw: build_app: Update link libraries for freertos xilpm: versal_net: server: VID support xilpm: versal_common: server: Allow any I2C controller to control power rails xilpm: versal_common: server: Issue all I2C commands for a power level change --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index adf3e270..ebe645ff 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "25f0dc91e02944c8db08d1efa9fe801f5ec00753" +ESW_REV[2024.1] = "84076fce0e641a8ab9fa3bc896fc83e3b15bcf67" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 884600268c99d06e58c2156601321aa5e2468816 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Thu, 30 Nov 2023 17:20:06 -0600 Subject: Revert "embeddedsw : Updated SRCREV for 2024.1_8163" This reverts commit cef3bde0286df491c26d6cc9389be346256c5262. SDT workflow builds are broken. Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index ebe645ff..adf3e270 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "84076fce0e641a8ab9fa3bc896fc83e3b15bcf67" +ESW_REV[2024.1] = "25f0dc91e02944c8db08d1efa9fe801f5ec00753" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From d0f870c26f8ed55dc9db9e43addf3707b5a7f302 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Thu, 30 Nov 2023 17:20:21 -0600 Subject: Revert "embeddedsw : Updated SRCREV for 2024.1_6087" This reverts commit a02c5b648b92a92218ae307c84b9621c5c9b2225. SDT workflows are broken. Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index adf3e270..4b69946f 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "25f0dc91e02944c8db08d1efa9fe801f5ec00753" +ESW_REV[2024.1] = "ca5a8225f1105d64a66ed1e99b98f7b8635faf39" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From e749ada4fa0aba143eab8654b8f95804ffb7ba27 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 1 Dec 2023 18:30:57 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_6567 lib: ARMv8: add Xil_MemMap() Xilsem:Enable XILSEM_ENABLE_SSIT macro using tcl lib: bsp: standalone: src: Fix race condition in yocto flow dp21rxss: Add support for system device-tree flow. dp21rxss: Add support for system device-tree flow dp21txss: Add support for system device-tree flow dp21txss: Add support for system device-tree flow dp21: Add support for system device-tree flow dp21: Add support for system device-tree flow lwip: Remove PMC/PSM/PMU entries from the processor lists of all LwIP components lib: Add Versal Net specific processors wherever missing scripts: pyesw: build_app: Update link libraries for freertos xilpm: versal_net: server: VID support xilpm: versal_common: server: Allow any I2C controller to control power rails xilpm: versal_common: server: Issue all I2C commands for a power level change xilplmi: implemented user modules drivers: Fixed source code-format issue. drivers: Fix compilation errors reported with -std=c2x compiler flag lib: bsp: standalone: Enhance the ability to generate XPAR_CPU_ID definitions based on the reg property in the SDT flow freertos: Move the selection of config parameters for stdin and stdout into a separate header xilpm:versal_net: subsystem ipimask restore --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 4b69946f..c0e7dbe7 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "ca5a8225f1105d64a66ed1e99b98f7b8635faf39" +ESW_REV[2024.1] = "cecc2ff6d66a8fae4ff5232f85e2b1ae9b015add" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 8de16ef1489074882a6eb009c6db8d513b01e619 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 5 Dec 2023 18:25:50 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_6875 openamp: Fix depends_libs syntax scripts: pyesw: Add the ability to pull dependencies for libraries scripts: pyesw: create_bsp: Fix the race condition in the toolchain mapping for the Soft Microblaze processor xilloader: fixed SD macro to handle both flows in emmc boot xilpm: versal_net: server: Disable dynamic CCI/SMMU handling feature xilpm:versal_net: skip SRST handler during PLM update Xilsem:Added client interface for A78 baremetal applications. bsp: standalone: Update the note description for sleep_MB sw_services:xilpuf:Added header file required for SDT flow xilpm:versal_net: increase ByteBuffer size ospipsv: Add support for MX66UM2G45G Macronix flash part qspipsu: data: Add nand examples in dependency and yaml file --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index c0e7dbe7..eca47ca4 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "cecc2ff6d66a8fae4ff5232f85e2b1ae9b015add" +ESW_REV[2024.1] = "ae0e298047a09736b8370c4cee3db686568efbf0" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From be357be4139df9f0db6d46f8c36a618e0f84bf97 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 7 Dec 2023 19:39:29 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_1959 sw-apps:memory_tests: exclude memory regions. Revert "xilloader: fixed SD macro to handle both flows in emmc boot" sw_services: Replace Xil_SMemSet with Xil_SecureZeroize for critical parameters pciepsu: Add properties to support SDT flow for Endpoint driver lib: bsp: standalone: Add the config option Standalone_Enable_Minimal_XLAT_TABLE in the system device tree flow xilpm: versal: server: add support for HBM CATTRIP notification --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index eca47ca4..96b34d0d 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "ae0e298047a09736b8370c4cee3db686568efbf0" +ESW_REV[2024.1] = "b74224f59aa272ec5962fb7763ebf9d8edeca415" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 97bbc63a18a1d537be3b672f9a2f31add4876304 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 11 Dec 2023 19:21:13 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_6091 xilffs: Fix to use BaseAddress instead of DeviceId in SDT flow clk_wiz: Update the user clock parameters xclk_wiz: Update the PrimInFreq sdps: Add support for Sanitize feature sw_services:xilsecure:Replace Xil_SMemSet with Xil_SecureZeroize sw_services: xilsecure: Provide inputs as string instead of byte array sw_services: xilnvm: Support for reading and writing PMC_SC_EN and HWTSTBITS_DIS eFuse bits Revert inadvertent license update xilpm: versal_net: fix doxygen warnings dp14txss:examples:Add support for system device-tree flow dp14txss:kcu_dp14:Add support for system device-tree flow dp14txss:zcu_pt_dp14_mst:Add support for system device-tree flow dp14txss:pt_only:Add support for system device-tree flow dp14txss:tx_only: Add support for system device-tree flow dp14txss: Add support for system device-tree flow dp14txss: Add support for system device-tree flow Revert "xilloader: Added code to Verify Address Range" versal_psmfw: versal_net: Fix MISRA C violation 17.8 versal_psmfw: versal_net: Fix MISRA-C violation 10.1 versal_psmfw: versal_net: Fix Misra violation 7.2 versal_psmfw: versal_net: Fix Misra-C violation 12.1 versal_psmfw: versal_net: Fix Misra-c violation 10.4 versal_psmfw: versal_net: Fix Misra-C violation 10.3 versal_psmfw: versal_net: Fix MISRA-C violation 2.5 dp14rxss:rx_only: Add system device-tree support for application example esw: remove references to pg flag from bsp if present dmaps: Remove unused variable lwip220 : update lwip apps to use the new library. lwip220: Copy examples folder lwip220 : Port AMD specific lwip changes to source lwip220 : Copy Existing contrib folder lwip220 : Add lwip 2.2.0 base source lwip213: Revert lwip213 1.2 version xilloader: Added code to Verify Address Range xilpm: versal_net: Add HNICX_DPU BISR support xilsem:Library update for SDT fixes and range table size fix in NPI scan --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 96b34d0d..592176c9 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "b74224f59aa272ec5962fb7763ebf9d8edeca415" +ESW_REV[2024.1] = "66a1d369d9a44407c144d33eeb70178c0b444c52" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From c4e6c7ea78011039adf8beb71753c74bfec0824d Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 14 Dec 2023 16:51:15 -1200 Subject: embeddedsw : Updated SRCREV for 2024.1_2739 mcdma: Add support for compiling driver examples in the Yocto flow zdma: Add support for compiling driver examples in the Yocto flow axivdma: Add support for compiling driver examples in the Yocto flow axicdma: Add support for compiling driver examples in the Yocto flow axidma: Add support for compiling driver example in Yocto flow iic: Update 10 bit address and gpo width parameters names in iic.yaml sw_services:xilsecure:Added single API support for GMAC and update AAD support for GCM sw_services:xilloader: Update PUF configuration from boot header sw_services:xilloader:Clear AES Keys when RedKey clear is set in PMC RAM wdttb: Remove compatible property check for winwdt examples sw_services:xilplmi:Disable Master interrupts for SSIT event sw_services: xilmailbox: clear interrupt after calling user handler xilloader: fixed SD macro for SDT support pciepsu: Fix space issue in pciepsu Endpoint driver dual_splitter: Add support for system device-tree flow dual_splitter: Add Support for System device-tree flow gpio: Add IER and GIER to xgpio_intr_tapp_example in SDT flow gpio: Update gpio driver version plm: versal_net: Added error support for OptionalDataLen Check scripts: pyesw: create_bsp: Fix the race condition in the _validate_inputs API v_csc driver: Fix for coefficients settings overridden. xilocp: Throw an error when data is in upper DDR if it is > 48 bytes --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 592176c9..0bbd95a1 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "66a1d369d9a44407c144d33eeb70178c0b444c52" +ESW_REV[2024.1] = "6a852ff79c851d2f74fffa29d27c66d13a87c5e0" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 868f521e25dca0b258d9973a85222839b446b89e Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 21 Dec 2023 17:17:42 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5067 dp21txss: Fix XDp_TxSetDownspread API dp21: Fix issues observed with QD sink device xilplmi: added offset support to list commands dp21:Fix config structure parameters in yaml file dp14: Fix Config structure parameters in yaml file dual_splitter: Add CMakeLists file for system device-tree flow SCD Example app is corrected dp12txss: examples: zcu_pt: Add support for system device-tree flow. dp12rxss: examples: zcu_rx: Add support for system device-tree flow. dp12rxss: Add support for system device-tree flow dp12rxss: Add support for system device-tree flow dp12txss: examples: key: Add support for system device-tree flow dp12txss: examples: inc: Add support for system device-tree flow dp12txss: examples: kc: Add support for system device-tree flow. dp12txss: examples: kcu: Add support for system device-tree flow dp12txss: examples: zcu_tx: Add support for system device-tree flow. dp12txss: Add support for system device-tree flow dp12txss: Add support for system device-tree flow dp12: Add support for system device-tree flow dp12: Add support for system device-tree flow dphy Driver: dphy Driver updated for supporting decoupling flow. dsi Driver: dsi Driver updated for decoupling flow. dsitxss Driver: dsitxss Driver ported for decoupling flow csi Driver: csi Driver ported for decoupling flow mipicsiss Driver: MIPICSISS driver and ZCU102 example ported for decoupling flow xilpm: use FuncId instead of PinFunc sw_apps: Support SDT flow for Microblaze RISC-V xiltimer: Add support for Microblaze RISC-V BSP: Add SDT flow support for Microblaze RISC-V versal-net: xilsecure: Added version # for ECDH xilloader: Added code to Verify Address Range xilmailbox: Add initial support for Microblaze RISC-V xilffs: Add initial support for Microblaze RISC-V gpio: Add initial support for Microblaze RISC-V ipipsu: Add initial support for Microblaze RISC-V spi: Add initial support for Microblaze RISC-V spi: Updated the driver version uartpsv: Add initial support for Microblaze RISC-V uartps: Add initial support for Microblaze RISC-V uartns550: Add initial support for Microblaze RISC-V uartlite: Add initial support for Microblaze RISC-V wdttb: Add initial support for Microblaze RISC-V canps: Add initial support for Microblaze RISC-V canps: Increment driver version BSP: microblaze: Fix microblaze_invalidate_dcache for SDT flow i3cpsx: Fix code formatting issues with checkpatch i3cpsx: Add support for system device-tree flow for example i3cpsx: Add support for system device-tree flow i3cpsx: Update the slave property i3cpsx: Update the version sw_services: xilcert: Add Subject Alternative Name field sw_services:xilplmi:Fixed compilation warnings VPROCSS driver: Reverting back the earlier changes. xilpm: versal_common: server: remove XPM_NODEIDX_STMIC_MIN check xilpm: versal_net: Add support for no buffer IPI devices xilpm: versal_common: Add CRP register node drivers: Fixed source code-format issue. drivers: Fix compilation errors xilpuf: fixed doxygen grouping --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 0bbd95a1..1c1a6fdb 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "6a852ff79c851d2f74fffa29d27c66d13a87c5e0" +ESW_REV[2024.1] = "c57d3512a6bc34427c7d948289cb3c5a89b37537" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 14bb5ea55fb1b71a799bdcf9852c90e850eebf0b Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 27 Dec 2023 15:51:02 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8447 csi2tx Driver: csi2tx driver migrated to decoupling flow. csi2txss Driver: csi2txss Driver migrate to decoupling flow Xilsem:Protect error injection test with macro and add XilSEM status prints sw_services: xilpm: assign value to IOCTL ID sw_services:xilnvm:Added Microblaze support for versalnet can: Update the interrupt example for ECC enablement can: Add ECC enablement for CAN driver can: Modify XCan_InterruptEnable to enable only the interrupts passed as argument can: Add new member to config structure can: Increment driver version ddrcpsu:Fix compilation warnings ddrcpsu: Update the driver version to v1.6 canps:Fix compilation warnings xilpm: versal: server: Fix Mbist clear trigger sequence for XRAM block Revert "lwip: metadata changes for timestamp" drivers: Update the compatibility string for the cframe and cfupmc drivers for VersalNet platform scripts: pyesw: create_bsp.py: Update the compiler flags for psx_pmc microblaze dp21:Fix Link_Count_Variable updation in RX MST Sideband reply message. sw_services: xilpki: Correct the PKI_ECC_NIST_P384_KEY_PRIV_GEN_CMD value lwip: metadata changes for timestamp --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 1c1a6fdb..2f67e9fb 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "c57d3512a6bc34427c7d948289cb3c5a89b37537" +ESW_REV[2024.1] = "38d0309fc2f2b9946c3ce1e1aed5aa52b6799374" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 01bc0d025d656d7f827fa1d44a7cc019eac3535f Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 28 Dec 2023 14:13:23 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_7063 sw_apps: imgsel: versal image selector Vless build failure fix xilpm: versal_net: server: Enable dynamic CCI/SMMU handling feature sw_services:xilloader: Place PMC TRNG in reset dp21: Fix SinkCount calculation when MST is enabled in RX Subsystem xilsecure: Fix status success assignment for invalid mod data --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 2f67e9fb..1d809d81 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "38d0309fc2f2b9946c3ce1e1aed5aa52b6799374" +ESW_REV[2024.1] = "6dc195e1d775ec6406a7ed4886e7809964b40cb0" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 57b1213ff07b3f984a7b46f8552c516d5be37b14 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 1 Jan 2024 12:41:06 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_1507 v_hdmirxss: Add support for SDT flow v_hdmirx: Add support for SDT flow vphy: Add SDT flow support for HDMI v_hdmiphy1: Add speedgrade variable in yaml v_hdmitxss1: Fix absolute for VTC and Tx core in SDT flow v_hdmirxss1: Fix absolute address for Rx core in SDT flow xilsem:Added additional check for Inplace PLM update in deferred start-up mode. xilpm: versal_common: server: Add CPPUTEST macro xilplmi: prints optimization xilloader: prints optimization BSP: riscv: Explicitly align trap vector base address to 4 bytes BSP: riscv: Disable relaxation of code sequence while setting up stack xilffs: Update YAML with Versal Net support --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 1d809d81..f78d15f8 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "6dc195e1d775ec6406a7ed4886e7809964b40cb0" +ESW_REV[2024.1] = "590fcce10751c97344a4d635f91d1685ce395f5e" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 257ca449730215bc0e068f1f01d63c70fd23e188 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 2 Jan 2024 14:03:02 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_9163 trngpsx:Add support for non-blocking reseed operation sw_services:xilsecure:Fix logical issue in updating keyslot value sw_services:xilsecure: Add SHA384 mgf support sw_services:xilsecure: Add RSA CRT support for keyunwrap sw_services:xilsecure: Add client support XSecure_RsaExp --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index f78d15f8..34cd6f2b 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "590fcce10751c97344a4d635f91d1685ce395f5e" +ESW_REV[2024.1] = "d71c1b4bdb239b6eee0152a8b90db1c7d40318f5" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 4690eb5bc5f7bd76f15128b1458bf9f56bc3f2c4 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 3 Jan 2024 15:34:46 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5131 dfeprach: Add continuous scheduling axipcie: modified axipcie device Id versal_psmfw: versal_net: Fix Misra violation 7.2 versal_psmfw: versal_net: Fix Misra-c violation 10.4 v_sdirxss: Add supoort for SDT flow v_sdirx: Add support for SDT flow v_sditxss: Add support for SDT flow v_sditx: Add support for SDT flow sdi_common: Add support for SDT flow sdps: Add support to read custom HS400 tap delay value --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 34cd6f2b..15a53188 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "d71c1b4bdb239b6eee0152a8b90db1c7d40318f5" +ESW_REV[2024.1] = "ac2f49206697f893ad93f25251601632b1eea879" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 4bee16df8dba1ad23a2b7851fa39aca774175d12 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Sat, 6 Jan 2024 12:51:20 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_2463 usb: usbpsu: examples: Update the freertos examples to support SDT flow usb: usbpsu: data: add dependency_files in yaml FreeRTOS examples Application fixes for decoupling flow VPROCSS: Driver TCL fix for customer issue xilpm: versal_common: server: use healthy boot monitor timer sw_services:xilplmi:Save PSM & PMC Buffers for IPU scripts: pyesw: library_utils: Add _XLNX_PLATFORM for libmetal platforms Revert "shmem: Add shared memory struct properties comments" ThirdParty: openamp: 2024.1 version for v2023.10.0 open-amp: apps: update to upstream v2023.10.0 open-amp: lib: update to upstream v2023.10.0 libmetal: lib: update to upstream v2023.10.0 --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 15a53188..6ab7d79c 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "ac2f49206697f893ad93f25251601632b1eea879" +ESW_REV[2024.1] = "c560223123ddaf8b953b72b9b162510fb7d24310" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 4bbdb2e51b07eb0bf99bc2de1b40a79f35bbe5e9 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 9 Jan 2024 15:48:27 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8203 dp21txss: Add support for multi-interrupts dp21rxss: Add support for multi interrupts dp14txss: zcu_pt_dp14_mst: Update DisplayPort Subsystem interrupt registration dp14txss: pt_only: Update DisplayPort Subsystem interrupt registration vphy: Update axi clock frequency structure entity parameter dp14txss: tx_only: Update DisplayPort Subsystem interrupt registration dp14txss: kcu_dp14: Update DisplayPort Subsystem interrupt registration dp14txss: Add Multiple interrupt support for new system device-tree flow dp14rxss: rx_only:Add system device-tree support for application example dp14rxss: Add Multiple interrupt support for new system device-tree flow sw_services: xilpm: versal_common: Deprecate IOCTL_PROBE_COUNTER_READ/WRITE xilpki: Fix security issues relevant to instance pointer NULL check xilpki: Fix error handling issues exists with XPki_DeQueueData() API lib: standalone: Fixed source code-format issue. lib: standalone: Update cmake files to support SDT flow lib: standalone: ported examples for SDT flow zynqmp_pmufw: remove unwanted code from PmKillBoardPower() scugic: Fixed source code-format issue. scugic: ported driver examples for SDT flow. --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 6ab7d79c..130fd30d 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "c560223123ddaf8b953b72b9b162510fb7d24310" +ESW_REV[2024.1] = "20ab6e9698b504be178057b76a527b0125b5729a" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From b0c4b621659b68f12f64e9cd057030e2c9c42cdc Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 11 Jan 2024 12:54:50 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_3303 sw_apps:zynqmp_fsbl:XFsbl_PollTimeout function-behaviour correction sw_apps :zynqmp_fsbl: Versionless build failure fix sw_apps :zynq_fsbl: Versionless build failure fix sw_apps:versal_plm: versionless warning fix sw_apps:imgsel: versionless warning fix sw_apps:img_rcvry: versionless build failure fix ospipsv: Add support for is25lx512m issi flash part ospipsv: Update AMD Copyright year from 2023 to 2024 axipmon: Add support for compiling driver examples in Yocto flow axipmon: Increment driver version --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 130fd30d..122261f6 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "20ab6e9698b504be178057b76a527b0125b5729a" +ESW_REV[2024.1] = "a5d03dbd5a02d6bfca2e22adefbdb34742f6e55a" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From ee7b37dc8b763019eb2757bde0cd856645d7af97 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 11 Jan 2024 15:20:48 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8539 xilpm: versal_net: server: increase the ByteBuffer size v_hdmitxss: Add support for SDT flow v_hdmitx: Add support for SDT flow v_hdmiphy1: Fix speedgrade member in XHdmiphy1_Config structure can: Add support for compiling driver examples in Yocto flow nandps: src: Move stack based BBT array to global instance to avoid stack overflow nandps: Update AMD Copyright year from 2023 to 2024 nandps: data: Update the driver version VPSS App issue: Fixed application for rigel flow on all boards --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 122261f6..00fba5ed 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "a5d03dbd5a02d6bfca2e22adefbdb34742f6e55a" +ESW_REV[2024.1] = "a542390a52dfd4a3c9ae13a39ae8711428dfdea5" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From b9b1b81fa7f309e9ddabdfc4866f6da420897c86 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 12 Jan 2024 15:54:16 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5259 ipipsu: Add support for compiling driver examples in Yocto flow hdmirxss: Update SDT flow in PassThrough example application canfd: Add support for compiling driver examples in Yocto flow canfd: Increment driver version xilpm:vesal_net: Save and restore gic proxy groups sw_services:xilnvm: Program the eFuse protection bits only once versal_psmfw: versal_net: fix warnings --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 00fba5ed..b16804ec 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "a542390a52dfd4a3c9ae13a39ae8711428dfdea5" +ESW_REV[2024.1] = "13df7fae89494dfac77afd93580a9effdc1e356a" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 1be6d169656c184890e3147ed02bdff325450fc3 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 16 Jan 2024 20:50:12 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_6655 Avoid mem mapping in MPU for region mapped by bsp sw_services: xilloader: Support validation of authenticated PDI sw_services:xilplmi:Added client support for xilplmi sw_services:xilloader:Added client support for xilloader sw_services: xilplmi: Added PMC RAM address in Verify Address API qspipsu: Add support for compiling driver examples in Yocto flow sw_services: xilpm: Add laguna repair code for xcvp1902 sw_services: xilloader: Clear Keys during PDI failure trngpsx: Add option to support blocking or non-blocking reseed operation i2srx: Add support for SDT flow i2stx: Add support for SDT flow v_sdirx: Fix for the SDI Rx YUV format spdif: Add support for SDT flow SCD APP: Application fix for rigel flow bsp: standalone: Fix description for Xil_L2CacheInvalidateRange sw_services:xilloader:Fixed compilation warning rtcpsu: Add support for compiling driver examples in yocto flow rtcpsu: Increment driver version --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index b16804ec..0c56fa78 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "13df7fae89494dfac77afd93580a9effdc1e356a" +ESW_REV[2024.1] = "113f8ad1812c3326874cc9b86571b4206d3dd6bd" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 9b2a16af1b7907e72f32be2a947a2faaf37db0f7 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 18 Jan 2024 15:56:16 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_6663 sw_services:xilplmi:Logstring and begin command logic enhancement sw_services:xilcert:Avoids infinite loop clockps: Add support for compiling driver examples in Yocto flow ThirdParty: Libmetal, OpenAMP: Ensure cleanup of SDT Flow directory occurs sw_services: xilsecure: Corrected length of IntHash for zeroization sdps: Add support for compiling driver examples in Yocto flow audio_formatter: Add support for SDT flow xilffs: Fix doxygen warnings ipipsu: Add PSM, PMC related bitmask macros for versal-net dp14rxss: Update HDCP Initialization flow to support multi combinations. dp14txss: Update HDCP Controlling Logic to support multi-combinations dp14txss: zcu_pt_dp14_hdcp: Update application to support system device-tree flow. hdcp22_cipher_dp: Driver updates to support system device-tree flow. hdcp22_cipher_dp: Added yaml file for decoupling flow support hdcp22_common: Add support for system device-tree flow hdcp22_common: Added yaml file for decoupling flow support. hdcp22_mmult: Updated drivers to support system device-tree flow. hdcp22_mmult: Added yaml file for decoupling flow support hdcp22_rng: Driver updates to support system device-tree flow. hdcp22_rng: Added yaml file for decoupling flow support. hdcp22_rx_dp: Driver updates to support system device-tree flow. hdcp22_rx_dp:Added yaml file for decoupling flow support hdcp22_tx_dp: Driver update to support system device-tree flow. hdcp22_tx_dp: Added yaml file for decoupling flow support hdcp1x: Update driver to support system device-tree flow. hdcp1x: Add support for system device-tree flow dp14txss: eeprom_utility: Update driver to support new system device-tree flow ThirdParty: openamp: libmetal version dependency --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 0c56fa78..f106fb50 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "113f8ad1812c3326874cc9b86571b4206d3dd6bd" +ESW_REV[2024.1] = "ba4c00f90987cb33dafdf55649d0e6424e46ac33" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 774770ca1e485fea6c5aed8d77d8c535669bb505 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 19 Jan 2024 16:24:39 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_9599 sw_services: xilfpga: Fix doxygen warnings mbox: Add support for compiling examples in Yocto flow mutex: Add support for compiling examples in yocto flow mutex: Increment driver version ospipsv: Add support for compiling driver examples in Yocto flow lib: bsp: Fix bug in cache invalidation APIs for ARMv7 xilpm: versal_common: server: Fix reset assert during core pending power down lib: sw_apps: libmetal demo: sdt: Streamline app-create step wdtps: Add support for compiling examples in Yocto flow wdtps: Increment driver version Fix C++ compatibility of newly added function lwip_memcmp_consttime() ppp: use constant-time memcmp for checking credentials Introduce constant-time memcmp and use it for snmpv3_get_engine_boots xilpm: versal_net: server: Add workaround for CMN flush during subsystem restart dpdma: Fix spellings in comments dpdma: Fix MISRA-C rule 14.2 violation dpdma: Update to v1.6 --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index f106fb50..92a1b14c 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "ba4c00f90987cb33dafdf55649d0e6424e46ac33" +ESW_REV[2024.1] = "04c35b655387f69b36f83869185396fd68e5e000" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From cbe4bf5e78235053c247456e5a1026cf48cc00f2 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 22 Jan 2024 12:54:13 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_1775 nandpsu: Add support for compiling driver examples in Yocto flow nandpsu: Update version number nandps: Add support for compiling driver examples in Yocto flow --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 92a1b14c..456be0c6 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "04c35b655387f69b36f83869185396fd68e5e000" +ESW_REV[2024.1] = "2a07bc9c764e5aecea4cfb54068f5715176e2dad" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 7bec633200c97b61acffb412cfd427241a2ab377 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 24 Jan 2024 12:55:23 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_1203 rfclk: Correct linux gpio ID v_hdmitx1: Declare XV_HdmiTx1_LookupVic function in header file resetps: Add support for compiling examples in Yocto flow bsp: standalone: Fixed source code-format issue bsp: standalone: Fix Doxygen warnings wdttb: Add support for compiling examples in Yocto flow sw_services: xilnvm: Validate the decrypt only puf helper data qspipsu: example: Update examples to set QSPI clock based on baud rate divisor qspipsu: Add support to set QSPI clock based on baud rate divisor VideoHLS Drivers: Import examples option is added to all examples fs-boot.c: fixing compilation issues in sdt flow --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 456be0c6..4cbf586d 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "2a07bc9c764e5aecea4cfb54068f5715176e2dad" +ESW_REV[2024.1] = "3bf967a067ca608fd7cf1093116e5845cf315c63" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 5c1339a4d38c0336354c2d1e0ac10efb8a8c593c Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 26 Jan 2024 12:53:41 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_9731 lib: sw_apps: Wrap IPI Symbols in #ifndefss xilnvm: Fix doxygen warnings v_hdmitxss1: Add yaml changes to support import examples v_hdmirxss1: Add yaml changes to support import examples v_hdmitxss: Add yaml changes to support import examples v_hdmirxss: Add yaml changes to support import examples v_sditxss: Add support for SDT flow axis_switch: Add support for compiling driver examples in Yocto flow axis_switch:Increment driver version llfifo: Add support for compiling driver examples in Yocto flow llfifo: Increment driver version dfeprach: Correct memset destination address sw_services:xilplmi:Addition in Logstring and begin command logic enhancement emacps: Add support for compiling driver examples in yocto flow emacps: Increment driver version --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 4cbf586d..125fd75d 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "3bf967a067ca608fd7cf1093116e5845cf315c63" +ESW_REV[2024.1] = "4b1aa02bd005edea08ee1dad14c8a3f2f4feb717" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From f05e7f92189542068ad96ace1f2f8af6fd7e2a8e Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 2 Feb 2024 20:50:37 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_7375 Warp_init: App completion statement is added sw_apps :zynqmp_fsbl: Add init_array and fini_array in linker script for A53 FSBL spi: Add support for compiling driver examples in Yocto flow gpiops: Add support for compiling driver examples in Yocto flow gpiops: Update driver version uartlite: Add support for compiling driver examples in Yocto flow uartlite: Add SDT check to support interrupt example in SDT flow qspips: Add support for compiling driver examples in Yocto flow qspips: Increment driver version uartns550: Add support for compiling driver examples in Yocto flow trafgen: Add support for compiling driver examples in Yocto flow trafgen: Increment driver version iicps: Add support for compiling driver examples in Yocto flow iicps: Incremented driver version to 3.19 freertos10_xilinx: Fix the minor version in mld file. emacps: Fix warnings for IAR builds uartpsv: Add support for compiling driver examples in Yocto flow Revert "xilloader: Do delayed handoffs and subsystem activation after boot device is released" bram: Add support for compiling driver examples in Yocto flow bram: Increment driver version sw_services:xilplmi:Code spell warning fix xilpm: versal: server: Add rigel flow support for xcvp1902 dp12txss: Update driver to support HDCP1X dp12txss: update yaml file to enable multi-interrupts and VTC entries hdcp1x: Update header file with new macros dual_splitter: Update Xparameter canonical definations as per new sdt flow. dp12rxss: Update config structure to align with new sdt flow dp12rxss: Add support for multi-interrupts. dp12rxss: examples: Add support for system device-tree flow. dp12rxss: Add support for system device-tree flow. dp12txss: Add support for System-device tree flow v_hdmirxss:hdcp_key_utility: Update driver to support new system device-tree flow. v_hdmirxss:Add Multiple interrupt support for new system device-tree flow. v_hdmirxss: xhdmi_example: PassThrough: Update HDCP initialization to support system device-tree flow. v_hdmirxss:Update HDCP Controlling Logic to support system device-tree flow. v_hdmirxss1:hdcp_key_utility: Update driver to support new system device-tree flow. v_hdmirxss1:Add Multiple interrupt support for new system device-tree flow. v_hdmirxss1:Update HDCP Controlling Logic to support system device-tree flow. v_hdmitxss:xhdmi_example:PassThrough:Update HDCP initialization to support system device-tree flow. v_hdmitxss:hdcp_key_utility: Update driver to support new system device-tree flow. v_hdmitxss:Update HDCP Controlling Logic to support system device-tree flow. v_hdmitxss:Add Multiple interrupt support for new system device-tree flow. v_hdmitxss1: hdcp_key_utility:Update driver to support new system device-tree flow. v_hdmitxss1: xhdmi_example:Update application to support system device-tree flow. v_hdmitxss1: Update Yaml file to support multi-interrupts in system device-tree flow. v-hdmitxss1: Update HDCP Controlling Logic to support system device-tree flow. hdcp22_rx: Driver updates to support system device-tree flow. hdcp22_rx: Add support for system device-tree flow hdcp22_cipher:Driver updates to support system device-tree flow. hdcp22_cipher:Add support for system device-tree flow hdcp22_tx: Driver updates to support system device-tree flow. hdcp22_tx: Add support for system device-tree flow sw_services:xilplmi:Updated XPlmi_SetPmcIroFreq function lib: bsp: Fix cache invalidation range API for A9 platforms lib: bsp: Fix cache invalidation range API for Cortex-R platforms v_hdmirxss: Fixed yaml to support import examples uartps: Add support for compiling driver examples in Yocto flow xilpm: versal_common: server: Fix IpiMask and AckType in force pwr dwn lib: bsp: standalone: Update the CMakeLists.txt to pull microblaze_interrupt_handler.c file for microblaze non freertos use case explicitly spips: Add support for compiling driver examples in Yocto flow FreeRTOS Avoid mem mapping in MPU for region mapped canps: Add support for compiling examples in Yocto flow lib: bsp: xparameters_ps: Update GIC base address lib: sw_apps: memory_test: Initialize the status variable to success tft: Add support for compiling driver examples in Yocto flow tft: Increment driver version sw_apps: memory_tests: Update code to exclude memory regions from all designs sw_apps: memory_tests: Fix logic to find out instruction memories in HW design. bsp: standalone: Update lower DDR mapping calculation for MMUtbl2. xilloader: Do delayed handoffs and subsystem activation after boot device is released canps: Update example to fix compilation error in Rigel flow versal_net: psmfw: Integration into vitisng/rigel flow sw_services: xilpm: versal_net: Integration into vitisng/rigel flow --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 125fd75d..c96499a6 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "4b1aa02bd005edea08ee1dad14c8a3f2f4feb717" +ESW_REV[2024.1] = "c270d44d498dc01b324522d2eb76c5aca872bc60" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 7f2930eaaf420388a45bd87c65208ecbcf46fe38 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 5 Feb 2024 16:17:53 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_1467 rfdc: Support Baremetal SDT Yocto Flow scripts: pyesw: Add support for incremental build feature emacps: driver: HwTail check post increment sw_services:xilnvm: Program RoSwap only when it is non-zero gpio: Add support for compiling driver examples in Yocto flow --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index c96499a6..b10631ce 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "c270d44d498dc01b324522d2eb76c5aca872bc60" +ESW_REV[2024.1] = "5e9d990cb9690a53a21abb849db913df3734dd33" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 4c56c54a700d166b86e2989f89d190d49305b8ed Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 6 Feb 2024 15:51:18 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5919 lib: sw_apps: OpenAMP Demos: sdt: Streamline app-create step intc: Initialize IVAR register based on mtvec in case of Microblaze RISC-V bsp: riscv: Initialize mtvec with _trap_handler at start of boot code bsp: riscv: Add constructor to initailize mtvec with _trap_handler lib: bsp: arm: Dont invoke XTime_StartTTCTimer() if xiltimer library is enabled xxvethernet: Add support for compiling driver examples in yocto flow sw_apps: img_rcvry: Clean up sw_apps: img_rcvry: update the imgrcvry template app to support vitisng flow. clk_wiz: Add support for compiling driver examples in Yocto flow i3cpsx: Update the compatible i3cpsx: Update the base address i3cpsx: Add prints under debug i3cpsx: Add support for compiling driver examples in Yocto flow --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index b10631ce..d1b7e7f6 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "5e9d990cb9690a53a21abb849db913df3734dd33" +ESW_REV[2024.1] = "aa46b74b5068c38be498fee20d1955d91843ab24" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 9a47669a9fa73665e1e0478c01fa2847a352aa41 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 7 Feb 2024 15:13:42 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_7123 v_hdmirxss1: Fix compilation issue with non HDCP design v_hdmirxss: Fix compilation issue with non HDCP design v_hdmitxss: Fix TxOnly application for microblaze platform v_hdmitxss: Fix PassThrough application for vcu118 platform v_hdmirxss: Fix PassThrough application for vcu118 platform v_hdmirxss1: Update PassThrough example application for VCU118 platform v_hdmitxss1: Update PassThrough example application for VCU118 platform v_hdmitxss1: Fix yaml for vck190 passthrough example application v_hdmirxss: Fix RxOnly application for microblaze platform v_hdmirxss: Fix example application build error with zc706 platform v_hdmitxss: Add SDT flow support to I2S audio example application v_hdmirxss1: Update PassThrough example application for VCU118 platform v_hdmirxss: Add SDT support in PT app for vck190 platform v_hdmitxss: Add SDT support in PT app for vck190 platform v_hdmirxss: Correct application file name in yaml file v_hdmitxss: Correct application file name in yaml file audio: Add application support for SDT flow v_sditxss: Add support for SDT flow xilpm: versal_common: server: Add CLK_IGNORE_UNUSED flag for GATE clocks sdi: Add support for SDT flow --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index d1b7e7f6..d7b24590 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "aa46b74b5068c38be498fee20d1955d91843ab24" +ESW_REV[2024.1] = "a0d7a7a740181fe191661b4cf5194608f49ac483" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 7d719ff7cce9f406eead2639aade01d631764661 Mon Sep 17 00:00:00 2001 From: Onkar Harsh Date: Mon, 5 Feb 2024 17:56:40 +0530 Subject: standalone: Add support for Versal Net specific CMAKE variables CMAKE_MACHINE and CMAKE_SYSTEM_PROCESSOR values are different for Versal Net than that of Versal. Update the same using the SOC_VARIANT as the SOC_FAMILY is same for both. In addition, update the SOC specific flags (defined in-house to segragate execution of some part of the boot code and the drivers) for versal and versal-net. Signed-off-by: Onkar Harsh Signed-off-by: Mark Hatle --- meta-xilinx-standalone-experimental/classes/esw.bbclass | 16 +++++++++++----- meta-xilinx-standalone/conf/distro/xilinx-standalone.inc | 2 ++ 2 files changed, 13 insertions(+), 5 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone-experimental/classes/esw.bbclass b/meta-xilinx-standalone-experimental/classes/esw.bbclass index 53accd52..f9373b7a 100644 --- a/meta-xilinx-standalone-experimental/classes/esw.bbclass +++ b/meta-xilinx-standalone-experimental/classes/esw.bbclass @@ -32,37 +32,43 @@ do_configure[depends] += "device-tree:do_deploy" do_compile[depends] += "device-tree:do_deploy" do_install[depends] += "device-tree:do_deploy" -def get_xlnx_cmake_machine(fam, d): +def get_xlnx_cmake_machine(fam, variant, d): cmake_machine = fam if (fam == 'zynqmp'): cmake_machine = 'ZynqMP' elif (fam == 'versal'): cmake_machine = 'Versal' + if (variant == 'net'): + cmake_machine = 'VersalNet' elif (fam == 'zynq'): cmake_machine = 'Zynq' return cmake_machine -def get_xlnx_cmake_processor(tune, machine, d): +def get_xlnx_cmake_processor(tune, machine, variant, d): cmake_processor = tune if tune.startswith('microblaze'): if (machine == 'psu_pmu_0'): cmake_processor = 'pmu_microblaze' - elif (machine == 'psv_pmc_0'): + elif (machine in [ 'psv_pmc_0', 'psx_pmc_0' ]): cmake_processor = 'plm_microblaze' else: cmake_processor = 'microblaze' elif tune == 'cortexr5': cmake_processor = 'cortexr5' + elif tune == 'cortexr52': + cmake_processor = 'cortexr52' elif tune.startswith('cortexa9'): cmake_processor = 'cortexa9' elif (tune in [ 'cortexa53', 'cortexa72-cortexa53' ]): cmake_processor = 'cortexa53' elif tune == 'cortexa72': cmake_processor = 'cortexa72' + if (variant == 'net'): + cmake_processor = 'cortexa78' return cmake_processor -XLNX_CMAKE_MACHINE = "${@get_xlnx_cmake_machine(d.getVar('SOC_FAMILY'), d)}" -XLNX_CMAKE_PROCESSOR = "${@get_xlnx_cmake_processor(d.getVar('DEFAULTTUNE'), d.getVar('ESW_MACHINE'), d)}" +XLNX_CMAKE_MACHINE = "${@get_xlnx_cmake_machine(d.getVar('SOC_FAMILY'), d.getVar('SOC_VARIANT'), d)}" +XLNX_CMAKE_PROCESSOR = "${@get_xlnx_cmake_processor(d.getVar('DEFAULTTUNE'), d.getVar('ESW_MACHINE'), d.getVar('SOC_VARIANT'), d)}" XLNX_CMAKE_SYSTEM_NAME ?= "Generic" XLNX_CMAKE_BSP_VARS ?= "" diff --git a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc index 27c19081..62c5a211 100644 --- a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc +++ b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc @@ -15,6 +15,8 @@ ESW_CFLAGS ?= "" # Cortex R5 requires an additional cflag to be passed for compatibility with the embeddedsw TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexr5', ' -DARMR5', '', d)}" +TUNE_CCARGS:append:versal = " -Dversal" +TUNE_CCARGS:append:versal-net = " -DVERSAL_NET" # Make sure all regular recipes are excluded from compatibility # Avoid using this for native, nativesdk or cross recipes -- cgit v1.2.3-54-g00ecf From 2e97fa352b5cf5f17712de96951ffca82c879bae Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 9 Feb 2024 15:17:51 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_4819 mipicsiss: Add support for VEK280 mipicsiss: Add support of SDT flow to VCK190 mipiss: fix yaml files scripts: linker_files: Fix constructors for Microblaze RISC-V scripts: linker_files: Fix initialization of sbss and sbss2 sections bsp: standalone: Fix compilation warnings. sw_services: IS25LX512M flash support. lwip: Fix final timestamp in standalone and freertos lwip iic: Add support for compiling driver examples in Yocto flow dp14txss: Add yaml changes to support import examples dp14rxss: Add yaml changes to support import examples dp12txss: Add yaml changes to support import examples dp12rxss: Add yaml changes to support import examples --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index d7b24590..ae7d39cd 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "a0d7a7a740181fe191661b4cf5194608f49ac483" +ESW_REV[2024.1] = "5cbc2349518b348aeffd9e912d64310b9684e26d" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From fb339f5e1f2d3173addbb7acd31d63c78d63a21d Mon Sep 17 00:00:00 2001 From: Onkar Harsh Date: Tue, 6 Feb 2024 16:33:24 +0530 Subject: standalone: Add support for r5/r52 hf tunes c45298aaf4fe commit (machine/include/arm: Backport tune files from master) in meta-xilinx layer added the support for cortex-r5 and cortexr-r52 hard float ABI tunes. Update the conditions that generate the CMAKE_SYSTEM_PROCESSOR to incorporate these two new tunes. Moreover, some additional cflags (-DARMR5 -DARMR52) are needed to compile Cortex R52 specific boot code in embeddedsw. Update the same. Signed-off-by: Onkar Harsh Signed-off-by: Mark Hatle --- meta-xilinx-standalone-experimental/classes/esw.bbclass | 4 ++-- meta-xilinx-standalone/conf/distro/xilinx-standalone.inc | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone-experimental/classes/esw.bbclass b/meta-xilinx-standalone-experimental/classes/esw.bbclass index f9373b7a..f13df66b 100644 --- a/meta-xilinx-standalone-experimental/classes/esw.bbclass +++ b/meta-xilinx-standalone-experimental/classes/esw.bbclass @@ -53,9 +53,9 @@ def get_xlnx_cmake_processor(tune, machine, variant, d): cmake_processor = 'plm_microblaze' else: cmake_processor = 'microblaze' - elif tune == 'cortexr5': + elif (tune in [ 'cortexr5', 'cortexr5hf' ]): cmake_processor = 'cortexr5' - elif tune == 'cortexr52': + elif (tune in [ 'cortexr52', 'cortexr52hf' ]): cmake_processor = 'cortexr52' elif tune.startswith('cortexa9'): cmake_processor = 'cortexa9' diff --git a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc index 62c5a211..e38342b5 100644 --- a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc +++ b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc @@ -15,6 +15,7 @@ ESW_CFLAGS ?= "" # Cortex R5 requires an additional cflag to be passed for compatibility with the embeddedsw TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexr5', ' -DARMR5', '', d)}" +TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexr52', ' -DARMR5 -DARMR52', '', d)}" TUNE_CCARGS:append:versal = " -Dversal" TUNE_CCARGS:append:versal-net = " -DVERSAL_NET" -- cgit v1.2.3-54-g00ecf From 2f9c54420e1deb5a9b27d84af58ff59ff23715be Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 12 Feb 2024 20:38:59 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_7175 axiethernet: Add support for compiling driver examples in yocto flow sw_apps: Update cmake version for standalone lwip apps in yocto flow dmaps: Add support for compiling driver examples in yocto flow v_hdmirxss: xhdmi_example: Update HDCP logic to support system device-tree flow for versal boards. v_hdmitxss1: Add xparameters.h to fix compilation errors v_hdmitxss: xhdmi_example: Update HDCP logic to support system device-tree flow for versal boards. v_hdmirxss: xhdmi_example: Fix HDMIRX/HDMITX Interrupt registration out of platform dependency. v_hdmirxss1:xhdmi_example: Update HDCP logic to support system device-tree flow. sw_services: xilsecure: Support for AES Operation and Zeroize Key ospipsv: Update OSPI TX tap delay element to 0x26 for DDR mode ospipsv: Increase the hold time after device reset ospipsv: Add OSPI controller reset for hardware pin reset mipicsiss: Support of SDT flow to selftest application. mipicsiss: Support of SDT flow to Interrupt application mipicsiss: SDT flow support for SP701 example application mipicsiss: data: Update yaml to support import example --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index ae7d39cd..dc675f2b 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "5cbc2349518b348aeffd9e912d64310b9684e26d" +ESW_REV[2024.1] = "0f81f645baa336557786380209de137aa5a51da3" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 61175d113cf6a76cc7fbb87f149c01e3c93584eb Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 13 Feb 2024 15:07:05 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5955 xilsecure: versal_net SDT support xilocp: versal_net SDT support xilcert: versal_net SDT support xilpuf: versal_net SDT support versal_plm: versal_net SDT support fs-boot: fixing flash issues sdi: Add support for KCU116 SDT flow audio_formatter: Add SDT support for audio formatter i2s: Add SDT support for i2s sound card driver drivers: Fix compilation errors reported by IAR --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index dc675f2b..24222f80 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "0f81f645baa336557786380209de137aa5a51da3" +ESW_REV[2024.1] = "77a32db3129d7da8951bb44bcd929dfa57a34508" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 6237d8c1fd0940dceb2d11d7ca20e3a284053f4a Mon Sep 17 00:00:00 2001 From: Ben Levinsky Date: Fri, 9 Feb 2024 08:00:49 -0800 Subject: meta-xilinx-standalone-experimental: open-amp: pick up multiconfig recipe Update to use latest open-amp and MC recipe. Signed-off-by: Ben Levinsky Signed-off-by: Mark Hatle --- .../recipes-openamp/open-amp/open-amp-xlnx_%.bbappend | 1 + meta-xilinx-standalone/conf/distro/xilinx-standalone.inc | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 meta-xilinx-standalone-experimental/recipes-openamp/open-amp/open-amp-xlnx_%.bbappend (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone-experimental/recipes-openamp/open-amp/open-amp-xlnx_%.bbappend b/meta-xilinx-standalone-experimental/recipes-openamp/open-amp/open-amp-xlnx_%.bbappend new file mode 100644 index 00000000..88b45295 --- /dev/null +++ b/meta-xilinx-standalone-experimental/recipes-openamp/open-amp/open-amp-xlnx_%.bbappend @@ -0,0 +1 @@ +require ${LAYER_PATH_openamp-layer}/vendor/xilinx/meta-xilinx-standalone-experimental/recipes-openamp/open-amp/open-amp-xlnx.inc diff --git a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc index e38342b5..4d591707 100644 --- a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc +++ b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc @@ -29,8 +29,7 @@ COMPATIBLE_HOST ?= "${COMPATOS}" # Clear defaults PREFERRED_PROVIDER_virtual/kernel = "linux-dummy" PREFERRED_PROVIDER_libmetal = "libmetal-xlnx" - -PREFERRED_VERSION_open-amp-xlnx = "${@'standalone' if 'xilinx-standalone-exp' in d.getVar('BBFILE_COLLECTIONS').split() else ''}" +PREFERRED_PROVIDER_open-amp = "open-amp-xlnx" # Workaround for pulling in nativesdk-mingw-w64-winpthreads TOOLCHAIN_HOST_TASK:append:sdkmingw32 = " nativesdk-mingw-w64-winpthreads" -- cgit v1.2.3-54-g00ecf From e2695ca2050868aa412cc2b8c0a37e2c071bf67b Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 14 Feb 2024 17:44:27 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_1195 dfemix: Support Baremetal SDT Yocto Flow sysmonpsu: Support Baremetal SDT Yocto Flow sw_services:xilplmi: XilNvm & XilPuf Enable by Default xilffs: Fix build failure when XILFFS_use_strfunc is enabled --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 24222f80..98acc05b 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "77a32db3129d7da8951bb44bcd929dfa57a34508" +ESW_REV[2024.1] = "9957d310871af8fbae69bfdc6982715bfc57ca87" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From e953d1afc7d8c71a7ad04b809232deadbc94ec81 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 15 Feb 2024 16:23:33 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8451 xilpm: Add additional secure lockdown support lib: sw_apps: openamp: sdt: Update to use latest Lopper and OpenAMP Repo xilloader : Update XLoader_ReadAndValidateHdrs prototype freertos10_xilinx: Port FreeRTOS interrupt example to SDT flow freertos10_xilinx: ARM_CA9: Add support for xiltimer and SDT freertos10_xilinx: ARM_CR5: Update data type for ucInterruptID sw_services: xilsecure: Update CMakeLists.txt for new files scripts:library_utils: Add silent discard option while validating library against BSP sw_services: updated return type for IsCryptoKatEn and IsFipsModeEn xilplmi: optimized u8 variables xilloader: optimized u8 variables sysmonpsv: Added SSIT Support dfeofdm: Support Baremetal SDT Yocto Flow sysmon: Support Baremetal SDT Yocto Flow --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 98acc05b..30b65faf 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" -ESW_REV[2024.1] = "9957d310871af8fbae69bfdc6982715bfc57ca87" +ESW_REV[2024.1] = "754a400b26b5f19f7f504a908a5724076548f92c" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 5b8c2e0ee565a384723ed5785abfac35bc167688 Mon Sep 17 00:00:00 2001 From: Sharath Kumar Dasari Date: Tue, 13 Feb 2024 10:37:10 +0530 Subject: xlnx-embeddedsw: Update 2023.2 branch to xlnx_rel_v2023.2_update System controller SC_update6 candidate release image is 2023.2 yocto based image which needs changes backported from ESW master to xlnx_rel_v2023.2_update branch Signed-off-by: Sharath Kumar Dasari Signed-off-by: Mark Hatle (cherry picked from commit 63a77a8627b431dbaf014258ce87aa9ed571b07c) Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 30b65faf..5e5c5415 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -5,13 +5,13 @@ REPO ??= "git://github.com/Xilinx/embeddedsw.git;protocol=https" ESW_BRANCH[git] = "master" ESW_BRANCH[2023.1] = "xlnx_rel_v2023.1_update" -ESW_BRANCH[2023.2] = "xlnx_rel_v2023.2" +ESW_BRANCH[2023.2] = "xlnx_rel_v2023.2_update" ESW_BRANCH[2024.1] = "master-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" -ESW_REV[2023.2] = "c9a0ee31b2a14cbcfcb56ca369037319b4ad4847" +ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" ESW_REV[2024.1] = "754a400b26b5f19f7f504a908a5724076548f92c" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" @@ -21,7 +21,7 @@ EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}" LICENSE = "MIT" LIC_FILES_CHKSUM[master] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM[xlnx_rel_v2023.1_update] = '3c310a3ee2197a4c92c6a0e2937c207c' -LIC_FILES_CHKSUM[xlnx_rel_v2023.2] = '9fceecdbcad88698f265578f3d4cb26c' +LIC_FILES_CHKSUM[xlnx_rel_v2023.2_update] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM[master-next] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('BRANCH')) or '0'}" -- cgit v1.2.3-54-g00ecf From 18fa381c4d126ee66e4efc96efb94a6979d4a38c Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 19 Feb 2024 17:40:28 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_1483 Updated commit ID to latest HEAD --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 5e5c5415..f6279658 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "754a400b26b5f19f7f504a908a5724076548f92c" +ESW_REV[2024.1] = "4a567e7c2085c8c117077556cd57ced406b9fa77" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From cef0128ffb0352b1234f753f8e485fcb1229a82c Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 20 Feb 2024 12:54:50 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5003 Updated commit ID to latest HEAD --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index f6279658..11556fad 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "4a567e7c2085c8c117077556cd57ced406b9fa77" +ESW_REV[2024.1] = "6e88dfcfcd113625d99327d3f6f598215d44ca38" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From d6b2c680d51e4bc1d25754d944e0fedd5b43261e Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 21 Feb 2024 17:39:22 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8351 dfeequ: Support Baremetal SDT Yocto Flow mipicsiss: example: Fix bug in the selftest example sw_services:xilplmi:Logic for DDRMC Calib Check Skip dfeccf: Support Baremetal SDT Yocto Flow --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 11556fad..f7015802 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "6e88dfcfcd113625d99327d3f6f598215d44ca38" +ESW_REV[2024.1] = "398ccbf46b05c9c10ba48dcba96c5a136ba4e09c" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From e7c05d5d2882f0a98f67ad56528c2a1d31f77453 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 22 Feb 2024 16:28:35 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_9919 zynqmp_pmufw: Fix MISRA-C violation for rule 10.4 xpsmfw:versal_net: inline function calls for update manager code. dfeprach: Support Baremetal SDT Yocto Flow xilsem:Fixed IPI interrupt ID for PL MB Versal Net. sw_services: xilpm: versal_net: Add PGGS/GGS permission for default subsystem sw_services: xilpm: Refactor PGGS/GGS permissions feature sysmonpsv: Support Baremetal SDT Yocto Flow scripts:repo.py: Correct the logic to prioritize the latest versioned drivers --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index f7015802..44e27d03 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "398ccbf46b05c9c10ba48dcba96c5a136ba4e09c" +ESW_REV[2024.1] = "2c4acd99524cadd813b9804fb3c1abd6112ec787" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 6516b64d591ec3527133176ae0d7d1dbccfa8fb0 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Sun, 25 Feb 2024 12:54:12 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_9955 mipicsiss: data: Update yaml file to support example designs sw_apps:versal_plm: Restore secure state config after inplace update sw_services:xilnvm:Extend secure state during efuse programming sw_services:xilloader:Add support to extend secure state sw_services:xilocp: Add support to extend secure state to SWPCR sw_apps: memory_tests: Update memory rejectlist xilpm:versal_common: xpm_device reset PendingReqm v_hdmitxss1: Fix compilation error in sdt flow v_hdmirxss1: Fix compilation error in sdt flow v_hdmitxss: Update HDCP Repeater example to support SDT flow. v_hdmirxss: Update HDCP Repeater example to support SDT flow. hdcp22_tx: Fix Yaml entries for HDCP hdcp22_rx: Fix Yaml entries for HDCP --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 44e27d03..11b35b88 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "2c4acd99524cadd813b9804fb3c1abd6112ec787" +ESW_REV[2024.1] = "95f8de2914609e6d80e52be188055a3b90db2e7d" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 386c5436af9a42d3215cdd37d9770092864c1878 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 26 Feb 2024 10:55:02 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_2855 dp14rxss: Fix yaml for hdcp mmult configuration entry --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 11b35b88..151dd0a4 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "95f8de2914609e6d80e52be188055a3b90db2e7d" +ESW_REV[2024.1] = "eb280ca6b137320128bfffcbe4c221aad0a20c90" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 06671950d1391bac97528d895f4085aaa4740210 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 28 Feb 2024 11:33:22 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_9571 sw_apps: zynqmp_fsbl: Add support to enable address mirroring --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 151dd0a4..fd253cc0 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "eb280ca6b137320128bfffcbe4c221aad0a20c90" +ESW_REV[2024.1] = "26f1beadc7f3222b69f08683a1c410391352b255" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 9ce335dfe0ab6648f8346986856952e6991722a0 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 29 Feb 2024 17:51:18 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8135 Revert "sw_services: xilloader: Enhance Extract Metaheader command to get optional data" plm: versal_net: Ack In-Place PLM Update request only after Done sw_services:xilloader:Added Support for Infineon flash part v_sdirxss: SDT flow kcu116/vck190 apps restructure v_sditxss: Fix SDT flow pixco app name elaborate scugic: Fix compilation errors reported by C++ compiler i3c: Add Read/write FIFO depth config parameter i3c: Remove repeated start check and update XI3c_MasterRecvPolled i3c: Remove XI3c_ResetFifos from XI3C_BusInit and examples sw_services:xilsecure:Added enable configuration for ECC curve. qspips: src: Add missing parenthesis for macro expansions xilpm: versal_common: server: Remove XPm_IdleRestartHandler Warp Example App: Fix for interrupt callbacks sw_apps: imgsel: Fix zynqmp image selector app hang in usleep sw_services:xilocp:Add support for DME extension sw_services:xilcert:Add support for DME extension bsp:standalone: Add Xil_SChangeEndiannessAndCpy API lib: xlnx: Avoid mapping in MPU for region mapped by bsp sw_apps:versal_plm: Enabled PDI load status prints in debug level-0 sw_services: xilsecure: Update XPlmi_DmaXfr passing argument to word level scripts: pyesw: utils: Add support for read-only embeddedsw usecase sw_services: xilloader: Enhance Extract Metaheader command to get optional data xpsmfw:versal_net: fix assertion on event --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index fd253cc0..cb8fd5e5 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "26f1beadc7f3222b69f08683a1c410391352b255" +ESW_REV[2024.1] = "688e76e473a8936170b1a453f52a751ab64fefda" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From b70daf7b696934f402decd5a26b1cc1d26386029 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Fri, 1 Mar 2024 12:55:34 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_5095 sysmonpsv: Initial Config Struct xilpm:versal_common: Fix race condition for APU power event handlers xilsem: Removed dummy options in xilsem MLD file. mipicsiss: example: Remove extra code mipicsiss: data: fix yaml file syntax --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index cb8fd5e5..89f6e3b7 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "688e76e473a8936170b1a453f52a751ab64fefda" +ESW_REV[2024.1] = "4ccd83489471c387f4d63f7257727624296dd9c3" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 72f739eead6e87f5f42082d052fe808677d61b90 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 4 Mar 2024 14:51:38 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_6731 sw_services: xilpm: remove unused macro sw_apps: zynqmp_fsbl: Fixes build failure if no uarts enabled in the design scripts: pyesw: utils: Update the get_domain_name to loop over all subsystems sw_services: xilloader: Enhance Extract Metaheader command to get optional data lwip : Fix Syntax Error sw_apps: zynqmp_pmufw: Add SOM specific macros --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 89f6e3b7..a3798e67 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "4ccd83489471c387f4d63f7257727624296dd9c3" +ESW_REV[2024.1] = "d127712975e2c01d9893f7628727f1f2472da65d" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From c2cf981f67cc7c6989a4c728c5538aacf10a480d Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Thu, 7 Mar 2024 18:55:17 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_4539 xilplmi: Set LogCdoOffset by default in JTAG boot mode xilpm:versal-net: Add support to restore PGGS and GGS devices sw_services:xilnvm:Added support for eFuse programming from linux sw_services: xilpuf: Added support to compile example in Yocto Flow sw_services: xilnvm: Added support to compile example in Yocto Flow xilloader: Make SD drive number logic order independent dsitxss: Update yaml and application to support unified flow mipicsiss: Update yaml and examples for Unified flow. sw_apps: memory_tests: Fix prints for 32 bit platforms BSP: Support printing 64 bit variables from 32 bit platforms BSP: riscv: Add support for standard C input output functions sw_services: xilskey: Added support to compile example in Yocto Flow sw_services: xilsecure: Added support to compile example in Yocto Flow trngpsx: Fix issue in PRNG set and reset sw_services:xilsecure:Updated parameter description for XSecure_IsNonZeroBuffer xilsem: Fixed Event notification issue in XilSEM Client examples. psmfw: Add psmfw update to rigel build flow sw_services: xil_timer: Update sleep timer for APU processors. sw_services: xilplmi: Restore CUSTOM error actions handled by PLM after In-place PLM update BSP: cortexr5: Add new structure for initializing MPU regions dp21txss:dp21rxss:Modified the dp21 txo and rxo applications dfeofdm: Correct sw major/minor version numbers dfeccf: Update version number in makefiles dfemix: Update version number in makefiles Add Authentication Optimization support for MetaHeader Revert "Revert "sysmonpsv: Added SSIT Support"" xilpm: versal: server: Fix bug in checking for device parent is NPD Revert "sysmonpsv: Added SSIT Support" --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index a3798e67..17d595a6 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "d127712975e2c01d9893f7628727f1f2472da65d" +ESW_REV[2024.1] = "7a819824db758891fede738bd35170c54473e954" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 2c3586f8c2beff111901c7de76963e0d5ee24392 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Sat, 9 Mar 2024 12:56:06 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_8459 sw_apps: imgsel: versal image selector build failure fix Revert "Add Authentication Optimization support for MetaHeader" i3c: Correct byte count return type i3c: Add data comparison check and msb byte assignment in examples v_hdmirxss1: Fix yaml file for pass-through app on vck190 dp14rxss: examples: Update self_test_example for new sdt flow. dp14txss: examples: Fix yaml for eeprom utility application example dp12txss: Fix yaml file for tx_only example applcation for zcu102 axicdma: Revise the interrupt attribute in yaml --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 17d595a6..dab02a5b 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "7a819824db758891fede738bd35170c54473e954" +ESW_REV[2024.1] = "62ef435cd5601d276aaa5da9c72cbe1532dbf352" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From a3ab3824dc3127fe1a9f03e2b6156e2deab7c923 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 11 Mar 2024 12:55:58 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_7755 xilsem: Fixed IPI notification for SDT flow. openamp: apps: Enable DDR sections to be configured from command line xilplmi: Corrected debug level XilSEM options for VP1902 device. xilsem: Enable XilSEM macros for VP1902 device. lib: bsp: standalone: Add examples in yaml file lib: bsp: standalone: Fix xil_nested_interrupts_example compilation error ipipsu: Add Doxygen fixes sw_services:xilplmi:Modification is done to consider error in S-SLR PMC CDO --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index dab02a5b..96112685 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "62ef435cd5601d276aaa5da9c72cbe1532dbf352" +ESW_REV[2024.1] = "69d24c5a0f40a403004ced79a7c3c2cedd424049" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 4bb65e36181ea0c23689dceb802e2e41083c771d Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Thu, 7 Mar 2024 13:00:29 -0600 Subject: xlnx-embeddedsw: Move to xlnx_rel_v2024.1-next branch Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 96112685..cf4a6432 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -6,7 +6,7 @@ REPO ??= "git://github.com/Xilinx/embeddedsw.git;protocol=https" ESW_BRANCH[git] = "master" ESW_BRANCH[2023.1] = "xlnx_rel_v2023.1_update" ESW_BRANCH[2023.2] = "xlnx_rel_v2023.2_update" -ESW_BRANCH[2024.1] = "master-next" +ESW_BRANCH[2024.1] = "xlnx_rel_v2024.1-next" BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" @@ -22,7 +22,7 @@ LICENSE = "MIT" LIC_FILES_CHKSUM[master] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM[xlnx_rel_v2023.1_update] = '3c310a3ee2197a4c92c6a0e2937c207c' LIC_FILES_CHKSUM[xlnx_rel_v2023.2_update] = '9fceecdbcad88698f265578f3d4cb26c' -LIC_FILES_CHKSUM[master-next] = '9fceecdbcad88698f265578f3d4cb26c' +LIC_FILES_CHKSUM[xlnx_rel_v2024.1-next] = '9fceecdbcad88698f265578f3d4cb26c' LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', d.getVar('BRANCH')) or '0'}" SRC_URI = "${EMBEDDEDSW_SRCURI}" -- cgit v1.2.3-54-g00ecf From 48d936048f21f5dee8cb1ed268231c0fcfb9b288 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Wed, 13 Mar 2024 22:36:29 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_7115 lib: sw_apps: open-amp: Wrap SHARED_MEM_PA symbol in ifndef rfdc: Remove redundant clock from examples video_common: Add DynamicRange structure parameter video_common: Add DynamicRange structure parameter dp21: Add MSA macro definations to get/set the MSA attributes of a video format dp21txss: Add XDPTxss_SetMsa() dp21rxss: Add XDPRxss_GetMsa() dp21rxss: Add yaml changes to support import examples dp21txss: Add yaml changes to support import examples dp21txss: examples: Add support for system device-tree flow dp21rxss: examples: Update rx_only example to support sdt flow lib: sw_services: xiltimer: Update the processor checks for VersalNet platform drivers: Add device_type field in the driver yamls ThirdParty: Update the dependent section order PS peripherals first lib: sw_apps: Add required_mem section scripts: pyesw: Add support for hardware error validation lib: sw_services: xilsecure: Use cmake_warning macro ThirdParty: sw_services: lwip220: src: lwip220.cmake: Use cmake_error macro cmake: Findcommon: Add custom macros for error and warning message lib: sw_services: Update cmake and yaml files for VersalNet sw_services: xilloader: Add code to handle sub-partition for APU Subsystem v_sdirxss: fix kcu116 application baseaddress axis_switch: Add find_package common bsp: arm: Update the ARM PMU counters reset logic Xilsem:Add Client interface to read Total frames of a Row in SSIT devices scugic: Add support for compiling examples in Yocto flow qspipsu: Revise the export feedback clock property logic in tcl Xilsem:Add Server interface to send Total frames of a row in SSIT device --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index cf4a6432..1e9e3729 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "69d24c5a0f40a403004ced79a7c3c2cedd424049" +ESW_REV[2024.1] = "ad038fbbeccd66f126ad80980452b8fecee60e4f" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From ccd0c4094bddc7e954c7ca985e1a3b462b334e81 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Wed, 13 Mar 2024 14:33:52 -0600 Subject: xlnx-embeddedsw: Update AUTOREV When using AUTOREV with BB_NO_NETWORK = '1', the system would fail with a circular dependency on a parse error. Adding the skip code, and moving the default value to 'INVALID' will ensure that the user is notified with an appropriate error, and no parse issues occur. Signed-off-by: Mark Hatle --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index 1e9e3729..d5b8ef82 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -13,7 +13,7 @@ ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" ESW_REV[2024.1] = "ad038fbbeccd66f126ad80980452b8fecee60e4f" -SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or '${AUTOREV}'}" +SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or 'INVALID'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" EMBEDDEDSW_SRCURI ?= "${REPO};${EMBEDDEDSW_BRANCHARG}" @@ -27,3 +27,13 @@ LIC_FILES_CHKSUM ??= "file://license.txt;md5=${@d.getVarFlag('LIC_FILES_CHKSUM', SRC_URI = "${EMBEDDEDSW_SRCURI}" PV .= "+git${SRCPV}" + +python() { + if d.getVar('BB_NO_NETWORK') == '1': + try: + # Just evaluating SRCPV / SRCREV can trigger an exception when BB_NO_NETWORK is enabled. + var = d.getVar('SRCPV') + var = d.getVar('SRCREV') + except: + raise bb.parse.SkipRecipe('BB_NO_NETWORK is enabled, can not fetch SRCREV (%s)' % d.getVar('SRCREV')) +} -- cgit v1.2.3-54-g00ecf From 5ae412cfed7fa68e0cda39faa7bd714b3d5b32af Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Mon, 18 Mar 2024 19:15:36 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_7691 lib: sw_apps: Fix the race condition when picking a linker from an external path scripts: pyesw: retarget_app: Remove the dependency of xiltimer in embedded applications sw_apps: imgsel: zynqmp: Added validation check for SOM usecase rfdc: CMakeLists dependencies dfeprach: CMakeLists dependencies dfeofdm: CMakeLists dependencies dfemix: CMakeLists dependencies dfeequ: CMakeLists dependencies dfeccf: CMakeLists dependencies trngpsv: Fix doxygen warnings xilpm: versal_common: server: fix MISRA-C rule 4.7 sw_apps: Added support for Microblaze RISC-V sw_services:xilsecure:Code redundancy is removed pciepsu: Add Egress transfer support Add Authentication Optimization support for MetaHeader zynq_fsbl: fix prints for 32 bit variables zynqmp_fsbl: fix prints for 32 bit variables xilplmi: fix prints for 32 bit variables dp14txss:dp14rxss: Removed the option of self_test example design BSP: cortexr5: Move the _TCM_*_REGION definitions to a C source file drivers:trngpsv:updated yaml file xilloader: macronix 2G flash part support xilpm: Secure lockdown house clean time out Revert "xilpm: versal_net: client: add idle call back support" csudma: Add doxygen fixes --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index d5b8ef82..f355f5fd 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "ad038fbbeccd66f126ad80980452b8fecee60e4f" +ESW_REV[2024.1] = "594958ff1630ffd0488b9e0bac9cb9473c05098b" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or 'INVALID'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf From 525bc764ee57e10e46c219e8b755e956b7f3c5e6 Mon Sep 17 00:00:00 2001 From: Sivaprasad Addepalli Date: Tue, 19 Mar 2024 16:53:34 +0530 Subject: embeddedsw : Updated SRCREV for 2024.1_7775 lib: bsp: standalone: Add symbol VERSAL for versal platform in SDT flow v_hdmitxss: Fix interrupt ID argument in interrupt setup function v_hdmirxss: Fix interrupt ID argument in interrupt setup gpiops: Add multi-core interrupt support --- meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-standalone') diff --git a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass index f355f5fd..7284f21d 100644 --- a/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass +++ b/meta-xilinx-standalone/classes/xlnx-embeddedsw.bbclass @@ -12,7 +12,7 @@ BRANCH ??= "${@d.getVarFlag('ESW_BRANCH', d.getVar('ESW_VER')) or '${ESW_VER}'}" ESW_REV[git] = "${AUTOREV}" ESW_REV[2023.1] = "af784f742dad0ca6e69e05baf8de51152c396b9a" ESW_REV[2023.2] = "73f0904e41cc109f18bb19a5329d0e5a66af2434" -ESW_REV[2024.1] = "594958ff1630ffd0488b9e0bac9cb9473c05098b" +ESW_REV[2024.1] = "e367a6b8df2a30b12e5c88157afd98322a06c8a6" SRCREV ??= "${@d.getVarFlag('ESW_REV', d.getVar('ESW_VER')) or 'INVALID'}" EMBEDDEDSW_BRANCHARG ?= "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH') != '']}" -- cgit v1.2.3-54-g00ecf