From: Denys Dmytriyenko <denys@ti.com>
To: Sam Nelson <sam.nelson@ti.com>
Cc: meta-arago@arago-project.org
Subject: Re: [PATCH] ti-hyplnk: Add recipe for ti hyperlink low level driver
Date: Tue, 4 Mar 2014 22:10:12 -0500 [thread overview]
Message-ID: <20140305031012.GV22125@edge> (raw)
In-Reply-To: <1393802558-7742-1-git-send-email-sam.nelson@ti.com>
This one as well - is this a v2 of previously submitted patch, or just
re-send?
On Sun, Mar 02, 2014 at 06:22:38PM -0500, Sam Nelson wrote:
> - 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
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
next prev parent reply other threads:[~2014-03-05 3:10 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140305031012.GV22125@edge \
--to=denys@ti.com \
--cc=meta-arago@arago-project.org \
--cc=sam.nelson@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.