diff mbox series

[meta-ti,kirkstone,1/2] meta-ti: powervr: add j722s support

Message ID 20240105082844.879372-2-a-limaye@ti.com
State Superseded
Delegated to: Ryan Eatmon
Headers show
Series powervr: Add j722s support and update preferred provider | expand

Commit Message

Limaye, Aniket Jan. 5, 2024, 8:28 a.m. UTC
From: Darren Etheridge <detheridge@ti.com>

Bump srcrev to include j722s support for PowerVR components

Signed-off-by: Darren Etheridge <detheridge@ti.com>
Signed-off-by: Aniket Limaye <a-limaye@ti.com>
---
 .../powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb      | 5 +++--
 .../powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb       | 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

Comments

Ryan Eatmon Jan. 5, 2024, 4:14 p.m. UTC | #1
Can we split this change into two?  One patch that explicitly changes 
the SRCREV and a second commit that adds support for j722s.  I know 
that's not how it was during wakeup, but that's what I would prefer for 
the long term record.


On 1/5/2024 2:28 AM, Aniket Limaye wrote:
> From: Darren Etheridge <detheridge@ti.com>
> 
> Bump srcrev to include j722s support for PowerVR components
> 
> Signed-off-by: Darren Etheridge <detheridge@ti.com>
> Signed-off-by: Aniket Limaye <a-limaye@ti.com>
> ---
>   .../powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb      | 5 +++--
>   .../powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb       | 5 +++--
>   2 files changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb b/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb
> index a74cc7b8..9cc44673 100644
> --- a/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb
> +++ b/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb
> @@ -12,7 +12,7 @@ PR = "${MACHINE_KERNEL_PR}"
>   
>   PACKAGE_ARCH = "${MACHINE_ARCH}"
>   
> -COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx"
> +COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx|j722s"
>   
>   DEPENDS = "virtual/kernel"
>   
> @@ -22,13 +22,14 @@ SRC_URI = "git://git.ti.com/git/graphics/ti-img-rogue-driver.git;protocol=https;
>   
>   S = "${WORKDIR}/git"
>   
> -SRCREV = "778aa5d1e104f36c7f7c1f50e99f8499cbbdadbb"
> +SRCREV = "64d1cac11363888b7a071b62d71b563568d483f1"
>   
>   TARGET_PRODUCT:j721e = "j721e_linux"
>   TARGET_PRODUCT:j721s2 = "j721s2_linux"
>   TARGET_PRODUCT:j784s4 = "j784s4_linux"
>   TARGET_PRODUCT:am62xx = "am62_linux"
>   TARGET_PRODUCT:am62pxx = "am62p_linux"
> +TARGET_PRODUCT:j722s = "j722s_linux"
>   PVR_BUILD = "release"
>   PVR_WS = "lws-generic"
>   
> diff --git a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb
> index 447812d3..5a5abdc2 100644
> --- a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb
> +++ b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb
> @@ -6,13 +6,13 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/git/LICENSE;md5=7232b98c1c58f99e3baa03de52
>   inherit bin_package
>   
>   PACKAGE_ARCH = "${MACHINE_ARCH}"
> -COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx"
> +COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx|j722s"
>   
>   PR = "r2"
>   
>   BRANCH = "linuxws/kirkstone/k6.1/${PV}"
>   SRC_URI = "git://git.ti.com/git/graphics/ti-img-rogue-umlibs.git;protocol=https;branch=${BRANCH}"
> -SRCREV = "d0543929cc6fe53959a64c60285896e2c14ed314"
> +SRCREV = "7c853b0c75b7c5c4fa30ded608588850d429f306"
>   S = "${WORKDIR}/git/targetfs/${TARGET_PRODUCT}/${PVR_WS}/${PVR_BUILD}"
>   
>   TARGET_PRODUCT:j721e = "j721e_linux"
> @@ -20,6 +20,7 @@ TARGET_PRODUCT:j721s2 = "j721s2_linux"
>   TARGET_PRODUCT:j784s4 = "j784s4_linux"
>   TARGET_PRODUCT:am62xx = "am62_linux"
>   TARGET_PRODUCT:am62pxx = "am62p_linux"
> +TARGET_PRODUCT:j722s = "j722s_linux"
>   PVR_BUILD = "release"
>   PVR_WS = "lws-generic"
>
Ryan Eatmon Jan. 5, 2024, 4:17 p.m. UTC | #2
On 1/5/2024 10:14 AM, Ryan Eatmon via lists.yoctoproject.org wrote:
> 
> Can we split this change into two?  One patch that explicitly changes 
> the SRCREV and a second commit that adds support for j722s.  I know 
> that's not how it was during wakeup, but that's what I would prefer for 
> the long term record.

And the same for the master commits.


