All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N}
@ 2020-06-15 13:06 Sébastien Szymanski
  2020-06-15 13:06 ` [Buildroot] [PATCH 2/3] package/freescale-imx/firmware-imx: install easrc firmware for i.MX8MN Sébastien Szymanski
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Sébastien Szymanski @ 2020-06-15 13:06 UTC (permalink / raw)
  To: buildroot

i.MX8M, i.MX8MM and i.MX8MN have sdma controllers so install sdma
firmware for these SoCs. Mainline and NXP kernels expect the sdma
firmware to be in /lib/firmware/imx/sdma so fix the install path at the
same time.

Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.com>
---
 .../freescale-imx/firmware-imx/firmware-imx.mk  | 17 +++++------------
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/package/freescale-imx/firmware-imx/firmware-imx.mk b/package/freescale-imx/firmware-imx/firmware-imx.mk
index 9fd1c54b48..725f275948 100644
--- a/package/freescale-imx/firmware-imx/firmware-imx.mk
+++ b/package/freescale-imx/firmware-imx/firmware-imx.mk
@@ -12,7 +12,7 @@ FIRMWARE_IMX_LICENSE = NXP Semiconductor Software License Agreement
 FIRMWARE_IMX_LICENSE_FILES = EULA COPYING
 FIRMWARE_IMX_REDISTRIBUTE = NO
 
-FIRMWARE_IMX_BLOBS = sdma vpu
+FIRMWARE_IMX_BLOBS = sdma epdc
 
 define FIRMWARE_IMX_EXTRACT_CMDS
 	$(call FREESCALE_IMX_EXTRACT_HELPER,$(FIRMWARE_IMX_DL_DIR)/$(FIRMWARE_IMX_SOURCE))
@@ -84,23 +84,16 @@ define FIRMWARE_IMX_INSTALL_IMAGES_CMDS
 	$(FIRMWARE_IMX_PREPARE_DDR_FW)
 	$(FIRMWARE_IMX_PREPARE_HDMI_FW)
 endef
-else ifeq ($(BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8X),y)
-define FIRMWARE_IMX_INSTALL_TARGET_CMDS
-	$(INSTALL) -D -m 0644 $(@D)/firmware/vpu/vpu_fw_imx8_dec.bin \
-		$(TARGET_DIR)/lib/firmware/vpu/vpu_fw_imx8_dec.bin
-	$(INSTALL) -D -m 0644 $(@D)/firmware/vpu/vpu_fw_imx8_enc.bin \
-		$(TARGET_DIR)/lib/firmware/vpu/vpu_fw_imx8_enc.bin
-endef
-else
+endif
+
 define FIRMWARE_IMX_INSTALL_TARGET_CMDS
 	mkdir -p $(TARGET_DIR)/lib/firmware/imx
+	cp -r $(@D)/firmware/vpu $(TARGET_DIR)/lib/firmware
 	for blobdir in $(FIRMWARE_IMX_BLOBS); do \
-		cp -r $(@D)/firmware/$${blobdir} $(TARGET_DIR)/lib/firmware; \
+		cp -r $(@D)/firmware/$${blobdir} $(TARGET_DIR)/lib/firmware/imx; \
 	done
-	cp -r $(@D)/firmware/epdc $(TARGET_DIR)/lib/firmware/imx
 	mv $(TARGET_DIR)/lib/firmware/imx/epdc/epdc_ED060XH2C1.fw.nonrestricted \
 		$(TARGET_DIR)/lib/firmware/imx/epdc/epdc_ED060XH2C1.fw
 endef
-endif
 
 $(eval $(generic-package))
-- 
2.26.2

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

* [Buildroot] [PATCH 2/3] package/freescale-imx/firmware-imx: install easrc firmware for i.MX8MN
  2020-06-15 13:06 [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N} Sébastien Szymanski
@ 2020-06-15 13:06 ` Sébastien Szymanski
  2020-06-15 13:06 ` [Buildroot] [PATCH 3/3] package/freescale-imx/firmware-imx: bump version to 8.6 Sébastien Szymanski
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 13+ messages in thread
From: Sébastien Szymanski @ 2020-06-15 13:06 UTC (permalink / raw)
  To: buildroot

On i.MX8MN, the easrc driver needs a firmware in /lib/firmwareimx/easrc/
so install it.

Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.com>
---
 package/freescale-imx/firmware-imx/firmware-imx.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/freescale-imx/firmware-imx/firmware-imx.mk b/package/freescale-imx/firmware-imx/firmware-imx.mk
index 725f275948..49fda89f28 100644
--- a/package/freescale-imx/firmware-imx/firmware-imx.mk
+++ b/package/freescale-imx/firmware-imx/firmware-imx.mk
@@ -13,6 +13,9 @@ FIRMWARE_IMX_LICENSE_FILES = EULA COPYING
 FIRMWARE_IMX_REDISTRIBUTE = NO
 
 FIRMWARE_IMX_BLOBS = sdma epdc
+ifeq ($(BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8MN),y)
+FIRMWARE_IMX_BLOBS += easrc
+endif
 
 define FIRMWARE_IMX_EXTRACT_CMDS
 	$(call FREESCALE_IMX_EXTRACT_HELPER,$(FIRMWARE_IMX_DL_DIR)/$(FIRMWARE_IMX_SOURCE))
-- 
2.26.2

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

* [Buildroot] [PATCH 3/3] package/freescale-imx/firmware-imx: bump version to 8.6
  2020-06-15 13:06 [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N} Sébastien Szymanski
  2020-06-15 13:06 ` [Buildroot] [PATCH 2/3] package/freescale-imx/firmware-imx: install easrc firmware for i.MX8MN Sébastien Szymanski
