All of lore.kernel.org
 help / color / mirror / Atom feed
From: Martin Blumenstingl <martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
To: linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	jbrunet-rdvid1DuHRBWk0Htik3J/w@public.gmane.org,
	johnyoun-HKixBCOQz3hWk0Htik3J/w@public.gmane.org,
	kishon-l0cyMroinI0@public.gmane.org,
	khilman-rdvid1DuHRBWk0Htik3J/w@public.gmane.org,
	carlo-KA+7E9HrN00dnm+yROfE0A@public.gmane.org
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
	mturquette-rdvid1DuHRBWk0Htik3J/w@public.gmane.org,
	will.deacon-5wv7dgnIgG8@public.gmane.org,
	catalin.marinas-5wv7dgnIgG8@public.gmane.org,
	gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org,
	mark.rutland-5wv7dgnIgG8@public.gmane.org,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	Martin Blumenstingl
	<martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
Subject: [PATCH v2 0/6] usb/phy: Add Amlogic Meson8b and GXBB USB support
Date: Sun, 11 Sep 2016 15:41:05 +0200	[thread overview]
Message-ID: <20160911134111.31141-1-martin.blumenstingl@googlemail.com> (raw)
In-Reply-To: <20160904213152.25837-1-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>

This series adds initial support for the DWC2 USB controllers and Meson
specific USB PHYs found in Meson8b and GXBB SoCs, which means:
- new DWC2 bindings and platform specific core configuration
- a PHY driver supporting the USB2 PHY on Meson8b and GXBB SoCs

The first DWC2 controller is usually configured in OTG mode, whereas
the second DWC2 controller is usually configured in host(-only) mode.

Unfortunately no (public) datasheet is available and the reference PHY
driver does not contain comments or speaking register name definitions.
The nice people from BayLibre have already requested the datasheets
(currently we can for example only guess that there is a mux clock
inside the PHY, but we don't know it's parents).

With this series both DWC2 controllers are configure in host mode,
because the reference driver polls some of the PHY registers in OTG
mode and then re-configures the dwc2 driver instance accordingly (if
anyone is interested, this is the relevant piece of code: [0]). This
seems good enough for the beginning though.


Changes since v1:
- the patch "clk: gxbb: expose USB clocks" was not sent again as it was
  already applied by Kevin Hilman (thanks!)
- dropped (unnecessary) USB PHY bus from .dts
- remove underscores from PHY node names in .dts
- rename the dwc2 nodes in the .dts to usb (as per convention)
- remove unused struct reset_control from phy_meson_usb2_priv
- removed refcounting "reset" workaround and only specify the reset for
  the first PHY in the .dts (Jerome has reported that his boards don't
  need the explicit reset, while my board needs it). In addition (to
  make this work) the driver now treats the reset as optional
- use the RESET_USB_OTG definition (from
  <dt-bindings/reset/amlogic,meson-gxbb-reset.h>) instead of a magic
  number in the .dts


[0] https://github.com/150balbes/Amlogic_s905-kernel/blob/master/drivers/amlogic/usb/dwc_otg/310/dwc_otg_driver.c#L642


Jerome Brunet (2):
  usb: dwc2: add support for Meson8b and GXBB SoCs
  ARM64: meson-gxbb-p20x: Enable USB Nodes

Martin Blumenstingl (4):
  Documentation: dt-bindings: Add documentation for the Meson USB2 PHYs
  phy: meson: add USB2 PHY support for Meson8b and GXBB
  ARM64: meson-gxbb: add USB Nodes
  ARM64: meson-gxbb-vega-s95: Enable USB Nodes

 .../devicetree/bindings/phy/meson-usb2-phy.txt     |  27 ++
 Documentation/devicetree/bindings/usb/dwc2.txt     |   2 +
 arch/arm64/boot/dts/amlogic/meson-gxbb-p20x.dtsi   |  29 +++
 .../boot/dts/amlogic/meson-gxbb-vega-s95.dtsi      |  30 +++
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi        |  43 ++++
 drivers/phy/Kconfig                                |  11 +
 drivers/phy/Makefile                               |   1 +
 drivers/phy/phy-meson-usb2.c                       | 280 +++++++++++++++++++++
 drivers/usb/dwc2/platform.c                        |  34 +++
 9 files changed, 457 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/phy/meson-usb2-phy.txt
 create mode 100644 drivers/phy/phy-meson-usb2.c

-- 
2.9.3

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
To: linux-clk@vger.kernel.org, linux-usb@vger.kernel.org,
	linux-amlogic@lists.infradead.org, jbrunet@baylibre.com,
	johnyoun@synopsys.com, kishon@ti.com, khilman@baylibre.com,
	carlo@caione.org
