[PATCH v3 0/2] usb: dwc3: support clocks and resets for DWC3 core

From: Masahiro Yamada
Date: Tue May 15 2018 - 22:44:23 EST



In the current design of DWC3 driver,
the DT typically becomes a nested structure like follows:

dwc3-glue {
compatible = "foo,dwc3";
...

dwc3 {
compatible = "snps,dwc3";
...
};
}

The current DWC3 core (drivers/usb/dwc3/core.c) can not handle
clocks / resets at all.

The only solution we have now, is to put DWC3 core node under
the glue layer node, then add clocks and resets there.
Actually, dwc3-of-simple.c exists to handle clocks and resets.

As always for digital circuits, DWC3 core IP itself needs clock input.
This is specific to this IP. So, supporting clocks and resets in
dwc3/core.c makes sense.

In this version, the number of clocks (and names) is specific
to this IP, with clock names taken from Synopsys datasheet.


Masahiro Yamada (2):
usb: dwc3: use local copy of resource to fix-up register offset
usb: dwc3: support clocks and resets for DWC3 core

Documentation/devicetree/bindings/usb/dwc3.txt | 21 +++++
drivers/usb/dwc3/core.c | 118 +++++++++++++++++++------
drivers/usb/dwc3/core.h | 8 ++
3 files changed, 122 insertions(+), 25 deletions(-)

--
2.7.4