diff options
Diffstat (limited to 'meta-xilinx-core/recipes-bsp')
15 files changed, 0 insertions, 404 deletions
diff --git a/meta-xilinx-core/recipes-bsp/ai-engine/ai-engine-driver_3.3.bb b/meta-xilinx-core/recipes-bsp/ai-engine/ai-engine-driver_3.3.bb deleted file mode 100644 index 0b3effe2..00000000 --- a/meta-xilinx-core/recipes-bsp/ai-engine/ai-engine-driver_3.3.bb +++ /dev/null | |||
| @@ -1,46 +0,0 @@ | |||
| 1 | SUMMARY = "Xilinx AI Engine runtime" | ||
| 2 | DESCRIPTION = "This library provides APIs for the runtime support of the Xilinx AI Engine IP" | ||
| 3 | |||
| 4 | require aie-rt-2022.inc | ||
| 5 | |||
| 6 | SECTION = "libs" | ||
| 7 | |||
| 8 | AIEDIR ?= "${S}/driver" | ||
| 9 | S = "${UNPACKDIR}/git" | ||
| 10 | I = "${AIEDIR}/include" | ||
| 11 | |||
| 12 | inherit features_check | ||
| 13 | |||
| 14 | REQUIRED_MACHINE_FEATURES = "aie" | ||
| 15 | |||
| 16 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 17 | |||
| 18 | IOBACKENDS ?= "Linux" | ||
| 19 | |||
| 20 | DEPENDS = "${@bb.utils.contains('IOBACKENDS', 'metal', 'libmetal', '', d)}" | ||
| 21 | RDEPENDS:${PN} = "${@bb.utils.contains('IOBACKENDS', 'metal', 'libmetal', '', d)}" | ||
| 22 | |||
| 23 | PROVIDES = "libxaiengine" | ||
| 24 | RPROVIDES:${PN} = "libxaiengine" | ||
| 25 | |||
| 26 | # The makefile isn't ready for parallel execution at the moment | ||
| 27 | PARALLEL_MAKE = "-j 1" | ||
| 28 | |||
| 29 | CFLAGS += "-Wall -Wextra -fno-thread-jumps -fno-tree-pre" | ||
| 30 | CFLAGS += "${@bb.utils.contains('IOBACKENDS', 'Linux', ' -D__AIELINUX__', '', d)}" | ||
| 31 | CFLAGS += "${@bb.utils.contains('IOBACKENDS', 'metal', ' -D__AIEMETAL__', '', d)}" | ||
| 32 | EXTRA_OEMAKE = "-C ${AIEDIR}/src -f Makefile.Linux CFLAGS='${CFLAGS}'" | ||
| 33 | |||
| 34 | |||
| 35 | do_compile(){ | ||
| 36 | oe_runmake | ||
| 37 | } | ||
| 38 | |||
| 39 | do_install(){ | ||
| 40 | install -d ${D}${includedir} | ||
| 41 | install ${I}/*.h ${D}${includedir}/ | ||
| 42 | install -d ${D}${includedir}/xaiengine | ||
| 43 | install ${I}/xaiengine/*.h ${D}${includedir}/xaiengine/ | ||
| 44 | install -d ${D}${libdir} | ||
| 45 | cp -dr ${AIEDIR}/src/*.so* ${D}${libdir} | ||
| 46 | } | ||
diff --git a/meta-xilinx-core/recipes-bsp/ai-engine/aie-rt-2022.inc b/meta-xilinx-core/recipes-bsp/ai-engine/aie-rt-2022.inc deleted file mode 100644 index 85121654..00000000 --- a/meta-xilinx-core/recipes-bsp/ai-engine/aie-rt-2022.inc +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | SECTION = "libs" | ||
| 2 | |||
| 3 | REPO ?= "git://github.com/Xilinx/aie-rt.git;protocol=https" | ||
| 4 | |||
| 5 | BRANCH ?= "xlnx_rel_v2022.2" | ||
| 6 | SRCREV ?= "ae24c8ede049906323510693f37e6167a963fd0e" | ||
| 7 | |||
| 8 | LICENSE = "BSD-3-Clause" | ||
| 9 | LIC_FILES_CHKSUM ?= "file://license.txt;md5=b81abf1f508952331dd7d2ab36408f5b" | ||
| 10 | |||
| 11 | SRC_URI = "${REPO};branch=${BRANCH}" | ||
diff --git a/meta-xilinx-core/recipes-bsp/ai-engine/aiefal_1.4.bb b/meta-xilinx-core/recipes-bsp/ai-engine/aiefal_1.4.bb deleted file mode 100644 index 73cbfdd6..00000000 --- a/meta-xilinx-core/recipes-bsp/ai-engine/aiefal_1.4.bb +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | SUMMARY = "Xilinx AI Engine FAL(Functional Abstraction Layer)" | ||
| 2 | DESCRIPTION = "AIE FAL provides functional abstraction APIs for runtime support of Xilinx AI Engine IP" | ||
| 3 | |||
| 4 | require aie-rt-2022.inc | ||
| 5 | |||
| 6 | SECTION = "devel" | ||
| 7 | |||
| 8 | XAIEFAL_DIR ?= "fal" | ||
| 9 | S = "${UNPACKDIR}/git" | ||
| 10 | |||
| 11 | inherit features_check | ||
| 12 | |||
| 13 | REQUIRED_MACHINE_FEATURES = "aie" | ||
| 14 | |||
| 15 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 16 | |||
| 17 | IOBACKENDS ?= "Linux" | ||
| 18 | |||
| 19 | PROVIDES = "aiefal" | ||
| 20 | ALLOW_EMPTY:${PN} = "1" | ||
| 21 | |||
| 22 | inherit pkgconfig cmake | ||
| 23 | |||
| 24 | DEPENDS = "libxaiengine" | ||
| 25 | |||
| 26 | OECMAKE_SOURCEPATH = "${S}/${XAIEFAL_DIR}" | ||
| 27 | |||
| 28 | EXTRA_OECMAKE = "-DWITH_TESTS=OFF " | ||
| 29 | EXTRA_OECMAKE:append = "${@'-DWITH_EXAMPLES=ON' if d.getVar('WITH_EXAMPLES') == 'y' else '-DWITH_EXAMPLES=OFF'}" | ||
| 30 | |||
| 31 | FILES:${PN}-demos = " \ | ||
| 32 | ${bindir}/* \ | ||
| 33 | " | ||
diff --git a/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_2.6-xilinx-v2022.1.bb b/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_2.6-xilinx-v2022.1.bb deleted file mode 100644 index 348ad757..00000000 --- a/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_2.6-xilinx-v2022.1.bb +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | SRCREV = "67ca59c67f542322554d78820bf9ddaa736d6a84" | ||
| 2 | BRANCH = "xlnx_rebase_v2.6" | ||
| 3 | LIC_FILES_CHKSUM = "file://license.rst;md5=1dd070c98a281d18d9eefd938729b031" | ||
| 4 | |||
| 5 | |||
| 6 | include arm-trusted-firmware.inc | ||
| 7 | |||
diff --git a/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_2.6-xilinx-v2022.2.bb b/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_2.6-xilinx-v2022.2.bb deleted file mode 100644 index 365bbbc5..00000000 --- a/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_2.6-xilinx-v2022.2.bb +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | SRCREV = "0897efd45ccad29a3dbab610578c70e3a52b2caa" | ||
| 2 | BRANCH = "xlnx_rebase_v2.6" | ||
| 3 | LIC_FILES_CHKSUM = "file://license.rst;md5=1dd070c98a281d18d9eefd938729b031" | ||
| 4 | |||
| 5 | |||
| 6 | include arm-trusted-firmware.inc | ||
| 7 | |||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-tools-xlnx_2021.01-xilinx-v2022.1.bb b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-tools-xlnx_2021.01-xilinx-v2022.1.bb deleted file mode 100644 index 94369955..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-tools-xlnx_2021.01-xilinx-v2022.1.bb +++ /dev/null | |||
| @@ -1,38 +0,0 @@ | |||
| 1 | require u-boot-tools-xlnx.inc | ||
| 2 | require u-boot-xlnx-2022.1.inc | ||
| 3 | |||
| 4 | # MUST clear CONFIG_VIDEO to avoid a compilation failure trying to construct | ||
| 5 | # bmp_logo.h | ||
| 6 | SED_CONFIG_EFI:append = ' -e "s/CONFIG_VIDEO=.*/# CONFIG_VIDEO is not set/"' | ||
| 7 | |||
| 8 | # Default do_compile fails with: | ||
| 9 | # | error: object directory ../downloads/git2/github.com.Xilinx.u-boot-xlnx.git/objects does not exist; check .git/objects/info/alternates. | ||
| 10 | # The regular workaround of calling 'git diff' seems to be problematic. | ||
| 11 | do_compile () { | ||
| 12 | oe_runmake -C ${S} tools-only_defconfig O=${B} | ||
| 13 | |||
| 14 | # Disable CONFIG_CMD_LICENSE, license.h is not used by tools and | ||
| 15 | # generating it requires bin2header tool, which for target build | ||
| 16 | # is built with target tools and thus cannot be executed on host. | ||
| 17 | sed -i -e "s/CONFIG_CMD_LICENSE=.*/# CONFIG_CMD_LICENSE is not set/" ${SED_CONFIG_EFI} ${B}/.config | ||
| 18 | |||
| 19 | oe_runmake -C ${S} cross_tools NO_SDL=1 O=${B} | ||
| 20 | } | ||
| 21 | |||
| 22 | # mkeficapsule is not available in this version of u-boot | ||
| 23 | PROVIDES:remove = "${MLPREFIX}u-boot-mkeficapsule" | ||
| 24 | PROVIDES:class-native:remove = "u-boot-mkeficapsule-native" | ||
| 25 | PACKAGES:remove = "${PN}-mkeficapsule" | ||
| 26 | RDEPENDS:${PN}:remove = "${PN}-mkeficapsule" | ||
| 27 | |||
| 28 | do_install:prepend() { | ||
| 29 | # Avoid do_install failure | ||
| 30 | mkdir -p tools | ||
| 31 | touch tools/mkeficapsule | ||
| 32 | } | ||
| 33 | |||
| 34 | do_install:append() { | ||
| 35 | # Avoid failure | ||
| 36 | rm -rf ${D}${bindir}/uboot-mkeficapsule | ||
| 37 | rm -rf ${D}${bindir}/mkeficapsule | ||
| 38 | } | ||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-tools-xlnx_2022.01-xilinx-v2022.2.bb b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-tools-xlnx_2022.01-xilinx-v2022.2.bb deleted file mode 100644 index 6b033f0f..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-tools-xlnx_2022.01-xilinx-v2022.2.bb +++ /dev/null | |||
| @@ -1,38 +0,0 @@ | |||
| 1 | require u-boot-tools-xlnx.inc | ||
| 2 | require u-boot-xlnx-2022.2.inc | ||
| 3 | |||
| 4 | # MUST clear CONFIG_VIDEO to avoid a compilation failure trying to construct | ||
| 5 | # bmp_logo.h | ||
| 6 | SED_CONFIG_EFI:append = ' -e "s/CONFIG_VIDEO=.*/# CONFIG_VIDEO is not set/"' | ||
| 7 | |||
| 8 | # Default do_compile fails with: | ||
| 9 | # | error: object directory ../downloads/git2/github.com.Xilinx.u-boot-xlnx.git/objects does not exist; check .git/objects/info/alternates. | ||
| 10 | # The regular workaround of calling 'git diff' seems to be problematic. | ||
| 11 | do_compile () { | ||
| 12 | oe_runmake -C ${S} tools-only_defconfig O=${B} | ||
| 13 | |||
| 14 | # Disable CONFIG_CMD_LICENSE, license.h is not used by tools and | ||
| 15 | # generating it requires bin2header tool, which for target build | ||
| 16 | # is built with target tools and thus cannot be executed on host. | ||
| 17 | sed -i -e "s/CONFIG_CMD_LICENSE=.*/# CONFIG_CMD_LICENSE is not set/" ${SED_CONFIG_EFI} ${B}/.config | ||
| 18 | |||
| 19 | oe_runmake -C ${S} cross_tools NO_SDL=1 O=${B} | ||
| 20 | } | ||
| 21 | |||
| 22 | # mkeficapsule is not available in this version of u-boot | ||
| 23 | PROVIDES:remove = "${MLPREFIX}u-boot-mkeficapsule" | ||
| 24 | PROVIDES:class-native:remove = "u-boot-mkeficapsule-native" | ||
| 25 | PACKAGES:remove = "${PN}-mkeficapsule" | ||
| 26 | RDEPENDS:${PN}:remove = "${PN}-mkeficapsule" | ||
| 27 | |||
| 28 | do_install:prepend() { | ||
| 29 | # Avoid do_install failure | ||
| 30 | mkdir -p tools | ||
| 31 | touch tools/mkeficapsule | ||
| 32 | } | ||
| 33 | |||
| 34 | do_install:append() { | ||
| 35 | # Avoid failure | ||
| 36 | rm -rf ${D}${bindir}/uboot-mkeficapsule | ||
| 37 | rm -rf ${D}${bindir}/mkeficapsule | ||
| 38 | } | ||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2021.01/microblaze-generic-top.h b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2021.01/microblaze-generic-top.h deleted file mode 100644 index 08c1c16c..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2021.01/microblaze-generic-top.h +++ /dev/null | |||
| @@ -1,10 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * This file is use for addition u-boot configurations for microblaze. | ||
| 3 | */ | ||
| 4 | #include <configs/microblaze-generic.h> | ||
| 5 | |||
| 6 | /* Core microblaze boot configurations */ | ||
| 7 | #define XILINX_USE_DCACHE 1 | ||
| 8 | #define CONFIG_CMD_IRQ | ||
| 9 | #define CONFIG_DCACHE | ||
| 10 | #define CONFIG_ICACHE \ No newline at end of file | ||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2021.01/microblaze-generic.cfg b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2021.01/microblaze-generic.cfg deleted file mode 100644 index 0f784f73..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2021.01/microblaze-generic.cfg +++ /dev/null | |||
| @@ -1,81 +0,0 @@ | |||
| 1 | # SPDX-License-Identifier: MIT | ||
| 2 | |||
| 3 | #........................................................................ | ||
| 4 | # WARNING | ||
| 5 | # | ||
| 6 | # This file is a u-boot configuration fragment, and not a full u-boot | ||
| 7 | # configuration file. The final u-boot configuration is made up of | ||
| 8 | # an assembly of processed fragments, each of which is designed to | ||
| 9 | # capture a specific part of the final configuration (e.g. platform | ||
| 10 | # configuration, feature configuration, and board specific hardware | ||
| 11 | # configuration). For more information on u-boot configuration, please | ||
| 12 | # refer the product documentation. | ||
| 13 | # | ||
| 14 | #....................................................................... | ||
| 15 | |||
| 16 | # | ||
| 17 | # Definitions for Generic Microbalze machine. | ||
| 18 | # | ||
| 19 | CONFIG_BOOTDELAY=4 | ||
| 20 | CONFIG_SYS_TEXT_BASE=0x80100000 | ||
| 21 | CONFIG_SYS_PROMPT="U-Boot>" | ||
| 22 | CONFIG_SYS_CONFIG_NAME="microblaze-generic-top" | ||
| 23 | CONFIG_BOOT_SCRIPT_OFFSET=0x1F00000 | ||
| 24 | # CONFIG_SYS_NS16550 is not set | ||
| 25 | # CONFIG_SYS_FLASH_USE_BUFFER_WRITE is not set | ||
| 26 | # CONFIG_SYS_FLASH_CFI is not set | ||
| 27 | # CONFIG_FLASH_CFI_DRIVER is not set | ||
| 28 | # CONFIG_CMD_FLASH is not set | ||
| 29 | # CONFIG_CMD_IMLS is not set | ||
| 30 | # CONFIG_MTD_NOR_FLASH is not set | ||
| 31 | # CONFIG_MTD_DEVICE is not set | ||
| 32 | # CONFIG_SYS_FLASH_PROTECTION is not set | ||
| 33 | # CONFIG_SPI_FLASH_SST is not set | ||
| 34 | # CONFIG_XILINX_EMACLITE is not set | ||
| 35 | # CONFIG_PHY_VITESSE is not set | ||
| 36 | # CONFIG_CMD_EXT2 is not set | ||
| 37 | # CONFIG_CMD_EXT4 is not set | ||
| 38 | # CONFIG_CMD_EXT4_WRITE is not set | ||
| 39 | # CONFIG_CMD_FAT is not set | ||
| 40 | # CONFIG_DOS_PARTITION is not set | ||
| 41 | # CONFIG_FAT_WRITE is not set | ||
| 42 | CONFIG_DM=y | ||
| 43 | CONFIG_SYS_MALLOC_F=y | ||
| 44 | CONFIG_XILINX_UARTLITE=y | ||
| 45 | CONFIG_XILINX_AXIEMAC=y | ||
| 46 | CONFIG_PHY_XILINX=y | ||
| 47 | CONFIG_PHY_TI=y | ||
| 48 | CONFIG_NET=y | ||
| 49 | CONFIG_PHY_GIGE=y | ||
| 50 | CONFIG_NETDEVICES=y | ||
| 51 | CONFIG_CMD_NET=y | ||
| 52 | CONFIG_DM_ETH=y | ||
| 53 | CONFIG_CMD_PING=y | ||
| 54 | CONFIG_CMD_DHCP=y | ||
| 55 | CONFIG_PHYLIB=y | ||
| 56 | CONFIG_CMD_TFTPPUT=y | ||
| 57 | CONFIG_CMD_NFS=y | ||
| 58 | CONFIG_CMD_MII=y | ||
| 59 | CONFIG_PHY_MARVELL=y | ||
| 60 | CONFIG_PHY_REALTEK=y | ||
| 61 | CONFIG_PHY_NATSEMI=y | ||
| 62 | CONFIG_XILINX_SPI=y | ||
| 63 | CONFIG_CMD_SPI=y | ||
| 64 | CONFIG_CMD_SF=y | ||
| 65 | CONFIG_SPI_FLASH=y | ||
| 66 | CONFIG_SPI_FLASH_BAR=y | ||
| 67 | CONFIG_DM_SPI_FLASH=y | ||
| 68 | CONFIG_DM_SPI=y | ||
| 69 | CONFIG_SPI_FLASH_SPANSION=y | ||
| 70 | CONFIG_SPI_FLASH_STMICRO=y | ||
| 71 | CONFIG_SPI_FLASH_WINBOND=y | ||
| 72 | CONFIG_SPI_FLASH_MACRONIX=y | ||
| 73 | CONFIG_SPI=y | ||
| 74 | CONFIG_SPI_FLASH_ISSI=y | ||
| 75 | # CONFIG_BOOTARGS is not set | ||
| 76 | # CONFIG_USE_BOOTARGS is not set | ||
| 77 | # CONFIG_SPL is not set | ||
| 78 | # CONFIG_I2C_EEPROM is not set | ||
| 79 | # CONFIG_CMD_EEPROM is not set | ||
| 80 | # CONFIG_SYS_I2C_EEPROM_ADDR is not set | ||
| 81 | # CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW is not set | ||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2022.01/microblaze-generic-top.h b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2022.01/microblaze-generic-top.h deleted file mode 100644 index 08c1c16c..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2022.01/microblaze-generic-top.h +++ /dev/null | |||
| @@ -1,10 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * This file is use for addition u-boot configurations for microblaze. | ||
| 3 | */ | ||
| 4 | #include <configs/microblaze-generic.h> | ||
| 5 | |||
| 6 | /* Core microblaze boot configurations */ | ||
| 7 | #define XILINX_USE_DCACHE 1 | ||
| 8 | #define CONFIG_CMD_IRQ | ||
| 9 | #define CONFIG_DCACHE | ||
| 10 | #define CONFIG_ICACHE \ No newline at end of file | ||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2022.01/microblaze-generic.cfg b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2022.01/microblaze-generic.cfg deleted file mode 100644 index 0f784f73..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-v2022.01/microblaze-generic.cfg +++ /dev/null | |||
| @@ -1,81 +0,0 @@ | |||
| 1 | # SPDX-License-Identifier: MIT | ||
| 2 | |||
| 3 | #........................................................................ | ||
| 4 | # WARNING | ||
| 5 | # | ||
| 6 | # This file is a u-boot configuration fragment, and not a full u-boot | ||
| 7 | # configuration file. The final u-boot configuration is made up of | ||
| 8 | # an assembly of processed fragments, each of which is designed to | ||
| 9 | # capture a specific part of the final configuration (e.g. platform | ||
| 10 | # configuration, feature configuration, and board specific hardware | ||
| 11 | # configuration). For more information on u-boot configuration, please | ||
| 12 | # refer the product documentation. | ||
| 13 | # | ||
| 14 | #....................................................................... | ||
| 15 | |||
| 16 | # | ||
| 17 | # Definitions for Generic Microbalze machine. | ||
| 18 | # | ||
| 19 | CONFIG_BOOTDELAY=4 | ||
| 20 | CONFIG_SYS_TEXT_BASE=0x80100000 | ||
| 21 | CONFIG_SYS_PROMPT="U-Boot>" | ||
| 22 | CONFIG_SYS_CONFIG_NAME="microblaze-generic-top" | ||
| 23 | CONFIG_BOOT_SCRIPT_OFFSET=0x1F00000 | ||
| 24 | # CONFIG_SYS_NS16550 is not set | ||
| 25 | # CONFIG_SYS_FLASH_USE_BUFFER_WRITE is not set | ||
| 26 | # CONFIG_SYS_FLASH_CFI is not set | ||
| 27 | # CONFIG_FLASH_CFI_DRIVER is not set | ||
| 28 | # CONFIG_CMD_FLASH is not set | ||
| 29 | # CONFIG_CMD_IMLS is not set | ||
| 30 | # CONFIG_MTD_NOR_FLASH is not set | ||
| 31 | # CONFIG_MTD_DEVICE is not set | ||
| 32 | # CONFIG_SYS_FLASH_PROTECTION is not set | ||
| 33 | # CONFIG_SPI_FLASH_SST is not set | ||
| 34 | # CONFIG_XILINX_EMACLITE is not set | ||
| 35 | # CONFIG_PHY_VITESSE is not set | ||
| 36 | # CONFIG_CMD_EXT2 is not set | ||
| 37 | # CONFIG_CMD_EXT4 is not set | ||
| 38 | # CONFIG_CMD_EXT4_WRITE is not set | ||
| 39 | # CONFIG_CMD_FAT is not set | ||
| 40 | # CONFIG_DOS_PARTITION is not set | ||
| 41 | # CONFIG_FAT_WRITE is not set | ||
| 42 | CONFIG_DM=y | ||
| 43 | CONFIG_SYS_MALLOC_F=y | ||
| 44 | CONFIG_XILINX_UARTLITE=y | ||
| 45 | CONFIG_XILINX_AXIEMAC=y | ||
| 46 | CONFIG_PHY_XILINX=y | ||
| 47 | CONFIG_PHY_TI=y | ||
| 48 | CONFIG_NET=y | ||
| 49 | CONFIG_PHY_GIGE=y | ||
| 50 | CONFIG_NETDEVICES=y | ||
| 51 | CONFIG_CMD_NET=y | ||
| 52 | CONFIG_DM_ETH=y | ||
| 53 | CONFIG_CMD_PING=y | ||
| 54 | CONFIG_CMD_DHCP=y | ||
| 55 | CONFIG_PHYLIB=y | ||
| 56 | CONFIG_CMD_TFTPPUT=y | ||
| 57 | CONFIG_CMD_NFS=y | ||
| 58 | CONFIG_CMD_MII=y | ||
| 59 | CONFIG_PHY_MARVELL=y | ||
| 60 | CONFIG_PHY_REALTEK=y | ||
| 61 | CONFIG_PHY_NATSEMI=y | ||
| 62 | CONFIG_XILINX_SPI=y | ||
| 63 | CONFIG_CMD_SPI=y | ||
| 64 | CONFIG_CMD_SF=y | ||
| 65 | CONFIG_SPI_FLASH=y | ||
| 66 | CONFIG_SPI_FLASH_BAR=y | ||
| 67 | CONFIG_DM_SPI_FLASH=y | ||
| 68 | CONFIG_DM_SPI=y | ||
| 69 | CONFIG_SPI_FLASH_SPANSION=y | ||
| 70 | CONFIG_SPI_FLASH_STMICRO=y | ||
| 71 | CONFIG_SPI_FLASH_WINBOND=y | ||
| 72 | CONFIG_SPI_FLASH_MACRONIX=y | ||
| 73 | CONFIG_SPI=y | ||
| 74 | CONFIG_SPI_FLASH_ISSI=y | ||
| 75 | # CONFIG_BOOTARGS is not set | ||
| 76 | # CONFIG_USE_BOOTARGS is not set | ||
| 77 | # CONFIG_SPL is not set | ||
| 78 | # CONFIG_I2C_EEPROM is not set | ||
| 79 | # CONFIG_CMD_EEPROM is not set | ||
| 80 | # CONFIG_SYS_I2C_EEPROM_ADDR is not set | ||
| 81 | # CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW is not set | ||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2022.1.inc b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2022.1.inc deleted file mode 100644 index 69c7a639..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2022.1.inc +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | UBRANCH ?= "xlnx_rebase_v2022.01_2022.1_update" | ||
| 2 | |||
| 3 | SRCREV = "91ad7924e7f59584d597353e1bb86794341e0a7e" | ||
| 4 | |||
| 5 | LICENSE = "GPL-2.0-or-later" | ||
| 6 | LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897" | ||
| 7 | |||
| 8 | # u-boot-xlnx has support for these | ||
| 9 | HAS_PLATFORM_INIT ?= " \ | ||
| 10 | xilinx_zynqmp_virt_config \ | ||
| 11 | xilinx_zynq_virt_defconfig \ | ||
| 12 | xilinx_versal_vc_p_a2197_revA_x_prc_01_revA \ | ||
| 13 | " | ||
| 14 | |||
| 15 | DEPENDS += "bc-native dtc-native python3-setuptools-native gnutls-native" | ||
| 16 | |||
| 17 | FILESEXTRAPATHS:prepend := "${THISDIR}/u-boot-v2021.01:" | ||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2022.2.inc b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2022.2.inc deleted file mode 100644 index d111ae99..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2022.2.inc +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | UBRANCH ?= "xlnx_rebase_v2022.01" | ||
| 2 | |||
| 3 | SRCREV = "b31476685debf5512ed0d4e8000fa5167a22f530" | ||
| 4 | |||
| 5 | LICENSE = "GPL-2.0-or-later" | ||
| 6 | LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897" | ||
| 7 | |||
| 8 | # u-boot-xlnx has support for these | ||
| 9 | HAS_PLATFORM_INIT ?= " \ | ||
| 10 | xilinx_zynqmp_virt_config \ | ||
| 11 | xilinx_zynq_virt_defconfig \ | ||
| 12 | xilinx_versal_vc_p_a2197_revA_x_prc_01_revA \ | ||
| 13 | " | ||
| 14 | |||
| 15 | DEPENDS += "bc-native dtc-native python3-setuptools-native gnutls-native" | ||
| 16 | |||
| 17 | FILESEXTRAPATHS:prepend := "${THISDIR}/u-boot-v2022.01:" | ||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx_2021.01-xilinx-v2022.1.bb b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx_2021.01-xilinx-v2022.1.bb deleted file mode 100644 index c1c45e56..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx_2021.01-xilinx-v2022.1.bb +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | |||
| 2 | require u-boot-xlnx.inc | ||
| 3 | require u-boot-spl-zynq-init.inc | ||
| 4 | require u-boot-xlnx-2022.1.inc | ||
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx_2022.01-xilinx-v2022.2.bb b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx_2022.01-xilinx-v2022.2.bb deleted file mode 100644 index b10f321b..00000000 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx_2022.01-xilinx-v2022.2.bb +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | |||
| 2 | require u-boot-xlnx.inc | ||
| 3 | require u-boot-spl-zynq-init.inc | ||
| 4 | require u-boot-xlnx-2022.2.inc | ||
