From 091c19a8fbba21a5ca9efab77ed7047721428f25 Mon Sep 17 00:00:00 2001 From: Sam Nelson Date: Fri, 19 Dec 2014 05:38:26 +0000 Subject: sa-lld: Add recipes for SA module low level driver - Provides library and test code for Security accelerator module - Supports k2h, k2k, k2l & k2e devices Signed-off-by: Sam Nelson Signed-off-by: Denys Dmytriyenko --- recipes-bsp/sa-lld/sa-lld-test_git.bb | 33 +++++++++++++++++++++++++++++++++ recipes-bsp/sa-lld/sa-lld.inc | 14 ++++++++++++++ recipes-bsp/sa-lld/sa-lld_git.bb | 14 ++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 recipes-bsp/sa-lld/sa-lld-test_git.bb create mode 100644 recipes-bsp/sa-lld/sa-lld.inc create mode 100644 recipes-bsp/sa-lld/sa-lld_git.bb diff --git a/recipes-bsp/sa-lld/sa-lld-test_git.bb b/recipes-bsp/sa-lld/sa-lld-test_git.bb new file mode 100644 index 00000000..2069d415 --- /dev/null +++ b/recipes-bsp/sa-lld/sa-lld-test_git.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "TI Security Accelerator LLD (SA LLD) Examples" + +DEPENDS = "common-csl-ip cppi-lld qmss-lld pa-lld sa-lld" + +include sa-lld.inc + +DEVICELIST = "k2h k2k k2l k2e" + +CHOICELIST = "no yes" + +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" SA_SRC_DIR=${S} + for choice in ${CHOICELIST} + do + make -f makefile_armv7 examples PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" SA_SRC_DIR=${S} USEDYNAMIC_LIB="$choice" + done + done +} + +do_install () { + install -d ${D}${bindir}/ti/drv/sa/example/SaBasicExample/vectors + +# copy all the test vectors + find example/SaBasicExample/vectors -name *.bin -type f | xargs -I {} cp --parents {} ${D}${bindir}/ti/drv/sa + + for device in ${DEVICELIST} + do + make -f makefile_armv7 installbin PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" SA_SRC_DIR=${S} INSTALL_BIN_BASE_DIR=${D}${bindir} + done +} diff --git a/recipes-bsp/sa-lld/sa-lld.inc b/recipes-bsp/sa-lld/sa-lld.inc new file mode 100644 index 00000000..d4bdc953 --- /dev/null +++ b/recipes-bsp/sa-lld/sa-lld.inc @@ -0,0 +1,14 @@ +LICENSE = "BSD-3-Clause" +COMPATIBLE_MACHINE = "keystone" + +LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/sa/COPYING.txt;md5=4709d353574a9569e129ebdf20e732dd" + +BRANCH = "master" +SRC_URI = "git://git.ti.com/keystone-rtos/sa-lld.git;destsuffix=git/ti/drv/sa;protocol=git;branch=${BRANCH}" +# Following commit DEV.SA_LLD.03.00.00.08 +SRCREV = "4da032c600ded79ab226a2a0100c1d8178a9da39" +PV = "03.00.00.08" +PR = "r0" + +BASEDIR = "${WORKDIR}/git" +S = "${BASEDIR}/ti/drv/sa" diff --git a/recipes-bsp/sa-lld/sa-lld_git.bb b/recipes-bsp/sa-lld/sa-lld_git.bb new file mode 100644 index 00000000..f3458950 --- /dev/null +++ b/recipes-bsp/sa-lld/sa-lld_git.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "TI Security Accelerator LLD (SA LLD) Library" + +DEPENDS = "common-csl-ip" + +include sa-lld.inc + +do_compile () { +# Now build the lld in the updated directory + make -f makefile_armv7 clean lib PDK_INSTALL_PATH=${STAGING_INCDIR} +} + +do_install () { + make -f makefile_armv7 install PDK_INSTALL_PATH=${STAGING_INCDIR} INSTALL_INC_BASE_DIR=${D}/${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir} +} -- cgit v1.2.3-54-g00ecf