All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Nelson, Sam" <sam.nelson@ti.com>
To: "Dmytriyenko, Denys" <denys@ti.com>
Cc: "meta-ti@yoctoproject.org" <meta-ti@yoctoproject.org>
Subject: Re: [rocko][PATCH v4 4/4] sciclient: Add recipe for SCI client driver
Date: Fri, 24 Aug 2018 21:13:37 +0000	[thread overview]
Message-ID: <8b3ef95b6721442782371c6abb59385b@ti.com> (raw)
In-Reply-To: <20180824201936.GB9228@beryl>



> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Friday, August 24, 2018 4:20 PM
> To: Nelson, Sam
> Cc: meta-ti@yoctoproject.org
> Subject: Re: [meta-ti] [rocko][PATCH v4 4/4] sciclient: Add recipe for SCI
> client driver
> 
> On Thu, Aug 23, 2018 at 02:28:09PM -0400, Sam Nelson wrote:
> > Sci client provides API to communicate with the core running System
> > firmware
> >
> > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> >
> > ---
> > Change from previous version of patch
> > - Remove redundant description
> > - remove redudant defines
> 
> Sam,
> 
> Can you please make these 2 changes as a separate patch? I wanted to start
> testing all the other updates right away and didn't wait for your v4, but
> instead went with v3, as the changes are rather cosmetical. Thanks.

No problem. I have sent a separate patch. Thanks.

> 
> 
> > ---
> > ---
> >  recipes-bsp/sciclient/sciclient-rtos_git.bb | 83
> +++++++++++++++++++++++++++++
> >  1 file changed, 83 insertions(+)
> >  create mode 100644 recipes-bsp/sciclient/sciclient-rtos_git.bb
> >
> > diff --git a/recipes-bsp/sciclient/sciclient-rtos_git.bb b/recipes-
> bsp/sciclient/sciclient-rtos_git.bb
> > new file mode 100644
> > index 0000000..e059f4b
> > --- /dev/null
> > +++ b/recipes-bsp/sciclient/sciclient-rtos_git.bb
> > @@ -0,0 +1,83 @@
> > +SUMMARY = "TI RTOS low level driver for SCICLIENT"
> > +
> > +inherit ti-pdk
> > +
> > +LICENSE = "BSD-3-Clause"
> > +LIC_FILES_CHKSUM =
> "file://sciclient.h;beginline=1;endline=31;md5=7224b2eeca1444815f1737bfc
> dfa892a"
> > +
> > +COMPATIBLE_MACHINE = "k3"
> > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > +
> > +SCICLIENT_GIT_URI = "git://git.ti.com/keystone-rtos/sciclient.git"
> > +SCICLIENT_GIT_PROTOCOL = "git"
> > +SCICLIENT_GIT_BRANCH = "master"
> > +
> > +# Below commit ID corresponds to "DEV.SCICLIENT.01.00.00.00"
> > +SCICLIENT_SRCREV = "4ac052a70764c5fcf9dd18d521fe3b631bfcd875"
> > +
> > +BRANCH = "${SCICLIENT_GIT_BRANCH}"
> > +SRC_URI =
> "${SCICLIENT_GIT_URI};protocol=${SCICLIENT_GIT_PROTOCOL};branch=${BRA
> NCH}"
> > +
> > +SRCREV = "${SCICLIENT_SRCREV}"
> > +PV = "01.00.00.00"
> > +PR = "r0"
> > +
> > +DEPENDS_append = " osal-rtos common-csl-ip-rtos"
> > +
> > +# Build with make instead of XDC
> > +TI_PDK_XDCMAKE = "0"
> > +
> > +SCICLIENT_PACKAGE_BASE   = "${S}/../sciclient_base"
> > +SCICLIENT_ROOTPATH =
> "${SCICLIENT_PACKAGE_BASE}/package/all/pdk_/packages/ti/drv/sciclient"
> > +
> > +export PDK_INSTALL_PATH = "${PDK_INSTALL_DIR}/packages"
> > +export PDK_SCICLIENT_ROOT_PATH =
> "${SCICLIENT_PACKAGE_BASE}/package/all/pdk_/packages"
> > +
> > +#export PDK_SCICLIENT_ROOT_PATH ="${WORKDIR}/build"
> > +#export DEST_ROOT="${S}"
> > +
> > +LIMSOCS_am65xx-evm = "am65xx"
> > +LIMBOARDS_am65xx-evm = "am65xx_evm"
> > +BOARD_PACKAGE_am65xx-evm = "am65xx_evm"
> > +
> > +# HTML doc link params
> > +PDK_COMP_LINK_TEXT = "SCICLIENT"
> > +
> > +do_configure() {
> > +
> > +    rm -rf ${SCICLIENT_PACKAGE_BASE}
> > +    cd ${S}
> > +
> > +    # remove any previous package
> > +    rm -f ${SCICLIENT_PACKAGE_BASE}
> > +
> > +    # make the release package before building it
> > +    make package BOARD=${BOARD_PACKAGE}
> DEST_ROOT=${SCICLIENT_PACKAGE_BASE} PDK_SCICLIENT_COMP_PATH=${S}
> > +
> > +   # This is to ensure the make package completed successfully
> > +    cat  ${SCICLIENT_ROOTPATH}/makefile
> > +}
> > +
> > +do_compile() {
> > +
> > +    cd ${SCICLIENT_ROOTPATH}
> > +
> > +    # Clean
> > +    # make clean LIMIT_SOCS="${LIMSOCS}"
> LIMIT_BOARDS="${LIMBOARDS}"
> > +
> > +    # Build am65xx libraries
> > +    make lib xdc_meta doxygen LIMIT_SOCS="${LIMSOCS}"
> LIMIT_BOARDS="${LIMBOARDS}"
> > +
> > +    #archive
> > +    tar -cf sciclient.tar --exclude='*.tar' ./*
> > +}
> > +
> > +do_install() {
> > +    cd ${SCICLIENT_ROOTPATH}
> > +    install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/drv/sciclient
> > +    find -name "*.tar" -exec tar xf {} --no-same-owner -C
> ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/drv/sciclient \;
> > +}
> > +
> > +FILES_${PN} += "${PDK_INSTALL_DIR_RECIPE}/packages"
> > +
> > +INSANE_SKIP_${PN} = "arch ldflags file-rdeps"
> > --
> > 1.9.1
> >
> > --
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti


      reply	other threads:[~2018-08-24 21:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-23 18:28 [rocko][PATCH v4 4/4] sciclient: Add recipe for SCI client driver Sam Nelson
2018-08-24 20:19 ` Denys Dmytriyenko
2018-08-24 21:13   ` Nelson, Sam [this message]

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=8b3ef95b6721442782371c6abb59385b@ti.com \
    --to=sam.nelson@ti.com \
    --cc=denys@ti.com \
    --cc=meta-ti@yoctoproject.org \
    /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.