All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] imx: ventana: add delay before reading EEPROM
@ 2021-04-16 22:05 Tim Harvey
  2021-04-16 22:06 ` [PATCH 2/2] arm: dts: imx6qdl-gw552x.dtsi: fix VBUS supply Tim Harvey
  2021-05-02 11:43 ` [PATCH 1/2] imx: ventana: add delay before reading EEPROM stefano.babic at babic.homelinux.org
  0 siblings, 2 replies; 4+ messages in thread
From: Tim Harvey @ 2021-04-16 22:05 UTC (permalink / raw)
  To: u-boot

fixes: d863d054397a ("imx: ventana: convert U-Boot to OF_CONTROL using FIT image")

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
---
 board/gateworks/gw_ventana/eeprom.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/board/gateworks/gw_ventana/eeprom.c b/board/gateworks/gw_ventana/eeprom.c
index a5a151d85b..b9862c7dfc 100644
--- a/board/gateworks/gw_ventana/eeprom.c
+++ b/board/gateworks/gw_ventana/eeprom.c
@@ -42,6 +42,7 @@ read_eeprom(int bus, struct ventana_board_info *info)
 	}
 
 	/* read eeprom config section */
+	mdelay(10);
 	if (gsc_i2c_read(GSC_EEPROM_ADDR, 0x00, 1, buf, sizeof(*info))) {
 		puts("EEPROM: Failed to read EEPROM\n");
 		return GW_UNKNOWN;
-- 
2.17.1

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

* [PATCH 2/2] arm: dts: imx6qdl-gw552x.dtsi: fix VBUS supply
  2021-04-16 22:05 [PATCH 1/2] imx: ventana: add delay before reading EEPROM Tim Harvey
@ 2021-04-16 22:06 ` Tim Harvey
  2021-05-02 11:42   ` stefano.babic at babic.homelinux.org
  2021-05-02 11:43 ` [PATCH 1/2] imx: ventana: add delay before reading EEPROM stefano.babic at babic.homelinux.org
  1 sibling, 1 reply; 4+ messages in thread
From: Tim Harvey @ 2021-04-16 22:06 UTC (permalink / raw)
  To: u-boot

Remove the invalid 'regulator-always-on' property to resolve:
starting USB...
Bus usb at 2184000: Error enabling VBUS supply (ret=-13)
probe failed, error -13
Bus usb at 2184200: USB EHCI 1.00

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
---
 arch/arm/dts/imx6qdl-gw552x.dtsi | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/dts/imx6qdl-gw552x.dtsi b/arch/arm/dts/imx6qdl-gw552x.dtsi
index 5462907f12..7935b10eab 100644
--- a/arch/arm/dts/imx6qdl-gw552x.dtsi
+++ b/arch/arm/dts/imx6qdl-gw552x.dtsi
@@ -120,7 +120,6 @@
 		regulator-name = "5P0V";
 		regulator-min-microvolt = <5000000>;
 		regulator-max-microvolt = <5000000>;
-		regulator-always-on;
 	};
 };
 
-- 
2.17.1

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

* [PATCH 2/2] arm: dts: imx6qdl-gw552x.dtsi: fix VBUS supply
  2021-04-16 22:06 ` [PATCH 2/2] arm: dts: imx6qdl-gw552x.dtsi: fix VBUS supply Tim Harvey
@ 2021-05-02 11:42   ` stefano.babic at babic.homelinux.org
  0 siblings, 0 replies; 4+ messages in thread
From: stefano.babic at babic.homelinux.org @ 2021-05-02 11:42 UTC (permalink / raw)
  To: u-boot

> Remove the invalid 'regulator-always-on' property to resolve:
> starting USB...
> Bus usb at 2184000: Error enabling VBUS supply (ret=-13)
> probe failed, error -13
> Bus usb at 2184200: USB EHCI 1.00
> Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

* [PATCH 1/2] imx: ventana: add delay before reading EEPROM
  2021-04-16 22:05 [PATCH 1/2] imx: ventana: add delay before reading EEPROM Tim Harvey
  2021-04-16 22:06 ` [PATCH 2/2] arm: dts: imx6qdl-gw552x.dtsi: fix VBUS supply Tim Harvey
@ 2021-05-02 11:43 ` stefano.babic at babic.homelinux.org
  1 sibling, 0 replies; 4+ messages in thread
From: stefano.babic at babic.homelinux.org @ 2021-05-02 11:43 UTC (permalink / raw)
  To: u-boot

> fixes: d863d054397a ("imx: ventana: convert U-Boot to OF_CONTROL using FIT image")
> Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

end of thread, other threads:[~2021-05-02 11:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-16 22:05 [PATCH 1/2] imx: ventana: add delay before reading EEPROM Tim Harvey
2021-04-16 22:06 ` [PATCH 2/2] arm: dts: imx6qdl-gw552x.dtsi: fix VBUS supply Tim Harvey
2021-05-02 11:42   ` stefano.babic at babic.homelinux.org
2021-05-02 11:43 ` [PATCH 1/2] imx: ventana: add delay before reading EEPROM stefano.babic at babic.homelinux.org

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.