From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Mon, 17 Nov 2014 23:04:35 +0900 Subject: [U-Boot] [PATCH] exynos: dts: Correct USB vbus-gpio numbering for Snow In-Reply-To: <1415270671-14881-1-git-send-email-sjoerd.simons@collabora.co.uk> References: <1415270671-14881-1-git-send-email-sjoerd.simons@collabora.co.uk> Message-ID: <546A0073.5050906@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 06/11/14 19:44, Sjoerd Simons wrote: > The current vbus GPIOs on snow make very little sense, their number is > far above the maximum. As a result, USB doesn't work on snow. > > Correct the GPIO numbering so they match the current scheme for exynos5. > Tested both EHCI and XHCI to correctly work after this change. > > Signed-off-by: Sjoerd Simons > --- > arch/arm/dts/exynos5250-snow.dts | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm/dts/exynos5250-snow.dts b/arch/arm/dts/exynos5250-snow.dts > index 6fd9275..95af025 100644 > --- a/arch/arm/dts/exynos5250-snow.dts > +++ b/arch/arm/dts/exynos5250-snow.dts > @@ -131,11 +131,11 @@ > }; > > ehci at 12110000 { > - samsung,vbus-gpio = <&gpio 0x309 0>; /* X11 */ > + samsung,vbus-gpio = <&gpio 0xb1 0>; /* X11 */ > }; > > xhci at 12000000 { > - samsung,vbus-gpio = <&gpio 0x317 0>; /* X27 */ > + samsung,vbus-gpio = <&gpio 0xbf 0>; /* X27 */ > }; > > tmu at 10060000 { > applied to u-boot-samsung. Thanks, Minkyu Kang.