Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: chosen: Document linux,initrd-{start,end}

These properties have been in use for a very long time (at least since
2005), but were never documented in chosen.txt.

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Signed-off-by: Rob Herring <robh@kernel.org>

authored by

Jonathan Neuschäfer and committed by
Rob Herring
271ba36e aa199b74

+15
+15
Documentation/devicetree/bindings/chosen.txt
··· 120 120 While this property does not represent a real hardware, the address 121 121 and the size are expressed in #address-cells and #size-cells, 122 122 respectively, of the root node. 123 + 124 + linux,initrd-start and linux,initrd-end 125 + --------------------------------------- 126 + 127 + These properties hold the physical start and end address of an initrd that's 128 + loaded by the bootloader. Note that linux,initrd-start is inclusive, but 129 + linux,initrd-end is exclusive. 130 + e.g. 131 + 132 + / { 133 + chosen { 134 + linux,initrd-start = <0x82000000>; 135 + linux,initrd-end = <0x82800000>; 136 + }; 137 + };