[PATCH v6 3/4] arm: dts: k3-binman: fix rcfg_yaml and pcfg_yaml labels

Marcel Ziswiler marcel at ziswiler.com
Fri Aug 4 12:08:07 CEST 2023


From: Marcel Ziswiler <marcel.ziswiler at toradex.com>

Fix rcfg_yaml to really point to rm-cfg.yaml and pcfg_yaml to really
point to pm-cfg.yaml which likely is the intention.

While at it also add labels for the remaining items like custmpk_pem,
dkey_pem, bcfg_yaml_sysfw, scfg_yaml_sysfw, pcfg_yaml_sysfw and
rcfg_yaml_sysfw.

Signed-off-by: Marcel Ziswiler <marcel.ziswiler at toradex.com>

---

Changes in v6:
- New commit fixing rcfg_yaml and pcfg_yaml labels actually pointing
  at correct yamls and adding labels for the remaining items.
Thanks to Neha for pointing me towards actually making use of those
labels.

 arch/arm/dts/k3-binman.dtsi | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/arch/arm/dts/k3-binman.dtsi b/arch/arm/dts/k3-binman.dtsi
index 2a67cebf94f..2ea2dd18a12 100644
--- a/arch/arm/dts/k3-binman.dtsi
+++ b/arch/arm/dts/k3-binman.dtsi
@@ -12,14 +12,14 @@
 &binman {
 	custMpk {
 		filename = "custMpk.pem";
-		blob-ext {
+		custmpk_pem: blob-ext {
 			filename = "../keys/custMpk.pem";
 		};
 	};
 
 	ti-degenerate-key {
 		filename = "ti-degenerate-key.pem";
-		blob-ext {
+		dkey_pem: blob-ext {
 			filename = "../keys/ti-degenerate-key.pem";
 		};
 	};
@@ -37,14 +37,14 @@
 	};
 	pm-cfg {
 		filename = "pm-cfg.bin";
-		rcfg_yaml: ti-board-config {
+		pcfg_yaml: ti-board-config {
 			config = "pm-cfg.yaml";
 			schema = "../common/schema.yaml";
 		};
 	};
 	rm-cfg {
 		filename = "rm-cfg.bin";
-		pcfg_yaml: ti-board-config {
+		rcfg_yaml: ti-board-config {
 			config = "rm-cfg.yaml";
 			schema = "../common/schema.yaml";
 		};
@@ -93,19 +93,19 @@
 	combined-sysfw-cfg {
 		filename = "combined-sysfw-cfg.bin";
 		ti-board-config {
-			board-cfg {
+			bcfg_yaml_sysfw: board-cfg {
 				config = "board-cfg.yaml";
 				schema = "../common/schema.yaml";
 			};
-			sec-cfg {
+			scfg_yaml_sysfw: sec-cfg {
 				config = "sec-cfg.yaml";
 				schema = "../common/schema.yaml";
 			};
-			pm-cfg {
+			pcfg_yaml_sysfw: pm-cfg {
 				config = "pm-cfg.yaml";
 				schema = "../common/schema.yaml";
 			};
-			rm-cfg {
+			rcfg_yaml_sysfw: rm-cfg {
 				config = "rm-cfg.yaml";
 				schema = "../common/schema.yaml";
 			};
-- 
2.36.1



More information about the U-Boot mailing list