All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support
@ 2025-02-06 14:40 Chirag Shilwant
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 1/5] recipes-security: optee: Update to v4.5.0+ Chirag Shilwant
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Chirag Shilwant @ 2025-02-06 14:40 UTC (permalink / raw)
  To: meta-ti; +Cc: Denys, Ryan Eatmon

This series is intended only for master.
It bumps up TFA to v2.12+ & OPTEE-OS to v4.5.0+
It also aims to enable platform support for AM62L in meta-ti-bsp

Link to AM62L TRM: https://www.ti.com/lit/pdf/sprujb4

Changes in v3:

* Add License-Update tag for "trusted-firmware-a: Switch TFA to TI fork"

Changes in v2:

* Upgrade optee-os to v4.5.0+ & drop Add-initial-support-for-AM62Lx-SoC.patch
* Split TFA upgrade to v2.12 & switch to Github TI fork into 2 commits
* Fix indentation for AM62L specific newly added changes in u-boot-ti.inc by using OE-Core policy
* Set KERNEL_DEVICETREE to empty
* Drop SERIAL_CONSOLES from am62lxx.inc as k3.inc already has it defined

Chirag Shilwant (5):
  recipes-security: optee: Update to v4.5.0+
  trusted-firmware-a: Update to v2.12 release tag
  trusted-firmware-a: Switch TFA to TI fork
  meta-ti-bsp: Add Support for AM62L
  conf: machine: am62lxx-evm: Add logic to generate UBI filesystem
    images

 meta-ti-bsp/conf/machine/am62lxx-evm.conf     | 19 +++++++++++++++++
 meta-ti-bsp/conf/machine/include/am62lxx.inc  | 12 +++++++++++
 meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb  |  2 ++
 .../recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb    |  6 ++++++
 .../trusted-firmware-a-ti.inc                 | 11 ++++++----
 meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc  | 21 +++++++++++++++++++
 .../optee/optee-os-ti-overrides.inc           |  1 +
 .../optee/optee-os-ti-version.inc             |  4 ++--
 8 files changed, 70 insertions(+), 6 deletions(-)
 create mode 100644 meta-ti-bsp/conf/machine/am62lxx-evm.conf
 create mode 100644 meta-ti-bsp/conf/machine/include/am62lxx.inc

-- 
2.34.1



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

* [meta-ti][master][PATCH v3 1/5] recipes-security: optee: Update to v4.5.0+
  2025-02-06 14:40 [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support Chirag Shilwant
@ 2025-02-06 14:40 ` Chirag Shilwant
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 2/5] trusted-firmware-a: Update to v2.12 release tag Chirag Shilwant
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Chirag Shilwant @ 2025-02-06 14:40 UTC (permalink / raw)
  To: meta-ti; +Cc: Denys, Ryan Eatmon

Bump up SRCREV of optee-os to ef1ebdc23034a804a72da2207f1a825ce96a1464

Signed-off-by: Chirag Shilwant <c-shilwant@ti.com>
---
 meta-ti-bsp/recipes-security/optee/optee-os-ti-version.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-ti-bsp/recipes-security/optee/optee-os-ti-version.inc b/meta-ti-bsp/recipes-security/optee/optee-os-ti-version.inc
index 0fab9c9a..89f7f818 100644
--- a/meta-ti-bsp/recipes-security/optee/optee-os-ti-version.inc
+++ b/meta-ti-bsp/recipes-security/optee/optee-os-ti-version.inc
@@ -1,5 +1,5 @@
-PV = "4.4.0+git"
-SRCREV = "8f645256efc0dc66bd5c118778b0b50c44469ae1"
+PV = "4.5.0+git"
+SRCREV = "ef1ebdc23034a804a72da2207f1a825ce96a1464"
 
 SRC_URI:remove = " \
     file://0001-checkconf.mk-do-not-use-full-path-to-generate-guard-.patch \
-- 
2.34.1



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

* [meta-ti][master][PATCH v3 2/5] trusted-firmware-a: Update to v2.12 release tag
  2025-02-06 14:40 [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support Chirag Shilwant
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 1/5] recipes-security: optee: Update to v4.5.0+ Chirag Shilwant
@ 2025-02-06 14:40 ` Chirag Shilwant
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 3/5] trusted-firmware-a: Switch TFA to TI fork Chirag Shilwant
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Chirag Shilwant @ 2025-02-06 14:40 UTC (permalink / raw)
  To: meta-ti; +Cc: Denys, Ryan Eatmon

