summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/lib
Commit message (Collapse)AuthorAgeFilesLines
* boot-jtag.py: Add IMAGE_NAME_SUFFIX to tclSandeep Gundlupet Raju2024-08-161-1/+2
| | | | | | | | | | In scarthgap release, By default IMAGE_NAME_SUFFIX=".rootfs" set in image-artifact-name.bbclass, Due to this boot-jtag script doesn't include rootfs in .tcl script. Hence add IMAGE_NAME_SUFFIX to tcl script. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* boot-jtag.py: Remove stale importsAlain Péteut2024-06-201-10/+7
| | | | | | | | | | | | | | | | | Based on github Pull Request #61. 1. `yaml` is imported but not used. This may cause issues as `yaml` is not a standard library module. 2. Remove trailing newlines. Signed-off-by: Alain Péteut <alain.peteut@spacetek.ch> Update commit message and added PR number in commit message. Also update import list order. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* various: Remove SOC_VARIANT, split versal and versal-net, add machine_featuresMark Hatle2024-06-041-13/+17
| | | | | | | | | | | | | | | | | | | | | | | | SOC_VARIANT has been remove, we are now only using the YP standard SOC_FAMILY configuration. The defined families are: zynq, zynqmp, versal and versal-net. Our decision of breaking up versal-net from versal, is based on the SoC CPU changes from cortexa72/r5 to cortexa78/r52, thus we're treating it as a different SoC family. In order to capture the individual capabilities that we used to handle via SOC_VARIANT, we have defined the following features (some may have been previously defined): - mali400 (zynqmp eg and ev) - vcu (zynqmp ev) - rfsoc (zynqmp dr RF capabiltiies) - aie - (versal ai & premium) - vdu - (versal ai) SOC_VARIANT_ARCH and SOC_FAMILY_ARCH are now obsolete and replaced by MACHINE_ARCH. This is based on the guideline that any recipes that use MACHINE_FEATURES should be MACHINE_ARCH specific. Signed-off-by: Mark Hatle <mark.hatle@amd.com>
* boot-jtag.py: Add devtool script for jtag boot modeSandeep Gundlupet Raju2024-03-151-0/+272
This script uses devtool and creates a boot-jtag.tcl script in ${DEPLOY_DIR_IMAGE} directory. This script is executed by xsdb tool to boot yocto generated images on HW via jtag boot mode. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>