Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751214AbdLIPeG (ORCPT ); Sat, 9 Dec 2017 10:34:06 -0500 Received: from mout.gmx.net ([212.227.17.21]:59374 "EHLO mout.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750908AbdLIPeC (ORCPT ); Sat, 9 Dec 2017 10:34:02 -0500 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= To: devicetree@vger.kernel.org Cc: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= , Rob Herring , Mark Rutland , AKASHI Takahiro , Ard Biesheuvel , Kees Cook , James Morse , Frank Rowand , linux-kernel@vger.kernel.org Subject: [PATCH] dt-bindings: chosen: Document linux,initrd-{start,end} Date: Sat, 9 Dec 2017 16:33:02 +0100 Message-Id: <20171209153305.11012-1-j.neuschaefer@gmx.net> X-Mailer: git-send-email 2.15.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Provags-ID: V03:K0:pA+b3c+Eqfrd3sDKEWvu+e2WMAPaFRHjBbg1BLlF2fRcCwavhoS oZqwIowJgQ+mxDKm1+hHo9sqCjd+kSQg/OuPWzta0NRZVHYMBiQFS5aVhM7sB638jaKghUZ Ftze6uSRc16Aaog67LSqT+nNoP5PvOLCdZLjRCJFn+E5Sbe5hJdHL47q8SGSlRu0Ns4bgi8 pNcvt5/An4rGGQDAWH9PQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:qlDztwh8vKc=:Hpw6Picn6T7yLpYBuAvcd0 scCR5JUOwocGh170VO9qvRmFq8HCpN01LkmLOETECAkK5dKjqeAisP1S/HpSGu/Ul/9XdQK5D MZhOY8NGg2a8joSzKK3EpScXQF+5djZQoHOP9jFrQygaOKC893ip73o2QrTAC8ha6Hz08uc+6 JuGxMSy4meRGw2oBC7Z+1aJ/iRWMq0kLgleKJs5yPToRfm31QNT5xad5nbTENbS5/ICE2oEXK HAatG9VnRxe5yoECUH2RJQwxghPPFqo4zJ2+khVPXue/Qd2IC69zZR+LKAkYMeA1sY2E19Ptc B/+UMphJsmZlt/rzkwGPCiZj4k47KheWJRlLVeWHk3h2f1AegN+clVPBVVcPKnH4qIqzPfUfm K+dv2WZum20ON+EAvid4hnfsFhKUBjELyfTu72NLYST9jjQFv6wkVRL+MkkwWCuP8yxGV1oIL 9TpPkvNleoc3UE87stNq/iuOdGkogqecMkiCusEZs/m0VBIf2xyIZT5cZfiIjvxw2RmayL+Xe X+0z8klqO4EYK3b/oHYxibe6LqPjDeO2S6aGCRnH/D8a4jEsF/xGYeDJKZ1bt7duvzxwYd/eR SKSobna+DIU4n+58NaAomam8VwWHkCeugC4FSbdC2IxfcgCnjw14C+79/s2w+7JjCJvnv9jqo 5kx6HOIKVK6R7fKTZ5K+zcdioKqMhANnDXAICa56r2TiRPolYs5JScLjqHYCFvEgxmKjYv74E gMInFGIBR7PPQUSSFqzM02WkZkomXJ/oDBNR23XjyzwtCEOdGG2WFBs0xQGYejblhr2KMjcov WyHgaLmzqI4qKqmwgoLJ9olm4CPye0NFlX5jugWPoZpqUdCVc0= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1112 Lines: 33 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 --- Documentation/devicetree/bindings/chosen.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Documentation/devicetree/bindings/chosen.txt b/Documentation/devicetree/bindings/chosen.txt index e3b13ea7d2ae..45e79172a646 100644 --- a/Documentation/devicetree/bindings/chosen.txt +++ b/Documentation/devicetree/bindings/chosen.txt @@ -120,3 +120,18 @@ e.g. While this property does not represent a real hardware, the address and the size are expressed in #address-cells and #size-cells, respectively, of the root node. + +linux,initrd-start and linux,initrd-end +--------------------------------------- + +These properties hold the physical start and end address of an initrd that's +loaded by the bootloader. Note that linux,initrd-start is inclusive, but +linux,initrd-end is exclusive. +e.g. + +/ { + chosen { + linux,initrd-start = <0x82000000>; + linux,initrd-end = <0x82800000>; + }; +}; -- 2.15.0