summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* meta-xilinx-core: layer.conf: Temporarily disable kernel-modules-{hdmi,dp}Mark Hatle2024-01-161-0/+3
| | | | | | | These two modules do not currently compile with Linux 6.6. Disable until they do work. Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* perf: Update perf to work with Linux 6.6Mark Hatle2024-01-165-0/+622
| | | | | | | | | | Update perf to match Yocto project master. This requires both libtraceevent and the updated perf integration. This version was taking from Poky master commit: 61182659c212db24e52cdbcdbb043c7b0de86094 Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* linux-xlnx_2024.1: Move 2024.1 version to Linux 6.6.0Sandeep Gundlupet Raju2024-01-161-4/+4
| | | | | | | | 1. Move 2024.1 version to Linux 6.6.0 2. Update yocto-kernel-cache to upstream yocto-6.6 version. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* linux-xlnx_2024.1: Add work for kernel do_install issueMark Hatle2024-01-161-0/+8
| | | | | | | | | | | | | | kernel_do_install task fails with 6.6 kernel with below errors: | DEPMOD /scratch1/sandeep/yocto/2024.1/yp-dev/build-zynqmp/tmp/work/zynqmp_generic-xilinx-linux/linux-xlnx/6.6.0-xilinx-v2024.1+gitAUTOINC+340eed5001-r0/image/lib/modules/6.6.0-xilinx-v2024.1-g340eed500130 | -ae -F System.map 6.6.0-xilinx-v2024.1-g340eed500130 | rm: cannot remove '/scratch1/sandeep/yocto/2024.1/yp-dev/build-zynqmp/tmp/work/zynqmp_generic-xilinx-linux/linux-xlnx/6.6.0-xilinx-v2024.1+gitAUTOINC+340eed5001-r0/image/lib/modules/6.6.0-xilinx-v2024.1-g340eed500130/source': No such file or directory | WARNING: /scratch1/sandeep/yocto/2024.1/yp-dev/build-zynqmp/tmp/work/zynqmp_generic-xilinx-linux/linux-xlnx/6.6.0-xilinx-v2024.1+gitAUTOINC+340eed5001-r0/temp/run.do_install.609800:186 exit 1 from 'rm "/scratch1/sandeep/yocto/2024.1/yp-dev/build-zynqmp/tmp/work/zynqmp_generic-xilinx-linux/linux-xlnx/6.6.0-xilinx-v2024.1+gitAUTOINC+340eed5001-r0/image/lib/modules/6.6.0-xilinx-v2024.1-g340eed500130/source"' Scarthgap already has code to make the 'rm' operation condition of existence, so this code will not be needed there. Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* Updated Commit IDSiva Addepalli2024-01-161-0/+0
| | | | | gen-machineconf: Add CLI option(--add-config) to update system configuration Signed-off-by: Siva Addepalli <sivaprasad.addepalli@xilinx.com>
* u-boot-xlnx: Fix string trailing character strip issueSandeep Gundlupet Raju2024-01-141-1/+1
| | | | | | | | | | | | | | | | | | | Using python rstrip operations it will strip all the combinations of its values. For example in below code BASE_DTS ?= "${@os.path.basename(d.getVar('CONFIG_DTFILE') or '').rstrip('.dtb').rstrip('.dts') or 'system-top'}" if CONFIG_DTFILE name is cortexa53-0-zynqmp-baremetald or cortexa53-0-zynqmp-freertos resulting output with rstrip will be cortexa53-0-zynqmp-baremetal cortexa53-0-zynqmp-freerto Hence instead of using rstrip use os.path.splitext to remove .dtb or .dts extension from file name. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* device-tree: Fix string trailing character strip issueSandeep Gundlupet Raju2024-01-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Multiconfig freertos device-tree do configure task fails with below errors: ERROR: mc:cortexa53-0-zynqmp-freertos:device-tree-1.0-r0 do_configure: Unable to find cortexa53-0-zynqmp-freerto.dts, to use EXTRA_OVERLAYS you must set a valid CONFIG_DTFILE or use system-top.dts ERROR: mc:cortexa53-0-zynqmp-freertos:device-tree-1.0-r0 do_configure: ExecutionError('/scratch/sandeep/yocto/2024.1/yp-dev/build-sdt/tmp-cortexa53-0-zynqmp-freertos/work/xlnx_zynqmp_zcu102_rev1_0-xilinx-elf/device-tree/1.0-r0/temp/run.do_configure.3127586', 1, None, None) ERROR: Logfile of failure stored in: /scratch/sandeep/yocto/2024.1/yp-dev/build-sdt/tmp-cortexa53-0-zynqmp-freertos/work/xlnx_zynqmp_zcu102_rev1_0-xilinx-elf/device-tree/1.0-r0/temp/log.do_configure.3127586 ERROR: Task (mc:cortexa53-0-zynqmp-freertos:/scratch/sandeep/yocto/2024.1/yp-dev/sources/poky/../meta-xilinx/meta-xilinx-core/recipes-bsp/device-tree/device-tree.bb:do_configure) failed with exit code '1' NOTE: Tasks Summary: Attempted 851 tasks of which 769 didn't need to be rerun and 1 failed. Using python rstrip operations it will strip all the combinations of its values. For example in below code BASE_DTS ?= "${@os.path.basename(d.getVar('CONFIG_DTFILE') or '').rstrip('.dtb').rstrip('.dts') or 'system-top'}" if CONFIG_DTFILE name is cortexa53-0-zynqmp-baremetald or cortexa53-0-zynqmp-freertos resulting output with rstrip will be cortexa53-0-zynqmp-baremetal cortexa53-0-zynqmp-freerto Hence instead of using rstrip use os.path.splitext to remove .dtb or .dts extension from file name. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* soc-tune-include.inc: Enable tune files for Cortex-R52 processorSandeep Gundlupet Raju2024-01-141-0/+1
| | | | | | | Enable tune files for Cortex-R52 processor. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* lopper: Update srcrev for 2024.1Appana Durga Kedareswara rao2024-01-121-1/+1
| | | | | | | | | | | | | lopper: assists: xlnx_overlay_dt: Update the interrupt-parent references in pl.dtsi lopper: assists: gen_domain_dts: Update symbol node gic entries as per latest change lopper: assists: gen_domain_dts: Fix race condition for pl microblaze based system device-tree lopper: assists: gen_domain_dts: Update comments lopper: assists: baremetalconfig_xlnx: Don't generate config file when it is not needed assists: bmcmake_metadata_xlnx: Add check for interrupt property lopper: assists: xlnx_overlay_dt: Add outdir support for pl.dtsi generation Signed-off-by: Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* embeddedsw : Updated SRCREV for 2024.1_5259Sivaprasad Addepalli2024-01-121-1/+1
| | | | | | | | | | 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
* Updated Commit IDSiva Addepalli2024-01-121-0/+0
| | | | | | | | Remove clk_ignore_unused from generated configs lib:kconfig_syshw.py: Python module to create Kconfig.syshw sdt-description.tcl: Move sdt-description.tcl into python Signed-off-by: Siva Addepalli <sivaprasad.addepalli@xilinx.com>
* embeddedsw : Updated SRCREV for 2024.1_8539Sivaprasad Addepalli2024-01-111-1/+1
| | | | | | | | | | | | 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
* u-boot-xlnx : Updated SRCREV for 2024.1_5943Sivaprasad Addepalli2024-01-111-1/+1
| | | | | | | arm64: versal: Move ethernet phys to mdio node arm64: dtsi: update interrupts and interrupt-names for usb arm64: xilinx: Remove multiple blank lines from DTSes arm64: zynqmp: Replace - by _ in fclk clock nodes
* embeddedsw : Updated SRCREV for 2024.1_3303Sivaprasad Addepalli2024-01-111-1/+1
| | | | | | | | | | | | | 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
* Updated Commit IDSiva Addepalli2024-01-111-0/+0
| | | | | | | | | lib: multiconfigs: Use enhanced option in RunLopperPlOverlaycommand() API README.md: Update parse-sdt help usage multiconfigs.py: Update lopper xlnx overlay dt commands sdt_flow.py: Add gen-pl-overlay args Signed-off-by: Siva Addepalli <sivaprasad.addepalli@xilinx.com>
* Updated SRCREV of vdu-modules for 2024.1_7259Siva Addepalli2024-01-101-1/+1
| | | | | VDU: make driver compatible with 6.6 kernel version Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* lopper: Update SRCREV for 2024.1Sandeep Gundlupet Raju2024-01-101-1/+1
| | | | | | | | | Changelogs: lopper: assists: gen_domain_dts: fix race condition in the size cells handling lops: openamp: Update lops to be scalable for Linux boot with latest Lopper outputs lopper: assists: baremetal_gentestapp_xlnx: make the Interrupt Controller example as the primary example Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* Updated SRCREV of vdu-firmware for 2024.1Hibitha B Raj2024-01-101-1/+1
| | | | | Signed-off-by: Hibitha B Raj <hibitha.braj@amd.com> Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* arm-trusted-firmware : Updated SRCREV for 2024.1_8063Sivaprasad Addepalli2024-01-101-1/+1
| | | | | | | refactor(xilinx): move plat_get_syscnt_freq2 to common file refactor(versal-net): rename VERSAL_NET_IOU_SCNTRS register to generic fix(versal-net): setup counter frequency fix(versal): initialize cntfrq_el0 register
* embeddedsw : Updated SRCREV for 2024.1_8203Sivaprasad Addepalli2024-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | 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.
* Updated Commit IDSiva Addepalli2024-01-091-0/+0
| | | | | lib: multiconfigs: Generate the Linux device tree using Lopper gen_domain_dts assist Signed-off-by: Siva Addepalli <sivaprasad.addepalli@xilinx.com>
* common: Create the meta-data directly in the component source folderAppana Durga Kedareswara rao2024-01-061-3/+3
| | | | | | | Run lopper comamnds inside component source folder itself. Signed-off-by: Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* Updated SRCREV of vcu-modules for 2024.1_5787Siva Addepalli2024-01-061-1/+1
| | | | | VCU: make driver compatible with 6.6 kernel version Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* xrt, zocl: Update commit idsaumya garg2024-01-061-1/+1
| | | | | | | | | | | | | | Changelog: Initial HIP binding build support using headers from standard HIP install (#7867) Initial Zocl Changes (#7868) P1 - Initial changes for removal of xcl apis (#7860) Mantic (#7864) EDGEML-7018 Error during static global destruction (#7865) VITIS-10999 Prevent display of power data if no power sensor data is present (#7862) Update dependency installation, build and packaging scripts for AlmaLinux9 (#7861) Signed-off-by: saumya garg <saumya.garg@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* README.md: Add Xen build and boot instructionsSandeep Gundlupet Raju2024-01-061-1/+115
| | | | | Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* layer.conf: Add security and tpm-layer dependencySandeep Gundlupet Raju2024-01-061-0/+2
| | | | | | | | vitrualization layer depends on security and tpm-layer so add these layes to xilinx-virtualization LAYERDEPENDS. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* xorg-xserver: Move xen variables from petalinux layerSandeep Gundlupet Raju2024-01-061-0/+8
| | | | | | | | Move xen xorg-xserver config variables from meta-petalinux to meta-xilinx-virtualization layer. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* qemu: Move xen recipes and files from petalinux layerSandeep Gundlupet Raju2024-01-0633-0/+4514
| | | | | | | | Move qemu xen recipes and files from meta-petalinux to xilinx-virtualization layer. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* layer.conf: Set PREFERRED VERSION for xen and xen-toolsSandeep Gundlupet Raju2024-01-061-0/+3
| | | | | | | Set PREFERRED VERSION for xen and xen-tools to 4.17. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* xen: Move xen recipes and files from petalinux layerSandeep Gundlupet Raju2024-01-0613-0/+1580
| | | | | | | | Move xen recipes and files from meta-petalinux to xilinx-virtualization layer exlcuding example configuration and passthrough device tree. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* meta-xilinx: Add new sub layer for xen featuresSandeep Gundlupet Raju2024-01-063-0/+63
| | | | | | | Add new sub layer meta-xilinx-virtualization for xen features. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* embeddedsw : Updated SRCREV for 2024.1_2463Sivaprasad Addepalli2024-01-061-1/+1
| | | | | | | | | | | | | | | 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
* linux-xlnx : Updated SRCREV for 2024.1_7575Sivaprasad Addepalli2024-01-051-1/+1
| | | | | firmware: xilinx: Remove zynqmp_pm_write_aes_key*() nvmem: Use versal_pm_aes_key_write
* u-boot-xlnx : Updated SRCREV for 2024.1_5447Sivaprasad Addepalli2024-01-041-1/+1
| | | | | mtd: spi-nor: Add IS25LP02G flash support clk: zynqmp: enable topsw_lsbus clock
* lopper: Update srcrev for 2024.1Appana Durga Kedareswara rao2024-01-031-1/+1
| | | | | | | | | | | | | | | Below are the updates openamp: xlnx: Update RPMsg kernel mailbox output lopper: assists: baremetalconfig_xlnx: Update the get_label() API to read xlnx,name property lopper: assists: Add support for VersalNet linux device-tree generation assists: baremetal_gentestapp_xlnx: Don't generate Instance names for selftest lopper: lops: Rename the interrupt-controller node to inline with existing linux device-tree entries lopper: assists: gen_domain_dts: Add support for linux device-tree generation lopper: assists: correct memory size when the size crosses 32 bit lopper:assists:baremetal_config: Correct the pci range mapping Signed-off-by: Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com> Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* Updating VDU license file checksumVirendra Nakaskar2024-01-033-3/+3
| | | | | | | | | | | | | | | | | | | | | libvdu-omxil change: vdu: add HEVC index and type fix: add missing ToStringValue feat(app): device selection chore: update to revision d20230724 libvdu-ctrlsw change: fix: add missing mask chore: update to revision d20230724 Support for reserved memory with start address not aligned on 2GB Revert "Adding support for vdu-auto-instance vdu-firmware change: chore: update to revision d20230724 Support for reserved memory with start address not aligned on 2GB Signed-off-by: Virendra Nakaskar <Virendra.Nakaskar2@amd.com> Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* Updated SRCREV of vdu-ctrl-sw for 2024.1_4811Siva Addepalli2024-01-031-1/+1
| | | | | | | | | fix: add missing mask chore: update to revision d20230724 Support for reserved memory with start address not aligned on 2GB reintegration Revert Adding support for vdu-auto-instance Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* Updated SRCREV of vdu-omx-il for 2024.1_7951Siva Addepalli2024-01-031-1/+1
| | | | | | | | | vdu: add HEVC index and type fix: add missing ToStringValue feat(app): device selection chore: update to revision d20230724 Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* Updated SRCREV of vdu-modules for 2024.1_9315Siva Addepalli2024-01-031-1/+1
| | | | | fix: xilinx implementation of add_memory Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* xilinx-standalone: libxil: Install Spec fileBen Levinsky2024-01-031-0/+4
| | | | | | | | | | Consumers of Libxil library in AMD-Xilinx BSP require use of Spec file for compilation. Install this so other consumers can use the Spec file. Signed-off-by: Ben Levinsky <ben.levinsky@amd.com> Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* kernel-module-mali: Replace vma->vm_flags modifications with modifier callsParth Gajjar2024-01-032-0/+82
| | | | | | | | Added 0028-Replace-vma-vm_flags-direct-modifications-with-modif.patch Replaced direct modifications to vma->vm_flags with modifier calls. Signed-off-by: Parth Gajjar <parth.gajjar@amd.com> Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* dfx_user_dts.bbclass: Fix build issue with bin and dtsi as inputSandeep Gundlupet Raju2024-01-031-1/+1
| | | | | | | | | | In dfx_user_dts.bbclass fix build issue with bin and dtsi as input file to firmware recipe. In case of bin file as input bootgen operation is not performed and directly copy from ${S} directory. Also remove check condition if dtbo with firmware-name doesn't exist which is not required in case of bin file as input. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* image-update: Added compatible versal machine to the recipeSharath Kumar Dasari2024-01-031-0/+1
| | | | | Signed-off-by: Sharath Kumar Dasari <sharath.kumar.dasari@xilinx.com> Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* xrt, zocl: Update commit idsaumya garg2024-01-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: Fix missing include (#7858) VITIS-10910 Separate Ryzen and Alveo devices in ReportHost List (#7856) Skeleton directory and build infrastructure for HIP bindings (#7857) Added checks to build XRT with GCC 9 on RHEL 8 (#7851) EDGEML-6881 Random test failure when looking for driver store path (#7855) AIE Profile Update to maintain equivalence between Edge/Client (#7852) cleanup debug plugin (#7850) Improvements to parsing AIE trace settings (#7848) Initial pass of AIE profile refactoring (#7846) Fixing XRT issue for Ubuntu 23.10 (#7841) setting concurrency to 1 if a pr is synchronized (#7849) Fix for CR-1183009 mem-bw test failing without platform.json (#7847) Add missing apt-get update to have an up-to-date package list (#7836) Enabling setting XRT install prefix to custom location on Linux build. (#1) (#7835) Add warning exception for early return (#7844) fixing lpddr dma issue (#7845) CR-1183009 Fix IOPS Validate Issue (#7843) patch fix for checkout in GHA (#7842) AIE profile fixes and re-formatting (#7832) Migrating XRT PR CI worklow to GHA (#7839) CR-1183009 Fix xbutil validate bugs in mem-bw and verify (#7837) VITIS-10247 Refactor device name mapping to use device class query (#7838) Initial refactoring of AIE trace plugins (#7813) Signed-off-by: saumya garg <saumya.garg@amd.com> Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* Updated SRCREV of vcu-omx-il for 2024.1_7299Siva Addepalli2024-01-031-1/+1
| | | | | chore: update to revision d20230920 Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
* embeddedsw : Updated SRCREV for 2024.1_5131Sivaprasad Addepalli2024-01-031-1/+1
| | | | | | | | | | | | | 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
* embeddedsw : Updated SRCREV for 2024.1_9163Sivaprasad Addepalli2024-01-021-1/+1
| | | | | | | | 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
* linux-xlnx : Updated SRCREV for 2024.1_2391Sivaprasad Addepalli2024-01-011-1/+1
| | | | misc: xilinx-ai-engine: fixed the bitmap resource in aie_part_set_column_clock_from_user API
* embeddedsw : Updated SRCREV for 2024.1_1507Sivaprasad Addepalli2024-01-011-1/+1
| | | | | | | | | | | | | | | | 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
* arm-trusted-firmware : Updated SRCREV for 2024.1_2083Sivaprasad Addepalli2023-12-301-1/+1
| | | | | | | docs(versal): add ERRATA_ABI_SUPPORT build documentation feat(versal): enable errata management feature feat(versal-net): add bufferless IPI Support build(versal-net): reorganize platform source files