Cc: linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
	sboyd@codeaurora.org, mturquette@baylibre.com,
	will.deacon@arm.com, catalin.marinas@arm.com,
	gregkh@linuxfoundation.org, mark.rutland@arm.com,
	robh+dt@kernel.org,
	Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Subject: [PATCH v2 0/6] usb/phy: Add Amlogic Meson8b and GXBB USB support
Date: Sun, 11 Sep 2016 15:41:05 +0200	[thread overview]
Message-ID: <20160911134111.31141-1-martin.blumenstingl@googlemail.com> (raw)
In-Reply-To: <20160904213152.25837-1-martin.blumenstingl@googlemail.com>

This series adds initial support for the DWC2 USB controllers and Meson
specific USB PHYs found in Meson8b and GXBB SoCs, which means:
- new DWC2 bindings and platform specific core configuration
- a PHY driver supporting the USB2 PHY on Meson8b and GXBB SoCs

The first DWC2 controller is usually configured in OTG mode, whereas
the second DWC2 controller is usually configured in host(-only) mode.

Unfortunately no (public) datasheet is available and the reference PHY
driver does not contain comments or speaking register name definitions.
The nice people from BayLibre have already requested the datasheets
(currently we can for example only guess that there is a mux clock
inside the PHY, but we don't know it's parents).

With this series both DWC2 controllers are configure in host mode,
because the reference driver polls some of the PHY registers in OTG
mode and then re-configures the dwc2 driver instance accordingly (if
anyone is interested, this is the relevant piece of code: [0]). This
seems good enough for the beginning though.


Changes since v1:
- the patch "clk: gxbb: expose USB clocks" was not sent again as it was
  already applied by Kevin Hilman (thanks!)
- dropped (unnecessary) USB PHY bus from .dts
- remove underscores from PHY node names in .dts
- rename the dwc2 nodes in the .dts to usb (as per convention)
- remove unused struct reset_control from phy_meson_usb2_priv
- removed refcounting "reset" workaround and only specify the reset for
  the first PHY in the .dts (Jerome has reported that his boards don't
  need the explicit reset, while my board needs it). In addition (to
  make this work) the driver now treats the reset as optional
- use the RESET_USB_OTG definition (from
  <dt-bindings/reset/amlogic,meson-gxbb-reset.h>) instead of a magic
  number in the .dts


[0] https://github.com/150balbes/Amlogic_s905-kernel/blob/master/drivers/amlogic/usb/dwc_otg/310/dwc_otg_driver.c#L642


Jerome Brunet (2):
  usb: dwc2: add support for Meson8b and GXBB SoCs
  ARM64: meson-gxbb-p20x: Enable USB Nodes

Martin Blumenstingl (4):
  Documentation: dt-bindings: Add documentation for the Meson USB2 PHYs
  phy: meson: add USB2 PHY support for Meson8b and GXBB
  ARM64: meson-gxbb: add USB Nodes
  ARM64: meson-gxbb-vega-s95: Enable USB Nodes

 .../devicetree/bindings/phy/meson-usb2-phy.txt     |  27 ++
 Documentation/devicetree/bindings/usb/dwc2.txt     |   2 +
 arch/arm64/boot/dts/amlogic/meson-gxbb-p20x.dtsi   |  29 +++
 .../boot/dts/amlogic/meson-gxbb-vega-s95.dtsi      |  30 +++
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi        |  43 ++++
 drivers/phy/Kconfig                                |  11 +
 drivers/phy/Makefile                               |   1 +
 drivers/phy/phy-meson-usb2.c                       | 280 +++++++++++++++++++++
 drivers/usb/dwc2/platform.c                        |  34 +++
 9 files changed, 457 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/phy/meson-usb2-phy.txt
 create mode 100644 drivers/phy/phy-meson-usb2.c

-- 
2.9.3

WARNING: multiple messages have this Message-ID (diff)
From: martin.blumenstingl@googlemail.com (Martin Blumenstingl)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/6] usb/phy: Add Amlogic Meson8b and GXBB USB support
Date: Sun, 11 Sep 2016 15:41:05 +0200	[thread overview]
Message-ID: <20160911134111.31141-1-martin.blumenstingl@googlemail.com> (raw)
In-Reply-To: <20160904213152.25837-1-martin.blumenstingl@googlemail.com>

This series adds initial support for the DWC2 USB controllers and Meson
specific USB PHYs found in Meson8b and GXBB SoCs, which means:
- new DWC2 bindings and platform specific core configuration
- a PHY driver supporting the USB2 PHY on Meson8b and GXBB SoCs

