Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0
@ 2023-05-12 16:42 Gary Bisson
  2023-05-12 16:42 ` [Buildroot] [PATCH 1/3] package/freescale-imx/kernel-module-imx-gpu-viv: bump to version 6.4.11.p1.0 Gary Bisson
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Gary Bisson @ 2023-05-12 16:42 UTC (permalink / raw)
  To: buildroot; +Cc: Gary Bisson

Hi,

This series updates the 3D & 2D GPU suppot for the NXP i.MX processors.

The version v6.4.11.p1.0 aligns with NXP release 6.1.1-1.0.0 (Yocto
Langdale).

Regards,
Gary

Gary Bisson (3):
  package/freescale-imx/kernel-module-imx-gpu-viv: bump to version
    6.4.11.p1.0
  package/freescale-imx/imx-gpu-viv: bump to version 6.4.11.p1.0
  package/freescale-imx/imx-gpu-g2d: bump to version 6.4.11.p1.0

 package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.hash        | 8 ++++----
 package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.mk          | 4 ++--
 package/freescale-imx/imx-gpu-viv/imx-gpu-viv.hash        | 8 ++++----
 package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk          | 4 ++--
 .../kernel-module-imx-gpu-viv.hash                        | 2 +-
 .../kernel-module-imx-gpu-viv.mk                          | 2 +-
 6 files changed, 14 insertions(+), 14 deletions(-)

-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 1/3] package/freescale-imx/kernel-module-imx-gpu-viv: bump to version 6.4.11.p1.0
  2023-05-12 16:42 [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0 Gary Bisson
@ 2023-05-12 16:42 ` Gary Bisson
  2023-05-12 16:42 ` [Buildroot] [PATCH 2/3] package/freescale-imx/imx-gpu-viv: " Gary Bisson
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Gary Bisson @ 2023-05-12 16:42 UTC (permalink / raw)
  To: buildroot; +Cc: Gary Bisson

- Same version as NXP release 6.1.1-1.0.0
- Tested on Nitrogen8MP device with Weston (DRM backend) as follows:

Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
---
 .../kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.hash    | 2 +-
 .../kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.mk      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/freescale-imx/kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.hash b/package/freescale-imx/kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.hash
index 5079de9840..528a4d4d9d 100644
--- a/package/freescale-imx/kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.hash
+++ b/package/freescale-imx/kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.hash
@@ -1,3 +1,3 @@
 # locally computed
-sha256  0754114b3088a46b9fee9a5bd1c7b9ec94b6ca656ed930c4cad9e04382e8e372  kernel-module-imx-gpu-viv-00fe5a0bedc07337c873f93998da9025083116ed.tar.gz
+sha256  7d5102dfb99172f440e957ea23bb755d99655d179efb348c3f17a4ae387ffd56  kernel-module-imx-gpu-viv-8c864975607cf455c5e95d5313aa00e69f48d32f.tar.gz
 sha256  0754114b3088a46b9fee9a5bd1c7b9ec94b6ca656ed930c4cad9e04382e8e372  COPYING
diff --git a/package/freescale-imx/kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.mk b/package/freescale-imx/kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.mk
index 5c96ba0390..56724a4a98 100644
--- a/package/freescale-imx/kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.mk
+++ b/package/freescale-imx/kernel-module-imx-gpu-viv/kernel-module-imx-gpu-viv.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-KERNEL_MODULE_IMX_GPU_VIV_VERSION = 00fe5a0bedc07337c873f93998da9025083116ed
+KERNEL_MODULE_IMX_GPU_VIV_VERSION = 8c864975607cf455c5e95d5313aa00e69f48d32f
 KERNEL_MODULE_IMX_GPU_VIV_SITE = \
 	$(call github,Freescale,kernel-module-imx-gpu-viv,$(KERNEL_MODULE_IMX_GPU_VIV_VERSION))
 KERNEL_MODULE_IMX_GPU_VIV_LICENSE = GPL-2.0
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/3] package/freescale-imx/imx-gpu-viv: bump to version 6.4.11.p1.0
  2023-05-12 16:42 [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0 Gary Bisson
  2023-05-12 16:42 ` [Buildroot] [PATCH 1/3] package/freescale-imx/kernel-module-imx-gpu-viv: bump to version 6.4.11.p1.0 Gary Bisson
