All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] ipumm-fw: Updated ipumm firmware for latest IPC version
@ 2014-10-22 17:38 Denys Dmytriyenko
  2014-10-22 18:05 ` Karthik Ramanan
  2014-10-22 18:10 ` Karthik Ramanan
  0 siblings, 2 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2014-10-22 17:38 UTC (permalink / raw)
  To: meta-ti

From: Karthik Ramanan <a0393906@ti.com>

* This includes the error handling support.
* Minor bug fixes
* Relax support for entire DRA7xx SOC family to cover AM57x

Signed-off-by: Karthik Ramanan <a0393906@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 ...umm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} | 25 +++++++++++-----------
 1 file changed, 12 insertions(+), 13 deletions(-)
 rename recipes-bsp/ipumm-fw/{ipumm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} (52%)

diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
similarity index 52%
rename from recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
rename to recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
index 7f67c39..1cf24cc 100644
--- a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
+++ b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
@@ -6,32 +6,29 @@ python __anonymous() {
         raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES')
 }
 
-DESCRIPTION = "Firmware for IPU "
-
+DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode"
 LICENSE = "TI-TSPA"
-LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=64ca6f9d7e5243b8a4084eb918a543bc"
+
+LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=8206ccaf28c2932afb5afd9c9575287c"
 LIC_FILES_CHKSUM_omap5-evm = "file://MMIP-${PV}-Manifest.doc;md5=39a593dd8fc2a9654c74f679ed329c45"
 
-COMPATIBLE_MACHINE = "omap-a15"
+COMPATIBLE_MACHINE = "dra7xx|omap5-evm"
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-# Need to set the PLATFORM variable since now multiple MACHINEs are sharing
-# a common named tarball
-PLATFORM = "UNKNOWN"
-PLATFORM_dra7xx = "dra7xx-evm"
-PLATFORM_omap5-evm = "omap5-evm"
+SRC_URI_dra7xx = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_06_00/exports/ipumm-dra7xx-evm-3.00.06.00.tar.gz;protocol=ftp;name=dra7xx-evm"
 
-SRC_URI = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${PLATFORM}-3.00.04.02.tar.gz;protocol=http;name=${PLATFORM}"
+SRC_URI_omap5-evm  = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${MACHINE}-3.00.04.02.tar.gz;protocol=http;name=${MACHINE}"
 
 # DRA7xx checksums
-SRC_URI[dra7xx-evm.md5sum] = "da04c03b0fd57901e8283afa80f81379"
-SRC_URI[dra7xx-evm.sha256sum] = "0b26fd13f9c318b52c18b9bff56862ef1f58a768b19285b87c035e65bc828ddc"
+SRC_URI[dra7xx-evm.md5sum] = "8e1ae40eb10d631318d001463fa11d79"
+SRC_URI[dra7xx-evm.sha256sum] = "30c275146c34d11dbc2dfd568f0bbc3098a13cd981eee8a7a9766cb07d2f1ca5"
 
 # OMAP5 checksums
 SRC_URI[omap5-evm.md5sum] = "1572073ebd4f6d127c4e8cf47d270b6a"
 SRC_URI[omap5-evm.sha256sum] = "2fdb469f19e3c9984854f5bc82444fca4d7da869f5e645da22ec0d5beaa5cc65"
 
-S = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
+S_dra7xx = "${WORKDIR}/ipumm-dra7xx-evm-${PV}"
+S_omap5-evm = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
 
 TARGET_dra7xx = "dra7-ipu2-fw.xem4"
 TARGET_omap5-evm = "ducati-m3-core0.xem3"
@@ -42,3 +39,5 @@ do_install() {
 }
 
 FILES_${PN} += "${base_libdir}/firmware/${TARGET}"
+
+PR = "r1"
-- 
2.1.2



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

* Re: [PATCH v3] ipumm-fw: Updated ipumm firmware for latest IPC version
  2014-10-22 17:38 [PATCH v3] ipumm-fw: Updated ipumm firmware for latest IPC version Denys Dmytriyenko
