lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 22 Aug 2018 16:10:36 +0200
From:   Lothar Waßmann <LW@...O-electronics.de>
To:     Michal Vokáč <michal.vokac@...ft.com>
Cc:     Thierry Reding <thierry.reding@...il.com>,
        Rob Herring <robh+dt@...nel.org>,
        Mark Rutland <mark.rutland@....com>,
        devicetree@...r.kernel.org, linux-pwm@...r.kernel.org,
        linux-kernel@...r.kernel.org,
        Lukasz Majewski <l.majewski@...ess.pl>,
        Fabio Estevam <fabio.estevam@....com>
Subject: Re: [RFC PATCH 1/2] dt-bindings: pwm: imx: Allow switching PWM
 output between PWM and GPIO

Michal Vokáč <michal.vokac@...ft.com> wrote:

> On 22.8.2018 13:17, Lothar Waßmann wrote:
> > Michal Vokáč <michal.vokac@...ft.com> wrote:
> >   
> >> On 22.8.2018 08:14, Lothar Waßmann wrote:  
> >>> Michal Vokáč <michal.vokac@...ft.com> wrote:
> >>>      
> >>>> Output of the PWM block of i.MX SoCs is always zero volts when the block
> >>>> is disabled. This can caue issues when inverted PWM polarity is needed.
> >>>> With inverted polarity a duty cycle = 0% corresponds to solid high level
> >>>> on the output. If the PWM is dissabled its output instantly goes to solid
> >>>> zero which corresponds to duty cycle = 100%.
> >>>>
> >>>> To have a trully inverted PWM output configure the PWM pad as a GPIO
> >>>> with pull-up. Then switch the pad to PWM output whenever non-zero
> >>>> duty cycle is needed.
> >>>>
> >>>> Signed-off-by: Michal Vokáč <michal.vokac@...ft.com>
> >>>> ---
> >>>>    Documentation/devicetree/bindings/pwm/imx-pwm.txt | 44 +++++++++++++++++++++++
> >>>>    1 file changed, 44 insertions(+)
> >>>>
> >>>> diff --git a/Documentation/devicetree/bindings/pwm/imx-pwm.txt b/Documentation/devicetree/bindings/pwm/imx-pwm.txt
> >>>> index c61bdf8..3b1bc4c 100644
> >>>> --- a/Documentation/devicetree/bindings/pwm/imx-pwm.txt
> >>>> +++ b/Documentation/devicetree/bindings/pwm/imx-pwm.txt
> >>>> @@ -14,6 +14,12 @@ See the clock consumer binding,
> >>>>    	Documentation/devicetree/bindings/clock/clock-bindings.txt
> >>>>    - interrupts: The interrupt for the pwm controller
> >>>>    
> >>>> +Optional properties:
> >>>> +- pinctrl: For i.MX27 and newer SoCs. Add extra pinctrl to configure the PWM
> >>>> +  pin to gpio function.  It allows control over the pin output level when the
> >>>> +  PWM block is disabled. This is meant to be used if inverted polarity of the
> >>>> +  PWM signal is required. See "Inverted PWM output" section bellow.
> >>>> +
> >>>>    Example:
> >>>>    
> >>>>    pwm1: pwm@...b4000 {
> >>>> @@ -25,3 +31,41 @@ pwm1: pwm@...b4000 {
> >>>>    	clock-names = "ipg", "per";
> >>>>    	interrupts = <61>;
> >>>>    };
> >>>> +
> >>>> +Inverted PWM output
> >>>> +-------------------
> >>>> +
> >>>> +The i.MX SoC has such limitation that whenever a pad is configured as a PWM
> >>>> +output, the output level is always zero volts when the PWM block is disabled.
> >>>> +The zero output level is actively driven by the output stage of the PWM block
> >>>> +and can not be overridden by pull-up. It also does not matter what PWM polarity
> >>>> +a PWM client (e.g. backlight) requested.
> >>>> +
> >>>> +To gain control of the PWM output level in disabled state two pinctrl states
> >>>> +can be used. The "default" state and the "pwm" state. In the default state the
> >>>>     
> >>> The "default" function of a PWM is to deliver a PWM signal. So it is
> >>> more sensible to me to have the PWM function as "default" and a "gpio"
> >>> function as alternative state.  
> >>
> >> Yes, I totally agree that using "default" for PWM and "gpio" as the
> >> alternative function seems more sensible. That is actually how I started.
> >> Then I realized that that way you end up with the PWM pad set to zero
> >> until the first call of imx_pwm_apply_v2 where you can select the GPIO
> >> function. On my system that first call is made by pwm-backlight more than
> >> 3s after pinctrl init.
> >>
> >> I suggested to use the "default" state as a GPIO function as the only way
> >> how to get a truly inverted PWM output all the time from power-up to
> >> power-down.
> >>
> >> In my opinion it is up to the DT author what pad configuration he uses for
> >> each pinctrl function as he knows what the HW really needs. I see that this
> >> approach is kind of controversial but I hope that with good documentation
> >> this would not be a problem. And as I wrote in the intro, it is absolutely
> >> optional. If you do not need it, you do not use it.
> >>  
> > This is OK so far.
> > But the approach with the pin being driven high via the pullup
> > configuration has a fundamental flaw:
> > The pwm polarity is specified by the PWM client (e.g: the pwm-backlight
> > driver:
> > 	pwms = <&pwm0 0 PWM_POLARITY_INVERTED>;
> > )
> > The pinconfig is defined in the pinctrl of the PWM driver.
> > 
> > If you have clients that may use the same PWM instance and require
> > different polarity, there is no way to set the pullup/-down
> > configuration in accordance with the clients needs.  
> 
> Hmm, I did not think about more than one PWM client. Is it even possible
> to design such board? Do you have an example of such usage? It would mean
>
My use case is attaching different displays to the same baseboard,
where some displays have the brightness control pin inverted with
respect to the others. It's easy to change the compatible string for
the simple-panel driver and the PWM polarity setting for the
pwm-backlight driver from U-Boot according to the display model, but
it's not so easy, to edit the pinctrl settings from pull-up to
pull-down or vice versa.


Lothar Waßmann
-- 
___________________________________________________________

Ka-Ro electronics GmbH | Pascalstraße 22 | D - 52076 Aachen
Phone: +49 2408 1402-0 | Fax: +49 2408 1402-10
Geschäftsführer: Matthias Kaussen
Handelsregistereintrag: Amtsgericht Aachen, HRB 4996

www.karo-electronics.de | info@...o-electronics.de
___________________________________________________________

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