@ 2020-06-15 13:06 ` Sébastien Szymanski
  2020-06-19 13:24   ` Gary Bisson
  2020-06-22 20:49   ` Thomas Petazzoni
  2020-06-15 13:49 ` [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N} Fabio Estevam
  2020-06-22 20:49 ` Thomas Petazzoni
  3 siblings, 2 replies; 13+ messages in thread
From: Sébastien Szymanski @ 2020-06-15 13:06 UTC (permalink / raw)
  To: buildroot

This package needed to be updated to be aligned with NXP
BSP 5.4.3_1.0.0.

Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.com>
---
 package/freescale-imx/firmware-imx/firmware-imx.hash | 6 +++---
 package/freescale-imx/firmware-imx/firmware-imx.mk   | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/freescale-imx/firmware-imx/firmware-imx.hash b/package/freescale-imx/firmware-imx/firmware-imx.hash
index e49ce085bf..54a3dafcc0 100644
--- a/package/freescale-imx/firmware-imx/firmware-imx.hash
+++ b/package/freescale-imx/firmware-imx/firmware-imx.hash
@@ -1,4 +1,4 @@
 # Locally calculated
-sha256  45b0a7392e7a4b2e6c7e1cb988dd660ff3f8cd465afdf796ff840a00db08389d  firmware-imx-8.5.bin
-sha256  9665930f69c0b6f4a4c055d7fe2b8ee563e771efbc83892abb1955e61492cdf7  EULA
-sha256  d55f024af2bfff714b90de596f6d0399124b999e8c18a86b13a3b507bae6f561  COPYING
+sha256  a7f4a22c05a990aad43a616e312847ab9d85ce00691b34fa8590d5c7c1d722e9  firmware-imx-8.6.bin
+sha256  1360edf65a32b66d28bcf2d53a1a1c2dc88d4e254c15da3d8e37bf1b6f1f19a1  EULA
+sha256  30ba26ae82fba4033513b67c2c3a00b00e78908d278568a7d648d3430875123a  COPYING
diff --git a/package/freescale-imx/firmware-imx/firmware-imx.mk b/package/freescale-imx/firmware-imx/firmware-imx.mk
index 49fda89f28..f27afc5a3b 100644
--- a/package/freescale-imx/firmware-imx/firmware-imx.mk
+++ b/package/freescale-imx/firmware-imx/firmware-imx.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-FIRMWARE_IMX_VERSION = 8.5
+FIRMWARE_IMX_VERSION = 8.6
 FIRMWARE_IMX_SITE = $(FREESCALE_IMX_SITE)
 FIRMWARE_IMX_SOURCE = firmware-imx-$(FIRMWARE_IMX_VERSION).bin
 
-- 
2.26.2

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

* [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N}
  2020-06-15 13:06 [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N} Sébastien Szymanski
  2020-06-15 13:06 ` [Buildroot] [PATCH 2/3] package/freescale-imx/firmware-imx: install easrc firmware for i.MX8MN Sébastien Szymanski
  2020-06-15 13:06 ` [Buildroot] [PATCH 3/3] package/freescale-imx/firmware-imx: bump version to 8.6 Sébastien Szymanski
@ 2020-06-15 13:49 ` Fabio Estevam
  2020-06-15 14:07   ` Sébastien Szymanski
  2020-06-22 20:49 ` Thomas Petazzoni
  3 siblings, 1 reply; 13+ messages in thread