@ 2014-10-22 18:05 ` Karthik Ramanan
  2014-10-22 18:10 ` Karthik Ramanan
  1 sibling, 0 replies; 6+ messages in thread
From: Karthik Ramanan @ 2014-10-22 18:05 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti

Looks good to me.
ACK.

On 22-Oct-14 11:08 PM, Denys Dmytriyenko wrote:
> From: Karthik Ramanan <a0393906@ti.com>
>
> * This includes the error handling support.
> * Minor bug fixes
> * Relax support for entire DRA7xx SOC family to cover AM57x
>
> Signed-off-by: Karthik Ramanan <a0393906@ti.com>
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
>   ...umm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} | 25 +++++++++++-----------
>   1 file changed, 12 insertions(+), 13 deletions(-)
>   rename recipes-bsp/ipumm-fw/{ipumm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} (52%)
>
> diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
> similarity index 52%
> rename from recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
> rename to recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
> index 7f67c39..1cf24cc 100644
> --- a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
> +++ b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
> @@ -6,32 +6,29 @@ python __anonymous() {
>           raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES')
>   }
>
> -DESCRIPTION = "Firmware for IPU "
> -
> +DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode"
>   LICENSE = "TI-TSPA"
> -LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=64ca6f9d7e5243b8a4084eb918a543bc"
> +
> +LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=8206ccaf28c2932afb5afd9c9575287c"
>   LIC_FILES_CHKSUM_omap5-evm = "file://MMIP-${PV}-Manifest.doc;md5=39a593dd8fc2a9654c74f679ed329c45"
>
> -COMPATIBLE_MACHINE = "omap-a15"
> +COMPATIBLE_MACHINE = "dra7xx|omap5-evm"
>   PACKAGE_ARCH = "${MACHINE_ARCH}"
>
> -# Need to set the PLATFORM variable since now multiple MACHINEs are sharing
> -# a common named tarball
> -PLATFORM = "UNKNOWN"
> -PLATFORM_dra7xx = "dra7xx-evm"
> -PLATFORM_omap5-evm = "omap5-evm"
> +SRC_URI_dra7xx = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_06_00/exports/ipumm-dra7xx-evm-3.00.06.00.tar.gz;protocol=ftp;name=dra7xx-evm"
>
> -SRC_URI = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${PLATFORM}-3.00.04.02.tar.gz;protocol=http;name=${PLATFORM}"
> +SRC_URI_omap5-evm  = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${MACHINE}-3.00.04.02.tar.gz;protocol=http;name=${MACHINE}"
>
>   # DRA7xx checksums
> -SRC_URI[dra7xx-evm.md5sum] = "da04c03b0fd57901e8283afa80f81379"
> -SRC_URI[dra7xx-evm.sha256sum] = "0b26fd13f9c318b52c18b9bff56862ef1f58a768b19285b87c035e65bc828ddc"
> +SRC_URI[dra7xx-evm.md5sum] = "8e1ae40eb10d631318d001463fa11d79"
> +SRC_URI[dra7xx-evm.sha256sum] = "30c275146c34d11dbc2dfd568f0bbc3098a13cd981eee8a7a9766cb07d2f1ca5"
>
>   # OMAP5 checksums
>   SRC_URI[omap5-evm.md5sum] = "1572073ebd4f6d127c4e8cf47d270b6a"
>   SRC_URI[omap5-evm.sha256sum] = "2fdb469f19e3c9984854f5bc82444fca4d7da869f5e645da22ec0d5beaa5cc65"
>
> -S = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
> +S_dra7xx = "${WORKDIR}/ipumm-dra7xx-evm-${PV}"
> +S_omap5-evm = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
>
>   TARGET_dra7xx = "dra7-ipu2-fw.xem4"
>   TARGET_omap5-evm = "ducati-m3-core0.xem3"
> @@ -42,3 +39,5 @@ do_install() {
>   }
>
>   FILES_${PN} += "${base_libdir}/firmware/${TARGET}"
> +
> +PR = "r1"
>



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

