public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] mx53loco: Use IMX_GPIO_NR macro
@ 2012-08-21 17:26 Fabio Estevam
  2012-08-21 17:26 ` [U-Boot] [PATCH 2/3] mx51evk: " Fabio Estevam
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Fabio Estevam @ 2012-08-21 17:26 UTC (permalink / raw)
  To: u-boot

Use IMX_GPIO_NR macro.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx53loco/mx53loco.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/freescale/mx53loco/mx53loco.c b/board/freescale/mx53loco/mx53loco.c
index 7cfb3f4..3a39c3e 100644
--- a/board/freescale/mx53loco/mx53loco.c
+++ b/board/freescale/mx53loco/mx53loco.c
@@ -42,7 +42,7 @@
 #include <linux/fb.h>
 #include <ipu_pixfmt.h>
 
-#define MX53LOCO_LCD_POWER		(2 * 32 + 24)	/* GPIO3_24 */
+#define MX53LOCO_LCD_POWER		IMX_GPIO_NR(3, 24)	/* GPIO3_24 */
 
 DECLARE_GLOBAL_DATA_PTR;
 
-- 
1.7.9.5

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

* [U-Boot] [PATCH 2/3] mx51evk: Use IMX_GPIO_NR macro
  2012-08-21 17:26 [U-Boot] [PATCH 1/3] mx53loco: Use IMX_GPIO_NR macro Fabio Estevam
@ 2012-08-21 17:26 ` Fabio Estevam
  2012-08-22  7:19   ` Stefano Babic
  2012-08-21 17:26 ` [U-Boot] [PATCH 3/3] mx53ard: " Fabio Estevam
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2012-08-21 17:26 UTC (permalink / raw)
  To: u-boot

Use IMX_GPIO_NR macro.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx51evk/mx51evk.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/board/freescale/mx51evk/mx51evk.c b/board/freescale/mx51evk/mx51evk.c
index 97c8a2c..651b506 100644
--- a/board/freescale/mx51evk/mx51evk.c
+++ b/board/freescale/mx51evk/mx51evk.c
@@ -39,9 +39,9 @@
 #include <linux/fb.h>
 #include <ipu_pixfmt.h>
 
-#define MX51EVK_LCD_3V3		(3 * 32 + 9)	/* GPIO4_9 */
-#define MX51EVK_LCD_5V		(3 * 32 + 10)	/* GPIO4_10 */
-#define MX51EVK_LCD_BACKLIGHT	(2 * 32 + 4)	/* GPIO3_4 */
+#define MX51EVK_LCD_3V3		IMX_GPIO_NR(4, 9)	/* GPIO4_9 */
+#define MX51EVK_LCD_5V		IMX_GPIO_NR(4, 10)	/* GPIO4_10 */
+#define MX51EVK_LCD_BACKLIGHT	IMX_GPIO_NR(3, 4)	/* GPIO3_4 */
 
 DECLARE_GLOBAL_DATA_PTR;
 
-- 
1.7.9.5

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

