mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
qmss-lld: Add new recipe for QMSS Module low level driver
- Provides low level driver and test code for Queue managment subsystem module - Supports k2h, k2k, k2l k2e devices Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
committed by
Denys Dmytriyenko
parent
70664faa8d
commit
d0a7ce516f
27
recipes-bsp/qmss-lld/qmss-lld-test_git.bb
Executable file
27
recipes-bsp/qmss-lld/qmss-lld-test_git.bb
Executable file
@@ -0,0 +1,27 @@
|
||||
DESCRIPTION = "TI QMSS low level driver unit test and example binaries"
|
||||
COMPATIBLE_MACHINE = "keystone"
|
||||
|
||||
DEPENDS="common-csl-ip rm-lld cppi-lld qmss-lld"
|
||||
|
||||
include qmss-lld.inc
|
||||
|
||||
CHOICELIST = "yes no"
|
||||
|
||||
do_compile () {
|
||||
# Now build the lld in the updated directory
|
||||
for device in ${DEVICELIST}
|
||||
do
|
||||
make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" QMSS_SRC_DIR=${S}
|
||||
for choice in ${CHOICELIST}
|
||||
do
|
||||
make -f makefile_armv7 tests examples PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" QMSS_SRC_DIR=${S} USEDYNAMIC_LIB="$choice"
|
||||
done
|
||||
done
|
||||
}
|
||||
|
||||
do_install () {
|
||||
for device in ${DEVICELIST}
|
||||
do
|
||||
make -f makefile_armv7 installbin PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" QMSS_SRC_DIR=${S} INSTALL_BIN_BASE_DIR=${D}${bindir}
|
||||
done
|
||||
}
|
||||
15
recipes-bsp/qmss-lld/qmss-lld.inc
Normal file
15
recipes-bsp/qmss-lld/qmss-lld.inc
Normal file
@@ -0,0 +1,15 @@
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/qmss/COPYING.txt;md5=e8f6789acdcda76d02ed9203fc2e603d"
|
||||
|
||||
BRANCH ="master"
|
||||
SRC_URI = "git://git.ti.com/keystone-rtos/qmss-lld.git;destsuffix=git/ti/drv/qmss;protocol=git;branch=${BRANCH}"
|
||||
|
||||
# commit ID corresponding to DEV.QMSS_LLD.02.01.00.06
|
||||
SRCREV = "661fff76530fd56cf7550f76c7b7a541ea18fda8"
|
||||
PV = "02.01.00.06"
|
||||
PR = "r0"
|
||||
|
||||
DEVICELIST = "k2h k2k k2l k2e"
|
||||
|
||||
BASEDIR = "${WORKDIR}/git"
|
||||
S = "${BASEDIR}/ti/drv/qmss"
|
||||
20
recipes-bsp/qmss-lld/qmss-lld_git.bb
Executable file
20
recipes-bsp/qmss-lld/qmss-lld_git.bb
Executable file
@@ -0,0 +1,20 @@
|
||||
DESCRIPTION = "TI QMSS low level driver library"
|
||||
COMPATIBLE_MACHINE = "keystone"
|
||||
|
||||
DEPENDS="common-csl-ip rm-lld"
|
||||
|
||||
include qmss-lld.inc
|
||||
|
||||
do_compile () {
|
||||
# Now build the lld
|
||||
make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR}
|
||||
for device in ${DEVICELIST}
|
||||
do
|
||||
make -f makefile_armv7 lib PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="${device}"
|
||||
done
|
||||
|
||||
}
|
||||
|
||||
do_install () {
|
||||
make -f makefile_armv7 install PDK_INSTALL_PATH=${STAGING_INCDIR} INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}
|
||||
}
|
||||
Reference in New Issue
Block a user