* Re: [PATCH v3] ipumm-fw: Updated ipumm firmware for latest IPC version
  2014-10-22 17:38 [PATCH v3] ipumm-fw: Updated ipumm firmware for latest IPC version Denys Dmytriyenko
  2014-10-22 18:05 ` Karthik Ramanan
@ 2014-10-22 18:10 ` Karthik Ramanan
  2014-10-22 18:17   ` Denys Dmytriyenko
  1 sibling, 1 reply; 6+ messages in thread
From: Karthik Ramanan @ 2014-10-22 18:10 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti

On 22-Oct-14 11:08 PM, Denys Dmytriyenko wrote:
> From: Karthik Ramanan <a0393906@ti.com>
>
> * This includes the error handling support.
> * Minor bug fixes
> * Relax support for entire DRA7xx SOC family to cover AM57x
>
> Signed-off-by: Karthik Ramanan <a0393906@ti.com>
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
>   ...umm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} | 25 +++++++++++-----------
>   1 file changed, 12 insertions(+), 13 deletions(-)
>   rename recipes-bsp/ipumm-fw/{ipumm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} (52%)
>
> diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
> similarity index 52%
> rename from recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
> rename to recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
> index 7f67c39..1cf24cc 100644
> --- a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
> +++ b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
> @@ -6,32 +6,29 @@ python __anonymous() {
>           raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES')
>   }
>
> -DESCRIPTION = "Firmware for IPU "
> -
> +DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode"
>   LICENSE = "TI-TSPA"
> -LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=64ca6f9d7e5243b8a4084eb918a543bc"
> +
> +LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=8206ccaf28c2932afb5afd9c9575287c"
>   LIC_FILES_CHKSUM_omap5-evm = "file://MMIP-${PV}-Manifest.doc;md5=39a593dd8fc2a9654c74f679ed329c45"
>
> -COMPATIBLE_MACHINE = "omap-a15"
> +COMPATIBLE_MACHINE = "dra7xx|omap5-evm"
>   PACKAGE_ARCH = "${MACHINE_ARCH}"
>
> -# Need to set the PLATFORM variable since now multiple MACHINEs are sharing
> -# a common named tarball
> -PLATFORM = "UNKNOWN"
> -PLATFORM_dra7xx = "dra7xx-evm"
> -PLATFORM_omap5-evm = "omap5-evm"
> +SRC_URI_dra7xx = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_06_00/exports/ipumm-dra7xx-evm-3.00.06.00.tar.gz;protocol=ftp;name=dra7xx-evm"
>
> -SRC_URI = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${PLATFORM}-3.00.04.02.tar.gz;protocol=http;name=${PLATFORM}"
> +SRC_URI_omap5-evm  = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${MACHINE}-3.00.04.02.tar.gz;protocol=http;name=${MACHINE}"
>
>   # DRA7xx checksums
> -SRC_URI[dra7xx-evm.md5sum] = "da04c03b0fd57901e8283afa80f81379"
> -SRC_URI[dra7xx-evm.sha256sum] = "0b26fd13f9c318b52c18b9bff56862ef1f58a768b19285b87c035e65bc828ddc"
> +SRC_URI[dra7xx-evm.md5sum] = "8e1ae40eb10d631318d001463fa11d79"
> +SRC_URI[dra7xx-evm.sha256sum] = "30c275146c34d11dbc2dfd568f0bbc3098a13cd981eee8a7a9766cb07d2f1ca5"

Had another look. Would this work, dra7xx-evm?

>
>   # OMAP5 checksums
>   SRC_URI[omap5-evm.md5sum] = "1572073ebd4f6d127c4e8cf47d270b6a"
>   SRC_URI[omap5-evm.sha256sum] = "2fdb469f19e3c9984854f5bc82444fca4d7da869f5e645da22ec0d5beaa5cc65"
>
> -S = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
> +S_dra7xx = "${WORKDIR}/ipumm-dra7xx-evm-${PV}"
> +S_omap5-evm = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
>
>   TARGET_dra7xx = "dra7-ipu2-fw.xem4"
>   TARGET_omap5-evm = "ducati-m3-core0.xem3"
> @@ -42,3 +39,5 @@ do_install() {
>   }
>
>   FILES_${PN} += "${base_libdir}/firmware/${TARGET}"
> +
> +PR = "r1"
>



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

* Re: [PATCH v3] ipumm-fw: Updated ipumm firmware for latest IPC version
  2014-10-22 18:10 ` Karthik Ramanan