Bump up to latest release tag (i.e. v2.12)

Commit: https://github.com/ARM-software/arm-trusted-firmware/commit/4ec2948fe3f65dba2f19e691e702f7de2949179c

Tag: https://github.com/ARM-software/arm-trusted-firmware/releases/tag/v2.12

Signed-off-by: Chirag Shilwant <c-shilwant@ti.com>
---
 .../recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc b/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc
index ebb13bbd..df3cea23 100644
--- a/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc
+++ b/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc
@@ -1,5 +1,5 @@
-PV:k3 = "2.11+git"
-SRCREV_tfa:k3 = "58b25570c9ef91753b14c2103f45f4be9dddb696"
+PV:k3 = "2.12+git"
+SRCREV_tfa:k3 = "4ec2948fe3f65dba2f19e691e702f7de2949179c"
 LIC_FILES_CHKSUM:k3 = "file://docs/license.rst;md5=83b7626b8c7a37263c6a58af8d19bee1"
 SRC_URI:k3 = "git://git.trustedfirmware.org/TF-A/trusted-firmware-a.git;protocol=https;name=tfa;branch=master"
 COMPATIBLE_MACHINE:k3 = "k3"
-- 
2.34.1



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

* [meta-ti][master][PATCH v3 3/5] trusted-firmware-a: Switch TFA to TI fork
  2025-02-06 14:40 [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support Chirag Shilwant
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 1/5] recipes-security: optee: Update to v4.5.0+ Chirag Shilwant
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 2/5] trusted-firmware-a: Update to v2.12 release tag Chirag Shilwant
@ 2025-02-06 14:40 ` Chirag Shilwant
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 4/5] meta-ti-bsp: Add Support for AM62L Chirag Shilwant
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Chirag Shilwant @ 2025-02-06 14:40 UTC (permalink / raw)
  To: meta-ti; +Cc: Denys, Ryan Eatmon

- While TFA patches for K3-based AM62L platform are under
review upstream, temporarily switch to TI's GitHub fork
for all K3 platforms to prevent disruptions and ensure timely bringup

- Also update the LIC_FILES_CHKSUM since the license file changed between
upstream TFA v2.12 [1] & the SRCREV in this commit [2][3]

[1]: https://github.com/ARM-software/arm-trusted-firmware/blob/v2.12/docs/license.rst

[2]: https://github.com/ARM-software/arm-trusted-firmware/blob/master/docs/license.rst

[3]: https://github.com/TexasInstruments/arm-trusted-firmware/blob/ti-master/docs/license.rst

License-Update: Updates w.r.t TFA Hob creation code

Signed-off-by: Chirag Shilwant <c-shilwant@ti.com>
---
 .../trusted-firmware-a/trusted-firmware-a-ti.inc            | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc b/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc
index df3cea23..c628eb15 100644
--- a/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc
+++ b/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc
@@ -1,7 +1,7 @@
 PV:k3 = "2.12+git"
-SRCREV_tfa:k3 = "4ec2948fe3f65dba2f19e691e702f7de2949179c"
-LIC_FILES_CHKSUM:k3 = "file://docs/license.rst;md5=83b7626b8c7a37263c6a58af8d19bee1"
-SRC_URI:k3 = "git://git.trustedfirmware.org/TF-A/trusted-firmware-a.git;protocol=https;name=tfa;branch=master"
+SRCREV_tfa:k3 = "5227171c079d0c7d22a6d37b5cec079c8c5bb4b1"
+LIC_FILES_CHKSUM:k3 = "file://docs/license.rst;md5=1118e32884721c0be33267bd7ae11130"
+SRC_URI:k3 = "git://github.com/TexasInstruments/arm-trusted-firmware.git;protocol=https;name=tfa;branch=ti-master"
 COMPATIBLE_MACHINE:k3 = "k3"
 TFA_BUILD_TARGET:k3 = "all"
 TFA_INSTALL_TARGET:k3 = "bl31"
-- 
2.34.1



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

* [meta-ti][master][PATCH v3 4/5] meta-ti-bsp: Add Support for AM62L
  2025-02-06 14:40 [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support Chirag Shilwant
                   ` (2 preceding siblings ...)
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 3/5] trusted-firmware-a: Switch TFA to TI fork Chirag Shilwant
@ 2025-02-06 14:40 ` Chirag Shilwant
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 5/5] conf: machine: am62lxx-evm: Add logic to generate UBI filesystem images Chirag Shilwant
  2025-02-06 20:44 ` [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support Denys Dmytriyenko
  5 siblings, 0 replies; 7+ messages in thread
From: Chirag Shilwant @ 2025-02-06 14:40 UTC (permalink / raw)
  To: meta-ti; +Cc: Denys, Ryan Eatmon

- Add machine configuration for am62lxx-evm

- Add TFA, OPTEE, firmware & u-boot overrides

Signed-off-by: Chirag Shilwant <c-shilwant@ti.com>
---
 meta-ti-bsp/conf/machine/am62lxx-evm.conf     | 13 ++++++++++++
 meta-ti-bsp/conf/machine/include/am62lxx.inc  | 12 +++++++++++
 meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb  |  2 ++
 .../recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb    |  6 ++++++
 .../trusted-firmware-a-ti.inc                 |  3 +++
 meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc  | 21 +++++++++++++++++++
 .../optee/optee-os-ti-overrides.inc           |  1 +
 7 files changed, 58 insertions(+)
 create mode 100644 meta-ti-bsp/conf/machine/am62lxx-evm.conf
 create mode 100644 meta-ti-bsp/conf/machine/include/am62lxx.inc

diff --git a/meta-ti-bsp/conf/machine/am62lxx-evm.conf b/meta-ti-bsp/conf/machine/am62lxx-evm.conf
new file mode 100644
index 00000000..ff373238
--- /dev/null
+++ b/meta-ti-bsp/conf/machine/am62lxx-evm.conf
@@ -0,0 +1,13 @@
+#@TYPE: Machine
+#@NAME: AM62L EVM
+#@DESCRIPTION: Machine configuration for the TI AM62L EVM
+
+require conf/machine/include/am62lxx.inc
+
+KERNEL_DEVICETREE_PREFIX = " \
+    ti/k3-am62l \
+"
+
+KERNEL_DEVICETREE = ""
+
+UBOOT_MACHINE = "am62lx_evm_defconfig"
diff --git a/meta-ti-bsp/conf/machine/include/am62lxx.inc b/meta-ti-bsp/conf/machine/include/am62lxx.inc
new file mode 100644
index 00000000..d3bc81df
--- /dev/null
+++ b/meta-ti-bsp/conf/machine/include/am62lxx.inc
@@ -0,0 +1,12 @@
+require conf/machine/include/k3.inc
+SOC_FAMILY:append = ":am62lxx"
+
+MACHINE_FEATURES += "screen"
+
+# Default tiboot3.bin on AM62L is for HS-FS
+IMAGE_BOOT_FILES += "tiboot3-am62lx-hs-fs-evm.bin"
+
+TFA_BOARD = "am62l"
+TFA_K3_SYSTEM_SUSPEND = "1"
+
+OPTEEMACHINE = "k3-am62lx"
diff --git a/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb b/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb
index 0b6792b6..638138f4 100644
--- a/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb
+++ b/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb
@@ -31,6 +31,7 @@ PLAT_SFX:am65xx = "am65xx"
 PLAT_SFX:am64xx = "am64xx"
 PLAT_SFX:am62xx = "am62xx"
 PLAT_SFX:am62axx = "am62axx"
+PLAT_SFX:am62lxx = "am62lxx"
 PLAT_SFX:am62pxx = "am62pxx"
 
 DM_FW_DIR = "ti-dm/${PLAT_SFX}"
@@ -50,6 +51,7 @@ DM_FW_LIST:am65xx =  ""
 DM_FW_LIST:am64xx =  ""
 DM_FW_LIST:am62xx =  "${DM_FIRMWARE}"
 DM_FW_LIST:am62axx = "${DM_FIRMWARE}"
+DM_FW_LIST:am62lxx = ""
 DM_FW_LIST:am62pxx = "${DM_FIRMWARE}"
 
 do_install() {
diff --git a/meta-ti-bsp/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb b/meta-ti-bsp/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
index 12292c88..0d724862 100644
--- a/meta-ti-bsp/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
+++ b/meta-ti-bsp/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
@@ -26,4 +26,10 @@ do_deploy:k3r5() {
 	install -m 644 ${S}/ti-sysfw/ti-fs-stub-firmware-* ${DEPLOYDIR}/ti-sysfw
 }
 
+do_deploy:am62lxx(){
+        install -d ${DEPLOYDIR}/ti-sysfw
+        install -m 644 ${S}/ti-sysfw/ti-sci-firmware-* ${DEPLOYDIR}/ti-sysfw
+        install -m 644 ${S}/ti-sysfw/ti-fs-firmware-* ${DEPLOYDIR}/ti-sysfw
+}
+
 addtask deploy before do_build after do_compile
diff --git a/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc b/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc
index c628eb15..9971e960 100644
--- a/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc
+++ b/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc
@@ -7,5 +7,8 @@ TFA_BUILD_TARGET:k3 = "all"
 TFA_INSTALL_TARGET:k3 = "bl31"
 TFA_SPD:k3 = "opteed"
 
+# For am62lxx, install bl1 & bl31 using TFA_INSTALL_TARGET
+TFA_INSTALL_TARGET:am62lxx = "bl31 bl1"
+
 EXTRA_OEMAKE:append:k3 = "${@ ' K3_USART=' + d.getVar('TFA_K3_USART') if d.getVar('TFA_K3_USART') else ''}"
 EXTRA_OEMAKE:append:k3 = "${@ ' K3_PM_SYSTEM_SUSPEND=' + d.getVar('TFA_K3_SYSTEM_SUSPEND') if d.getVar('TFA_K3_SYSTEM_SUSPEND') else ''}"
diff --git a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc
index 0e7e2c6e..41d4abdd 100644
--- a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc
+++ b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc
@@ -53,8 +53,10 @@ PLAT_SFX:am65xx = "am65xx"
 PLAT_SFX:am64xx = "am64xx"
 PLAT_SFX:am62xx = "am62xx"
 PLAT_SFX:am62axx = "am62axx"
+PLAT_SFX:am62lxx = "am62lxx"
 PLAT_SFX:am62pxx = "am62pxx"
 
+PACKAGECONFIG[ap-trusted-rom] = "BL1=${STAGING_DIR_HOST}/firmware/bl1.bin,,trusted-firmware-a"
 PACKAGECONFIG[atf] = "BL31=${STAGING_DIR_HOST}/firmware/bl31.bin,,trusted-firmware-a"
 PACKAGECONFIG[optee] = "TEE=${STAGING_DIR_HOST}${nonarch_base_libdir}/firmware/bl32.bin,,optee-os"
 PACKAGECONFIG[dm] = "DM=${STAGING_DIR_HOST}${nonarch_base_libdir}/firmware/ti-dm/${PLAT_SFX}/${DM_FIRMWARE},,ti-dm-fw"
@@ -68,6 +70,7 @@ PACKAGECONFIG:append:j722s = " dm"
 PACKAGECONFIG:append:j742s2 = " dm"
 PACKAGECONFIG:append:am62xx = " dm"
 PACKAGECONFIG:append:am62axx = " dm"
+PACKAGECONFIG:append:am62lxx = " ap-trusted-rom"
 PACKAGECONFIG:append:am62pxx = " dm"
 
 COMPATIBLE_MACHINE = "(ti-soc)"
@@ -226,6 +229,16 @@ uboot_deploy_config:append:k3r5 () {
 	done
 }
 
+uboot_deploy_config:append:am62lxx () {
+	for f in ${B}/${config}/tiboot3-*.bin; do
+		if [ -f "$f" ]; then
+			f_base=$(basename $f)
+			install -m 644 $f ${DEPLOYDIR}/${f_base}-${type}
+			ln -sf ${f_base}-${type} ${DEPLOYDIR}/${f_base}
+		fi
+	done
+}
+
 uboot_deploy:append:k3r5 () {
     for f in ${B}/tiboot3-*.bin; do
 		if [ -f "$f" ]; then
@@ -240,6 +253,14 @@ uboot_deploy:append:k3r5 () {
 	done
 }
 
+uboot_deploy:append:am62lxx () {
+	for f in ${B}/tiboot3*.bin; do
+		if [ -f "$f" ]; then
+			install -m 644 $f ${DEPLOYDIR}/
+		fi
+	done
+}
+
 uboot_deploy_config:append () {
     cd ${DEPLOYDIR}
     if [ "x${SPL_UART_BINARY}" != "x" ]; then
diff --git a/meta-ti-bsp/recipes-security/optee/optee-os-ti-overrides.inc b/meta-ti-bsp/recipes-security/optee/optee-os-ti-overrides.inc
index f131f1ff..5756f3ff 100644
--- a/meta-ti-bsp/recipes-security/optee/optee-os-ti-overrides.inc
+++ b/meta-ti-bsp/recipes-security/optee/optee-os-ti-overrides.inc
@@ -6,6 +6,7 @@ EXTRA_OEMAKE:remove = "CFG_MAP_EXT_DT_SECURE=y"
 EXTRA_OEMAKE:append:k3 = "${@ ' CFG_CONSOLE_UART='+ d.getVar('OPTEE_K3_USART') if d.getVar('OPTEE_K3_USART') else ''}"
 
 EXTRA_OEMAKE:append:am62xx = " CFG_TEE_CORE_LOG_LEVEL=1"
+EXTRA_OEMAKE:append:am62lxx = " CFG_TEE_CORE_LOG_LEVEL=1"
 EXTRA_OEMAKE:append:am62pxx = " CFG_TEE_CORE_LOG_LEVEL=1"
 EXTRA_OEMAKE:append:am62axx = " CFG_TEE_CORE_LOG_LEVEL=1"
 EXTRA_OEMAKE:append:j722s = " CFG_TEE_CORE_LOG_LEVEL=1"
-- 
2.34.1



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

* [meta-ti][master][PATCH v3 5/5] conf: machine: am62lxx-evm: Add logic to generate UBI filesystem images
  2025-02-06 14:40 [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support Chirag Shilwant
                   ` (3 preceding siblings ...)
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 4/5] meta-ti-bsp: Add Support for AM62L Chirag Shilwant
@ 2025-02-06 14:40 ` Chirag Shilwant
  2025-02-06 20:44 ` [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support Denys Dmytriyenko
  5 siblings, 0 replies; 7+ messages in thread
From: Chirag Shilwant @ 2025-02-06 14:40 UTC (permalink / raw)
  To: meta-ti; +Cc: Denys, Ryan Eatmon

Add logic to generate UBI filesystem images which can be used to directly
flash into the NAND’s file-system partition.

Signed-off-by: Chirag Shilwant <c-shilwant@ti.com>
---
 meta-ti-bsp/conf/machine/am62lxx-evm.conf | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-ti-bsp/conf/machine/am62lxx-evm.conf b/meta-ti-bsp/conf/machine/am62lxx-evm.conf
index ff373238..fc348c9b 100644
--- a/meta-ti-bsp/conf/machine/am62lxx-evm.conf
+++ b/meta-ti-bsp/conf/machine/am62lxx-evm.conf
@@ -4,6 +4,12 @@
 
 require conf/machine/include/am62lxx.inc
 
+IMAGE_FSTYPES += "ubifs ubi"
+
+MKUBIFS_ARGS ?= "-F -m 4096 -e 258048 -c 8000"
+
+UBINIZE_ARGS ?= "-m 4096 -p 256KiB -s 1024 -O 1024"
+
 KERNEL_DEVICETREE_PREFIX = " \
     ti/k3-am62l \
 "
-- 
2.34.1



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

* Re: [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support
  2025-02-06 14:40 [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support Chirag Shilwant
                   ` (4 preceding siblings ...)
  2025-02-06 14:40 ` [meta-ti][master][PATCH v3 5/5] conf: machine: am62lxx-evm: Add logic to generate UBI filesystem images Chirag Shilwant
@ 2025-02-06 20:44 ` Denys Dmytriyenko
  5 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2025-02-06 20:44 UTC (permalink / raw)
  To: Chirag Shilwant; +Cc: meta-ti, Ryan Eatmon

On Thu, Feb 06, 2025 at 08:10:16PM +0530, Chirag Shilwant wrote:
> This series is intended only for master.
> It bumps up TFA to v2.12+ & OPTEE-OS to v4.5.0+
> It also aims to enable platform support for AM62L in meta-ti-bsp
> 
> Link to AM62L TRM: https://www.ti.com/lit/pdf/sprujb4

The series looks good to me now, thank you!


> Changes in v3:
> 
> * Add License-Update tag for "trusted-firmware-a: Switch TFA to TI fork"
> 
> Changes in v2:
> 
> * Upgrade optee-os to v4.5.0+ & drop Add-initial-support-for-AM62Lx-SoC.patch
> * Split TFA upgrade to v2.12 & switch to Github TI fork into 2 commits
> * Fix indentation for AM62L specific newly added changes in u-boot-ti.inc by using OE-Core policy
> * Set KERNEL_DEVICETREE to empty
> * Drop SERIAL_CONSOLES from am62lxx.inc as k3.inc already has it defined
> 
> Chirag Shilwant (5):
>   recipes-security: optee: Update to v4.5.0+
>   trusted-firmware-a: Update to v2.12 release tag
>   trusted-firmware-a: Switch TFA to TI fork
>   meta-ti-bsp: Add Support for AM62L
>   conf: machine: am62lxx-evm: Add logic to generate UBI filesystem
>     images
> 
>  meta-ti-bsp/conf/machine/am62lxx-evm.conf     | 19 +++++++++++++++++
>  meta-ti-bsp/conf/machine/include/am62lxx.inc  | 12 +++++++++++
>  meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb  |  2 ++
>  .../recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb    |  6 ++++++
>  .../trusted-firmware-a-ti.inc                 | 11 ++++++----
>  meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc  | 21 +++++++++++++++++++
>  .../optee/optee-os-ti-overrides.inc           |  1 +
>  .../optee/optee-os-ti-version.inc             |  4 ++--
>  8 files changed, 70 insertions(+), 6 deletions(-)
>  create mode 100644 meta-ti-bsp/conf/machine/am62lxx-evm.conf
>  create mode 100644 meta-ti-bsp/conf/machine/include/am62lxx.inc
> 
> -- 
> 2.34.1


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

end of thread, other threads:[~2025-02-06 20:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-06 14:40 [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support Chirag Shilwant
2025-02-06 14:40 ` [meta-ti][master][PATCH v3 1/5] recipes-security: optee: Update to v4.5.0+ Chirag Shilwant
2025-02-06 14:40 ` [meta-ti][master][PATCH v3 2/5] trusted-firmware-a: Update to v2.12 release tag Chirag Shilwant
2025-02-06 14:40 ` [meta-ti][master][PATCH v3 3/5] trusted-firmware-a: Switch TFA to TI fork Chirag Shilwant
2025-02-06 14:40 ` [meta-ti][master][PATCH v3 4/5] meta-ti-bsp: Add Support for AM62L Chirag Shilwant
2025-02-06 14:40 ` [meta-ti][master][PATCH v3 5/5] conf: machine: am62lxx-evm: Add logic to generate UBI filesystem images Chirag Shilwant
2025-02-06 20:44 ` [meta-ti][master][PATCH v3 0/5] Upgrade TFA, OPTEE-OS & enable AM62L support 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.