Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1434474 > unrolled thread
| Started by | William Wu <william.wu@rock-chips.com> |
|---|---|
| First post | 2016-06-30 13:20 +0200 |
| Last post | 2016-06-30 13:20 +0200 |
| Articles | 2 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH v5 0/5] support rockchip dwc3 driver William Wu <william.wu@rock-chips.com> - 2016-06-30 13:20 +0200
[PATCH v5 1/5] usb: dwc3: of-simple: add compatible for rockchip rk3399 William Wu <william.wu@rock-chips.com> - 2016-06-30 13:20 +0200
| From | William Wu <william.wu@rock-chips.com> |
|---|---|
| Date | 2016-06-30 13:20 +0200 |
| Subject | [PATCH v5 0/5] support rockchip dwc3 driver |
| Message-ID | <rPIaJ-to-13@gated-at.bofh.it> |
This series add support for rockchip dwc3 driver, and add additional optional properties for specific platforms (e.g., rockchip rk3399 platform). William Wu (5): usb: dwc3: of-simple: add compatible for rockchip rk3399 usb: dwc3: add dis_u2_freeclk_exists_quirk usb: dwc3: add phyif_utmi_quirk usb: dwc3: add dis_del_phy_power_chg_quirk usb: dwc3: rockchip: add devicetree bindings documentation Documentation/devicetree/bindings/usb/dwc3.txt | 9 +++++ .../devicetree/bindings/usb/rockchip,dwc3.txt | 40 ++++++++++++++++++++++ drivers/usb/dwc3/core.c | 29 ++++++++++++++++ drivers/usb/dwc3/core.h | 20 +++++++++++ drivers/usb/dwc3/dwc3-of-simple.c | 1 + 5 files changed, 99 insertions(+) create mode 100644 Documentation/devicetree/bindings/usb/rockchip,dwc3.txt -- 1.9.1
[toc] | [next] | [standalone]
| From | William Wu <william.wu@rock-chips.com> |
|---|---|
| Date | 2016-06-30 13:20 +0200 |
| Subject | [PATCH v5 1/5] usb: dwc3: of-simple: add compatible for rockchip rk3399 |
| Message-ID | <rPIaK-to-31@gated-at.bofh.it> |
| In reply to | #1434474 |
Rockchip platform merely enable usb3 clocks and
populate its children. So we can use this generic
glue layer to support Rockchip dwc3.
Signed-off-by: William Wu <william.wu@rock-chips.com>
---
Changes in v5:
- change compatible from "rockchip,dwc3" to "rockchip,rk3399-dwc3" (Heiko)
Changes in v4:
- None
Changes in v3:
- None
Changes in v2:
- sort the list of_dwc3_simple_match (Doug)
drivers/usb/dwc3/dwc3-of-simple.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/usb/dwc3/dwc3-of-simple.c b/drivers/usb/dwc3/dwc3-of-simple.c
index 9743353..05c9349 100644
--- a/drivers/usb/dwc3/dwc3-of-simple.c
+++ b/drivers/usb/dwc3/dwc3-of-simple.c
@@ -161,6 +161,7 @@ static const struct dev_pm_ops dwc3_of_simple_dev_pm_ops = {
static const struct of_device_id of_dwc3_simple_match[] = {
{ .compatible = "qcom,dwc3" },
+ { .compatible = "rockchip,rk3399-dwc3" },
{ .compatible = "xlnx,zynqmp-dwc3" },
{ /* Sentinel */ }
};
--
1.9.1
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web