Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933461AbdLRJXX (ORCPT ); Mon, 18 Dec 2017 04:23:23 -0500 Received: from 9.mo68.mail-out.ovh.net ([46.105.78.111]:57891 "EHLO 9.mo68.mail-out.ovh.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758255AbdLRJXU (ORCPT ); Mon, 18 Dec 2017 04:23:20 -0500 X-Greylist: delayed 614 seconds by postgrey-1.27 at vger.kernel.org; Mon, 18 Dec 2017 04:23:19 EST Subject: Re: [PATCH v2 13/19] ARM: dts: Add OpenBMC flash layout To: Joel Stanley , Rob Herring , Mark Rutland , Arnd Bergmann , Andrew Jeffery , Patrick Venture , Xo Wang , Lei YU Cc: Benjamin Herrenschmidt , Jeremy Kerr , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-aspeed@lists.ozlabs.org References: <20171215062443.23059-1-joel@jms.id.au> <20171215062443.23059-14-joel@jms.id.au> From: =?UTF-8?Q?C=c3=a9dric_Le_Goater?= Message-ID: <1becbfbe-cc2b-78d6-dd3b-00cdefa9b799@kaod.org> Date: Mon, 18 Dec 2017 10:04:44 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <20171215062443.23059-14-joel@jms.id.au> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit X-Ovh-Tracer-Id: 9563675287187524461 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: -100 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedtuddrfeelgdejfecutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfqggfjpdevjffgvefmvefgnecuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1263 Lines: 54 On 12/15/2017 07:24 AM, Joel Stanley wrote: > This is a layout used by OpenBMC systems. It describes the fixed flash > layout of a 32MB mtd device. > > Signed-off-by: Joel Stanley Reviewed-by: Cédric Le Goater > --- > arch/arm/boot/dts/openbmc-flash-layout.dtsi | 32 +++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > create mode 100644 arch/arm/boot/dts/openbmc-flash-layout.dtsi > > diff --git a/arch/arm/boot/dts/openbmc-flash-layout.dtsi b/arch/arm/boot/dts/openbmc-flash-layout.dtsi > new file mode 100644 > index 000000000000..63ad8db7a431 > --- /dev/null > +++ b/arch/arm/boot/dts/openbmc-flash-layout.dtsi > @@ -0,0 +1,32 @@ > +// SPDX-License-Identifier: GPL-2.0+ > + > +partitions { > + compatible = "fixed-partitions"; > + #address-cells = <1>; > + #size-cells = <1>; > + > + u-boot@0 { > + reg = <0x0 0x60000>; > + label = "u-boot"; > + }; > + > + u-boot-env@60000 { > + reg = <0x60000 0x20000>; > + label = "u-boot-env"; > + }; > + > + kernel@80000 { > + reg = <0x80000 0x440000>; > + label = "kernel"; > + }; > + > + rofs@0c0000 { > + reg = <0x4c0000 0x1740000>; > + label = "rofs"; > + }; > + > + rwfs@1c00000 { > + reg = <0x1c00000 0x400000>; > + label = "rwfs"; > + }; > +}; >