From: Fabio Estevam @ 2020-06-15 13:49 UTC (permalink / raw)
  To: buildroot

Hi S?bastien,

On Mon, Jun 15, 2020 at 10:44 AM S?bastien Szymanski
<sebastien.szymanski@armadeus.com> wrote:

> -FIRMWARE_IMX_BLOBS = sdma vpu
> +FIRMWARE_IMX_BLOBS = sdma epdc

The commit log does not mention about removing the VPU firmware and
adding the EPDC one.

What is the reason for not installing the VPU firmware?

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

* [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N}
  2020-06-15 13:49 ` [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N} Fabio Estevam
@ 2020-06-15 14:07   ` Sébastien Szymanski
  2020-06-19 13:20     ` Gary Bisson
  0 siblings, 1 reply; 13+ messages in thread
From: Sébastien Szymanski @ 2020-06-15 14:07 UTC (permalink / raw)
  To: buildroot

Hi Fabio,

On 6/15/20 3:49 PM, Fabio Estevam wrote:
> Hi S?bastien,
> 
> On Mon, Jun 15, 2020 at 10:44 AM S?bastien Szymanski
> <sebastien.szymanski@armadeus.com> wrote:
> 
>> -FIRMWARE_IMX_BLOBS = sdma vpu
>> +FIRMWARE_IMX_BLOBS = sdma epdc
> 
> The commit log does not mention about removing the VPU firmware and
> adding the EPDC one.
> 
> What is the reason for not installing the VPU firmware?
> 

I use the FIRMWARE_IMX_BLOBS to list the firmwares that go into
/lib/firmware/imx and also for patch 2.
The VPU firmwares still get installed in
FIRMWARE_IMX_INSTALL_TARGET_CMDS. I have added a cp command for that.

Regards,

-- 
S?bastien Szymanski, Armadeus Systems
Software engineer

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

* [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N}
  2020-06-15 14:07   ` Sébastien Szymanski
@ 2020-06-19 13:20     ` Gary Bisson
  2020-06-19 13:43       ` Sébastien Szymanski
  0 siblings, 1 reply; 13+ messages in thread
From: Gary Bisson @ 2020-06-19 13:20 UTC (permalink / raw)
  To: buildroot

Hi Sebastien,