> 
> On 1/5/2024 2:28 AM, Aniket Limaye wrote:
>> From: Darren Etheridge <detheridge@ti.com>
>>
>> Bump srcrev to include j722s support for PowerVR components
>>
>> Signed-off-by: Darren Etheridge <detheridge@ti.com>
>> Signed-off-by: Aniket Limaye <a-limaye@ti.com>
>> ---
>>   .../powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb      | 5 +++--
>>   .../powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb       | 5 +++--
>>   2 files changed, 6 insertions(+), 4 deletions(-)
>>
>> diff --git 
>> a/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb b/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb
>> index a74cc7b8..9cc44673 100644
>> --- 
>> a/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb
>> +++ 
>> b/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb
>> @@ -12,7 +12,7 @@ PR = "${MACHINE_KERNEL_PR}"
>>   PACKAGE_ARCH = "${MACHINE_ARCH}"
>> -COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx"
>> +COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx|j722s"
>>   DEPENDS = "virtual/kernel"
>> @@ -22,13 +22,14 @@ SRC_URI = 
>> "git://git.ti.com/git/graphics/ti-img-rogue-driver.git;protocol=https;
>>   S = "${WORKDIR}/git"
>> -SRCREV = "778aa5d1e104f36c7f7c1f50e99f8499cbbdadbb"
>> +SRCREV = "64d1cac11363888b7a071b62d71b563568d483f1"
>>   TARGET_PRODUCT:j721e = "j721e_linux"
>>   TARGET_PRODUCT:j721s2 = "j721s2_linux"
>>   TARGET_PRODUCT:j784s4 = "j784s4_linux"
>>   TARGET_PRODUCT:am62xx = "am62_linux"
>>   TARGET_PRODUCT:am62pxx = "am62p_linux"
>> +TARGET_PRODUCT:j722s = "j722s_linux"
>>   PVR_BUILD = "release"
>>   PVR_WS = "lws-generic"
>> diff --git 
>> a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb
>> index 447812d3..5a5abdc2 100644
>> --- 
>> a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb
>> +++ 
>> b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb
>> @@ -6,13 +6,13 @@ LIC_FILES_CHKSUM = 
>> "file://${WORKDIR}/git/LICENSE;md5=7232b98c1c58f99e3baa03de52
>>   inherit bin_package
>>   PACKAGE_ARCH = "${MACHINE_ARCH}"
>> -COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx"
>> +COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx|j722s"
>>   PR = "r2"
>>   BRANCH = "linuxws/kirkstone/k6.1/${PV}"
>>   SRC_URI = 
>> "git://git.ti.com/git/graphics/ti-img-rogue-umlibs.git;protocol=https;branch=${BRANCH}"
>> -SRCREV = "d0543929cc6fe53959a64c60285896e2c14ed314"
>> +SRCREV = "7c853b0c75b7c5c4fa30ded608588850d429f306"
>>   S = "${WORKDIR}/git/targetfs/${TARGET_PRODUCT}/${PVR_WS}/${PVR_BUILD}"
>>   TARGET_PRODUCT:j721e = "j721e_linux"
>> @@ -20,6 +20,7 @@ TARGET_PRODUCT:j721s2 = "j721s2_linux"
>>   TARGET_PRODUCT:j784s4 = "j784s4_linux"
>>   TARGET_PRODUCT:am62xx = "am62_linux"
>>   TARGET_PRODUCT:am62pxx = "am62p_linux"
>> +TARGET_PRODUCT:j722s = "j722s_linux"
>>   PVR_BUILD = "release"
>>   PVR_WS = "lws-generic"
> 
> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#17385): https://lists.yoctoproject.org/g/meta-ti/message/17385
> Mute This Topic: https://lists.yoctoproject.org/mt/103539508/6551054
> Group Owner: meta-ti+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-ti/leave/10828724/6551054/1815494134/xyzzy [reatmon@ti.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
diff mbox series

Patch

diff --git a/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb b/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb
index a74cc7b8..9cc44673 100644
--- a/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb
+++ b/meta-ti-bsp/recipes-bsp/powervr-drivers/ti-img-rogue-driver_23.2.6460340.bb
@@ -12,7 +12,7 @@  PR = "${MACHINE_KERNEL_PR}"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx"
+COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx|j722s"
 
 DEPENDS = "virtual/kernel"
 
@@ -22,13 +22,14 @@  SRC_URI = "git://git.ti.com/git/graphics/ti-img-rogue-driver.git;protocol=https;
 
 S = "${WORKDIR}/git"
 
-SRCREV = "778aa5d1e104f36c7f7c1f50e99f8499cbbdadbb"
+SRCREV = "64d1cac11363888b7a071b62d71b563568d483f1"
 
 TARGET_PRODUCT:j721e = "j721e_linux"
 TARGET_PRODUCT:j721s2 = "j721s2_linux"
 TARGET_PRODUCT:j784s4 = "j784s4_linux"
 TARGET_PRODUCT:am62xx = "am62_linux"
 TARGET_PRODUCT:am62pxx = "am62p_linux"
+TARGET_PRODUCT:j722s = "j722s_linux"
 PVR_BUILD = "release"
 PVR_WS = "lws-generic"
 
diff --git a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb
index 447812d3..5a5abdc2 100644
--- a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb
+++ b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.2.6460340.bb
@@ -6,13 +6,13 @@  LIC_FILES_CHKSUM = "file://${WORKDIR}/git/LICENSE;md5=7232b98c1c58f99e3baa03de52
 inherit bin_package
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
-COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx"
+COMPATIBLE_MACHINE = "j721e|j721s2|j784s4|am62xx|am62pxx|j722s"
 
 PR = "r2"
 
 BRANCH = "linuxws/kirkstone/k6.1/${PV}"
 SRC_URI = "git://git.ti.com/git/graphics/ti-img-rogue-umlibs.git;protocol=https;branch=${BRANCH}"
-SRCREV = "d0543929cc6fe53959a64c60285896e2c14ed314"
+SRCREV = "7c853b0c75b7c5c4fa30ded608588850d429f306"
 S = "${WORKDIR}/git/targetfs/${TARGET_PRODUCT}/${PVR_WS}/${PVR_BUILD}"
 
 TARGET_PRODUCT:j721e = "j721e_linux"
@@ -20,6 +20,7 @@  TARGET_PRODUCT:j721s2 = "j721s2_linux"
 TARGET_PRODUCT:j784s4 = "j784s4_linux"
 TARGET_PRODUCT:am62xx = "am62_linux"
 TARGET_PRODUCT:am62pxx = "am62p_linux"
+TARGET_PRODUCT:j722s = "j722s_linux"
 PVR_BUILD = "release"
 PVR_WS = "lws-generic"