The first DWC2 controller is usually configured in OTG mode, whereas
the second DWC2 controller is usually configured in host(-only) mode.

Unfortunately no (public) datasheet is available and the reference PHY
driver does not contain comments or speaking register name definitions.
The nice people from BayLibre have already requested the datasheets
(currently we can for example only guess that there is a mux clock
inside the PHY, but we don't know it's parents).

With this series both DWC2 controllers are configure in host mode,
because the reference driver polls some of the PHY registers in OTG
mode and then re-configures the dwc2 driver instance accordingly (if
anyone is interested, this is the relevant piece of code: [0]). This
seems good enough for the beginning though.


Changes since v1:
- the patch "clk: gxbb: expose USB clocks" was not sent again as it was
  already applied by Kevin Hilman (thanks!)
- dropped (unnecessary) USB PHY bus from .dts
- remove underscores from PHY node names in .dts
- rename the dwc2 nodes in the .dts to usb (as per convention)
- remove unused struct reset_control from phy_meson_usb2_priv
- removed refcounting "reset" workaround and only specify the reset for
  the first PHY in the .dts (Jerome has reported that his boards don't
  need the explicit reset, while my board needs it). In addition (to
  make this work) the driver now treats the reset as optional
- use the RESET_USB_OTG definition (from
  <dt-bindings/reset/amlogic,meson-gxbb-reset.h>) instead of a magic
  number in the .dts


[0] https://github.com/150balbes/Amlogic_s905-kernel/blob/master/drivers/amlogic/usb/dwc_otg/310/dwc_otg_driver.c#L642


Jerome Brunet (2):
  usb: dwc2: add support for Meson8b and GXBB SoCs
  ARM64: meson-gxbb-p20x: Enable USB Nodes

Martin Blumenstingl (4):
  Documentation: dt-bindings: Add documentation for the Meson USB2 PHYs
  phy: meson: add USB2 PHY support for Meson8b and GXBB
  ARM64: meson-gxbb: add USB Nodes
  ARM64: meson-gxbb-vega-s95: Enable USB Nodes

 .../devicetree/bindings/phy/meson-usb2-phy.txt     |  27 ++
 Documentation/devicetree/bindings/usb/dwc2.txt     |   2 +
 arch/arm64/boot/dts/amlogic/meson-gxbb-p20x.dtsi   |  29 +++
 .../boot/dts/amlogic/meson-gxbb-vega-s95.dtsi      |  30 +++
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi        |  43 ++++
 drivers/phy/Kconfig                                |  11 +
 drivers/phy/Makefile                               |   1 +
 drivers/phy/phy-meson-usb2.c                       | 280 +++++++++++++++++++++
 drivers/usb/dwc2/platform.c                        |  34 +++
 9 files changed, 457 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/phy/meson-usb2-phy.txt
 create mode 100644 drivers/phy/phy-meson-usb2.c

-- 
2.9.3

WARNING: multiple messages have this Message-ID (diff)
From: martin.blumenstingl@googlemail.com (Martin Blumenstingl)
To: linus-amlogic@lists.infradead.org
Subject: [PATCH v2 0/6] usb/phy: Add Amlogic Meson8b and GXBB USB support
Date: Sun, 11 Sep 2016 15:41:05 +0200	[thread overview]
Message-ID: <20160911134111.31141-1-martin.blumenstingl@googlemail.com> (raw)
In-Reply-To: <20160904213152.25837-1-martin.blumenstingl@googlemail.com>

This series adds initial support for the DWC2 USB controllers and Meson
specific USB PHYs found in Meson8b and GXBB SoCs, which means:
- new DWC2 bindings and platform specific core configuration
- a PHY driver supporting the USB2 PHY on Meson8b and GXBB SoCs

The first DWC2 controller is usually configured in OTG mode, whereas
the second DWC2 controller is usually configured in host(-only) mode.

Unfortunately no (public) datasheet is available and the reference PHY
driver does not contain comments or speaking register name definitions.
The nice people from BayLibre have already requested the datasheets
(currently we can for example only guess that there is a mux clock
inside the PHY, but we don't know it's parents).

With this series both DWC2 controllers are configure in host mode,
because the reference driver polls some of the PHY registers in OTG
mode and then re-configures the dwc2 driver instance accordingly (if
anyone is interested, this is the relevant piece of code: [0]). This
seems good enough for the beginning though.


Changes since v1:
- the patch "clk: gxbb: expose USB clocks" was not sent again as it was
  already applied by Kevin Hilman (thanks!)