@ 2014-10-22 18:17   ` Denys Dmytriyenko
  2014-10-27  9:00     ` Karthik Ramanan
  0 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2014-10-22 18:17 UTC (permalink / raw)
  To: Karthik Ramanan; +Cc: meta-ti

On Wed, Oct 22, 2014 at 11:40:43PM +0530, Karthik Ramanan wrote:
> On 22-Oct-14 11:08 PM, Denys Dmytriyenko wrote:
> >From: Karthik Ramanan <a0393906@ti.com>
> >
> >* This includes the error handling support.
> >* Minor bug fixes
> >* Relax support for entire DRA7xx SOC family to cover AM57x
> >
> >Signed-off-by: Karthik Ramanan <a0393906@ti.com>
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> >  ...umm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} | 25 +++++++++++-----------
> >  1 file changed, 12 insertions(+), 13 deletions(-)
> >  rename recipes-bsp/ipumm-fw/{ipumm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} (52%)
> >
> >diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
> >similarity index 52%
> >rename from recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
> >rename to recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
> >index 7f67c39..1cf24cc 100644
> >--- a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
> >+++ b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
> >@@ -6,32 +6,29 @@ python __anonymous() {
> >          raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES')
> >  }
> >
> >-DESCRIPTION = "Firmware for IPU "
> >-
> >+DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode"
> >  LICENSE = "TI-TSPA"
> >-LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=64ca6f9d7e5243b8a4084eb918a543bc"
> >+
> >+LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=8206ccaf28c2932afb5afd9c9575287c"
> >  LIC_FILES_CHKSUM_omap5-evm = "file://MMIP-${PV}-Manifest.doc;md5=39a593dd8fc2a9654c74f679ed329c45"
> >
> >-COMPATIBLE_MACHINE = "omap-a15"
> >+COMPATIBLE_MACHINE = "dra7xx|omap5-evm"
> >  PACKAGE_ARCH = "${MACHINE_ARCH}"
> >
> >-# Need to set the PLATFORM variable since now multiple MACHINEs are sharing
> >-# a common named tarball
> >-PLATFORM = "UNKNOWN"
> >-PLATFORM_dra7xx = "dra7xx-evm"
> >-PLATFORM_omap5-evm = "omap5-evm"
> >+SRC_URI_dra7xx = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_06_00/exports/ipumm-dra7xx-evm-3.00.06.00.tar.gz;protocol=ftp;name=dra7xx-evm"
> >
> >-SRC_URI = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${PLATFORM}-3.00.04.02.tar.gz;protocol=http;name=${PLATFORM}"
> >+SRC_URI_omap5-evm  = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${MACHINE}-3.00.04.02.tar.gz;protocol=http;name=${MACHINE}"
> >
> >  # DRA7xx checksums
> >-SRC_URI[dra7xx-evm.md5sum] = "da04c03b0fd57901e8283afa80f81379"
> >-SRC_URI[dra7xx-evm.sha256sum] = "0b26fd13f9c318b52c18b9bff56862ef1f58a768b19285b87c035e65bc828ddc"
> >+SRC_URI[dra7xx-evm.md5sum] = "8e1ae40eb10d631318d001463fa11d79"
> >+SRC_URI[dra7xx-evm.sha256sum] = "30c275146c34d11dbc2dfd568f0bbc3098a13cd981eee8a7a9766cb07d2f1ca5"
> 
> Had another look. Would this work, dra7xx-evm?