* [U-Boot] [PATCH 3/3] mx53ard: Use IMX_GPIO_NR macro
  2012-08-21 17:26 [U-Boot] [PATCH 1/3] mx53loco: Use IMX_GPIO_NR macro Fabio Estevam
  2012-08-21 17:26 ` [U-Boot] [PATCH 2/3] mx51evk: " Fabio Estevam
@ 2012-08-21 17:26 ` Fabio Estevam
  2012-08-22  7:19   ` Stefano Babic
  2012-08-21 19:28 ` [U-Boot] [PATCH 1/3] mx53loco: " Troy Kisky
  2012-08-22  7:19 ` Stefano Babic
  3 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2012-08-21 17:26 UTC (permalink / raw)
  To: u-boot

Use IMX_GPIO_NR macro.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx53ard/mx53ard.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/freescale/mx53ard/mx53ard.c b/board/freescale/mx53ard/mx53ard.c
index 2d21584..688cff1 100644
--- a/board/freescale/mx53ard/mx53ard.c
+++ b/board/freescale/mx53ard/mx53ard.c
@@ -33,7 +33,7 @@
 #include <fsl_esdhc.h>
 #include <asm/gpio.h>
 
-#define ETHERNET_INT		(1 * 32 + 31)  /* GPIO2_31 */
+#define ETHERNET_INT		IMX_GPIO_NR(2, 31)  /* GPIO2_31 */
 
 DECLARE_GLOBAL_DATA_PTR;
 
-- 
1.7.9.5

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

* [U-Boot] [PATCH 1/3] mx53loco: Use IMX_GPIO_NR macro
  2012-08-21 17:26 [U-Boot] [PATCH 1/3] mx53loco: Use IMX_GPIO_NR macro Fabio Estevam
  2012-08-21 17:26 ` [U-Boot] [PATCH 2/3] mx51evk: " Fabio Estevam
  2012-08-21 17:26 ` [U-Boot] [PATCH 3/3] mx53ard: " Fabio Estevam
@ 2012-08-21 19:28 ` Troy Kisky
  2012-08-22  7:19 ` Stefano Babic
  3 siblings, 0 replies; 7+ messages in thread
From: Troy Kisky @ 2012-08-21 19:28 UTC (permalink / raw)
  To: u-boot

On 8/21/2012 10:26 AM, Fabio Estevam wrote:
> Use IMX_GPIO_NR macro.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>   board/freescale/mx53loco/mx53loco.c |    2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/board/freescale/mx53loco/mx53loco.c b/board/freescale/mx53loco/mx53loco.c
> index 7cfb3f4..3a39c3e 100644
> --- a/board/freescale/mx53loco/mx53loco.c
> +++ b/board/freescale/mx53loco/mx53loco.c
> @@ -42,7 +42,7 @@
>   #include <linux/fb.h>
>   #include <ipu_pixfmt.h>
>   
> -#define MX53LOCO_LCD_POWER		(2 * 32 + 24)	/* GPIO3_24 */
> +#define MX53LOCO_LCD_POWER		IMX_GPIO_NR(3, 24)	/* GPIO3_24 */
>   
>   DECLARE_GLOBAL_DATA_PTR;
>   
I'd kill the now redundant comment as well. But I don't mind if you don't.

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

* [U-Boot] [PATCH 2/3] mx51evk: Use IMX_GPIO_NR macro
  2012-08-21 17:26 ` [U-Boot] [PATCH 2/3] mx51evk: " Fabio Estevam
@ 2012-08-22  7:19   ` Stefano Babic
  0 siblings, 0 replies; 7+ messages in thread
From: Stefano Babic @ 2012-08-22  7:19 UTC (permalink / raw)
  To: u-boot

On 21/08/2012 19:26, Fabio Estevam wrote:
> Use IMX_GPIO_NR macro.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  board/freescale/mx51evk/mx51evk.c |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/board/freescale/mx51evk/mx51evk.c b/board/freescale/mx51evk/mx51evk.c
> index 97c8a2c..651b506 100644
> --- a/board/freescale/mx51evk/mx51evk.c
> +++ b/board/freescale/mx51evk/mx51evk.c
> @@ -39,9 +39,9 @@
>  #include <linux/fb.h>
>  #include <ipu_pixfmt.h>
>  
> -#define MX51EVK_LCD_3V3		(3 * 32 + 9)	/* GPIO4_9 */
> -#define MX51EVK_LCD_5V		(3 * 32 + 10)	/* GPIO4_10 */
> -#define MX51EVK_LCD_BACKLIGHT	(2 * 32 + 4)	/* GPIO3_4 */
> +#define MX51EVK_LCD_3V3		IMX_GPIO_NR(4, 9)	/* GPIO4_9 */
> +#define MX51EVK_LCD_5V		IMX_GPIO_NR(4, 10)	/* GPIO4_10 */
> +#define MX51EVK_LCD_BACKLIGHT	IMX_GPIO_NR(3, 4)	/* GPIO3_4 */
>  
>  DECLARE_GLOBAL_DATA_PTR;
>  
> 
Acked-by: Stefano Babic <sbabic@denx.de>

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
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] 7+ messages in thread

* [U-Boot] [PATCH 3/3] mx53ard: Use IMX_GPIO_NR macro
  2012-08-21 17:26 ` [U-Boot] [PATCH 3/3] mx53ard: " Fabio Estevam