- dropped (unnecessary) USB PHY bus from .dts
- remove underscores from PHY node names in .dts
- rename the dwc2 nodes in the .dts to usb (as per convention)
- remove unused struct reset_control from phy_meson_usb2_priv
- removed refcounting "reset" workaround and only specify the reset for
  the first PHY in the .dts (Jerome has reported that his boards don't
  need the explicit reset, while my board needs it). In addition (to
  make this work) the driver now treats the reset as optional
- use the RESET_USB_OTG definition (from
  <dt-bindings/reset/amlogic,meson-gxbb-reset.h>) instead of a magic
  number in the .dts


[0] https://github.com/150balbes/Amlogic_s905-kernel/blob/master/drivers/amlogic/usb/dwc_otg/310/dwc_otg_driver.c#L642


Jerome Brunet (2):
  usb: dwc2: add support for Meson8b and GXBB SoCs
  ARM64: meson-gxbb-p20x: Enable USB Nodes

Martin Blumenstingl (4):
  Documentation: dt-bindings: Add documentation for the Meson USB2 PHYs
  phy: meson: add USB2 PHY support for Meson8b and GXBB
  ARM64: meson-gxbb: add USB Nodes
  ARM64: meson-gxbb-vega-s95: Enable USB Nodes

 .../devicetree/bindings/phy/meson-usb2-phy.txt     |  27 ++
 Documentation/devicetree/bindings/usb/dwc2.txt     |   2 +
 arch/arm64/boot/dts/amlogic/meson-gxbb-p20x.dtsi   |  29 +++
 .../boot/dts/amlogic/meson-gxbb-vega-s95.dtsi      |  30 +++
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi        |  43 ++++
 drivers/phy/Kconfig                                |  11 +
 drivers/phy/Makefile                               |   1 +
 drivers/phy/phy-meson-usb2.c                       | 280 +++++++++++++++++++++
 drivers/usb/dwc2/platform.c                        |  34 +++
 9 files changed, 457 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/phy/meson-usb2-phy.txt
 create mode 100644 drivers/phy/phy-meson-usb2.c

-- 
2.9.3

  parent reply	other threads:[~2016-09-11 13:41 UTC|newest]

Thread overview: 289+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-04 21:31 [PATCH 0/7] usb/phy: Add Amlogic Meson8b and GXBB USB support Martin Blumenstingl
2016-09-04 21:31 ` Martin Blumenstingl
2016-09-04 21:31 ` Martin Blumenstingl
2016-09-04 21:31 ` Martin Blumenstingl
2016-09-04 21:31 ` [PATCH 1/7] clk: gxbb: expose USB clocks Martin Blumenstingl
2016-09-04 21:31   ` Martin Blumenstingl
2016-09-04 21:31   ` Martin Blumenstingl
2016-09-07  0:33   ` Stephen Boyd
2016-09-07  0:33     ` Stephen Boyd
2016-09-07  0:33     ` Stephen Boyd
2016-09-07 21:32     ` Martin Blumenstingl
2016-09-07 21:32       ` Martin Blumenstingl
2016-09-07 21:32       ` Martin Blumenstingl
     [not found]       ` <CAFBinCBwcVkXi9wVt1FGaEFdK+fsxz-r12ao89HwqozqLGtd7A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-07 22:14         ` Stephen Boyd
2016-09-07 22:14           ` Stephen Boyd
2016-09-07 22:14           ` Stephen Boyd
2016-09-07 22:14           ` Stephen Boyd
     [not found]           ` <20160907221403.GA13062-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2016-09-08  2:24             ` Kevin Hilman
2016-09-08  2:24               ` Kevin Hilman
2016-09-08  2:24               ` Kevin Hilman
2016-09-08  2:24               ` Kevin Hilman
     [not found]   ` <20160904213152.25837-2-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2016-09-07 21:28     ` Stephen Boyd
2016-09-07 21:28       ` Stephen Boyd
2016-09-07 21:28       ` Stephen Boyd
2016-09-07 21:28       ` Stephen Boyd
2016-09-08 19:24       ` Kevin Hilman
2016-09-08 19:24         ` Kevin Hilman
2016-09-08 19:24         ` Kevin Hilman
2016-09-08 19:24         ` Kevin Hilman
2016-09-04 21:31 ` [PATCH 2/7] usb: dwc2: add support for Meson8b and GXBB SoCs Martin Blumenstingl
2016-09-04 21:31   ` Martin Blumenstingl
2016-09-04 21:31   ` Martin Blumenstingl
     [not found]   ` <20160904213152.25837-3-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2016-09-07 21:04     ` John Youn
