diff options
author | Vivek Gautam <gautam.vivek@samsung.com> | 2014-01-03 16:10:52 +0530 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2014-02-03 13:28:23 +0900 |
commit | 3732e49f0fd0ed9f55fa17d5219c31176ee94bd0 (patch) | |
tree | 2735f9d7f4fe81d300bf0fa814b6008836946e59 | |
parent | e97f9d817e600cd6f43d1d0da76f5787e33a5c56 (diff) | |
download | u-boot-3732e49f0fd0ed9f55fa17d5219c31176ee94bd0.tar.gz u-boot-3732e49f0fd0ed9f55fa17d5219c31176ee94bd0.tar.xz u-boot-3732e49f0fd0ed9f55fa17d5219c31176ee94bd0.zip |
exynos5250: usb: Fix VBus gpio numbers for ehci and xhci controllers
The gpio_*() apis require the exact gpio line number to deduce
the gpio bank and the gpio pin addresses.
So fix the gpio number for VBUS used for EHCI ports as well as
XHCI ports on exynos5250 boards.
Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
Cc: Julius Werner <jwerner@chromium.org>
Cc: Minkyu Kang <mk7.kang@samsung.com>
Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
-rw-r--r-- | board/samsung/dts/exynos5250-smdk5250.dts | 2 | ||||
-rw-r--r-- | board/samsung/dts/exynos5250-snow.dts | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/board/samsung/dts/exynos5250-smdk5250.dts b/board/samsung/dts/exynos5250-smdk5250.dts index c4ed3467cb..9020382d97 100644 --- a/board/samsung/dts/exynos5250-smdk5250.dts +++ b/board/samsung/dts/exynos5250-smdk5250.dts @@ -146,6 +146,6 @@ }; ehci@12110000 { - samsung,vbus-gpio = <&gpio 0xbe 0>; /* X26 */ + samsung,vbus-gpio = <&gpio 0x316 0>; /* X26 */ }; }; diff --git a/board/samsung/dts/exynos5250-snow.dts b/board/samsung/dts/exynos5250-snow.dts index 091cdb9e86..9b48a0ccd8 100644 --- a/board/samsung/dts/exynos5250-snow.dts +++ b/board/samsung/dts/exynos5250-snow.dts @@ -110,11 +110,11 @@ }; ehci@12110000 { - samsung,vbus-gpio = <&gpio 0xb1 0>; /* X11 */ + samsung,vbus-gpio = <&gpio 0x309 0>; /* X11 */ }; xhci@12000000 { - samsung,vbus-gpio = <&gpio 0xbf 0>; /* X27 */ + samsung,vbus-gpio = <&gpio 0x317 0>; /* X27 */ }; tmu@10060000 { |