Re: [U-Boot] [PATCH 1/2] exynos5250: usb: Fix VBus gpio numbers for ehci and xhci controllers

2014-02-02 Thread Minkyu Kang
On 03/01/14 19:40, Vivek Gautam wrote:
 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.vi...@samsung.com
 Cc: Julius Werner jwer...@chromium.org
 Cc: Minkyu Kang mk7.k...@samsung.com
 Cc: Marek Vasut ma...@denx.de
 ---
  board/samsung/dts/exynos5250-smdk5250.dts |2 +-
  board/samsung/dts/exynos5250-snow.dts |4 ++--
  2 files changed, 3 insertions(+), 3 deletions(-)
 

applied to u-boot-samsung.

Thanks,
Minkyu Kang.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/2] exynos5250: usb: Fix VBus gpio numbers for ehci and xhci controllers

2014-01-05 Thread Minkyu Kang
On 04/01/14 16:14, Marek Vasut wrote:
 On Friday, January 03, 2014 at 11:40:52 AM, Vivek Gautam wrote:
 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.vi...@samsung.com
 Cc: Julius Werner jwer...@chromium.org
 Cc: Minkyu Kang mk7.k...@samsung.com
 Cc: Marek Vasut ma...@denx.de
 
 Reiewed-by: Marek Vasut ma...@denx.de
 
 Minkyu, can you please pick this?

OK.

 
 Best regards,
 Marek Vasut
 

Thanks,
Minkyu Kang.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/2] exynos5250: usb: Fix VBus gpio numbers for ehci and xhci controllers

2014-01-04 Thread Marek Vasut
On Friday, January 03, 2014 at 11:40:52 AM, Vivek Gautam wrote:
 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.vi...@samsung.com
 Cc: Julius Werner jwer...@chromium.org
 Cc: Minkyu Kang mk7.k...@samsung.com
 Cc: Marek Vasut ma...@denx.de

Reiewed-by: Marek Vasut ma...@denx.de

Minkyu, can you please pick this?

Best regards,
Marek Vasut
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 1/2] exynos5250: usb: Fix VBus gpio numbers for ehci and xhci controllers

2014-01-03 Thread Vivek Gautam
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.vi...@samsung.com
Cc: Julius Werner jwer...@chromium.org
Cc: Minkyu Kang mk7.k...@samsung.com
Cc: Marek Vasut ma...@denx.de
---
 board/samsung/dts/exynos5250-smdk5250.dts |2 +-
 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 c4ed346..9020382 100644
--- a/board/samsung/dts/exynos5250-smdk5250.dts
+++ b/board/samsung/dts/exynos5250-smdk5250.dts
@@ -146,6 +146,6 @@
};
 
ehci@1211 {
-   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 091cdb9..9b48a0c 100644
--- a/board/samsung/dts/exynos5250-snow.dts
+++ b/board/samsung/dts/exynos5250-snow.dts
@@ -110,11 +110,11 @@
};
 
ehci@1211 {
-   samsung,vbus-gpio = gpio 0xb1 0; /* X11 */
+   samsung,vbus-gpio = gpio 0x309 0; /* X11 */
};
 
xhci@1200 {
-   samsung,vbus-gpio = gpio 0xbf 0; /* X27 */
+   samsung,vbus-gpio = gpio 0x317 0; /* X27 */
};
 
tmu@1006 {
-- 
1.7.10.4

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/2] exynos5250: usb: Fix VBus gpio numbers for ehci and xhci controllers

2014-01-03 Thread Vivek Gautam
On Fri, Jan 3, 2014 at 4:10 PM, Vivek Gautam gautam.vi...@samsung.com wrote:
 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.vi...@samsung.com
 Cc: Julius Werner jwer...@chromium.org
 Cc: Minkyu Kang mk7.k...@samsung.com
 Cc: Marek Vasut ma...@denx.de
 ---

Based on u-boot-samsung 'master' branch.
Tested on smkd5250 and snow board for EHCI and XHCI ports.

  board/samsung/dts/exynos5250-smdk5250.dts |2 +-
  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 c4ed346..9020382 100644
 --- a/board/samsung/dts/exynos5250-smdk5250.dts
 +++ b/board/samsung/dts/exynos5250-smdk5250.dts
 @@ -146,6 +146,6 @@
 };

 ehci@1211 {
 -   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 091cdb9..9b48a0c 100644
 --- a/board/samsung/dts/exynos5250-snow.dts
 +++ b/board/samsung/dts/exynos5250-snow.dts
 @@ -110,11 +110,11 @@
 };

 ehci@1211 {
 -   samsung,vbus-gpio = gpio 0xb1 0; /* X11 */
 +   samsung,vbus-gpio = gpio 0x309 0; /* X11 */
 };

 xhci@1200 {
 -   samsung,vbus-gpio = gpio 0xbf 0; /* X27 */
 +   samsung,vbus-gpio = gpio 0x317 0; /* X27 */
 };

 tmu@1006 {
 --
 1.7.10.4

 ___
 U-Boot mailing list
 U-Boot@lists.denx.de
 http://lists.denx.de/mailman/listinfo/u-boot



-- 
Best Regards
Vivek Gautam
Samsung RD Institute, Bangalore
India
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot