All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] cppi-lld: Add new recipe for CPPI Module low level driver
@ 2014-12-16 18:12 Sam Nelson
  2014-12-16 18:12 ` [PATCH 2/2] qmss-lld: Add new recipe for QMSS " Sam Nelson
  2014-12-18 18:01 ` [PATCH 1/2] cppi-lld: Add new recipe for CPPI " Denys Dmytriyenko
  0 siblings, 2 replies; 3+ messages in thread
From: Sam Nelson @ 2014-12-16 18:12 UTC (permalink / raw)
  To: meta-ti

- Provides low level driver and test code for Communications port programming
  interface module
- Supports k2h, k2k, k2l k2e devices

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 recipes-bsp/cppi-lld/cppi-lld-test_git.bb |   26 ++++++++++++++++++++++++++
 recipes-bsp/cppi-lld/cppi-lld.inc         |   15 +++++++++++++++
 recipes-bsp/cppi-lld/cppi-lld_git.bb      |   19 +++++++++++++++++++
 3 files changed, 60 insertions(+)
 create mode 100755 recipes-bsp/cppi-lld/cppi-lld-test_git.bb
 create mode 100644 recipes-bsp/cppi-lld/cppi-lld.inc
 create mode 100755 recipes-bsp/cppi-lld/cppi-lld_git.bb

diff --git a/recipes-bsp/cppi-lld/cppi-lld-test_git.bb b/recipes-bsp/cppi-lld/cppi-lld-test_git.bb
new file mode 100755
index 0000000..871546e
--- /dev/null
+++ b/recipes-bsp/cppi-lld/cppi-lld-test_git.bb
@@ -0,0 +1,26 @@
+DESCRIPTION = "TI CPPI low level driver unit test and example binaries"
+COMPATIBLE_MACHINE = "keystone"
+DEPENDS = "common-csl-ip rm-lld cppi-lld qmss-lld"
+
+include cppi-lld.inc
+
+CHOICELIST = "yes no"
+
+do_compile () {
+#   Now build the lld in the updated directory
+	for device in ${DEVICELIST}
+	do
+		make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" CPPI_SRC_DIR=${S}
+		for choice in ${CHOICELIST}
+		do
+			make -f makefile_armv7 tests examples PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" CPPI_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" CPPI_SRC_DIR=${S} INSTALL_BIN_BASE_DIR=${D}${bindir}
+	done
+}
diff --git a/recipes-bsp/cppi-lld/cppi-lld.inc b/recipes-bsp/cppi-lld/cppi-lld.inc
new file mode 100644
index 0000000..d26adc5
--- /dev/null
+++ b/recipes-bsp/cppi-lld/cppi-lld.inc
@@ -0,0 +1,15 @@
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/cppi/COPYING.txt;md5=e8f6789acdcda76d02ed9203fc2e603d"
+
+BRANCH = "master"
+SRC_URI = "git://git.ti.com/keystone-rtos/cppi-lld.git;destsuffix=git/ti/drv/cppi;protocol=git;branch=${BRANCH}"
+
+# Below Commit ID corresponds to "DEV.CPPI_LLD.02.01.00.06"
+SRCREV = "4c6c0a857786c49d8003453d3bc7c3c97ff4f5a4"
+PV = "02.01.00.06"
+PR = "r0"
+
+DEVICELIST = "k2h k2k k2l k2e"
+
+BASEDIR = "${WORKDIR}/git"
+S = "${BASEDIR}/ti/drv/cppi"
diff --git a/recipes-bsp/cppi-lld/cppi-lld_git.bb b/recipes-bsp/cppi-lld/cppi-lld_git.bb
new file mode 100755
index 0000000..bb2028b
--- /dev/null
+++ b/recipes-bsp/cppi-lld/cppi-lld_git.bb
@@ -0,0 +1,19 @@
+DESCRIPTION = "TI CPPI Module low level driver"
+COMPATIBLE_MACHINE = "keystone"
+
+DEPENDS = "common-csl-ip rm-lld qmss-lld"
+
+include cppi-lld.inc
+
+do_compile () {
+#   Now build the lld in the updated directory
+	make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR}
+	for device in ${DEVICELIST}
+	do
+		make -f makefile_armv7 lib PDK_INSTALL_PATH=${STAGING_INCDIR}  DEVICE="${device}" 
+	done
+}
+
+do_install () {
+	make -f makefile_armv7 install PDK_INSTALL_PATH=${STAGING_INCDIR} INSTALL_INC_BASE_DIR=${D}/${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}
+}
-- 
1.7.9.5



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

* [PATCH 2/2] qmss-lld: Add new recipe for QMSS Module low level driver
  2014-12-16 18:12 [PATCH 1/2] cppi-lld: Add new recipe for CPPI Module low level driver Sam Nelson