2016-09-07 21:04       ` John Youn
2016-09-07 21:04       ` John Youn
2016-09-07 21:04       ` John Youn
2016-09-08 13:00       ` Neil Armstrong
     [not found] ` <20160904213152.25837-1-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2016-09-04 21:31   ` [PATCH 3/7] Documentation: dt-bindings: Add documentation for the Meson USB2 PHYs Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31   ` [PATCH 4/7] phy: meson: add USB2 PHY support for Meson8b and GXBB Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-08 19:35     ` Kevin Hilman
2016-09-08 19:35       ` Kevin Hilman
2016-09-08 19:35       ` Kevin Hilman
2016-09-08 19:35       ` Kevin Hilman
     [not found]       ` <m260q6jibf.fsf-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
2016-09-08 19:40         ` Ben Dooks
2016-09-08 19:40           ` Ben Dooks
2016-09-08 19:40           ` Ben Dooks
2016-09-08 19:40           ` Ben Dooks
2016-09-08 19:52         ` Martin Blumenstingl
2016-09-08 19:52           ` Martin Blumenstingl
2016-09-08 19:52           ` Martin Blumenstingl
2016-09-08 19:52           ` Martin Blumenstingl
     [not found]           ` <CAFBinCA4Yvw5pbOFmJ8SqyOASADavyEPmHywSdOiUazcqe_Zmg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-08 20:20             ` Ben Dooks
2016-09-08 20:20               ` Ben Dooks
2016-09-08 20:20               ` Ben Dooks
2016-09-08 20:20               ` Ben Dooks
2016-09-08 20:42               ` Kevin Hilman
2016-09-08 20:42                 ` Kevin Hilman
2016-09-08 20:42                 ` Kevin Hilman
2016-09-08 20:42                 ` Kevin Hilman
2016-09-08 20:53                 ` Ben Dooks
2016-09-08 20:53                   ` Ben Dooks
2016-09-08 20:53                   ` Ben Dooks
     [not found]                   ` <ffdd0188-72bc-4575-f997-e8547f4c31d2-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org>
2016-09-08 21:48                     ` Martin Blumenstingl
2016-09-08 21:48                       ` Martin Blumenstingl
2016-09-08 21:48                       ` Martin Blumenstingl
2016-09-08 21:48                       ` Martin Blumenstingl
2016-09-09 15:33                       ` Kevin Hilman
2016-09-09 15:33                         ` Kevin Hilman
2016-09-09 15:33                         ` Kevin Hilman
2016-09-09 15:33                         ` Kevin Hilman
     [not found]                         ` <m2sht9gkau.fsf-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
2016-09-09 16:14                           ` Martin Blumenstingl
2016-09-09 16:14                             ` Martin Blumenstingl
2016-09-09 16:14                             ` Martin Blumenstingl
2016-09-09 16:14                             ` Martin Blumenstingl
     [not found]                             ` <CAFBinCCDDwydB+RP0CZKoAW5Suxotn224ZFVWvt2OGW3gNJR1g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-09 17:04                               ` Kevin Hilman
2016-09-09 17:04                                 ` Kevin Hilman
2016-09-09 17:04                                 ` Kevin Hilman
2016-09-09 17:04                                 ` Kevin Hilman
2016-09-09 17:21                             ` Ben Dooks
2016-09-09 17:21                               ` Ben Dooks
2016-09-09 17:21                               ` Ben Dooks
     [not found]                               ` <b9730890-d98c-2c3a-8af1-96b8c394c30f-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org>
2016-09-09 20:37                                 ` Martin Blumenstingl
2016-09-09 20:37                                   ` Martin Blumenstingl
2016-09-09 20:37                                   ` Martin Blumenstingl
2016-09-09 20:37                                   ` Martin Blumenstingl
2016-09-16  8:19                             ` Kishon Vijay Abraham I
2016-09-16  8:19                               ` Kishon Vijay Abraham I
2016-09-16  8:19                               ` Kishon Vijay Abraham I
2016-09-16  8:19                               ` Kishon Vijay Abraham I
2016-09-16 13:47                               ` Arnd Bergmann
2016-09-16 13:47                                 ` Arnd Bergmann
2016-09-16 13:47                                 ` Arnd Bergmann
     [not found]                               ` <57DBAB2F.3040905-l0cyMroinI0@public.gmane.org>
2016-09-18 19:56                                 ` Martin Blumenstingl
2016-09-18 19:56                                   ` Martin Blumenstingl
2016-09-18 19:56                                   ` Martin Blumenstingl
2016-09-18 19:56                                   ` Martin Blumenstingl
     [not found]                                   ` <CAFBinCC5fhbtkNdc6MJs7veD+xVGC6Qb-jgX_pwvraP1x2JrhQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-19  4:59                                     ` Kishon Vijay Abraham I
2016-09-19  4:59                                       ` Kishon Vijay Abraham I
2016-09-19  4:59                                       ` Kishon Vijay Abraham I
2016-09-19  4:59                                       ` Kishon Vijay Abraham I
     [not found]                                       ` <57DF70AF.4050002-l0cyMroinI0@public.gmane.org>
2016-09-19  7:37                                         ` Arnd Bergmann
2016-09-19  7:37                                           ` Arnd Bergmann
2016-09-19  7:37                                           ` Arnd Bergmann
2016-09-19  7:37                                           ` Arnd Bergmann
2016-09-09 20:36                           ` Martin Blumenstingl
2016-09-09 20:36                             ` Martin Blumenstingl
2016-09-09 20:36                             ` Martin Blumenstingl
2016-09-09 20:36                             ` Martin Blumenstingl
2016-09-11 13:44                             ` Martin Blumenstingl
2016-09-11 13:44                               ` Martin Blumenstingl
2016-09-11 13:44                               ` Martin Blumenstingl
     [not found]                               ` <CAFBinCDnMd0rtrvTMX-D_WNXHpVD8F=8Xn35jcK5jTUCre9ebA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-12 17:32                                 ` Kevin Hilman
