summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Davis <afd@ti.com>2023-10-25 11:56:23 -0500
committerRyan Eatmon <reatmon@ti.com>2023-11-08 17:36:44 -0600
commitf44117c9b259fcaf9c3cb0f8988b0d2728ef6a37 (patch)
tree855a57566ec99122fa9d2a08a263f3dc92150616
parentdb1c33066a95569ddc1994268af42927e0cd831b (diff)
downloadmeta-ti-f44117c9b259fcaf9c3cb0f8988b0d2728ef6a37.tar.gz
conf: machine: Move IMAGE_BOOT_FILES to the SoC inc for J721s2 and J784s4
These defines are specific to a SoC, not any specific board. Move these to the SoC level for these boards to be consistent with boards already doing this correctly. J7200 didn't have these at all, add them while we are here. Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-bsp/conf/machine/include/j7200.inc9
-rw-r--r--meta-ti-bsp/conf/machine/include/j721s2.inc6
-rw-r--r--meta-ti-bsp/conf/machine/include/j784s4.inc6
-rw-r--r--meta-ti-bsp/conf/machine/j721s2-evm.conf6
-rw-r--r--meta-ti-bsp/conf/machine/j784s4-evm.conf6
5 files changed, 21 insertions, 12 deletions
diff --git a/meta-ti-bsp/conf/machine/include/j7200.inc b/meta-ti-bsp/conf/machine/include/j7200.inc
index f23e70cd..66a07da8 100644
--- a/meta-ti-bsp/conf/machine/include/j7200.inc
+++ b/meta-ti-bsp/conf/machine/include/j7200.inc
@@ -1,6 +1,15 @@
1require conf/machine/include/k3.inc 1require conf/machine/include/k3.inc
2SOC_FAMILY:append = ":j7200" 2SOC_FAMILY:append = ":j7200"
3 3
4# Default tiboot3.bin on J7200 is for GP
5IMAGE_BOOT_FILES += "tiboot3-j7200-gp-evm.bin"
6
7# Since default tiboot3.bin on J7200 is for GP, add a version for SR2.0 HS-FS
8IMAGE_BOOT_FILES += "tiboot3-j7200_sr2-hs-fs-evm.bin"
9
10# Since default tiboot3.bin on J721e is for GP, add a version for SR2.0 HS-SE
11IMAGE_BOOT_FILES += "tiboot3-j7200_sr2-hs-evm.bin"
12
4TFA_BOARD = "generic" 13TFA_BOARD = "generic"
5 14
6OPTEEMACHINE = "k3-j721e" 15OPTEEMACHINE = "k3-j721e"
diff --git a/meta-ti-bsp/conf/machine/include/j721s2.inc b/meta-ti-bsp/conf/machine/include/j721s2.inc
index cc58fb89..4b63694c 100644
--- a/meta-ti-bsp/conf/machine/include/j721s2.inc
+++ b/meta-ti-bsp/conf/machine/include/j721s2.inc
@@ -6,6 +6,12 @@ MACHINE_FEATURES += "screen gpu"
6require conf/machine/include/mesa-pvr.inc 6require conf/machine/include/mesa-pvr.inc
7PREFERRED_PROVIDER_virtual/gpudriver ?= "ti-img-rogue-driver" 7PREFERRED_PROVIDER_virtual/gpudriver ?= "ti-img-rogue-driver"
8 8
9# Default tiboot3.bin on J721S2 is for GP
10IMAGE_BOOT_FILES += "tiboot3-j721s2-gp-evm.bin"
11
12# Since default tiboot3.bin on J721S2 is for GP, add a version for SR1.0 HS-FS
13IMAGE_BOOT_FILES += "tiboot3-j721s2-hs-fs-evm.bin"
14
9TFA_BOARD = "generic" 15TFA_BOARD = "generic"
10 16
11OPTEEMACHINE = "k3-j784s4" 17OPTEEMACHINE = "k3-j784s4"
diff --git a/meta-ti-bsp/conf/machine/include/j784s4.inc b/meta-ti-bsp/conf/machine/include/j784s4.inc
index d4cf876b..559877e0 100644
--- a/meta-ti-bsp/conf/machine/include/j784s4.inc
+++ b/meta-ti-bsp/conf/machine/include/j784s4.inc
@@ -6,6 +6,12 @@ MACHINE_FEATURES += "screen gpu"
6require conf/machine/include/mesa-pvr.inc 6require conf/machine/include/mesa-pvr.inc
7PREFERRED_PROVIDER_virtual/gpudriver ?= "ti-img-rogue-driver" 7PREFERRED_PROVIDER_virtual/gpudriver ?= "ti-img-rogue-driver"
8 8
9# Default tiboot3.bin on J784S4 is for GP
10IMAGE_BOOT_FILES += "tiboot3-j784s4-gp-evm.bin"
11
12# Since default tiboot3.bin on J784S4 is for GP, add a version for SR1.0 HS-FS
13IMAGE_BOOT_FILES += "tiboot3-j784s4-hs-fs-evm.bin"
14
9TFA_BOARD = "j784s4" 15TFA_BOARD = "j784s4"
10 16
11OPTEEMACHINE = "k3-j784s4" 17OPTEEMACHINE = "k3-j784s4"
diff --git a/meta-ti-bsp/conf/machine/j721s2-evm.conf b/meta-ti-bsp/conf/machine/j721s2-evm.conf
index 56a949e5..ecb1836f 100644
--- a/meta-ti-bsp/conf/machine/j721s2-evm.conf
+++ b/meta-ti-bsp/conf/machine/j721s2-evm.conf
@@ -19,9 +19,3 @@ KERNEL_DEVICETREE = " \
19" 19"
20 20
21UBOOT_MACHINE = "j721s2_evm_a72_defconfig" 21UBOOT_MACHINE = "j721s2_evm_a72_defconfig"
22
23# Default tiboot3.bin on J721S2 is for GP
24IMAGE_BOOT_FILES += "tiboot3-j721s2-gp-evm.bin"
25
26# Since default tiboot3.bin on J721S2 is for GP, add a version for SR1.0 HS-FS
27IMAGE_BOOT_FILES += "tiboot3-j721s2-hs-fs-evm.bin"
diff --git a/meta-ti-bsp/conf/machine/j784s4-evm.conf b/meta-ti-bsp/conf/machine/j784s4-evm.conf
index 2421b0b9..40a63651 100644
--- a/meta-ti-bsp/conf/machine/j784s4-evm.conf
+++ b/meta-ti-bsp/conf/machine/j784s4-evm.conf
@@ -19,9 +19,3 @@ KERNEL_DEVICETREE = " \
19" 19"
20 20
21UBOOT_MACHINE = "j784s4_evm_a72_defconfig" 21UBOOT_MACHINE = "j784s4_evm_a72_defconfig"
22
23# Default tiboot3.bin on J784S4 is for GP
24IMAGE_BOOT_FILES += "tiboot3-j784s4-gp-evm.bin"
25
26# Since default tiboot3.bin on J784S4 is for GP, add a version for SR1.0 HS-FS
27IMAGE_BOOT_FILES += "tiboot3-j784s4-hs-fs-evm.bin"