Right, SRC_URI above sets the name=dra7xx-evm.


> >  # OMAP5 checksums
> >  SRC_URI[omap5-evm.md5sum] = "1572073ebd4f6d127c4e8cf47d270b6a"
> >  SRC_URI[omap5-evm.sha256sum] = "2fdb469f19e3c9984854f5bc82444fca4d7da869f5e645da22ec0d5beaa5cc65"
> >
> >-S = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
> >+S_dra7xx = "${WORKDIR}/ipumm-dra7xx-evm-${PV}"
> >+S_omap5-evm = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
> >
> >  TARGET_dra7xx = "dra7-ipu2-fw.xem4"
> >  TARGET_omap5-evm = "ducati-m3-core0.xem3"
> >@@ -42,3 +39,5 @@ do_install() {
> >  }
> >
> >  FILES_${PN} += "${base_libdir}/firmware/${TARGET}"
> >+
> >+PR = "r1"
> >
> 


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

* Re: [PATCH v3] ipumm-fw: Updated ipumm firmware for latest IPC version
  2014-10-22 18:17   ` Denys Dmytriyenko
@ 2014-10-27  9:00     ` Karthik Ramanan
  2014-10-27 10:24       ` Recipes adding firmware in meta-ti Peter A. Bigot
  0 siblings, 1 reply; 6+ messages in thread
From: Karthik Ramanan @ 2014-10-27  9:00 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti


ACK, this patch can be merged.

On 22-Oct-14 11:47 PM, Denys Dmytriyenko wrote:
> On Wed, Oct 22, 2014 at 11:40:43PM +0530, Karthik Ramanan wrote:
>> On 22-Oct-14 11:08 PM, Denys Dmytriyenko wrote:
>>> From: Karthik Ramanan <a0393906@ti.com>
>>>
>>> * This includes the error handling support.
>>> * Minor bug fixes
>>> * Relax support for entire DRA7xx SOC family to cover AM57x
>>>
>>> Signed-off-by: Karthik Ramanan <a0393906@ti.com>
>>> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>>> ---
>>>   ...umm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} | 25 +++++++++++-----------
>>>   1 file changed, 12 insertions(+), 13 deletions(-)
>>>   rename recipes-bsp/ipumm-fw/{ipumm-fw_3.00.04.02.bb => ipumm-fw_3.00.06.00.bb} (52%)
>>>
>>> diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
>>> similarity index 52%
>>> rename from recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
>>> rename to recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
>>> index 7f67c39..1cf24cc 100644
>>> --- a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.04.02.bb
>>> +++ b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.06.00.bb
>>> @@ -6,32 +6,29 @@ python __anonymous() {
>>>           raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES')
>>>   }
>>>
>>> -DESCRIPTION = "Firmware for IPU "
>>> -
>>> +DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode"
>>>   LICENSE = "TI-TSPA"
>>> -LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=64ca6f9d7e5243b8a4084eb918a543bc"
>>> +
>>> +LIC_FILES_CHKSUM_dra7xx = "file://MMIP-${PV}-Manifest.doc;md5=8206ccaf28c2932afb5afd9c9575287c"
>>>   LIC_FILES_CHKSUM_omap5-evm = "file://MMIP-${PV}-Manifest.doc;md5=39a593dd8fc2a9654c74f679ed329c45"
>>>
>>> -COMPATIBLE_MACHINE = "omap-a15"
>>> +COMPATIBLE_MACHINE = "dra7xx|omap5-evm"
>>>   PACKAGE_ARCH = "${MACHINE_ARCH}"
>>>
>>> -# Need to set the PLATFORM variable since now multiple MACHINEs are sharing
>>> -# a common named tarball
>>> -PLATFORM = "UNKNOWN"
>>> -PLATFORM_dra7xx = "dra7xx-evm"
>>> -PLATFORM_omap5-evm = "omap5-evm"
>>> +SRC_URI_dra7xx = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_06_00/exports/ipumm-dra7xx-evm-3.00.06.00.tar.gz;protocol=ftp;name=dra7xx-evm"
>>>
>>> -SRC_URI = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${PLATFORM}-3.00.04.02.tar.gz;protocol=http;name=${PLATFORM}"
>>> +SRC_URI_omap5-evm  = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/ipumm/3_00_04_02/exports/ipumm-${MACHINE}-3.00.04.02.tar.gz;protocol=http;name=${MACHINE}"
>>>
>>>   # DRA7xx checksums
>>> -SRC_URI[dra7xx-evm.md5sum] = "da04c03b0fd57901e8283afa80f81379"
>>> -SRC_URI[dra7xx-evm.sha256sum] = "0b26fd13f9c318b52c18b9bff56862ef1f58a768b19285b87c035e65bc828ddc"
>>> +SRC_URI[dra7xx-evm.md5sum] = "8e1ae40eb10d631318d001463fa11d79"
>>> +SRC_URI[dra7xx-evm.sha256sum] = "30c275146c34d11dbc2dfd568f0bbc3098a13cd981eee8a7a9766cb07d2f1ca5"
>>
>> Had another look. Would this work, dra7xx-evm?
>
> Right, SRC_URI above sets the name=dra7xx-evm.

I verified that this works fine.

>
>
>>>   # OMAP5 checksums
>>>   SRC_URI[omap5-evm.md5sum] = "1572073ebd4f6d127c4e8cf47d270b6a"
>>>   SRC_URI[omap5-evm.sha256sum] = "2fdb469f19e3c9984854f5bc82444fca4d7da869f5e645da22ec0d5beaa5cc65"
>>>
>>> -S = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
>>> +S_dra7xx = "${WORKDIR}/ipumm-dra7xx-evm-${PV}"
>>> +S_omap5-evm = "${WORKDIR}/ipumm-${MACHINE}-${PV}"
>>>
>>>   TARGET_dra7xx = "dra7-ipu2-fw.xem4"
>>>   TARGET_omap5-evm = "ducati-m3-core0.xem3"
>>> @@ -42,3 +39,5 @@ do_install() {
>>>   }
>>>
>>>   FILES_${PN} += "${base_libdir}/firmware/${TARGET}"
>>> +
>>> +PR = "r1"
>>>
>>



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

* Recipes adding firmware in meta-ti
  2014-10-27  9:00     ` Karthik Ramanan
