linux-amlogic.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes
@ 2020-03-26 16:08 Neil Armstrong
  2020-03-26 16:08 ` [PATCH 1/2] arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply Neil Armstrong
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Neil Armstrong @ 2020-03-26 16:08 UTC (permalink / raw)
  To: khilman; +Cc: linux-amlogic, linux-kernel, linux-arm-kernel, Neil Armstrong

Misc USB DT fixes for G12A.

Neil Armstrong (2):
  arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply
  arm64: dts: meson-g12-common: fix dwc2 clock names

 arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi    | 2 +-
 arch/arm64/boot/dts/amlogic/meson-g12b-ugoos-am6.dts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.22.0


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply
  2020-03-26 16:08 [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes Neil Armstrong
@ 2020-03-26 16:08 ` Neil Armstrong
  2020-03-26 16:08 ` [PATCH 2/2] arm64: dts: meson-g12-common: fix dwc2 clock names Neil Armstrong
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Neil Armstrong @ 2020-03-26 16:08 UTC (permalink / raw)
  To: khilman; +Cc: linux-amlogic, linux-kernel, linux-arm-kernel, Neil Armstrong

The USB supply used the wrong property, fixing:
meson-g12b-ugoos-am6.dt.yaml: usb@ffe09000: 'vbus-regulator' does not match any of the regexes: '^usb@[0-9a-f]+$', 'pinctrl-[0-9]+'

Fixes: 2cd2310fca4c ("arm64: dts: meson-g12b-ugoos-am6: add initial device-tree")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 arch/arm64/boot/dts/amlogic/meson-g12b-ugoos-am6.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/amlogic/meson-g12b-ugoos-am6.dts b/arch/arm64/boot/dts/amlogic/meson-g12b-ugoos-am6.dts
index 325e448eb09c..06c5430eb92d 100644
--- a/arch/arm64/boot/dts/amlogic/meson-g12b-ugoos-am6.dts
+++ b/arch/arm64/boot/dts/amlogic/meson-g12b-ugoos-am6.dts
@@ -545,7 +545,7 @@
 &usb {
 	status = "okay";
 	dr_mode = "host";
-	vbus-regulator = <&usb_pwr_en>;
+	vbus-supply = <&usb_pwr_en>;
 };
 
 &usb2_phy0 {
-- 
2.22.0


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] arm64: dts: meson-g12-common: fix dwc2 clock names
  2020-03-26 16:08 [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes Neil Armstrong
  2020-03-26 16:08 ` [PATCH 1/2] arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply Neil Armstrong
@ 2020-03-26 16:08 ` Neil Armstrong
  2020-03-26 22:42 ` [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes Martin Blumenstingl
  2020-04-29 19:41 ` patchwork-bot+linux-amlogic
  3 siblings, 0 replies; 6+ messages in thread
From: Neil Armstrong @ 2020-03-26 16:08 UTC (permalink / raw)
  To: khilman; +Cc: linux-amlogic, linux-kernel, linux-arm-kernel, Neil Armstrong

Use the correct dwc2 clock name.

Fixes: 9baf7d6be730 ("arm64: dts: meson: g12a: Add G12A USB nodes")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi b/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi
index 0882ea215b88..c0aef7d69117 100644
--- a/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi
@@ -2319,7 +2319,7 @@
 				reg = <0x0 0xff400000 0x0 0x40000>;
 				interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
 				clocks = <&clkc CLKID_USB1_DDR_BRIDGE>;
-				clock-names = "ddr";
+				clock-names = "otg";
 				phys = <&usb2_phy1>;
 				phy-names = "usb2-phy";
 				dr_mode = "peripheral";
-- 
2.22.0


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes
  2020-03-26 16:08 [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes Neil Armstrong
  2020-03-26 16:08 ` [PATCH 1/2] arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply Neil Armstrong
  2020-03-26 16:08 ` [PATCH 2/2] arm64: dts: meson-g12-common: fix dwc2 clock names Neil Armstrong
@ 2020-03-26 22:42 ` Martin Blumenstingl
  2020-04-29 18:22   ` Kevin Hilman
  2020-04-29 19:41 ` patchwork-bot+linux-amlogic
  3 siblings, 1 reply; 6+ messages in thread
From: Martin Blumenstingl @ 2020-03-26 22:42 UTC (permalink / raw)
  To: Neil Armstrong; +Cc: khilman, linux-kernel, linux-arm-kernel, linux-amlogic

On Thu, Mar 26, 2020 at 5:09 PM Neil Armstrong <narmstrong@baylibre.com> wrote:
>
> Misc USB DT fixes for G12A.
>
> Neil Armstrong (2):
>   arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply
>   arm64: dts: meson-g12-common: fix dwc2 clock names
for both patches:
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes
  2020-03-26 22:42 ` [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes Martin Blumenstingl
@ 2020-04-29 18:22   ` Kevin Hilman
  0 siblings, 0 replies; 6+ messages in thread
From: Kevin Hilman @ 2020-04-29 18:22 UTC (permalink / raw)
  To: Martin Blumenstingl, Neil Armstrong
  Cc: linux-amlogic, linux-kernel, linux-arm-kernel

Martin Blumenstingl <martin.blumenstingl@googlemail.com> writes:

> On Thu, Mar 26, 2020 at 5:09 PM Neil Armstrong <narmstrong@baylibre.com> wrote:
>>
>> Misc USB DT fixes for G12A.
>>
>> Neil Armstrong (2):
>>   arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply
>>   arm64: dts: meson-g12-common: fix dwc2 clock names
> for both patches:
> Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

Queued as fixes for v5.7-rc,

Thanks,

Kevin

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes
  2020-03-26 16:08 [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes Neil Armstrong
                   ` (2 preceding siblings ...)
  2020-03-26 22:42 ` [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes Martin Blumenstingl
@ 2020-04-29 19:41 ` patchwork-bot+linux-amlogic
  3 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+linux-amlogic @ 2020-04-29 19:41 UTC (permalink / raw)
  To: Neil Armstrong; +Cc: linux-amlogic, khilman

Hello:

This series was applied to khilman/linux-amlogic.git (refs/heads/for-next).

On Thu, 26 Mar 2020 17:08:55 +0100 you wrote:
> Misc USB DT fixes for G12A.
> 
> Neil Armstrong (2):
>   arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply
>   arm64: dts: meson-g12-common: fix dwc2 clock names
> 
>  arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi    | 2 +-
>  arch/arm64/boot/dts/amlogic/meson-g12b-ugoos-am6.dts | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)


Here is a summary with links:
  - [1/2] arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply
    https://git.kernel.org/khilman/linux-amlogic/c/4e025fd91ba32a16ed8131158aa63cd37d141cbb
  - [2/2] arm64: dts: meson-g12-common: fix dwc2 clock names
    https://git.kernel.org/khilman/linux-amlogic/c/e4f634d812634067b0c661af2e3cecfd629c89b8

You are awesome, thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-04-29 19:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-26 16:08 [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes Neil Armstrong
2020-03-26 16:08 ` [PATCH 1/2] arm64: dts: meson-g12b-ugoos-am6: fix usb vbus-supply Neil Armstrong
2020-03-26 16:08 ` [PATCH 2/2] arm64: dts: meson-g12-common: fix dwc2 clock names Neil Armstrong
2020-03-26 22:42 ` [PATCH 0/2] arm64: dts: meson-g12: usb DT fixes Martin Blumenstingl
2020-04-29 18:22   ` Kevin Hilman
2020-04-29 19:41 ` patchwork-bot+linux-amlogic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).