Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752400Ab2JISZX (ORCPT ); Tue, 9 Oct 2012 14:25:23 -0400 Received: from quartz.orcorp.ca ([184.70.90.242]:58405 "EHLO quartz.orcorp.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750954Ab2JISZR (ORCPT ); Tue, 9 Oct 2012 14:25:17 -0400 Date: Tue, 9 Oct 2012 12:25:14 -0600 From: Jason Gunthorpe To: Dave Martin Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] [ARM] Use AT() in the linker script to create correct program headers Message-ID: <20121009182514.GF4124@obsidianresearch.com> References: <20121001160639.GA31620@obsidianresearch.com> <20121001175647.GD2100@linaro.org> <20121001183543.GC22342@obsidianresearch.com> <20121002102346.GB2108@linaro.org> <20121002174759.GC23733@obsidianresearch.com> <20121003104335.GA2254@linaro.org> <20121003184437.GB12231@obsidianresearch.com> <20121004113637.GA2117@linaro.org> <20121004175907.GB2994@obsidianresearch.com> <20121008104649.GD2302@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121008104649.GD2302@linaro.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Broken-Reverse-DNS: no host name found for IP address 10.0.0.162 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2873 Lines: 68 On Mon, Oct 08, 2012 at 11:46:49AM +0100, Dave Martin wrote: > > Yes, but we still need rely on complex code like I2C/MTD to create a > > correct DTB, which again puts us back to patching the kernel for that > > functionality. > > I'm still confused as to where this complexity is coming from. > > If you need to run some complex I2C and MTD code to generate the DT, what > is that code doing? If it is probing to get the information, then can you > avoid putting the info in the DT at all? Primarily the DT is to describe > those aspects of the hardware which can't be probed. At manufacturing the unit is programmed with a small datastructure that contains all the unique ID's (MAC addresses, etc), manufacturing variations (ie vendor A or B was used for a socket) and other ancillary data. So a fair amount of I2C and MTD stack is required just to fetch this structure - a full CFI probe, for instance, is needed in the NOR flash case just to locate the structure. Once read, things like MAC addresses are copied into the DTB, and certain sections of the DTB are NOP'd out - we have stanzas for chip vendor A and vendor B, the one that was not put on the board is replaced with NOP. Similar to the A/B fix, a further fixup is done based on a runtime probe of the programmable devices to learn their current configuration/memory map. It seems desirable to present a complete/correct DTB to the kernel, it doesn't seem there are great places to hook in custom discovery procedures. >From a maintenance perspective we already have to test/etc the kernel code for all of this, we don't want to do that twice by duplicating this stuff outside the kernel. > Otherwise, you that have a few static configurations: you could have one > pre-baked DT per hardware platform, and choose the correct one once you > have detected the platform. We do that too, for instance the PPC kernel we build supports 4 different circuit boards, each served by a separate DTB, that needs a fixup pass. I think the biggest DTB describes about 49 devices.. > > Where the 'dev tree provider' would use the stored bootloader > > registers and any other information to return the proper DTB. > > It would need developing a bit, but something like that might be > possible -- it should probably be discussed via devicetree-discuss. > > If it is doing anything less trivial than picking a pre-baked DT, the > rationale would need to be carefully argued. I'm not sure there is a great interest in this? What are other folks working on production embedded stuff doing? I suppose that will be more clear as device tree is rolled out. Jason -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/