@ 2014-10-27 10:24       ` Peter A. Bigot
  0 siblings, 0 replies; 6+ messages in thread
From: Peter A. Bigot @ 2014-10-27 10:24 UTC (permalink / raw)
  To: meta-ti

I think it would be more in keeping with the Yocto way if all these 
firmware capabilities were added through PACKAGECONFIG options in a 
meta-ti bbappend to linux-firmware, rather than through separate recipes.

This is especially true of the firmware added in linux-staging-ti.  If 
those patches are ever upstreamed (I assume that's the intent) then 
stock linux-yocto kernels will be getting the images from 
linux-firmware, and updated versions obtained in future linux-staging-ti 
branches will conflict.

Last I looked, linux-staging-ti had a .elf format firmware blob, which 
is not a supported format for linux-firmware.  Adding it in a bbappend 
produces a QA warning because it gets stripped and the debug version 
doesn't get packaged.  At that time, although both .bin and .elf 
versions of that firmware were available, the code that loaded it would 
only work with the .elf version.

In short, consistently putting firmware into linux-firmware now would 
decrease integration issues both now and in the future.

Just a thought.

Peter


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

end of thread, other threads:[~2014-10-27 10:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-22 17:38 [PATCH v3] ipumm-fw: Updated ipumm firmware for latest IPC version Denys Dmytriyenko
2014-10-22 18:05 ` Karthik Ramanan
2014-10-22 18:10 ` Karthik Ramanan
2014-10-22 18:17   ` Denys Dmytriyenko
2014-10-27  9:00     ` Karthik Ramanan
2014-10-27 10:24       ` Recipes adding firmware in meta-ti Peter A. Bigot

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.