diff options
16 files changed, 73 insertions, 79 deletions
diff --git a/meta-ti-bsp/conf/machine/include/am57xx.inc b/meta-ti-bsp/conf/machine/include/am57xx.inc index c7c8029f..6acc0cb0 100644 --- a/meta-ti-bsp/conf/machine/include/am57xx.inc +++ b/meta-ti-bsp/conf/machine/include/am57xx.inc | |||
| @@ -1,6 +1,50 @@ | |||
| 1 | require conf/machine/include/omap-a15.inc | 1 | require conf/machine/include/ti-soc.inc |
| 2 | SOC_FAMILY:append = ":am57xx" | 2 | SOC_FAMILY:append = ":am57xx" |
| 3 | 3 | ||
| 4 | MACHINE_FEATURES += "pci" | 4 | DEFAULTTUNE ?= "armv7athf-neon" |
| 5 | require conf/machine/include/arm/armv7a/tune-cortexa15.inc | ||
| 5 | 6 | ||
| 6 | MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "prueth-fw prusw-fw pruhsr-fw pruprp-fw" | 7 | require conf/machine/include/ti-bsp.inc |
| 8 | |||
| 9 | # Graphics providers and variables | ||
| 10 | require conf/machine/include/mesa-pvr.inc | ||
| 11 | PREFERRED_PROVIDER_virtual/gpudriver ?= "${BSP_SGX_DRIVER_PROVIDER}" | ||
| 12 | |||
| 13 | KERNEL_IMAGETYPE = "zImage" | ||
| 14 | KERNEL_IMAGETYPES = "zImage uImage" | ||
| 15 | KERNEL_CLASSES += "kernel-uimage" | ||
| 16 | |||
| 17 | UBOOT_ARCH = "arm" | ||
| 18 | UBOOT_ENTRYPOINT = "0x80008000" | ||
| 19 | UBOOT_LOADADDRESS = "0x80008000" | ||
| 20 | |||
| 21 | # Generate an extlinux.conf file | ||
| 22 | UBOOT_EXTLINUX = "1" | ||
| 23 | UBOOT_EXTLINUX_ROOT = "root=PARTUUID=${uuid}" | ||
| 24 | UBOOT_EXTLINUX_BOOT_FILES = " \ | ||
| 25 | extlinux.conf;extlinux/extlinux.conf \ | ||
| 26 | ${KERNEL_IMAGETYPE} \ | ||
| 27 | ${DEVICETREE_FILES} \ | ||
| 28 | " | ||
| 29 | |||
| 30 | SPL_BINARY = "MLO" | ||
| 31 | UBOOT_SUFFIX = "img" | ||
| 32 | |||
| 33 | EXTRA_IMAGEDEPENDS += "virtual/bootloader" | ||
| 34 | |||
| 35 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "kernel-image-zimage" | ||
| 36 | |||
| 37 | MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "vpdma-fw goodix-fw prueth-fw prusw-fw pruhsr-fw pruprp-fw" | ||
| 38 | |||
| 39 | # Use the expected value of the ubifs filesystem's volume name in the kernel | ||
| 40 | # and u-boot. | ||
| 41 | UBI_VOLNAME = "rootfs" | ||
| 42 | |||
| 43 | # List common SoC features, may need to add touchscreen for specific machines | ||
| 44 | MACHINE_FEATURES = "apm usbgadget usbhost vfat ext2 screen alsa mmip dsp gc320 pci" | ||
| 45 | |||
| 46 | IMAGE_FSTYPES += "tar.xz wic.xz wic.bmap" | ||
| 47 | WKS_FILE ?= "sdimage-2part.wks" | ||
| 48 | IMAGE_BOOT_FILES ?= "${SPL_BINARY} u-boot.${UBOOT_SUFFIX} ${UBOOT_EXTLINUX_BOOT_FILES} ipc/dra7-ipu1-fw.xem4;dra7-ipu1-fw.xem4" | ||
| 49 | do_image_wic[depends] += "virtual/bootloader:do_deploy" | ||
| 50 | do_image_wic[depends] += "ti-rtos-messageq-test-fw:do_deploy" | ||
diff --git a/meta-ti-bsp/conf/machine/include/omap-a15.inc b/meta-ti-bsp/conf/machine/include/omap-a15.inc deleted file mode 100644 index 8e029431..00000000 --- a/meta-ti-bsp/conf/machine/include/omap-a15.inc +++ /dev/null | |||
| @@ -1,50 +0,0 @@ | |||
| 1 | require conf/machine/include/ti-soc.inc | ||
| 2 | SOC_FAMILY:append = ":omap-a15" | ||
| 3 | |||
| 4 | DEFAULTTUNE ?= "armv7athf-neon" | ||
| 5 | require conf/machine/include/arm/armv7a/tune-cortexa15.inc | ||
| 6 | |||
| 7 | require conf/machine/include/ti-bsp.inc | ||
| 8 | |||
| 9 | # Graphics providers and variables | ||
| 10 | require conf/machine/include/mesa-pvr.inc | ||
| 11 | PREFERRED_PROVIDER_virtual/gpudriver ?= "${BSP_SGX_DRIVER_PROVIDER}" | ||
| 12 | |||
| 13 | KERNEL_IMAGETYPE = "zImage" | ||
| 14 | KERNEL_IMAGETYPES = "zImage uImage" | ||
| 15 | KERNEL_CLASSES += "kernel-uimage" | ||
| 16 | |||
| 17 | UBOOT_ARCH = "arm" | ||
| 18 | UBOOT_ENTRYPOINT = "0x80008000" | ||
| 19 | UBOOT_LOADADDRESS = "0x80008000" | ||
| 20 | |||
| 21 | # Generate an extlinux.conf file | ||
| 22 | UBOOT_EXTLINUX = "1" | ||
| 23 | UBOOT_EXTLINUX_ROOT = "root=PARTUUID=${uuid}" | ||
| 24 | UBOOT_EXTLINUX_BOOT_FILES = " \ | ||
| 25 | extlinux.conf;extlinux/extlinux.conf \ | ||
| 26 | ${KERNEL_IMAGETYPE} \ | ||
| 27 | ${DEVICETREE_FILES} \ | ||
| 28 | " | ||
| 29 | |||
| 30 | SPL_BINARY = "MLO" | ||
| 31 | UBOOT_SUFFIX = "img" | ||
| 32 | |||
| 33 | EXTRA_IMAGEDEPENDS += "virtual/bootloader" | ||
| 34 | |||
| 35 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "kernel-image-zimage" | ||
| 36 | |||
| 37 | MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "vpdma-fw goodix-fw" | ||
| 38 | |||
| 39 | # Use the expected value of the ubifs filesystem's volume name in the kernel | ||
| 40 | # and u-boot. | ||
| 41 | UBI_VOLNAME = "rootfs" | ||
| 42 | |||
| 43 | # List common SoC features, may need to add touchscreen for specific machines | ||
| 44 | MACHINE_FEATURES = "apm usbgadget usbhost vfat ext2 screen alsa mmip dsp gc320" | ||
| 45 | |||
| 46 | IMAGE_FSTYPES += "tar.xz wic.xz wic.bmap" | ||
| 47 | WKS_FILE ?= "sdimage-2part.wks" | ||
| 48 | IMAGE_BOOT_FILES ?= "${SPL_BINARY} u-boot.${UBOOT_SUFFIX} ${UBOOT_EXTLINUX_BOOT_FILES} ipc/dra7-ipu1-fw.xem4;dra7-ipu1-fw.xem4" | ||
| 49 | do_image_wic[depends] += "virtual/bootloader:do_deploy" | ||
| 50 | do_image_wic[depends] += "ti-rtos-messageq-test-fw:do_deploy" | ||
diff --git a/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-sgx-ddk-km_1.17.4948957.bb b/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-sgx-ddk-km_1.17.4948957.bb index f5cea270..343f09de 100644 --- a/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-sgx-ddk-km_1.17.4948957.bb +++ b/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-sgx-ddk-km_1.17.4948957.bb | |||
| @@ -7,7 +7,7 @@ inherit module | |||
| 7 | 7 | ||
| 8 | PROVIDES = "virtual/gpudriver" | 8 | PROVIDES = "virtual/gpudriver" |
| 9 | 9 | ||
| 10 | COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15|am65xx" | 10 | COMPATIBLE_MACHINE = "ti33x|ti43x|am57xx|am65xx" |
| 11 | 11 | ||
| 12 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 12 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
| 13 | 13 | ||
| @@ -19,9 +19,9 @@ SRC_URI = "git://git.ti.com/git/graphics/omap5-sgx-ddk-linux.git;protocol=https; | |||
| 19 | 19 | ||
| 20 | SRCREV = "9ae0fa4998b1c624408945e062bf8fb0ea7efb9d" | 20 | SRCREV = "9ae0fa4998b1c624408945e062bf8fb0ea7efb9d" |
| 21 | 21 | ||
| 22 | TARGET_PRODUCT:omap-a15 = "ti572x_linux" | ||
| 23 | TARGET_PRODUCT:ti33x = "ti335x_linux" | 22 | TARGET_PRODUCT:ti33x = "ti335x_linux" |
| 24 | TARGET_PRODUCT:ti43x = "ti437x_linux" | 23 | TARGET_PRODUCT:ti43x = "ti437x_linux" |
| 24 | TARGET_PRODUCT:am57xx = "ti572x_linux" | ||
| 25 | TARGET_PRODUCT:am65xx = "ti654x_linux" | 25 | TARGET_PRODUCT:am65xx = "ti654x_linux" |
| 26 | PVR_BUILD = "release" | 26 | PVR_BUILD = "release" |
| 27 | PVR_WS = "lws-generic" | 27 | PVR_WS = "lws-generic" |
diff --git a/meta-ti-bsp/recipes-graphics/libgal/ti-gc320-libs_5.0.11.p7.bb b/meta-ti-bsp/recipes-graphics/libgal/ti-gc320-libs_5.0.11.p7.bb index bd7cf015..86aa71b8 100644 --- a/meta-ti-bsp/recipes-graphics/libgal/ti-gc320-libs_5.0.11.p7.bb +++ b/meta-ti-bsp/recipes-graphics/libgal/ti-gc320-libs_5.0.11.p7.bb | |||
| @@ -7,7 +7,7 @@ inherit features_check | |||
| 7 | 7 | ||
| 8 | REQUIRED_MACHINE_FEATURES = "gc320" | 8 | REQUIRED_MACHINE_FEATURES = "gc320" |
| 9 | 9 | ||
| 10 | COMPATIBLE_MACHINE = "omap-a15" | 10 | COMPATIBLE_MACHINE = "am57xx" |
| 11 | 11 | ||
| 12 | CLEANBROKEN = "1" | 12 | CLEANBROKEN = "1" |
| 13 | 13 | ||
diff --git a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-sgx-ddk-um_1.17.4948957.bb b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-sgx-ddk-um_1.17.4948957.bb index af27981f..c4cc5f10 100644 --- a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-sgx-ddk-um_1.17.4948957.bb +++ b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-sgx-ddk-um_1.17.4948957.bb | |||
| @@ -4,7 +4,7 @@ LICENSE = "TI-TSPA" | |||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7232b98c1c58f99e3baa03de5207e76f" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7232b98c1c58f99e3baa03de5207e76f" |
| 5 | 5 | ||
| 6 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 6 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
| 7 | COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15|am65xx" | 7 | COMPATIBLE_MACHINE = "ti33x|ti43x|am57xx|am65xx" |
| 8 | 8 | ||
| 9 | PR = "r38" | 9 | PR = "r38" |
| 10 | 10 | ||
| @@ -37,7 +37,7 @@ inherit ${@pick_init(d)} | |||
| 37 | 37 | ||
| 38 | TARGET_PRODUCT:ti33x = "ti335x_linux" | 38 | TARGET_PRODUCT:ti33x = "ti335x_linux" |
| 39 | TARGET_PRODUCT:ti43x = "ti437x_linux" | 39 | TARGET_PRODUCT:ti43x = "ti437x_linux" |
| 40 | TARGET_PRODUCT:omap-a15 = "ti572x_linux" | 40 | TARGET_PRODUCT:am57xx = "ti572x_linux" |
| 41 | TARGET_PRODUCT:am65xx = "ti654x_linux" | 41 | TARGET_PRODUCT:am65xx = "ti654x_linux" |
| 42 | 42 | ||
| 43 | RDEPENDS:${PN} += "libdrm ti-sgx-ddk-km" | 43 | RDEPENDS:${PN} += "libdrm ti-sgx-ddk-km" |
diff --git a/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb b/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb index fdb16ec4..e80591b2 100644 --- a/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb +++ b/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb | |||
| @@ -8,7 +8,7 @@ S:append = "/debugss_module/debugss-mod" | |||
| 8 | 8 | ||
| 9 | inherit module | 9 | inherit module |
| 10 | 10 | ||
| 11 | COMPATIBLE_MACHINE = "omap-a15" | 11 | COMPATIBLE_MACHINE = "am57xx" |
| 12 | 12 | ||
| 13 | EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" | 13 | EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" |
| 14 | 14 | ||
diff --git a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb index c1080468..c5242d5e 100644 --- a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb +++ b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb | |||
| @@ -8,7 +8,7 @@ PR = "${INC_PR}.2" | |||
| 8 | 8 | ||
| 9 | S:append = "/dsptop" | 9 | S:append = "/dsptop" |
| 10 | 10 | ||
| 11 | COMPATIBLE_MACHINE = "omap-a15" | 11 | COMPATIBLE_MACHINE = "am57xx" |
| 12 | 12 | ||
| 13 | EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX} CC="${CC}"" | 13 | EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX} CC="${CC}"" |
| 14 | 14 | ||
diff --git a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb index 1bcaa0ea..638973c4 100644 --- a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb +++ b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb | |||
| @@ -11,7 +11,7 @@ PR = "${INC_PR}.0" | |||
| 11 | 11 | ||
| 12 | S:append = "/dsptop/ulm" | 12 | S:append = "/dsptop/ulm" |
| 13 | 13 | ||
| 14 | COMPATIBLE_MACHINE = "omap-a15" | 14 | COMPATIBLE_MACHINE = "am57xx" |
| 15 | 15 | ||
| 16 | EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX}" | 16 | EXTRA_OEMAKE = "release DEVICE=DRA7xx CROSS_COMPILE=${TARGET_PREFIX}" |
| 17 | 17 | ||
diff --git a/meta-ti-extras/recipes-bsp/pru/pru-icss_git.bb b/meta-ti-extras/recipes-bsp/pru/pru-icss_git.bb index 84d00eed..b7066583 100644 --- a/meta-ti-extras/recipes-bsp/pru/pru-icss_git.bb +++ b/meta-ti-extras/recipes-bsp/pru/pru-icss_git.bb | |||
| @@ -14,7 +14,7 @@ PV = "6.5.0" | |||
| 14 | 14 | ||
| 15 | require recipes-ti/includes/ti-paths.inc | 15 | require recipes-ti/includes/ti-paths.inc |
| 16 | 16 | ||
| 17 | COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15|am62xx|am64xx|am65xx|j721e" | 17 | COMPATIBLE_MACHINE = "ti33x|ti43x|am57xx|am62xx|am64xx|am65xx|j721e" |
| 18 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 18 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
| 19 | 19 | ||
| 20 | PACKAGES:prepend = " \ | 20 | PACKAGES:prepend = " \ |
| @@ -36,7 +36,7 @@ SUBDIRS = "examples pru_cape/pru_fw lib/src labs" | |||
| 36 | 36 | ||
| 37 | PLATFORM:ti33x = "am335x" | 37 | PLATFORM:ti33x = "am335x" |
| 38 | PLATFORM:ti43x = "am437x" | 38 | PLATFORM:ti43x = "am437x" |
| 39 | PLATFORM:omap-a15 = "am572x" | 39 | PLATFORM:am57xx = "am572x" |
| 40 | PLATFORM:am62xx = "am62x" | 40 | PLATFORM:am62xx = "am62x" |
| 41 | PLATFORM:am64xx = "am64x" | 41 | PLATFORM:am64xx = "am64x" |
| 42 | PLATFORM:am65xx = "am65x" | 42 | PLATFORM:am65xx = "am65x" |
| @@ -84,7 +84,7 @@ do_install:append:ti43x() { | |||
| 84 | done | 84 | done |
| 85 | } | 85 | } |
| 86 | 86 | ||
| 87 | do_install:append:omap-a15() { | 87 | do_install:append:am57xx() { |
| 88 | install -m 644 ${S}/examples/${PLATFORM}/PRU_Halt/gen/PRU_Halt.out \ | 88 | install -m 644 ${S}/examples/${PLATFORM}/PRU_Halt/gen/PRU_Halt.out \ |
| 89 | ${D}${nonarch_base_libdir}/firmware/pru | 89 | ${D}${nonarch_base_libdir}/firmware/pru |
| 90 | for i in 1 2 | 90 | for i in 1 2 |
| @@ -182,7 +182,7 @@ FILES:${PN}-rpmsg-echo = "${nonarch_base_libdir}/firmware/pru/PRU_RPMsg_Echo_Int | |||
| 182 | # Set up names for the firmwares | 182 | # Set up names for the firmwares |
| 183 | PRU_ICSS_ALTERNATIVES:ti33x = "am335x-pru0-fw am335x-pru1-fw" | 183 | PRU_ICSS_ALTERNATIVES:ti33x = "am335x-pru0-fw am335x-pru1-fw" |
| 184 | PRU_ICSS_ALTERNATIVES:ti43x = "am437x-pru0_0-fw am437x-pru0_1-fw am437x-pru1_0-fw am437x-pru1_1-fw" | 184 | PRU_ICSS_ALTERNATIVES:ti43x = "am437x-pru0_0-fw am437x-pru0_1-fw am437x-pru1_0-fw am437x-pru1_1-fw" |
| 185 | PRU_ICSS_ALTERNATIVES:omap-a15 = "am57xx-pru1_0-fw am57xx-pru1_1-fw am57xx-pru2_0-fw am57xx-pru2_1-fw" | 185 | PRU_ICSS_ALTERNATIVES:am57xx = "am57xx-pru1_0-fw am57xx-pru1_1-fw am57xx-pru2_0-fw am57xx-pru2_1-fw" |
| 186 | PRU_ICSS_ALTERNATIVES:am62xx = "am62x-pru0-fw am62x-pru1-fw" | 186 | PRU_ICSS_ALTERNATIVES:am62xx = "am62x-pru0-fw am62x-pru1-fw" |
| 187 | PRU_ICSS_ALTERNATIVES:am64xx = "am64x-pru0_0-fw am64x-pru0_1-fw am64x-pru1_0-fw am64x-pru1_1-fw am64x-rtu0_0-fw am64x-rtu0_1-fw am64x-rtu1_0-fw am64x-rtu1_1-fw" | 187 | PRU_ICSS_ALTERNATIVES:am64xx = "am64x-pru0_0-fw am64x-pru0_1-fw am64x-pru1_0-fw am64x-pru1_1-fw am64x-rtu0_0-fw am64x-rtu0_1-fw am64x-rtu1_0-fw am64x-rtu1_1-fw" |
| 188 | PRU_ICSS_ALTERNATIVES:am65xx = "am65x-pru0_0-fw am65x-pru0_1-fw am65x-pru1_0-fw am65x-pru1_1-fw am65x-pru2_0-fw am65x-pru2_1-fw am65x-rtu0_0-fw am65x-rtu0_1-fw am65x-rtu1_0-fw am65x-rtu1_1-fw am65x-rtu2_0-fw am65x-rtu2_1-fw" | 188 | PRU_ICSS_ALTERNATIVES:am65xx = "am65x-pru0_0-fw am65x-pru0_1-fw am65x-pru1_0-fw am65x-pru1_1-fw am65x-pru2_0-fw am65x-pru2_1-fw am65x-rtu0_0-fw am65x-rtu0_1-fw am65x-rtu1_0-fw am65x-rtu1_1-fw am65x-rtu2_0-fw am65x-rtu2_1-fw" |
diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb index 3e6dfbff..521d06fe 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb | |||
| @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://debian/copyright;md5=bf0fe2872eb3dfeebb2cbe38206fe81f | |||
| 5 | 5 | ||
| 6 | DEPENDS = "ncurses bison-native texinfo flex-native gettext" | 6 | DEPENDS = "ncurses bison-native texinfo flex-native gettext" |
| 7 | 7 | ||
| 8 | COMPATIBLE_MACHINE = "omap-a15" | 8 | COMPATIBLE_MACHINE = "am57xx" |
| 9 | 9 | ||
| 10 | PR = "${INC_PR}.1" | 10 | PR = "${INC_PR}.1" |
| 11 | 11 | ||
diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb index a2d8da75..bcb9624f 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb | |||
| @@ -8,7 +8,7 @@ PR = "${INC_PR}.0" | |||
| 8 | 8 | ||
| 9 | S:append = "/gdbserver-c6x/src" | 9 | S:append = "/gdbserver-c6x/src" |
| 10 | 10 | ||
| 11 | COMPATIBLE_MACHINE = "omap-a15" | 11 | COMPATIBLE_MACHINE = "am57xx" |
| 12 | 12 | ||
| 13 | EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM" | 13 | EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM" |
| 14 | 14 | ||
diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb index 1e4fd6c5..799ba019 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb | |||
| @@ -13,7 +13,7 @@ S:append = "/kernel_module/gdbproxy-mod" | |||
| 13 | 13 | ||
| 14 | inherit module | 14 | inherit module |
| 15 | 15 | ||
| 16 | COMPATIBLE_MACHINE = "omap-a15" | 16 | COMPATIBLE_MACHINE = "am57xx" |
| 17 | 17 | ||
| 18 | EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" | 18 | EXTRA_OEMAKE = "PLATFORM=DRA7xx_PLATFORM KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}" |
| 19 | 19 | ||
diff --git a/meta-ti-extras/recipes-ti/imglib/imglib-c66x.inc b/meta-ti-extras/recipes-ti/imglib/imglib-c66x.inc index 8fa2ceca..3c5efeb1 100644 --- a/meta-ti-extras/recipes-ti/imglib/imglib-c66x.inc +++ b/meta-ti-extras/recipes-ti/imglib/imglib-c66x.inc | |||
| @@ -8,7 +8,7 @@ require ../includes/ti-paths.inc | |||
| 8 | require ../includes/ti-staging.inc | 8 | require ../includes/ti-staging.inc |
| 9 | require ../includes/ti-unpack.inc | 9 | require ../includes/ti-unpack.inc |
| 10 | 10 | ||
| 11 | COMPATIBLE_MACHINE = "omap-a15" | 11 | COMPATIBLE_MACHINE = "am57xx" |
| 12 | 12 | ||
| 13 | SRC_URI = "http://software-dl.ti.com/sdoemb/sdoemb_public_sw/imglib/${PV}/exports/${BINFILE};name=imglib" | 13 | SRC_URI = "http://software-dl.ti.com/sdoemb/sdoemb_public_sw/imglib/${PV}/exports/${BINFILE};name=imglib" |
| 14 | 14 | ||
diff --git a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos.inc b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos.inc index 2f93db72..0b2ef9f5 100644 --- a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos.inc +++ b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos.inc | |||
| @@ -41,16 +41,16 @@ RELEASE_SUFFIX = "" | |||
| 41 | 41 | ||
| 42 | PR = "${INC_PR}.r0" | 42 | PR = "${INC_PR}.r0" |
| 43 | 43 | ||
| 44 | DEPENDS:append:omap-a15 = " ti-cgt6x-native \ | 44 | DEPENDS:append:am57xx = " ti-cgt6x-native \ |
| 45 | ti-cgt-arm-native \ | 45 | ti-cgt-arm-native \ |
| 46 | gcc-arm-baremetal-native \ | 46 | gcc-arm-baremetal-native \ |
| 47 | " | 47 | " |
| 48 | DEPENDS:append:omapl138 = " ti-cgt6x-native \ | 48 | DEPENDS:append:omapl138 = " ti-cgt6x-native \ |
| 49 | " | 49 | " |
| 50 | 50 | ||
| 51 | IPC_TARGETS = "" | 51 | IPC_TARGETS = "" |
| 52 | 52 | ||
| 53 | IPC_TARGETS:omap-a15 = "\ | 53 | IPC_TARGETS:am57xx = "\ |
| 54 | gnu.targets.arm.A15F="${GCC_ARM_NONE_TOOLCHAIN}" \ | 54 | gnu.targets.arm.A15F="${GCC_ARM_NONE_TOOLCHAIN}" \ |
| 55 | ti.targets.elf.C66="${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" \ | 55 | ti.targets.elf.C66="${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" \ |
| 56 | ti.targets.elf.C66_big_endian="${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" \ | 56 | ti.targets.elf.C66_big_endian="${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" \ |
diff --git a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb index d2ac6276..2162a1ac 100644 --- a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb +++ b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb | |||
| @@ -81,11 +81,11 @@ KFPLAT = "" | |||
| 81 | ALTERNATIVE_PRIORITY = "5" | 81 | ALTERNATIVE_PRIORITY = "5" |
| 82 | 82 | ||
| 83 | ALTERNATIVE:${PN}-fw:omapl138 = "rproc-dsp-fw" | 83 | ALTERNATIVE:${PN}-fw:omapl138 = "rproc-dsp-fw" |
| 84 | ALTERNATIVE:${PN}-fw:omap-a15 = "dra7-dsp1-fw.xe66 \ | 84 | ALTERNATIVE:${PN}-fw:am57xx = "dra7-dsp1-fw.xe66 \ |
| 85 | dra7-dsp2-fw.xe66 \ | 85 | dra7-dsp2-fw.xe66 \ |
| 86 | dra7-ipu1-fw.xem4 \ | 86 | dra7-ipu1-fw.xem4 \ |
| 87 | dra7-ipu2-fw.xem4 \ | 87 | dra7-ipu2-fw.xem4 \ |
| 88 | " | 88 | " |
| 89 | 89 | ||
| 90 | ALTERNATIVE_LINK_NAME[rproc-dsp-fw] = "${nonarch_base_libdir}/firmware/rproc-dsp-fw" | 90 | ALTERNATIVE_LINK_NAME[rproc-dsp-fw] = "${nonarch_base_libdir}/firmware/rproc-dsp-fw" |
| 91 | ALTERNATIVE_LINK_NAME[dra7-dsp1-fw.xe66] = "${nonarch_base_libdir}/firmware/dra7-dsp1-fw.xe66" | 91 | ALTERNATIVE_LINK_NAME[dra7-dsp1-fw.xe66] = "${nonarch_base_libdir}/firmware/dra7-dsp1-fw.xe66" |
diff --git a/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc b/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc index 94c5d33b..c7c14f91 100644 --- a/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc +++ b/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc | |||
| @@ -7,7 +7,7 @@ require ../includes/ti-paths.inc | |||
| 7 | require ../includes/ti-staging.inc | 7 | require ../includes/ti-staging.inc |
| 8 | require ../includes/ti-eula-unpack.inc | 8 | require ../includes/ti-eula-unpack.inc |
| 9 | 9 | ||
| 10 | COMPATIBLE_MACHINE = "omap-a15" | 10 | COMPATIBLE_MACHINE = "am57xx" |
| 11 | 11 | ||
| 12 | SRC_URI = "http://software-dl.ti.com/libs/vlib/${PV}//exports/vlib_c66x_obj_${PV}_Linux.bin;name=vlibbin" | 12 | SRC_URI = "http://software-dl.ti.com/libs/vlib/${PV}//exports/vlib_c66x_obj_${PV}_Linux.bin;name=vlibbin" |
| 13 | 13 | ||
