Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965108AbbEMN3X (ORCPT ); Wed, 13 May 2015 09:29:23 -0400 Received: from mout.kundenserver.de ([212.227.126.187]:53136 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932109AbbEMN3R (ORCPT ); Wed, 13 May 2015 09:29:17 -0400 From: Arnd Bergmann To: Daniel Thompson Cc: Maxime Coquelin , Uwe =?ISO-8859-1?Q?Kleine=2DK=F6nig?= , Andreas =?ISO-8859-1?Q?F=E4rber?= , Geert Uytterhoeven , Rob Herring , Philipp Zabel , Linus Walleij , Stefan Agner , Peter Meerwald , Paul Bolle , Peter Hurley , Andy Shevchenko , Chanwoo Choi , Russell King , Daniel Lezcano , Joe Perches , Vladimir Zapolskiy , Lee Jones , Jonathan Corbet , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Thomas Gleixner , Greg Kroah-Hartman , Jiri Slaby , Andrew Morton , "David S. Miller" , Mauro Carvalho Chehab , Antti Palosaari , Tejun Heo , Will Deacon , Nikolay Borisov , Rusty Russell , Kees Cook , Michal Marek , "linux-doc@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , "devicetree@vger.kernel.org" , "linux-gpio@vger.kernel.org" , "linux-serial@vger.kernel.org" , Linux-Arch , "linux-api@vger.kernel.org" , Nicolae Rosia , Kamil Lulko Subject: Re: [PATCH v8 14/16] ARM: dts: Introduce STM32F429 MCU Date: Wed, 13 May 2015 15:27:31 +0200 Message-ID: <3125409.QXbEmPolyh@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <55534A5D.6050904@linaro.org> References: <1431158038-3813-1-git-send-email-mcoquelin.stm32@gmail.com> <55534A5D.6050904@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:qakq8+V0C+YR7FlP/5vmetXyHMAeRJayhr1r+dE5M9NMvvP1AwT UpKNxtAr3V6XchgoXWJi00j4/KhDcR/ZEJhLDCa2InWY4Xbl7+lipU6WqE0Yb3R5h449Nww 112fdb2rVt50sxiuhICYy/ndOvGYh8M3R9mCui3YPllb1P4uWWfagVB3wbuYsXDPP4wHSfI bDa3teh/QAr719rjpn8Xg== X-UI-Out-Filterresults: notjunk:1; Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4046 Lines: 110 On Wednesday 13 May 2015 13:58:05 Daniel Thompson wrote: > On 13/05/15 12:45, Maxime Coquelin wrote: > > 2015-05-12 23:21 GMT+02:00 Arnd Bergmann : > >> On Saturday 09 May 2015 09:53:56 Maxime Coquelin wrote: > >>> +#include > >>> + > >>> > >> > >> Can you find a way to avoid this dependency? > >> > >> Maybe you can change the bindings so that the numbers you pass as > >> arguments to the reset and clock specifiers reflect the numbers that > >> the hardware use? > > > > If I understand correctly, you prefer the way I did in v7 [0]? Yes, that looks better. I would probably not list all the possible values in the binding though, when the intention is to use the hardware specific values, and being able to reuse the binding and driver for variations of the same chip. > > Note that doing that won't break the DT binary compatibility, as the > > raw reset values, or the ones from defines are the same. > > > > Daniel, could you share an example of the bindings you would use for the clocks? > > For the most cases, where there is a clock gate just before the > peripheral it looks pretty much like the reset driver and I use the bit > offset of the clock gating bit as the index. Is this bit always the same index as the one for the reset driver? > However there are a couple of clocks without gating just before the > clock reaches the peripheral: > > 1. A hard coded /8. I think this will have to be given a synthetic > number. If this is just a divider, why not use a separate DT node for that, like this: clock { compatible = "fixed-factor-clock"; clocks = <&parentclk>; #clock-cells = <0>; clock-div = <8>; clock-mult = <1>; }; No need to assign a number for this. > 2. Ungated dividers. For these I am using the bit offset of the LSB of > the mux field. Do these ones also come with resets? > So I think there is only one value that is completely unrelated to the > hardware and will use a magic constant instead. > > I had planned to macros similar to the STM32F4_AxB_RESET() family of > macros in both clk driver and DT in order to reuse the bit layouts from > dt-bindings/mfd/stm32f4-rcc.h . > > Normal case would have looked like this: > > timer3: timer@40000000 { > compatible = "st,stm32-timer"; > reg = <0x40000000 0x400>; > interrupts = <28>; > resets = <&rcc STM32F4_APB1_RESET(TIM3)>; > clocks = <&rcc STM32F4_APB1_CLK(TIM3)>; > status = "disabled"; > }; > > Without the macros it looks like this: > > timer3: timer@40000000 { > compatible = "st,stm32-timer"; > reg = <0x40000000 0x400>; > interrupts = <28>; > resets = <&rcc 257>; > clocks = <&rcc 513>; > status = "disabled"; > }; > > However we could perhaps be more literate even if we don't use the macros? > > timer3: timer@40000000 { > compatible = "st,stm32-timer"; > reg = <0x40000000 0x400>; > interrupts = <28>; > resets = <&rcc ((0x20*8) + 1)>; > clocks = <&rcc ((0x40*8) + 1)>; > status = "disabled"; > }; How about #address-cells = <2>, so you can do resets = <&rcc 8 1>; clocks = <&rcc 8 1>; with the first cell being an index for the block and the second cell the bit number within that block. Arnd -- 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/