All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ti-hyplnk: Add recipe for ti hyperlink low level driver
@ 2014-03-02 23:22 Sam Nelson
  2014-03-05  3:10 ` Denys Dmytriyenko
  2014-05-16 18:32 ` Maupin, Chase
  0 siblings, 2 replies; 7+ messages in thread
From: Sam Nelson @ 2014-03-02 23:22 UTC (permalink / raw)
  To: meta-arago

- User space low level driver and test code for hyperlink
  peripheral

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 .../recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb     |   38 ++++++++++++++++++++
 .../recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb     |   21 +++++++++++
 .../recipes-bsp/ti-hyplnk/ti-hyplnk.inc            |   10 ++++++
 3 files changed, 69 insertions(+)
 create mode 100755 meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb
 create mode 100755 meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb
 create mode 100644 meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk.inc

diff --git a/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb
new file mode 100755
index 0000000..9938b18
--- /dev/null
+++ b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb
@@ -0,0 +1,38 @@
+DESCRIPTION = "TI HYPLNK low level driver test binaries"
+LICENSE = "TI BSD"
+
+COMPATIBLE_MACHINE = "keystone"
+
+PR = "r0"
+DEPENDS="ti-csl ti-hyplnk-lib"
+
+include ti-hyplnk.inc
+
+BASEDIR = "${WORKDIR}/git"
+S = "${BASEDIR}/ti/drv/${LLDNAME}"
+
+DEVICELIST = " k2h \
+               k2k \
+"
+
+CHOICELIST = " yes \
+               no  \
+"
+
+do_compile () {
+	make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR} HYPLNK_SRC_DIR=${PWD}
+	for device in ${DEVICELIST}
+	do
+		for choice in ${CHOICELIST}
+		do
+			make -f makefile_armv7 tests examples PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="${device}" HYPLNK_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}" HYPLNK_SRC_DIR=${S} INSTALL_BIN_BASE_DIR=${D}/${bindir}
+	done
+}
diff --git a/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb
new file mode 100755
index 0000000..03399c6
--- /dev/null
+++ b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb
@@ -0,0 +1,21 @@
+DESCRIPTION = "TI HYPLNK Low Level Driver"
+LICENSE = "TI BSD"
+
+COMPATIBLE_MACHINE = "keystone"
+
+PR = "r0"
+DEPENDS="ti-csl"
+
+include ti-hyplnk.inc
+
+BASEDIR = "${WORKDIR}/git"
+S = "${BASEDIR}/ti/drv/${LLDNAME}"
+
+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}
+}
diff --git a/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk.inc b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk.inc
new file mode 100644
index 0000000..26f22db
--- /dev/null
+++ b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk.inc
@@ -0,0 +1,10 @@
+LLDNAME="hyplnk"
+
+LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/${LLDNAME}/COPYING.txt;md5=5bdceac872dffdec915b819654ee23ea"
+
+BRANCH="master"
+SRC_URI = "git://git.ti.com/keystone-rtos/hyplnk-lld.git;destsuffix=git/ti/drv/${LLDNAME};protocol=git;branch=${BRANCH}"
+# Following commit corresponds to tag DEV.HYPLNK_LLD.02.00.00.09
+SRCREV = "f88e31b60aa2b4d591d5a845361c7e56792eeda1"
+
+PV = "2.0.0"
\ No newline at end of file
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [PATCH] ti-hyplnk: Add recipe for ti hyperlink low level driver
@ 2014-02-26 17:30 Sam Nelson
  0 siblings, 0 replies; 7+ messages in thread
From: Sam Nelson @ 2014-02-26 17:30 UTC (permalink / raw)
  To: meta-arago

- User space low level driver and test code for hyperlink
  peripheral

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 .../recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb     |   38 ++++++++++++++++++++
 .../recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb     |   21 +++++++++++
 .../recipes-bsp/ti-hyplnk/ti-hyplnk.inc            |    8 +++++
 3 files changed, 67 insertions(+)
 create mode 100755 meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb
 create mode 100755 meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb
 create mode 100644 meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk.inc

diff --git a/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb
new file mode 100755
index 0000000..86c0181
--- /dev/null
+++ b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-bin_git.bb
@@ -0,0 +1,38 @@
+DESCRIPTION = "TI HYPLNK low level driver test binaries"
+LICENSE = "TI BSD"
+
+COMPATIBLE_MACHINE = "keystone"
+
+PR = "r0"
+DEPENDS="ti-csl ti-hyplnk-lib"
+
+include ti-hyplnk.inc
+
+BASEDIR = "${WORKDIR}/git"
+S = "${BASEDIR}/ti/drv/${LLDNAME}"
+
+DEVICELIST = " k2h \
+               k2k \
+"
+
+CHOICELIST = " yes \
+               no  \
+"
+
+do_compile () {
+	make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR} HYPLNK_SRC_DIR=${PWD}
+	for device in ${DEVICELIST}
+	do
+		for choice in ${CHOICELIST}
+		do
+			make -f makefile_armv7 tests examples PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="${device}" HYPLNK_SRC_DIR=${PWD} USEDYNAMIC_LIB="${choice}"
+		done
+	done
+}
+
+do_install () {
+    for device in ${DEVICELIST}
+	do
+	    make -f makefile_armv7 installbin PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="${device}" HYPLNK_SRC_DIR=${PWD} INSTALL_BIN_BASE_DIR=${D}/${bindir}
+	done
+}
diff --git a/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb
new file mode 100755
index 0000000..03399c6
--- /dev/null
+++ b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk-lib_git.bb
@@ -0,0 +1,21 @@
+DESCRIPTION = "TI HYPLNK Low Level Driver"
+LICENSE = "TI BSD"
+
+COMPATIBLE_MACHINE = "keystone"
+
+PR = "r0"
+DEPENDS="ti-csl"
+
+include ti-hyplnk.inc
+
+BASEDIR = "${WORKDIR}/git"
+S = "${BASEDIR}/ti/drv/${LLDNAME}"
+
+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}
+}
diff --git a/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk.inc b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk.inc
new file mode 100644
index 0000000..93f9dbc
--- /dev/null
+++ b/meta-arago-extras/recipes-bsp/ti-hyplnk/ti-hyplnk.inc
@@ -0,0 +1,8 @@
+LLDNAME="hyplnk"
+
+LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/${LLDNAME}/COPYING.txt;md5=5bdceac872dffdec915b819654ee23ea"
+
+BRANCH="master"
+SRC_URI = "git://git.ti.com/keystone-rtos/hyplnk-lld.git;destsuffix=git/ti/drv/${LLDNAME};protocol=git;branch=${BRANCH}"
+# Following commit corresponds to tag DEV.HYPLNK_LLD.02.00.00.09
+SRCREV = "f88e31b60aa2b4d591d5a845361c7e56792eeda1"
\ No newline at end of file
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-05-16 18:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-02 23:22 [PATCH] ti-hyplnk: Add recipe for ti hyperlink low level driver Sam Nelson
2014-03-05  3:10 ` Denys Dmytriyenko
2014-03-05  3:41   ` Nelson, Sam
2014-05-16 17:13     ` Nelson, Sam
2014-05-16 18:32 ` Maupin, Chase
2014-05-16 18:40   ` Maupin, Chase
  -- strict thread matches above, loose matches on Subject: below --
2014-02-26 17:30 Sam Nelson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.