@ 2023-05-12 16:42 ` Gary Bisson
  2023-05-12 16:42 ` [Buildroot] [PATCH 3/3] package/freescale-imx/imx-gpu-g2d: " Gary Bisson
  2023-05-13 12:38 ` [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0 Yann E. MORIN
  3 siblings, 0 replies; 5+ messages in thread
From: Gary Bisson @ 2023-05-12 16:42 UTC (permalink / raw)
  To: buildroot; +Cc: Gary Bisson

- Same version as NXP release 6.1.1-1.0.0 [1]
- EULA/COPYING: update to LA_OPT_NXP_Software_License v42
- Requires toolchain with glibc 2.34+

[1]
https://github.com/nxp-imx/meta-imx/tree/langdale-6.1.1-1.0.0/meta-bsp/recipes-graphics/imx-gpu-viv

Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
---
 package/freescale-imx/imx-gpu-viv/imx-gpu-viv.hash | 8 ++++----
 package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk   | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.hash b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.hash
index a0e6345b7a..8f5708898d 100644
--- a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.hash
+++ b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.hash
@@ -1,5 +1,5 @@
 # Locally calculated
-sha256  5b9dd02cb2dfa564903872576cd6586fbf4a02abdb8e180978bd84205ab302a7  imx-gpu-viv-6.4.3.p4.4-aarch32.bin
-sha256  5c52bd15146c24d449638c6276c07103949c8efbc53d002518541bc37c57e424  imx-gpu-viv-6.4.3.p4.4-aarch64.bin
-sha256  5bd7aab9dc380a6f9577443b2e90bd5ca73d9528175fad04b6d17da43a05a48e  COPYING
-sha256  654f0c4ce6d08f9a6d74e29c58206742cb7469a6a7c25413028a9bdbe647aa13  EULA
+sha256  6e2f3fb43d16c30fd0b23027f5205818e9d4c74d4903f1c63f265ccf8269f01d  imx-gpu-viv-6.4.11.p1.0-aarch32.bin
+sha256  4a5f2235500dc4bdfaaeaffa0e4c13cdd28436cc0d859e5be222bce990fda461  imx-gpu-viv-6.4.11.p1.0-aarch64.bin
+sha256  e17419ff1c87b5754282227f651745bd7b3986aed983e2d494505828022db4a8  COPYING
+sha256  eff6daec54c4f86eb4682eeecd3dd24ffe90398c9460c2e573dd4141bcd28652  EULA
diff --git a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
index 359dcc5923..6e9cbec4d8 100644
--- a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
+++ b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
@@ -5,9 +5,9 @@
 ################################################################################
 
 ifeq ($(BR2_aarch64),y)
-IMX_GPU_VIV_VERSION = 6.4.3.p4.4-aarch64
+IMX_GPU_VIV_VERSION = 6.4.11.p1.0-aarch64
 else
-IMX_GPU_VIV_VERSION = 6.4.3.p4.4-aarch32
+IMX_GPU_VIV_VERSION = 6.4.11.p1.0-aarch32
 endif
 IMX_GPU_VIV_SITE = $(FREESCALE_IMX_SITE)
 IMX_GPU_VIV_SOURCE = imx-gpu-viv-$(IMX_GPU_VIV_VERSION).bin
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 3/3] package/freescale-imx/imx-gpu-g2d: bump to version 6.4.11.p1.0
  2023-05-12 16:42 [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0 Gary Bisson
  2023-05-12 16:42 ` [Buildroot] [PATCH 1/3] package/freescale-imx/kernel-module-imx-gpu-viv: bump to version 6.4.11.p1.0 Gary Bisson
  2023-05-12 16:42 ` [Buildroot] [PATCH 2/3] package/freescale-imx/imx-gpu-viv: " Gary Bisson
@ 2023-05-12 16:42 ` Gary Bisson
  2023-05-13 12:38 ` [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0 Yann E. MORIN
  3 siblings, 0 replies; 5+ messages in thread
From: Gary Bisson @ 2023-05-12 16:42 UTC (permalink / raw)
  To: buildroot; +Cc: Gary Bisson

- Same version as NXP release 6.1.1-1.0.0 [1]
- EULA/COPYING: update to LA_OPT_NXP_Software_License v42
- Requires toolchain with glibc 2.34+

[1]
https://github.com/nxp-imx/meta-imx/tree/langdale-6.1.1-1.0.0/meta-bsp/recipes-graphics/imx-g2d

Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
---
 package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.hash | 8 ++++----
 package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.mk   | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.hash b/package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.hash
index 27f6a438d1..8bb6a6fe32 100644
--- a/package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.hash
+++ b/package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.hash
@@ -1,5 +1,5 @@
 # Locally calculated
-sha256  7737a3372bcde34e2d275397df67c307df5033d5b133ac770f75cac4e1ec2580  imx-gpu-g2d-6.4.3.p4.4-arm.bin
-sha256  8341d6e2cde3f3ffa035dc95b0487dd04a50531cc80f4cddc5a689ebc4946e02  imx-gpu-g2d-6.4.3.p4.4-aarch64.bin
-sha256  5bd7aab9dc380a6f9577443b2e90bd5ca73d9528175fad04b6d17da43a05a48e  COPYING
-sha256  654f0c4ce6d08f9a6d74e29c58206742cb7469a6a7c25413028a9bdbe647aa13  EULA
+sha256  65427c12b43c7bb3838ec2bc91a5853c310652b920a65b2b52bacad8e761a8e4  imx-gpu-g2d-6.4.11.p1.0-arm.bin
+sha256  9bf8ebbfc85245d75ab7d133c3e135a4c5f23a0430c75883af9700e9cb82c151  imx-gpu-g2d-6.4.11.p1.0-aarch64.bin
+sha256  e17419ff1c87b5754282227f651745bd7b3986aed983e2d494505828022db4a8  COPYING
+sha256  eff6daec54c4f86eb4682eeecd3dd24ffe90398c9460c2e573dd4141bcd28652  EULA
diff --git a/package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.mk b/package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.mk
index 42a1fe70cf..a93c51cba3 100644
--- a/package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.mk
+++ b/package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.mk
@@ -5,9 +5,9 @@
 ################################################################################
 
 ifeq ($(BR2_aarch64),y)
-IMX_GPU_G2D_VERSION = 6.4.3.p4.4-aarch64
+IMX_GPU_G2D_VERSION = 6.4.11.p1.0-aarch64
 else
-IMX_GPU_G2D_VERSION = 6.4.3.p4.4-arm
+IMX_GPU_G2D_VERSION = 6.4.11.p1.0-arm
 endif
 IMX_GPU_G2D_SITE = $(FREESCALE_IMX_SITE)
 IMX_GPU_G2D_SOURCE = imx-gpu-g2d-$(IMX_GPU_G2D_VERSION).bin
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0
  2023-05-12 16:42 [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0 Gary Bisson
                   ` (2 preceding siblings ...)
  2023-05-12 16:42 ` [Buildroot] [PATCH 3/3] package/freescale-imx/imx-gpu-g2d: " Gary Bisson
@ 2023-05-13 12:38 ` Yann E. MORIN
  3 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2023-05-13 12:38 UTC (permalink / raw)
  To: Gary Bisson; +Cc: buildroot