On Mon, Jun 15, 2020 at 04:07:42PM +0200, S?bastien Szymanski wrote:
> Hi Fabio,
> 
> On 6/15/20 3:49 PM, Fabio Estevam wrote:
> > Hi S?bastien,
> > 
> > On Mon, Jun 15, 2020 at 10:44 AM S?bastien Szymanski
> > <sebastien.szymanski@armadeus.com> wrote:
> > 
> >> -FIRMWARE_IMX_BLOBS = sdma vpu
> >> +FIRMWARE_IMX_BLOBS = sdma epdc
> > 
> > The commit log does not mention about removing the VPU firmware and
> > adding the EPDC one.
> > 
> > What is the reason for not installing the VPU firmware?
> > 
> 
> I use the FIRMWARE_IMX_BLOBS to list the firmwares that go into
> /lib/firmware/imx and also for patch 2.
> The VPU firmwares still get installed in
> FIRMWARE_IMX_INSTALL_TARGET_CMDS. I have added a cp command for that.

Yes, but now you are installing all VPU + epdc firmware files for all
platforms which is unnecessary.

Those should only be selected depending on the platform you are using,
exactly what you do for easrc.

Regards,
Gary

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

* [Buildroot] [PATCH 3/3] package/freescale-imx/firmware-imx: bump version to 8.6
  2020-06-15 13:06 ` [Buildroot] [PATCH 3/3] package/freescale-imx/firmware-imx: bump version to 8.6 Sébastien Szymanski
@ 2020-06-19 13:24   ` Gary Bisson
  2020-06-22 20:49   ` Thomas Petazzoni
  1 sibling, 0 replies; 13+ messages in thread
From: Gary Bisson @ 2020-06-19 13:24 UTC (permalink / raw)
  To: buildroot

Hi Sebastien,

On Mon, Jun 15, 2020 at 03:06:33PM +0200, S?bastien Szymanski wrote:
> This package needed to be updated to be aligned with NXP
> BSP 5.4.3_1.0.0.
> 
> Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.com>

Looks good, thanks! Only addition I would do in the commit log,
explaining the update of COPYING/EULA, from what I see:
- update to LA_OPT_NXP_Software_License v10 December 2019
- addition of Crank, EmSA and TARA Systems restrictions

Also, this update from 8.5 to 8.6 only updates the imx8 vpu firmware
files.

Reviewed-by: Gary Bisson <gary.bisson@boundarydevices.com>

Regards,
Gary

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

* [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N}
  2020-06-19 13:20     ` Gary Bisson
@ 2020-06-19 13:43       ` Sébastien Szymanski
  2020-06-19 13:59         ` Gary Bisson
  0 siblings, 1 reply; 13+ messages in thread
From: Sébastien Szymanski @ 2020-06-19 13:43 UTC (permalink / raw)
  To: buildroot

Hi Gary,

On 6/19/20 3:20 PM, Gary Bisson wrote:
> Hi Sebastien,
> 
> On Mon, Jun 15, 2020 at 04:07:42PM +0200, S?bastien Szymanski wrote:
>> Hi Fabio,
>>
>> On 6/15/20 3:49 PM, Fabio Estevam wrote:
>>> Hi S?bastien,
>>>
>>> On Mon, Jun 15, 2020 at 10:44 AM S?bastien Szymanski
>>> <sebastien.szymanski@armadeus.com> wrote:
>>>
>>>> -FIRMWARE_IMX_BLOBS = sdma vpu
>>>> +FIRMWARE_IMX_BLOBS = sdma epdc
>>>
>>> The commit log does not mention about removing the VPU firmware and
>>> adding the EPDC one.
>>>
>>> What is the reason for not installing the VPU firmware?
>>>
>>
>> I use the FIRMWARE_IMX_BLOBS to list the firmwares that go into
>> /lib/firmware/imx and also for patch 2.
>> The VPU firmwares still get installed in
>> FIRMWARE_IMX_INSTALL_TARGET_CMDS. I have added a cp command for that.
> 
> Yes, but now you are installing all VPU + epdc firmware files for all
> platforms which is unnecessary.

Yes, like it was done before my changes on all i.MX platforms but i.MX8.
SDMA firmware files are also installed for all platforms.

Regards,

> 
> Those should only be selected depending on the platform you are using,
> exactly what you do for easrc.>
> Regards,
> Gary
> 


-- 
S?bastien Szymanski, Armadeus Systems
Software engineer

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

* [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N}
  2020-06-19 13:43       ` Sébastien Szymanski
@ 2020-06-19 13:59         ` Gary Bisson
  2020-06-19 14:01           ` Fabio Estevam
  0 siblings, 1 reply; 13+ messages in thread
From: Gary Bisson @ 2020-06-19 13:59 UTC (permalink / raw)
  To: buildroot

Hi Sebastien,

On Fri, Jun 19, 2020 at 03:43:44PM +0200, S?bastien Szymanski wrote:
> Hi Gary,
> 
> On 6/19/20 3:20 PM, Gary Bisson wrote:
> > Hi Sebastien,
> > 
> > On Mon, Jun 15, 2020 at 04:07:42PM +0200, S?bastien Szymanski wrote:
> >> Hi Fabio,
> >>
> >> On 6/15/20 3:49 PM, Fabio Estevam wrote:
> >>> Hi S?bastien,
> >>>
> >>> On Mon, Jun 15, 2020 at 10:44 AM S?bastien Szymanski
> >>> <sebastien.szymanski@armadeus.com> wrote:
> >>>
> >>>> -FIRMWARE_IMX_BLOBS = sdma vpu
> >>>> +FIRMWARE_IMX_BLOBS = sdma epdc
> >>>
> >>> The commit log does not mention about removing the VPU firmware and
> >>> adding the EPDC one.
> >>>
> >>> What is the reason for not installing the VPU firmware?
> >>>
> >>
> >> I use the FIRMWARE_IMX_BLOBS to list the firmwares that go into
> >> /lib/firmware/imx and also for patch 2.
> >> The VPU firmwares still get installed in
> >> FIRMWARE_IMX_INSTALL_TARGET_CMDS. I have added a cp command for that.
> > 
> > Yes, but now you are installing all VPU + epdc firmware files for all
> > platforms which is unnecessary.
> 
> Yes, like it was done before my changes on all i.MX platforms but i.MX8.
> SDMA firmware files are also installed for all platforms.

True, but that doesn't make it the right thing to do for all platforms.

Your title says "add SDMA firmware for i.MX8M" but in the end it also
installs VPU and EPDC files.

Firmware installed for i.MX8M and i.MX8X families was pretty lean up
until now, let's not add unnecessary blobs if we can avoid it.

And if we can improve the way the package worked for older i.MX2/5/6/7
series as well it's even better ;)

Regards,
Gary

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

* [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N}
  2020-06-19 13:59         ` Gary Bisson
@ 2020-06-19 14:01           ` Fabio Estevam
  0 siblings, 0 replies; 13+ messages in thread
From: Fabio Estevam @ 2020-06-19 14:01 UTC (permalink / raw)
  To: buildroot

On Fri, Jun 19, 2020 at 10:59 AM Gary Bisson
<gary.bisson@boundarydevices.com> wrote:

> Your title says "add SDMA firmware for i.MX8M" but in the end it also
> installs VPU and EPDC files.

Agreed. Yes, this was the exact point that called my attention when I
reviewed this patch.

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

* [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N}
  2020-06-15 13:06 [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N} Sébastien Szymanski
                   ` (2 preceding siblings ...)
  2020-06-15 13:49 ` [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N} Fabio Estevam
@ 2020-06-22 20:49 ` Thomas Petazzoni
  2020-06-24  8:50   ` Stephane Viau
  3 siblings, 1 reply; 13+ messages in thread
From: Thomas Petazzoni @ 2020-06-22 20:49 UTC (permalink / raw)
  To: buildroot

On Mon, 15 Jun 2020 15:06:31 +0200
S?bastien Szymanski <sebastien.szymanski@armadeus.com> wrote:

> i.MX8M, i.MX8MM and i.MX8MN have sdma controllers so install sdma
> firmware for these SoCs. Mainline and NXP kernels expect the sdma
> firmware to be in /lib/firmware/imx/sdma so fix the install path at the
> same time.
> 
> Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.com>
> ---
>  .../freescale-imx/firmware-imx/firmware-imx.mk  | 17 +++++------------
>  1 file changed, 5 insertions(+), 12 deletions(-)

Due to the feedback from Fabio and Gary, I marked this patch and PATCH
2/3 as Changes Requested.

Overall, I think firmware-imx.mk is pretty messy in terms of how it
describes what needs to be installed for each platform. It probably
needs to be cleaned up to allow to more easily support more
capabilities on more platforms.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 3/3] package/freescale-imx/firmware-imx: bump version to 8.6
  2020-06-15 13:06 ` [Buildroot] [PATCH 3/3] package/freescale-imx/firmware-imx: bump version to 8.6 Sébastien Szymanski
  2020-06-19 13:24   ` Gary Bisson
@ 2020-06-22 20:49   ` Thomas Petazzoni
  1 sibling, 0 replies; 13+ messages in thread
