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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <109f9ff2-81e0-6d3d-db60-d48cb0a4e74f@ti.com>
Date:   Tue, 5 Nov 2019 14:15:09 +0200
From:   Grygorii Strashko <grygorii.strashko@...com>
To:     Linus Walleij <linus.walleij@...aro.org>,
        Rob Herring <robh+dt@...nel.org>
CC:     Peter Ujfalusi <peter.ujfalusi@...com>,
        Mark Brown <broonie@...nel.org>,
        Bartosz Golaszewski <bgolaszewski@...libre.com>,
        "open list:GPIO SUBSYSTEM" <linux-gpio@...r.kernel.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
        Marek Szyprowski <m.szyprowski@...sung.com>,
        Tero Kristo <t-kristo@...com>,
        Maxime Ripard <mripard@...nel.org>,
        Philipp Zabel <p.zabel@...gutronix.de>,
        "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" 
        <devicetree@...r.kernel.org>
Subject: Re: [RFC v2 0/2] gpio: Support for shared GPIO lines on boards



On 05/11/2019 11:58, Linus Walleij wrote:
> On Mon, Nov 4, 2019 at 8:11 PM Rob Herring <robh+dt@...nel.org> wrote:
>> [Peter]
>>> The device needs the RST line to be high, otherwise it is not
>>> accessible. If it does not have reset control how can we make sure that
>>> the GPIO line is in correct state?
>>
>> Just like the reset code, drivers register their use of the reset and
>> the core tracks users and prevents resetting when not safe. Maybe the
>> reset subsystem needs to learn about GPIO resets. (...)
> 
> I agree. Certainly the reset subsystem can do what the regulator
> subsystem is already doing: request the GPIO line nonexclusive
> and handle any reference counting and/or quirks that are needed
> in a hypothetical drivers/reset/reset-gpio.c driver.
> 
> There is no such driver today, just a "reset" driver in
> drivers/power/reset that resets the whole system.
> 
> But I see no problem in creating a proper reset driver in drivers/reset
> to handle a few peripherals with a shared GPIO reset line.

Personally, I agree with Mark's comment here:

> [Mark]
> The theory with that was that any usage of this would need the
> higher level code using the GPIO to cooperate so they didn't step
> on each other's toes so the GPIO code should just punt to it.
> 
>> But let's say that a board design will pick two components (C1 and C2)
>> and use the same GPIO line to enable them. We already have the drivers
>> for them and they are used in boards already.
> 
> This is basically an attempt to make a generic implementation of
> that cooperation for simple cases.
> 

This looks like unsolvable problem in generic way.
Lets assume there are some generic shared reset controller invented, but then
- What if some driver is loaded/unloaded and corresponding device uses shared
   reset which is de-asserted already?
   In this case, driver should never ever expect that target device has all
   registers in default state.
- What if reset is required as part of error recovery procedure? The error recovery
   will not be supported by such design.
- PM: Device reset could be part of suspend/resume sequence. if one of the devices
   is wake-up source, but other are not, those devices might be in very unexpected state during resume.
- There could be dependencies on reset timings, shared reset might work for
   similar devices (like set of net phys) and does not work if connected devices are different.

It seems, the only one case when it might help is system boot when:
  - similar devices are connected to the reset line
  - drivers are not expected to be re-loaded
  - device reset is not part of any recovery procedure
  - safe reset timings can be defined for all connected devices
(but hey - if this is boot only then gpio-hogs should work. Are they?)

Actually, MDIO bus is one such example where reset line can be toggled by
as by MDIO bus controller as by PHY drivers.

So, even thing will move forward with this - it'll be good to have noted
above restrictions in documentation.

-- 
Best regards,
grygorii

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