Thread (22 messages) 22 messages, 6 authors, 2018-11-13

Re: [PATCH V3 4/6] usb: ohci-platform: Add support for Broadcom STB SoC's

From: Alan Cooper <alcooperx@gmail.com>
Date: 2018-11-13 21:54:26
Also in: linux-usb, lkml

On Mon, Nov 12, 2018 at 6:37 PM Rob Herring [off-list ref] wrote:
On Wed, Nov 07, 2018 at 10:11:59AM -0800, Florian Fainelli wrote:
quoted
On 11/7/2018 9:40 AM, Al Cooper wrote:
quoted
On 11/7/18 12:29 PM, Florian Fainelli wrote:
quoted
On 11/7/18 8:27 AM, Alan Stern wrote:
quoted
On Wed, 7 Nov 2018, Al Cooper wrote:
quoted
On 11/7/18 10:23 AM, Alan Stern wrote:
quoted
On Tue, 6 Nov 2018, Florian Fainelli wrote:
quoted
On 11/6/18 1:40 PM, Al Cooper wrote:
quoted
On 11/6/18 11:08 AM, Alan Stern wrote:
quoted
On Mon, 5 Nov 2018, Al Cooper wrote:
quoted
Add support for Broadcom STB SoC's to the ohci platform driver.

Signed-off-by: Al Cooper <alcooperx@gmail.com>
---
quoted
@@ -177,6 +189,8 @@ static int ohci_platform_probe(struct
platform_device *dev)
            ohci->flags |= OHCI_QUIRK_FRAME_NO;
        if (pdata->num_ports)
            ohci->num_ports = pdata->num_ports;
+    if (pdata->suspend_without_phy_exit)
+        hcd->suspend_without_phy_exit = 1;
Sorry if I missed this in the earlier discussions...  Is there any
possibility of adding a DT binding that could express this
requirement,
instead of putting it in the platform data?

Alan Stern
Alan,

That was my original approach but internal review suggested that
I use
pdata instead. Below is my original patch for:
And the reason for that suggestion was really because it was
percevied
as encoding a driver behavior as a Device Tree property as opposed to
describing something that was inherently and strictly a hardware
behavior (therefore suitable for Device Tree).
Right.  The best way to approach this problem is to identify and
characterize the hardware behavior which makes this override
necessary.
Then _that_ can be added to DT, since it will be a property of the
hardware rather than of the driver.
quoted
quoted
Add the ability to skip calling the PHY's exit routine on suspend
and the PHY's init routine on resume. This is to handle a USB PHY
that should have it's power_off function called on suspend but
cannot
have it's exit function called because on exit it will disable the
PHY to the point where register accesses to the Host Controllers
using the PHY will be disabled and the host drivers will crash.
What's special about this PHY?  Why does the exit function mess the
PHY
up?  Or to put it another way, why doesn't the exit function mess up
other PHYs in the same way?

For that matter, can we change the code so that suspend doesn't call
the exit function for _any_ PHY?  Will just calling the power_off
function be good enough?  If not, then why not?

Alan Stern
In our USB hardware the USB PHY supplies a clock for the EHCI/OHCI and
XHCI host controllers and if the PHY is totally shut down the EHCI,
OHCI
and XHCI registers will cause an exception if accessed and cause the
EHCI, OHCI and XHCI drivers to crash. There is always talk of fixing
this in the hardware by adding an aux clock that will takeover when the
PHY clock is shut down, but this hasn't happened yet. It seems like
"exit on suspend" still makes sense on systems that don't have this
problem (additional power savings?) so removing the exit on suspend for
all systems is not a good idea.
Then in theory you should be able to add a Device Tree property which
says that the PHY provides a clock for the USB host controller.  That
is strictly a property of the hardware; it has nothing to do with the
driver.  Therefore it is appropriate for DT.
The very compatible string that is being allocated/defined for this
controller carries that information already, that is, if you probe a
"brcm,bcm7445-ohci" compatible then that means the controller has a
dependency on the PHY to supply its clock.

Adding a property vs. keying on the compatible string makes sense if you
know there is at least a second consumer of that property (unless we
make it a broadcom specific property, in which case, it really is
redundant with the compatible string).

Anyway, my grudge with that property was the name chosen initially,
which included an action to be performed by an implementation as opposed
to something purely descriptive. E.g: 'phy-supplies-clock' might be okay.
quoted
Wouldn't this solve your issue?
It would not change much except that there is no need to much with
ohci-platform.c anymore, but ultimately that property needs to be read
by ohci-hcd.c and acted on, which would likely lead to the same amount
of changes as those present in patch #2 currently.
We also need this functionality in the EHCI and XHCI drivers and it's
not the ohci-hcd.c module that needs to know, it's the core/phy.c module
called from core/hcd.c.
So in that regard the Device Tree property would actually scale a bit
better in that you would no longer need to modify the various
*hci-plat*.c files, if that is the way to go, then sure.
Sounds like the phy needs to be a clock provider to the USB controller.
Maybe that's a bit of overkill, but would be the most accurate.

Otherwise, my preference is using the compatible string. IOW, we already
have properties to handle this. If you don't want to use them, then use
compatible rather than inventing something new and custom.
My previous commit used the compatible string to set the HCD flag
instead of a device tree property, but Alan Stern ask me to use a DT
binding instead. This has the advantage of having the code in one
place in the phy.c module instead of having to add it to the OHCI,
EHCI and XHCI platform drivers.
At least last time I looked, there's a lack of support in the PHY API to
handle various handshakes needed between phys and controllers like this.
It's fairly easy for the controller to fetch info from a phy node, but
the opposite is not so easy. It seems to me some API for controllers to
set flags in the phy driver is needed.
The Generic PHY subsystem allows the PHY provider to export
phy_power_on/phy_power_off and phy_init/phy_exit functions for use by
the PHY consumer. The exact functionality of these routines seems to
vary among the different PHY provider drivers. The Broadcom USB PHY
driver expects the phy_power_on/phy_power_off to be used on
suspend/resume and the phy_init/phy_exit to be used by the consumer
driver's probe/remove routines. The new USB PHY consumer code does not
do this, instead it calls both power_off AND exit for both suspend
(not wakable) and remove. If you look at other PHY provider/consumer
implementations in the kernel tree you'll find examples of both these
methods but there are more examples that behave like the Broadcom PHY.
What I was trying to do was to use a DT property to tell the USB PHY
consumer code which method to use.

I guess the problem is that the current generic PHY api only allows
the consumer to put the PHY in 1 of 3 states, EXIT, OFF or ON. The
current USB PHY consumer code is using OFF for "suspend with wakeup"
and EXIT for "suspend without wakeup". The Broadcom PHY driver wants
OFF for either "suspend with wakeup" or "suspend without wakeup" and
EXIT when there are no consumers using the PHY. If the PHY API allowed
for 4 states, EXIT, OFF_NOT_WAKABLE, OFF_WAKABLE and ON then the
individual PHY provider could hide the differences, but this seems
hard to retrofit into the PHY subsystem.

Al
Rob
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help