@ 2014-12-16 18:12 ` Sam Nelson
  2014-12-18 18:01 ` [PATCH 1/2] cppi-lld: Add new recipe for CPPI " Denys Dmytriyenko
  1 sibling, 0 replies; 3+ messages in thread
From: Sam Nelson @ 2014-12-16 18:12 UTC (permalink / raw)
  To: meta-ti

- Provides low level driver and test code for Queue managment subsystem module
- Supports k2h, k2k, k2l k2e devices

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 recipes-bsp/qmss-lld/qmss-lld-test_git.bb |   27 +++++++++++++++++++++++++++
 recipes-bsp/qmss-lld/qmss-lld.inc         |   15 +++++++++++++++
 recipes-bsp/qmss-lld/qmss-lld_git.bb      |   20 ++++++++++++++++++++
 3 files changed, 62 insertions(+)
 create mode 100755 recipes-bsp/qmss-lld/qmss-lld-test_git.bb
 create mode 100644 recipes-bsp/qmss-lld/qmss-lld.inc
 create mode 100755 recipes-bsp/qmss-lld/qmss-lld_git.bb

diff --git a/recipes-bsp/qmss-lld/qmss-lld-test_git.bb b/recipes-bsp/qmss-lld/qmss-lld-test_git.bb
new file mode 100755
index 0000000..438d840
--- /dev/null
+++ b/recipes-bsp/qmss-lld/qmss-lld-test_git.bb
@@ -0,0 +1,27 @@
+DESCRIPTION = "TI QMSS low level driver unit test and example binaries"
+COMPATIBLE_MACHINE = "keystone"
+
+DEPENDS="common-csl-ip rm-lld cppi-lld qmss-lld"
+
+include qmss-lld.inc
+
+CHOICELIST = "yes no"
+
+do_compile () {
+#   Now build the lld in the updated directory
+	for device in ${DEVICELIST}
+	do
+		make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" QMSS_SRC_DIR=${S}
+		for choice in ${CHOICELIST}
+		do
+			make -f makefile_armv7 tests examples PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" QMSS_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" QMSS_SRC_DIR=${S} INSTALL_BIN_BASE_DIR=${D}${bindir}
+	done
+}
diff --git a/recipes-bsp/qmss-lld/qmss-lld.inc b/recipes-bsp/qmss-lld/qmss-lld.inc
new file mode 100644
index 0000000..87499cc
--- /dev/null
+++ b/recipes-bsp/qmss-lld/qmss-lld.inc
@@ -0,0 +1,15 @@
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/qmss/COPYING.txt;md5=e8f6789acdcda76d02ed9203fc2e603d"
+
+BRANCH ="master"
+SRC_URI = "git://git.ti.com/keystone-rtos/qmss-lld.git;destsuffix=git/ti/drv/qmss;protocol=git;branch=${BRANCH}"
+
+# commit ID corresponding to DEV.QMSS_LLD.02.01.00.06
+SRCREV = "661fff76530fd56cf7550f76c7b7a541ea18fda8"
+PV = "02.01.00.06"
+PR = "r0"
+
+DEVICELIST = "k2h k2k k2l k2e"
+
+BASEDIR = "${WORKDIR}/git"
+S = "${BASEDIR}/ti/drv/qmss"
diff --git a/recipes-bsp/qmss-lld/qmss-lld_git.bb b/recipes-bsp/qmss-lld/qmss-lld_git.bb
new file mode 100755
index 0000000..9d2f547
--- /dev/null
+++ b/recipes-bsp/qmss-lld/qmss-lld_git.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "TI QMSS low level driver library"
+COMPATIBLE_MACHINE = "keystone"
+
+DEPENDS="common-csl-ip rm-lld"
+
+include qmss-lld.inc
+
+do_compile () {
+#   Now build the lld
+    make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR}
+	for device in ${DEVICELIST}
+	do
+		make -f makefile_armv7 lib PDK_INSTALL_PATH=${STAGING_INCDIR}  DEVICE="${device}"
+	done
+
+}
+
+do_install () {
+    make -f makefile_armv7 install PDK_INSTALL_PATH=${STAGING_INCDIR} INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}
+}
-- 
1.7.9.5



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

* Re: [PATCH 1/2] cppi-lld: Add new recipe for CPPI Module low level driver
  2014-12-16 18:12 [PATCH 1/2] cppi-lld: Add new recipe for CPPI Module low level driver Sam Nelson
  2014-12-16 18:12 ` [PATCH 2/2] qmss-lld: Add new recipe for QMSS " Sam Nelson
@ 2014-12-18 18:01 ` Denys Dmytriyenko
  1 sibling, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2014-12-18 18:01 UTC (permalink / raw)
  To: Sam Nelson; +Cc: meta-ti

