summaryrefslogtreecommitdiff
path: root/doc/develop/spl.rst
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2023-02-13 08:56:36 -0700
committerSimon Glass <[email protected]>2023-02-14 09:43:27 -0700
commitea4299a213c05093cf477e00e3af37f71a0ed35d (patch)
tree56c300c71191ef53ac0673705a650ab39ee7d775 /doc/develop/spl.rst
parentc8ef3eed61796293b744d33739fe4f601af40a17 (diff)
dm: doc: Update documentation for new driver model schema
Now that Linux has accepted these tags, move U-Boot over to use them. Tidy up the comments and formatting, making sure that VPL is mentioned too. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'doc/develop/spl.rst')
-rw-r--r--doc/develop/spl.rst9
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/develop/spl.rst b/doc/develop/spl.rst
index aec7b562faa..a1515a7b43b 100644
--- a/doc/develop/spl.rst
+++ b/doc/develop/spl.rst
@@ -113,17 +113,22 @@ with:
- the mandatory nodes (/alias, /chosen, /config)
- the nodes with one pre-relocation property:
- 'u-boot,dm-pre-reloc' or 'u-boot,dm-spl'
+ 'bootph-all' or 'bootph-pre-ram'
fdtgrep is also used to remove:
- the properties defined in CONFIG_OF_SPL_REMOVE_PROPS
- all the pre-relocation properties
- ('u-boot,dm-pre-reloc', 'u-boot,dm-spl' and 'u-boot,dm-tpl')
+ ('bootph-all', 'bootph-pre-ram' (SPL), 'bootph-pre-sram' (TPL) and
+ 'bootph-verify' (TPL))
All the nodes remaining in the SPL devicetree are bound
(see doc/driver-model/design.rst).
+NOTE: U-Boot migrated to a new schema for the u-boot,dm-* tags in 2023. Please
+update to use the new bootph-* tags as described in the
+doc/device-tree-bindings/bootph.yaml binding file.
+
Debugging
---------