From mboxrd@z Thu Jan 1 00:00:00 1970 From: romain.izard.pro@gmail.com (Romain Izard) Date: Wed, 26 Feb 2014 16:19:27 +0000 (UTC) Subject: [PATCH v3] pwm: add CSR SiRFSoC PWM driver References: <1391855002-26098-1-git-send-email-21cnbao@gmail.com> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hello Barry, On 2014-02-08, Barry Song <21cnbao@gmail.com> wrote: > From: Rongjun Ying > > PWM controller of CSR SiRFSoC can generate 7 independent outputs. Each output > duty cycle can be adjusted by setting the corresponding wait & hold registers. > > Supports 7 independent channel output: 6 for external(channel0-5) and 1 for > internal(channel6). > > Supports wide frequency range: divide by 2 to 65536*2 of source clock. > > Signed-off-by: Rongjun Ying > Signed-off-by: Huayi Li > Signed-off-by: Barry Song > --- > -v3: > add "depends on" COMPILE_TEST according to Arnd's feedback; > move the pwm clock source to dts according to Arnd's feedback; > add lost dt-binding document > > Documentation/devicetree/bindings/pwm/pwm-sirf.txt | 17 + > arch/arm/boot/dts/atlas6.dtsi | 3 +- > arch/arm/boot/dts/prima2.dtsi | 3 +- > drivers/pwm/Kconfig | 9 + > drivers/pwm/Makefile | 1 + > drivers/pwm/pwm-sirf.c | 308 ++++++++++++++++++++ > 6 files changed, 339 insertions(+), 2 deletions(-) > create mode 100644 Documentation/devicetree/bindings/pwm/pwm-sirf.txt > create mode 100644 drivers/pwm/pwm-sirf.c > > diff --git a/Documentation/devicetree/bindings/pwm/pwm-sirf.txt b/Documentation/devicetree/bindings/pwm/pwm-sirf.txt > new file mode 100644 > index 0000000..4b10109 > --- /dev/null > +++ b/Documentation/devicetree/bindings/pwm/pwm-sirf.txt > @@ -0,0 +1,17 @@ > +SiRF prima2 & atlas6 PWM drivers > + > +Required properties: > +- compatible: "sirf,prima2-pwm" > +- reg: physical base address and length of the controller's registers > +- #pwm-cells: should be 2. The first cell specifies the per-chip index > + of the PWM to use and the second cell is the period in nanoseconds. > +- clocks: from common clock binding: the 1st clock is for PWM controller > + the 2nd clock is the source to generate PWM waves > + Describing the clocks this way seems limiting to me. Each output of the PWM controller on SiRFatlasVI and SiRFprimaII can independently use one clock among many for signal generation, with three PLLs and two external clock inputs available. If we specify the source clock for the signal generation in the device tree as you do here, we will prevent the use of those different input clocks when incompatible frequencies are required, such as 32,768 Hz on one output line and 44,100 Hz on another one. As the clock tree for SiRF SoCs is described in the source files in drivers/clk/sirf/*, it does not appear to me that the functional clock needs to be configured in the device tree: the names of available clock sources can be provided statically by the device tree matching table the pwm-sirf.c. Moreover, this would continue to work with the current (undocumented) bindings for SiRFatlasVI and SiRFprimaII. Alternatively, to keep the configuration in the device tree, all valid inputs for this SoC could be described here, instead of a single one. The choice of the clock used for each output can then be selected when configuring an output, with a selection algorithm using the best input for a given period in of_xlate() and config() callbacks. -- Romain Izard