[meta-ti] Sam Nelson : ipc-transport-srio: Add recipe for ipc transport using srio interface

Arago Project git git at arago-project.org
Wed Apr 22 09:04:52 PDT 2015


Module: meta-ti
Branch: daisy
Commit: 6502a6aa69af0a2335d2efe4f3703ae702c92fef
URL:    http://arago-project.org/git/meta-ti.git?a=commit;h=6502a6aa69af0a2335d2efe4f3703ae702c92fef

Author: Sam Nelson <sam.nelson at ti.com>
Date:   Mon Apr 13 23:57:48 2015 +0000

ipc-transport-srio: Add recipe for ipc transport using srio interface

- Adds ipc transport layer using srio interface
- Supports k2h & k2k devices
- test recipe provides test code using srio transport

Signed-off-by: Sam Nelson <sam.nelson at ti.com>
Signed-off-by: Denys Dmytriyenko <denys at ti.com>

---

 recipes-ti/ipc/ipc-transport-srio-test_git.bb |   30 +++++++++++++++++++++++++
 recipes-ti/ipc/ipc-transport-srio.inc         |   16 +++++++++++++
 recipes-ti/ipc/ipc-transport-srio_git.bb      |   14 +++++++++++
 3 files changed, 60 insertions(+), 0 deletions(-)

diff --git a/recipes-ti/ipc/ipc-transport-srio-test_git.bb b/recipes-ti/ipc/ipc-transport-srio-test_git.bb
new file mode 100644
index 0000000..866fc35
--- /dev/null
+++ b/recipes-ti/ipc/ipc-transport-srio-test_git.bb
@@ -0,0 +1,30 @@
+include ipc-transport-srio.inc
+
+DEPENDS = "ipc-transport-srio ipc-transport-qmss ti-ipc"
+
+DEVICELIST = "k2h k2k"
+
+CHOICELIST = "yes no"
+
+do_compile () {
+#   Now build the test code
+	for device in ${DEVICELIST}
+	do
+		for choice in ${CHOICELIST}
+		do
+			oe_runmake tests \
+				IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} \
+				USEDYNAMIC_LIB="$choice" DEVICE="$device"
+		done
+	done
+}
+
+do_install () {
+
+	for device in ${DEVICELIST}
+	do
+		oe_runmake installbin \
+			INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
+	done
+
+}
diff --git a/recipes-ti/ipc/ipc-transport-srio.inc b/recipes-ti/ipc/ipc-transport-srio.inc
new file mode 100644
index 0000000..e286421
--- /dev/null
+++ b/recipes-ti/ipc/ipc-transport-srio.inc
@@ -0,0 +1,16 @@
+DESCRIPTION = "TI SRIO-Based IPC MessageQ Transport"
+LICENSE = "BSD-3-Clause"
+
+LIC_FILES_CHKSUM = "file://COPYING.txt;md5=27bb0deb260c60120a8d7b91da7c3b02"
+
+BRANCH="master"
+SRC_URI = "git://git.ti.com/keystone-linux/ipc-transport.git;protocol=git;branch=${BRANCH}"
+# Below commit ID corresponds to DEV.IPC-TRANSPORT.01.00.00.00
+SRCREV = "b3077467126c84b5d583dc29e13ab221064b687b"
+PV = "01.00.00.00"
+
+COMPATIBLE_MACHINE = "keystone"
+
+S = "${WORKDIR}/git/linux/srio"
+
+EXTRA_OEMAKE += "PDK_INSTALL_PATH=${STAGING_INCDIR} TRANS_SRIO_SRC_DIR=${S}"
diff --git a/recipes-ti/ipc/ipc-transport-srio_git.bb b/recipes-ti/ipc/ipc-transport-srio_git.bb
new file mode 100644
index 0000000..266aa4e
--- /dev/null
+++ b/recipes-ti/ipc/ipc-transport-srio_git.bb
@@ -0,0 +1,14 @@
+include ipc-transport-srio.inc
+
+DEPENDS = "ti-ipc mpm-transport"
+
+do_compile () {
+#   Now build the transport
+	oe_runmake clean
+	oe_runmake lib
+}
+
+do_install () {
+	oe_runmake install INSTALL_INC_BASE_DIR=${D}${includedir} \
+		INSTALL_LIB_BASE_DIR=${D}${libdir}
+}



More information about the meta-ti mailing list