2016-09-12 17:32                                   ` Kevin Hilman
2016-09-12 17:32                                   ` Kevin Hilman
2016-09-12 17:32                                   ` Kevin Hilman
     [not found]                             ` <CAFBinCDohOoFP_3GC+=tt6S7sPS308ao-yf+oGhdfwo-N-JnAA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-13 15:28                               ` Philipp Zabel
2016-09-13 15:28                                 ` Philipp Zabel
2016-09-13 15:28                                 ` Philipp Zabel
2016-09-13 15:28                                 ` Philipp Zabel
     [not found]                                 ` <1473780508.10237.22.camel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2016-09-13 18:38                                   ` Martin Blumenstingl
2016-09-13 18:38                                     ` Martin Blumenstingl
2016-09-13 18:38                                     ` Martin Blumenstingl
2016-09-13 18:38                                     ` Martin Blumenstingl
     [not found]                                     ` <CAFBinCC+izGS72TZuiiBu=DjtSmoZXRZ6r76M6rC8W7UTpSD6g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-14  0:59                                       ` Kevin Hilman
2016-09-14  0:59                                         ` Kevin Hilman
2016-09-14  0:59                                         ` Kevin Hilman
2016-09-14  0:59                                         ` Kevin Hilman
     [not found]                                         ` <7hzinbmh40.fsf-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
2016-09-14  8:36                                           ` Philipp Zabel
2016-09-14  8:36                                             ` Philipp Zabel
2016-09-14  8:36                                             ` Philipp Zabel
2016-09-14  8:36                                             ` Philipp Zabel
2016-09-14  8:37                                           ` Philipp Zabel
2016-09-14  8:37                                             ` Philipp Zabel
2016-09-14  8:37                                             ` Philipp Zabel
2016-09-14  8:37                                             ` Philipp Zabel
2016-09-14 21:09                                             ` Martin Blumenstingl
2016-09-14 21:09                                               ` Martin Blumenstingl
2016-09-14 21:09                                               ` Martin Blumenstingl
2016-09-14  8:37                                     ` Philipp Zabel
2016-09-14  8:37                                       ` Philipp Zabel
2016-09-14  8:37                                       ` Philipp Zabel
2016-09-14  8:37                                       ` Philipp Zabel
     [not found]                                       ` <1473842236.6816.0.camel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2016-09-14 21:23                                         ` Martin Blumenstingl
