Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752615AbdLLRDZ (ORCPT ); Tue, 12 Dec 2017 12:03:25 -0500 Received: from eddie.linux-mips.org ([148.251.95.138]:57026 "EHLO cvs.linux-mips.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752217AbdLLRDN (ORCPT ); Tue, 12 Dec 2017 12:03:13 -0500 Date: Tue, 12 Dec 2017 18:03:02 +0100 From: Ladislav Michl To: "Derald D. Woods" Cc: linux-omap@vger.kernel.org, tony@atomide.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH] ARM: dts: omap3-evm: Fix missing NAND partition information Message-ID: <20171212170302.GA8381@lenoch> References: <20171212041213.27436-1-woods.technical@gmail.com> <20171212063930.GA2791@lenoch> <20171212163125.GA8032@DeraldWoods-PC.wicab.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171212163125.GA8032@DeraldWoods-PC.wicab.com> User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 929 Lines: 19 On Tue, Dec 12, 2017 at 10:31:26AM -0600, Derald D. Woods wrote: > > What about passing U-Boot partitions information to kernel instead? > > I am testing using an appended device-tree. This has been the most > reliable method for the OMAP34XX boards that I have. If you have an > example config, with working command line MTDPARTS, for beagleboard(Rev. > C4), Overo TOBI, or similiar OMAP34XX, I will gladly use it. Also note > that other OMAP34XX boards currently provide a default partition > layout. Is that bad practice for all of those as well? I am open to > exploring the method that actually works. Well, appended device tree is indeed good only for testing purposes where bootloader is unable to provide one. Problem with hardcoded partitions is that you need to keep bootloader and kernel view of partitions the same. That's why U-Boot introduced CONFIG_FDT_FIXUP_PARTITIONS which will add mtdparts into DTB. ladis