summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLokanathan, Raaj <raaj.lokanathan@intel.com>2022-09-24 00:26:20 +0800
committerLokanathan, Raaj <raaj.lokanathan@intel.com>2022-10-11 14:41:49 +0800
commite7be26ed8e76b0ac5b3978af6b145480297697b3 (patch)
treeed6e7f05ba031b76dbf79859babc85bcdaa4cd9a
parent055a470c5f31db679bc28383b875ab63c5ae0b75 (diff)
downloadu-boot-socfpga-e7be26ed8e76b0ac5b3978af6b145480297697b3.tar.gz
HSD #15011817806: fs-loader: Doc improvement
Add additional example storage device and partition search for qspi in device tree source Signed-off-by: Lokanathan, Raaj <raaj.lokanathan@intel.com>
-rw-r--r--doc/device-tree-bindings/misc/fs_loader.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/misc/fs_loader.txt b/doc/device-tree-bindings/misc/fs_loader.txt
index 884fbf47c0..c6a7de35e8 100644
--- a/doc/device-tree-bindings/misc/fs_loader.txt
+++ b/doc/device-tree-bindings/misc/fs_loader.txt
@@ -12,6 +12,7 @@ Required properties:
required for ubi and mounting.
- ubivol: which volume of ubi the image loading from, this property is required
for ubi and mounting.
+- sfconfig: should only contain "bus number" and "chip selection".
Example of storage device and partition search set for mmc, usb, sata and
ubi in device tree source as shown in below:
@@ -46,3 +47,10 @@ ubi in device tree source as shown in below:
mtdpart = "UBI",
ubivol = "ubi0";
};
+
+ Example for qspi:
+ fs_loader4: fs-loader@4 {
+ u-boot,dm-pre-reloc;
+ compatible = "u-boot,fs-loader";
+ sfconfig = <0 0>;
+ };