From: Thomas Petazzoni @ 2020-06-22 20:49 UTC (permalink / raw)
  To: buildroot

On Mon, 15 Jun 2020 15:06:33 +0200
S?bastien Szymanski <sebastien.szymanski@armadeus.com> wrote:

> This package needed to be updated to be aligned with NXP
> BSP 5.4.3_1.0.0.
> 
> Signed-off-by: S?bastien Szymanski <sebastien.szymanski@armadeus.com>
> ---
>  package/freescale-imx/firmware-imx/firmware-imx.hash | 6 +++---
>  package/freescale-imx/firmware-imx/firmware-imx.mk   | 2 +-
>  2 files changed, 4 insertions(+), 4 deletions(-)

Applied to master with a commit extended using the details provided by
Gary Bisson. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N}
  2020-06-22 20:49 ` Thomas Petazzoni
@ 2020-06-24  8:50   ` Stephane Viau
  0 siblings, 0 replies; 13+ messages in thread
From: Stephane Viau @ 2020-06-24  8:50 UTC (permalink / raw)
  To: buildroot

<snip>
>
>Overall, I think firmware-imx.mk is pretty messy in terms of how it
>describes what needs to be installed for each platform. It probably
>needs to be cleaned up to allow to more easily support more
>capabilities on more platforms.

Hi Thomas, Sebastien,

As mentioned to Yann in another thread [1], I'm working on a patch that will hopefully clear things up (currently in review internally).

BR,
Stephane.

[1] http://lists.busybox.net/pipermail/buildroot/2020-June/284032.html

>
>Thanks!
>
>Thomas
>--
>Thomas Petazzoni, CTO, Bootlin
>Embedded Linux and Kernel engineering
>https://bootlin.com
>_______________________________________________
>buildroot mailing list
>buildroot at busybox.net
>http://lists.busybox.net/mailman/listinfo/buildroot
>

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

end of thread, other threads:[~2020-06-24  8:50 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-15 13:06 [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N} Sébastien Szymanski
2020-06-15 13:06 ` [Buildroot] [PATCH 2/3] package/freescale-imx/firmware-imx: install easrc firmware for i.MX8MN Sébastien Szymanski
2020-06-15 13:06 ` [Buildroot] [PATCH 3/3] package/freescale-imx/firmware-imx: bump version to 8.6 Sébastien Szymanski
2020-06-19 13:24   ` Gary Bisson
2020-06-22 20:49   ` Thomas Petazzoni
2020-06-15 13:49 ` [Buildroot] [PATCH 1/3] package/freescale-imx/firmware-imx: install sdma firmware for i.MX8M{, M, N} Fabio Estevam
2020-06-15 14:07   ` Sébastien Szymanski
2020-06-19 13:20     ` Gary Bisson
2020-06-19 13:43       ` Sébastien Szymanski
2020-06-19 13:59         ` Gary Bisson
2020-06-19 14:01           ` Fabio Estevam
2020-06-22 20:49 ` Thomas Petazzoni
2020-06-24  8:50   ` Stephane Viau

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.