All of lore.kernel.org
 help / color / mirror / Atom feed
* [rocko][PATCH v4 4/4] sciclient: Add recipe for SCI client driver
@ 2018-08-23 18:28 Sam Nelson
  2018-08-24 20:19 ` Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Sam Nelson @ 2018-08-23 18:28 UTC (permalink / raw)
  To: meta-ti

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
---
---
 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=7224b2eeca1444815f1737bfcdfa892a"
+
+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=${BRANCH}"
+
+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



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

* Re: [rocko][PATCH v4 4/4] sciclient: Add recipe for SCI client driver
  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
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2018-08-24 20:19 UTC (permalink / raw)
  To: Sam Nelson; +Cc: meta-ti

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.


> ---
> ---
>  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=7224b2eeca1444815f1737bfcdfa892a"
> +
> +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=${BRANCH}"
> +
> +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


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

* Re: [rocko][PATCH v4 4/4] sciclient: Add recipe for SCI client driver
  2018-08-24 20:19 ` Denys Dmytriyenko
@ 2018-08-24 21:13   ` Nelson, Sam
  0 siblings, 0 replies; 3+ messages in thread
From: Nelson, Sam @ 2018-08-24 21:13 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti



> -----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


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

end of thread, other threads:[~2018-08-24 21:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 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.