summaryrefslogtreecommitdiff
path: root/tools/binman/test
diff options
context:
space:
mode:
authorAlice Guo <[email protected]>2025-04-28 18:37:39 +0800
committerFabio Estevam <[email protected]>2025-05-03 16:55:32 -0300
commit0318c26c2fcd4e38f7a9e991409fd458c7790e07 (patch)
tree0b8edb31c93a0e75f6c67850cf3aa656ed1713bc /tools/binman/test
parentd292f30d5249236fc5c5a3b8a7d7769a1c96bb5b (diff)
binman: add a new entry type for packing DDR PHY firmware images
i.MX95 needs to combine DDR PHY firmware images and their byte counts together, so add a new entry type nxp-header-ddrfw for this requirement. Signed-off-by: Alice Guo <[email protected]>
Diffstat (limited to 'tools/binman/test')
-rw-r--r--tools/binman/test/346_nxp_ddrfw_imx95.dts24
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/binman/test/346_nxp_ddrfw_imx95.dts b/tools/binman/test/346_nxp_ddrfw_imx95.dts
new file mode 100644
index 00000000000..889f6f29860
--- /dev/null
+++ b/tools/binman/test/346_nxp_ddrfw_imx95.dts
@@ -0,0 +1,24 @@
+// SPDX-License-Identifier: GPL-2.0+
+
+/dts-v1/;
+
+/ {
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ binman {
+ imx-lpddr {
+ type = "nxp-header-ddrfw";
+
+ imx-lpddr-imem {
+ filename = "lpddr5_imem.bin";
+ type = "blob-ext";
+ };
+
+ imx-lpddr-dmem {
+ filename = "lpddr5_dmem.bin";
+ type = "blob-ext";
+ };
+ };
+ };
+};