On Tue, Dec 16, 2014 at 01:12:10PM -0500, Sam Nelson wrote:
> - Provides low level driver and test code for Communications port programming
>   interface module
> - Supports k2h, k2k, k2l k2e devices
> 
> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> ---
>  recipes-bsp/cppi-lld/cppi-lld-test_git.bb |   26 ++++++++++++++++++++++++++
>  recipes-bsp/cppi-lld/cppi-lld.inc         |   15 +++++++++++++++
>  recipes-bsp/cppi-lld/cppi-lld_git.bb      |   19 +++++++++++++++++++
>  3 files changed, 60 insertions(+)
>  create mode 100755 recipes-bsp/cppi-lld/cppi-lld-test_git.bb
>  create mode 100644 recipes-bsp/cppi-lld/cppi-lld.inc
>  create mode 100755 recipes-bsp/cppi-lld/cppi-lld_git.bb
> 
> diff --git a/recipes-bsp/cppi-lld/cppi-lld-test_git.bb b/recipes-bsp/cppi-lld/cppi-lld-test_git.bb
> new file mode 100755
> index 0000000..871546e
> --- /dev/null
> +++ b/recipes-bsp/cppi-lld/cppi-lld-test_git.bb
> @@ -0,0 +1,26 @@
> +DESCRIPTION = "TI CPPI low level driver unit test and example binaries"

The only cosmetic comment I have is that it would be nice to spell out in the 
recipe description abbreviations like CPPI and QMMS, etc...


> +COMPATIBLE_MACHINE = "keystone"
> +DEPENDS = "common-csl-ip rm-lld cppi-lld qmss-lld"
> +
> +include cppi-lld.inc
> +
> +CHOICELIST = "yes no"
> +
> +do_compile () {
> +#   Now build the lld in the updated directory
> +	for device in ${DEVICELIST}
> +	do
> +		make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" CPPI_SRC_DIR=${S}
> +		for choice in ${CHOICELIST}
> +		do
> +			make -f makefile_armv7 tests examples PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" CPPI_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" CPPI_SRC_DIR=${S} INSTALL_BIN_BASE_DIR=${D}${bindir}
> +	done
> +}
> diff --git a/recipes-bsp/cppi-lld/cppi-lld.inc b/recipes-bsp/cppi-lld/cppi-lld.inc
> new file mode 100644
> index 0000000..d26adc5
> --- /dev/null
> +++ b/recipes-bsp/cppi-lld/cppi-lld.inc
> @@ -0,0 +1,15 @@
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/cppi/COPYING.txt;md5=e8f6789acdcda76d02ed9203fc2e603d"
> +
> +BRANCH = "master"
> +SRC_URI = "git://git.ti.com/keystone-rtos/cppi-lld.git;destsuffix=git/ti/drv/cppi;protocol=git;branch=${BRANCH}"
> +
> +# Below Commit ID corresponds to "DEV.CPPI_LLD.02.01.00.06"
> +SRCREV = "4c6c0a857786c49d8003453d3bc7c3c97ff4f5a4"
> +PV = "02.01.00.06"
> +PR = "r0"
> +
> +DEVICELIST = "k2h k2k k2l k2e"
> +
> +BASEDIR = "${WORKDIR}/git"
> +S = "${BASEDIR}/ti/drv/cppi"
> diff --git a/recipes-bsp/cppi-lld/cppi-lld_git.bb b/recipes-bsp/cppi-lld/cppi-lld_git.bb
> new file mode 100755
> index 0000000..bb2028b
> --- /dev/null
> +++ b/recipes-bsp/cppi-lld/cppi-lld_git.bb
> @@ -0,0 +1,19 @@
> +DESCRIPTION = "TI CPPI Module low level driver"
> +COMPATIBLE_MACHINE = "keystone"
> +
> +DEPENDS = "common-csl-ip rm-lld qmss-lld"
> +
> +include cppi-lld.inc
> +
> +do_compile () {
> +#   Now build the lld in the updated directory
> +	make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR}
> +	for device in ${DEVICELIST}
> +	do
> +		make -f makefile_armv7 lib PDK_INSTALL_PATH=${STAGING_INCDIR}  DEVICE="${device}" 
> +	done
> +}
> +
> +do_install () {
> +	make -f makefile_armv7 install PDK_INSTALL_PATH=${STAGING_INCDIR} INSTALL_INC_BASE_DIR=${D}/${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}
> +}
> -- 
> 1.7.9.5
> 
> -- 
> _______________________________________________
> 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:[~2014-12-18 18:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-16 18:12 [PATCH 1/2] cppi-lld: Add new recipe for CPPI Module low level driver Sam Nelson
2014-12-16 18:12 ` [PATCH 2/2] qmss-lld: Add new recipe for QMSS " Sam Nelson
2014-12-18 18:01 ` [PATCH 1/2] cppi-lld: Add new recipe for CPPI " Denys Dmytriyenko

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.