Gary, All,

On 2023-05-12 18:42 +0200, Gary Bisson spake thusly:
> Hi,
> 
> This series updates the 3D & 2D GPU suppot for the NXP i.MX processors.
> 
> The version v6.4.11.p1.0 aligns with NXP release 6.1.1-1.0.0 (Yocto
> Langdale).

Whole series applied to master, thanks.

Regards,
Yann E. MORIN.

> Regards,
> Gary
> 
> Gary Bisson (3):
>   package/freescale-imx/kernel-module-imx-gpu-viv: bump to version
>     6.4.11.p1.0
>   package/freescale-imx/imx-gpu-viv: bump to version 6.4.11.p1.0
>   package/freescale-imx/imx-gpu-g2d: bump to version 6.4.11.p1.0
> 
>  package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.hash        | 8 ++++----
>  package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.mk          | 4 ++--
>  package/freescale-imx/imx-gpu-viv/imx-gpu-viv.hash        | 8 ++++----
>  package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk          | 4 ++--
>  .../kernel-module-imx-gpu-viv.hash                        | 2 +-
>  .../kernel-module-imx-gpu-viv.mk                          | 2 +-
>  6 files changed, 14 insertions(+), 14 deletions(-)
> 
> -- 
> 2.39.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2023-05-13 12:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-12 16:42 [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0 Gary Bisson
2023-05-12 16:42 ` [Buildroot] [PATCH 1/3] package/freescale-imx/kernel-module-imx-gpu-viv: bump to version 6.4.11.p1.0 Gary Bisson
2023-05-12 16:42 ` [Buildroot] [PATCH 2/3] package/freescale-imx/imx-gpu-viv: " Gary Bisson
2023-05-12 16:42 ` [Buildroot] [PATCH 3/3] package/freescale-imx/imx-gpu-g2d: " Gary Bisson
2023-05-13 12:38 ` [Buildroot] [PATCH 0/3] Update NXP graphics libraries to v6.4.11.p1.0 Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox