# Copyright (C) 2016 Freescale Semiconductor # Copyright 2017-2019 NXP # Released under the MIT license (see COPYING.MIT for the terms) DESCRIPTION = "GPU G2D library and apps for i.MX with 2D GPU and DPU" LICENSE = "Proprietary" LIC_FILES_CHKSUM = "file://COPYING;md5=a632fefd1c359980434f9389833cab3a" PROVIDES += "virtual/libg2d" SRC_URI = "${FSL_MIRROR}/${BPN}-${PV}.bin;fsl-eula=true" SRC_URI[md5sum] = "51b1a54f303bea31325549e9fb1f0d04" SRC_URI[sha256sum] = "360012a32353bde233a548f25a8f99b18660059ea2655ab15335a967843ce3b9" inherit fsl-eula-unpack do_install () { install -d ${D}${libdir} install -d ${D}${includedir} cp -r ${S}/g2d/usr/lib/*.so* ${D}${libdir} cp -Pr ${S}/g2d/usr/include/* ${D}${includedir} cp -r ${S}/gpu-demos/opt ${D} } FILES_${PN} = "${libdir}/libg2d* /opt" FILES_${PN}-dev = "${libdir}/libg2d${SOLIBSDEV} ${includedir}" INSANE_SKIP_${PN} += "ldflags" RDEPENDS_${PN} = "libgal-imx libdrm" # This is required to provide support for VPU Amphion HEVC tile format # From NXP [MGS-5547] (commit e175d6b4f78deab24d319b852998bef55cdecc99): # VPU Amphion HEVC tile support was added using OpenCL, so add a dependency on libopencl-imx. RDEPENDS_${PN} += "libopencl-imx" COMPATIBLE_MACHINE = "(imxdpu)"