2016-09-14 21:23                                           ` Martin Blumenstingl
2016-09-14 21:23                                           ` Martin Blumenstingl
2016-09-14 21:23                                           ` Martin Blumenstingl
     [not found]                                           ` <CAFBinCDuj_nHtQ9xs0LMmqZT7Yr9SUw24_H2nAwULT7e9kRXag-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-15 10:30                                             ` Philipp Zabel
2016-09-15 10:30                                               ` Philipp Zabel
2016-09-15 10:30                                               ` Philipp Zabel
2016-09-15 10:30                                               ` Philipp Zabel
2016-09-04 21:31   ` [PATCH 5/7] ARM64: meson-gxbb: add USB Nodes Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-05  0:23     ` Andreas Färber
2016-09-05  0:23       ` Andreas Färber
2016-09-05  0:23       ` Andreas Färber
2016-09-05  8:00       ` Neil Armstrong
2016-09-04 21:31   ` [PATCH 6/7] ARM64: meson-gxbb-p20x: Enable " Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31   ` [PATCH 7/7] ARM64: meson-gxbb-vega-s95: " Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-04 21:31     ` Martin Blumenstingl
2016-09-11 13:41   ` Martin Blumenstingl [this message]
2016-09-11 13:41     ` [PATCH v2 0/6] usb/phy: Add Amlogic Meson8b and GXBB USB support Martin Blumenstingl
2016-09-11 13:41     ` Martin Blumenstingl
2016-09-11 13:41     ` Martin Blumenstingl
     [not found]     ` <20160911134111.31141-1-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2016-09-11 13:41       ` [PATCH v2 1/6] usb: dwc2: add support for Meson8b and GXBB SoCs Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-14 16:11         ` Kevin Hilman
2016-09-14 16:11           ` Kevin Hilman
2016-09-14 16:11           ` Kevin Hilman
2016-09-14 16:11           ` Kevin Hilman
2016-09-14 18:12           ` John Youn
2016-09-14 18:12             ` John Youn
2016-09-14 18:12             ` John Youn
2016-09-14 18:12             ` John Youn
     [not found]             ` <0d587b46-4c6e-c2ec-a62e-5d0c5a5bd902-HKixBCOQz3hWk0Htik3J/w@public.gmane.org>
2016-09-14 18:17               ` Kevin Hilman
2016-09-14 18:17                 ` Kevin Hilman
2016-09-14 18:17                 ` Kevin Hilman
2016-09-14 18:17                 ` Kevin Hilman
     [not found]                 ` <CAOi56cW+zJ8_Gf6xKMyKNk7YB1+MpWHrtmv=+Xxs0PZy9rAXqQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-14 18:26                   ` John Youn
2016-09-14 18:26                     ` John Youn
2016-09-14 18:26                     ` John Youn
2016-09-14 18:26                     ` John Youn
2016-09-14 18:36                     ` Kevin Hilman
2016-09-14 18:36                       ` Kevin Hilman
2016-09-14 18:36                       ` Kevin Hilman
2016-09-14 18:36                       ` Kevin Hilman
     [not found]         ` <20160911134111.31141-2-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2016-09-20 14:27           ` Rob Herring
2016-09-20 14:27             ` Rob Herring
2016-09-20 14:27             ` Rob Herring
2016-09-20 14:27             ` Rob Herring
2016-09-11 13:41       ` [PATCH v2 2/6] Documentation: dt-bindings: Add documentation for the Meson USB2 PHYs Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-20 14:29         ` Rob Herring
2016-09-20 14:29           ` Rob Herring
2016-09-20 14:29           ` Rob Herring
2016-09-21 18:38           ` Kevin Hilman
2016-09-21 18:38             ` Kevin Hilman
2016-09-21 18:38             ` Kevin Hilman
2016-09-21 18:38             ` Kevin Hilman
2016-09-11 13:41       ` [PATCH v2 4/6] ARM64: meson-gxbb: add USB Nodes Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
     [not found]         ` <20160911134111.31141-5-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2016-09-15 22:10           ` Kevin Hilman
2016-09-15 22:10             ` Kevin Hilman
2016-09-15 22:10             ` Kevin Hilman
2016-09-15 22:10             ` Kevin Hilman
2016-09-11 13:41       ` [PATCH v2 5/6] ARM64: meson-gxbb-p20x: Enable " Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-11 13:41         ` Martin Blumenstingl
2016-09-14 18:05         ` Kevin Hilman
2016-09-14 18:05           ` Kevin Hilman
2016-09-14 18:05           ` Kevin Hilman
2016-09-14 18:05           ` Kevin Hilman
     [not found]           ` <7h37l2mk6a.fsf-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
2016-09-15 22:09             ` Kevin Hilman
2016-09-15 22:09               ` Kevin Hilman
2016-09-15 22:09               ` Kevin Hilman
2016-09-15 22:09               ` Kevin Hilman
2016-09-11 13:41     ` [PATCH v2 3/6] phy: meson: add USB2 PHY support for Meson8b and GXBB Martin Blumenstingl
2016-09-11 13:41       ` Martin Blumenstingl
2016-09-11 13:41       ` Martin Blumenstingl
2016-09-14 16:06       ` Kevin Hilman
2016-09-14 16:06         ` Kevin Hilman
2016-09-14 16:06         ` Kevin Hilman
2016-09-14 16:06         ` Kevin Hilman
     [not found]         ` <m2a8faxy72.fsf-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
2016-09-17  4:17           ` Kishon Vijay Abraham I
2016-09-17  4:17             ` Kishon Vijay Abraham I
2016-09-17  4:17             ` Kishon Vijay Abraham I
2016-09-17  4:17             ` Kishon Vijay Abraham I
     [not found]             ` <57DCC3CF.9090409-l0cyMroinI0@public.gmane.org>
2016-09-19 16:42               ` Kevin Hilman
2016-09-19 16:42                 ` Kevin Hilman
2016-09-19 16:42                 ` Kevin Hilman
2016-09-19 16:42                 ` Kevin Hilman
2016-09-20  5:01                 ` Kishon Vijay Abraham I
2016-09-20  5:01                   ` Kishon Vijay Abraham I
2016-09-20  5:01                   ` Kishon Vijay Abraham I
2016-09-20  5:01                   ` Kishon Vijay Abraham I
     [not found]       ` <20160911134111.31141-4-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2016-09-14 21:30         ` Martin Blumenstingl
2016-09-14 21:30           ` Martin Blumenstingl
2016-09-14 21:30           ` Martin Blumenstingl
2016-09-14 21:30           ` Martin Blumenstingl
2016-09-11 13:41     ` [PATCH v2 6/6] ARM64: meson-gxbb-vega-s95: Enable USB Nodes Martin Blumenstingl
2016-09-11 13:41       ` Martin Blumenstingl
2016-09-11 13:41       ` Martin Blumenstingl
     [not found]       ` <20160911134111.31141-7-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2016-09-15 22:10         ` Kevin Hilman
2016-09-15 22:10           ` Kevin Hilman
2016-09-15 22:10           ` Kevin Hilman
2016-09-15 22:10           ` Kevin Hilman
2016-10-01 12:18   ` [PATCH v3 0/3] usb/phy: Add Amlogic Meson8b and GXBB USB support Martin Blumenstingl
2016-10-01 12:18     ` Martin Blumenstingl
2016-10-01 12:18     ` Martin Blumenstingl
     [not found]     ` <20161001121900.1168-1-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2016-10-01 12:18       ` [PATCH v3 1/3] Documentation: dt-bindings: update the meson-usb2-phy example Martin Blumenstingl
2016-10-01 12:18         ` Martin Blumenstingl
2016-10-01 12:18         ` Martin Blumenstingl
2016-10-09  1:28         ` Rob Herring
2016-10-09  1:28           ` Rob Herring
2016-10-09  1:28           ` Rob Herring
2016-10-01 12:18       ` [PATCH v3 2/3] Documentation: dt-bindings: rename meson-usb2-phy to meson8b-usb2-phy Martin Blumenstingl
2016-10-01 12:18         ` Martin Blumenstingl
2016-10-01 12:18         ` Martin Blumenstingl
2016-10-09  1:28         ` Rob Herring
2016-10-09  1:28           ` Rob Herring
2016-10-09  1:28           ` Rob Herring
2016-10-01 12:19       ` [PATCH v3 3/3] phy: meson: add USB2 PHY support for Meson8b and GXBB Martin Blumenstingl
2016-10-01 12:19         ` Martin Blumenstingl
2016-10-01 12:19         ` Martin Blumenstingl
2016-10-13 20:27     ` [PATCH v3 0/3] usb/phy: Add Amlogic Meson8b and GXBB USB support Martin Blumenstingl
2016-10-13 20:27       ` Martin Blumenstingl
2016-10-13 20:27       ` Martin Blumenstingl
2016-10-19 10:52       ` Kishon Vijay Abraham I
2016-10-19 10:52         ` Kishon Vijay Abraham I
2016-10-19 10:52         ` Kishon Vijay Abraham I

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160911134111.31141-1-martin.blumenstingl@googlemail.com \
    --to=martin.blumenstingl-gm/ye1e23mwn+bqq9rbeug@public.gmane.org \
    --cc=carlo-KA+7E9HrN00dnm+yROfE0A@public.gmane.org \
    --cc=catalin.marinas-5wv7dgnIgG8@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org \
    --cc=jbrunet-rdvid1DuHRBWk0Htik3J/w@public.gmane.org \
    --cc=johnyoun-HKixBCOQz3hWk0Htik3J/w@public.gmane.org \
    --cc=khilman-rdvid1DuHRBWk0Htik3J/w@public.gmane.org \
    --cc=kishon-l0cyMroinI0@public.gmane.org \
    --cc=linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
    --cc=mturquette-rdvid1DuHRBWk0Htik3J/w@public.gmane.org \
    --cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
    --cc=will.deacon-5wv7dgnIgG8@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.