Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1422726Ab2KNMH3 (ORCPT ); Wed, 14 Nov 2012 07:07:29 -0500 Received: from mail-oa0-f46.google.com ([209.85.219.46]:65020 "EHLO mail-oa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756728Ab2KNMH2 (ORCPT ); Wed, 14 Nov 2012 07:07:28 -0500 MIME-Version: 1.0 In-Reply-To: <1352719094.10405.18.camel@sakura.staff.proxad.net> References: <1352638249-29298-1-git-send-email-jonas.gorski@gmail.com> <1352719094.10405.18.camel@sakura.staff.proxad.net> From: Jonas Gorski Date: Wed, 14 Nov 2012 13:07:07 +0100 Message-ID: Subject: Re: [RFC] MIPS: BCM63XX: add initial Device Tree support To: mbizon@freebox.fr Cc: linux-mips@linux-mips.org, Ralf Baechle , John Crispin , Florian Fainelli , Kevin Cernekee , devicetree-discuss@lists.ozlabs.org, linux-kernel@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4910 Lines: 114 On 12 November 2012 12:18, Maxime Bizon wrote: > On Sun, 2012-11-11 at 13:50 +0100, Jonas Gorski wrote: > >> This patch series adds initial Device Tree support to BCM63XX by adding >> bindings for interrupts, GPIOs and clocks to Device Tree. Finally it adds >> one "real" user, the serial driver, to the device tree boards. > >> 51 files changed, 1993 insertions(+), 392 deletions(-) > > I've already said what I think privately to you but I will do it again > > The bcm63xx code base is IMO quite clean. It does not suffer from code > duplication, and god it would have taken far less time to write it the > "bad" way. The non-DT way of defining boards will not go away soon - see how all changes are done with keeping "backward" compatibility in mind: I don't remove the old device registration code, I don't remove any fields from the board struct, I added compatibility dts for when there is only a board struct, no board specific dts file. > We have only *one* register file for all the SOCs, only the different > bits are visible. > > We can even build a single kernel that support all SOCs/boards. That's not going to change with Device Tree, and I'm trying my best to keep this. > So what's the *point* of this ? Not having to update board_bcm963xx.{c,h} because some vendor decided to add e.g. a previously unused gpio-bitbanged device. Not having to modify the kernel but just attach a (externally build) dtb to the kernel to support a new board. Ideally in the far future even using a CFE provided dtb. I'm sure there are more reasons. > You *cannot* abstract hardware, you just can't guess now what the next > SOC peculiarity will be. And nobody wants to do that. But - as Kevin already mentioned - it would be nice if we get similar SoCs we already know about supported with the same code; or at least , like BCM33xx, BCM68xx or maybe even BCM7xxx (never looked at them, so I can't tell how viable that is). >> Quoting your patch "BCM63XX: switch to common clock and Device Tree" > > +Required properties: > +- compatible: one of > + a) "brcm,bcm63xx-clock" > + Standard BCM63XX clock. > > cool a nice abstraction, one register bit = one clock > > + b) "brcm,bcm63xx-sar-clock" > + SAR/ATM clock, which requires a reset of the SAR/ATM block. > + c) "brcm,bcm63xx-enetsw-clock" > + Generic ethernet switch clock, which requires a reset of the block. > + d) "brcm,bcm6368-enetsw-clock" > + BCM6368 ethernet switch clock, which requires additional clocks to be > + enabled during reset. > > oops that abstraction did not fly because after enabling this particular > clock on this SOC you also need to toggle other bits. These special clocks are so that the original behaviour of the clocks is kept. I'd rather argue that the reset code does not belong into the clock code, and is actually the responsibility of the driver. It would make the clock code much simpler. There will be exactly one consumer each for the enetsw/sar clocks; the drivers themselves. And since the drivers itself aren't upstream yet, it should be no problem modifying them to reset the cores instead of relying on the clock code to do that for them. then we can implement the reset call abstract enough so the entsw just expects a list of clocks through DT that need to be enabled during reset - without having to care about which exact clocks these are (and it will be zero except for two SoCs). What would you suggest? Please no "don't use Device Tree", as I don't think we can avoid that. I'm struggling to find something you are fine with. > that list is going to get longer and longer and at the end won't mean anything. BCM681x needs additional special handling, yes, but that's it currently. Neither BCM6362 nor BCM63168 have/need this. And there is no problem adding new support code in the kernel as needed. Nobody expects older kernels to work with newer SoCs. But as stated earlier, older kernels should work with newer boards. > and this is supposed to be a *STABLE* API > > We don't add syscall everyday, because we have to support them forever. > Why would it be ok to add such abstractions that prevent further code > refactoring because they are fixed in stone ? I wouldn't treat this as stable until we got it into a satisfactory state with everything supported. Heck, I wouldn't even treat this as stable until Broadcom ships it in their SDKs to customers with CFEs providing DTBs to the kernel. What do you want to do, keep it out of the kernel until everything is supported, working and "polished up", then posting a big patch bomb? I don't think this will work well and will just cause pain for everyone. Jonas -- 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/