@ 2012-08-22  7:19   ` Stefano Babic
  0 siblings, 0 replies; 7+ messages in thread
From: Stefano Babic @ 2012-08-22  7:19 UTC (permalink / raw)
  To: u-boot

On 21/08/2012 19:26, Fabio Estevam wrote:
> Use IMX_GPIO_NR macro.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  board/freescale/mx53ard/mx53ard.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/board/freescale/mx53ard/mx53ard.c b/board/freescale/mx53ard/mx53ard.c
> index 2d21584..688cff1 100644
> --- a/board/freescale/mx53ard/mx53ard.c
> +++ b/board/freescale/mx53ard/mx53ard.c
> @@ -33,7 +33,7 @@
>  #include <fsl_esdhc.h>
>  #include <asm/gpio.h>
>  
> -#define ETHERNET_INT		(1 * 32 + 31)  /* GPIO2_31 */
> +#define ETHERNET_INT		IMX_GPIO_NR(2, 31)  /* GPIO2_31 */
>  
>  DECLARE_GLOBAL_DATA_PTR;
>  
> 
Acked-by: Stefano Babic <sbabic@denx.de>

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
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] 7+ messages in thread

* [U-Boot] [PATCH 1/3] mx53loco: Use IMX_GPIO_NR macro
  2012-08-21 17:26 [U-Boot] [PATCH 1/3] mx53loco: Use IMX_GPIO_NR macro Fabio Estevam
                   ` (2 preceding siblings ...)
  2012-08-21 19:28 ` [U-Boot] [PATCH 1/3] mx53loco: " Troy Kisky
@ 2012-08-22  7:19 ` Stefano Babic
  3 siblings, 0 replies; 7+ messages in thread
From: Stefano Babic @ 2012-08-22  7:19 UTC (permalink / raw)
  To: u-boot

On 21/08/2012 19:26, Fabio Estevam wrote:
> Use IMX_GPIO_NR macro.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  board/freescale/mx53loco/mx53loco.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/board/freescale/mx53loco/mx53loco.c b/board/freescale/mx53loco/mx53loco.c
> index 7cfb3f4..3a39c3e 100644
> --- a/board/freescale/mx53loco/mx53loco.c
> +++ b/board/freescale/mx53loco/mx53loco.c
> @@ -42,7 +42,7 @@
>  #include <linux/fb.h>
>  #include <ipu_pixfmt.h>
>  
> -#define MX53LOCO_LCD_POWER		(2 * 32 + 24)	/* GPIO3_24 */
> +#define MX53LOCO_LCD_POWER		IMX_GPIO_NR(3, 24)	/* GPIO3_24 */
>  
>  DECLARE_GLOBAL_DATA_PTR;
>  
> 

Acked-by: Stefano Babic <sbabic@denx.de>

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
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] 7+ messages in thread

end of thread, other threads:[~2012-08-22  7:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-21 17:26 [U-Boot] [PATCH 1/3] mx53loco: Use IMX_GPIO_NR macro Fabio Estevam
2012-08-21 17:26 ` [U-Boot] [PATCH 2/3] mx51evk: " Fabio Estevam
2012-08-22  7:19   ` Stefano Babic
2012-08-21 17:26 ` [U-Boot] [PATCH 3/3] mx53ard: " Fabio Estevam
2012-08-22  7:19   ` Stefano Babic
2012-08-21 19:28 ` [U-Boot] [PATCH 1/3] mx53loco: " Troy Kisky
2012-08-22  7:19 ` Stefano Babic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox