linux-amlogic.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/2] Fix USB and enable ADC on Khadas VIM
@ 2018-07-10  8:01 Loic Devulder
  2018-07-10  8:01 ` [PATCH v4 1/2] ARM64: meson: Sync DT with Linux 4.17.5 Loic Devulder
  2018-07-10  8:01 ` [PATCH v4 2/2] configs: Update Meson GX configs Loic Devulder
  0 siblings, 2 replies; 5+ messages in thread
From: Loic Devulder @ 2018-07-10  8:01 UTC (permalink / raw)
  To: linus-amlogic

This patch series add power supply entry for P212 like meson-gx boards.
It also enable ADC support for Khadas VIM board.

Based on the Neil Armstrong's patches.

Note: it's my first (small!) patch for U-Boot,
I tried to add all needed and useful informations :-)

Changes since v3:
 - fix in Subject... sorry!

Changes since v2:
 - change commit message for DTS backport

Changes since v1:
 - remove duplicated lines in configs/khadas-vim_defconfig

Loic Devulder (2):
  ARM64: meson: Add 'usb2_phy0' in P212 DT file
  configs: Update Meson GX configs

 arch/arm/dts/meson-gxl-s905x-p212.dtsi | 7 ++++++++
 configs/khadas-vim_defconfig           | 3 +++
 2 files changed, 10 insertions(+)

-- 
2.13.7

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

* [PATCH v4 1/2] ARM64: meson: Sync DT with Linux 4.17.5
  2018-07-10  8:01 [PATCH v4 0/2] Fix USB and enable ADC on Khadas VIM Loic Devulder
@ 2018-07-10  8:01 ` Loic Devulder
  2018-07-20 22:36   ` [U-Boot,v4,1/2] " Tom Rini
  2018-07-10  8:01 ` [PATCH v4 2/2] configs: Update Meson GX configs Loic Devulder
  1 sibling, 1 reply; 5+ messages in thread
From: Loic Devulder @ 2018-07-10  8:01 UTC (permalink / raw)
  To: linus-amlogic

Synchronize the Linux Device Tree for Amlogic Meson GX boards from Linux 4.17.5
(Linux commit 54fb3c180d05e9dfda892a93413514e99f0cbb19).

This will enable HDMI_5V for USB Amlogic Meson GXL P212 based boards.

Signed-off-by: Loic Devulder <ldevulder@suse.de>
---
 arch/arm/dts/meson-gxl-s905x-p212.dtsi | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/arch/arm/dts/meson-gxl-s905x-p212.dtsi b/arch/arm/dts/meson-gxl-s905x-p212.dtsi
index 0cfd701809..3bd405079b 100644
--- a/arch/arm/dts/meson-gxl-s905x-p212.dtsi
+++ b/arch/arm/dts/meson-gxl-s905x-p212.dtsi
@@ -189,3 +189,10 @@
 &usb0 {
 	status = "okay";
 };
+
+&usb2_phy0 {
+        /*
+         * HDMI_5V is also used as supply for the USB VBUS.
+         */
+        phy-supply = <&hdmi_5v>;
+};
-- 
2.13.7

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

* [PATCH v4 2/2] configs: Update Meson GX configs
  2018-07-10  8:01 [PATCH v4 0/2] Fix USB and enable ADC on Khadas VIM Loic Devulder
  2018-07-10  8:01 ` [PATCH v4 1/2] ARM64: meson: Sync DT with Linux 4.17.5 Loic Devulder
@ 2018-07-10  8:01 ` Loic Devulder
  2018-07-20 22:36   ` [U-Boot,v4,2/2] " Tom Rini
  1 sibling, 1 reply; 5+ messages in thread
From: Loic Devulder @ 2018-07-10  8:01 UTC (permalink / raw)
  To: linus-amlogic

Enable ADC support on the Khadas VIM board.

Signed-off-by: Loic Devulder <ldevulder@suse.de>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
---
 configs/khadas-vim_defconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/configs/khadas-vim_defconfig b/configs/khadas-vim_defconfig
index 1eb13df4b4..fd1ec8157b 100644
--- a/configs/khadas-vim_defconfig
+++ b/configs/khadas-vim_defconfig
@@ -13,12 +13,15 @@ CONFIG_OF_BOARD_SETUP=y
 # CONFIG_DISPLAY_BOARDINFO is not set
 # CONFIG_CMD_BDI is not set
 # CONFIG_CMD_IMI is not set
+CONFIG_CMD_ADC=y
 CONFIG_CMD_GPIO=y
 # CONFIG_CMD_LOADS is not set
 CONFIG_CMD_MMC=y
 CONFIG_CMD_USB=y
 # CONFIG_CMD_SETEXPR is not set
 CONFIG_CMD_REGULATOR=y
+CONFIG_ADC=y
+CONFIG_SARADC_MESON=y
 CONFIG_OF_CONTROL=y
 CONFIG_NET_RANDOM_ETHADDR=y
 CONFIG_DM_GPIO=y
-- 
2.13.7

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

* [U-Boot,v4,1/2] ARM64: meson: Sync DT with Linux 4.17.5
  2018-07-10  8:01 ` [PATCH v4 1/2] ARM64: meson: Sync DT with Linux 4.17.5 Loic Devulder
@ 2018-07-20 22:36   ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2018-07-20 22:36 UTC (permalink / raw)
  To: linus-amlogic

On Tue, Jul 10, 2018 at 10:01:07AM +0200, Loic Devulder wrote:

> Synchronize the Linux Device Tree for Amlogic Meson GX boards from Linux 4.17.5
> (Linux commit 54fb3c180d05e9dfda892a93413514e99f0cbb19).
> 
> This will enable HDMI_5V for USB Amlogic Meson GXL P212 based boards.
> 
> Signed-off-by: Loic Devulder <ldevulder@suse.de>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-amlogic/attachments/20180720/be1a4587/attachment.sig>

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

* [U-Boot,v4,2/2] configs: Update Meson GX configs
  2018-07-10  8:01 ` [PATCH v4 2/2] configs: Update Meson GX configs Loic Devulder
@ 2018-07-20 22:36   ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2018-07-20 22:36 UTC (permalink / raw)
  To: linus-amlogic

On Tue, Jul 10, 2018 at 10:01:08AM +0200, Loic Devulder wrote:

> Enable ADC support on the Khadas VIM board.
> 
> Signed-off-by: Loic Devulder <ldevulder@suse.de>
> Acked-by: Neil Armstrong <narmstrong@baylibre.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-amlogic/attachments/20180720/51eabef8/attachment.sig>

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

end of thread, other threads:[~2018-07-20 22:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-10  8:01 [PATCH v4 0/2] Fix USB and enable ADC on Khadas VIM Loic Devulder
2018-07-10  8:01 ` [PATCH v4 1/2] ARM64: meson: Sync DT with Linux 4.17.5 Loic Devulder
2018-07-20 22:36   ` [U-Boot,v4,1/2] " Tom Rini
2018-07-10  8:01 ` [PATCH v4 2/2] configs: Update Meson GX configs Loic Devulder
2018-07-20 22:36   ` [U-Boot,v4,2/2] " Tom Rini

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).