mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] mfd: mc13xxx: VGEN1 and VGEN2 voltage bits positioned in "Regulator Setting 0" register
@ 2016-06-29 16:26 Alexander Shiyan
  2016-06-30  6:42 ` Sascha Hauer
  2016-07-07  7:49 ` Sascha Hauer
  0 siblings, 2 replies; 4+ messages in thread
From: Alexander Shiyan @ 2016-06-29 16:26 UTC (permalink / raw)
  To: barebox

The bits VGEN10-11 and VGEN20-22 is positioned in the Regulator Setting 0
register. This patch fixes these definitions and board (Efika MX), which
uses this voltages.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 arch/arm/boards/efika-mx-smartbook/board.c |  8 +++++---
 include/mfd/mc13892.h                      | 28 ++++++++++++++--------------
 2 files changed, 19 insertions(+), 17 deletions(-)

diff --git a/arch/arm/boards/efika-mx-smartbook/board.c b/arch/arm/boards/efika-mx-smartbook/board.c
index d1d020e..d7c11dc 100644
--- a/arch/arm/boards/efika-mx-smartbook/board.c
+++ b/arch/arm/boards/efika-mx-smartbook/board.c
@@ -122,9 +122,13 @@ static void efikamx_power_init(struct mc13xxx *mc)
 	/* Set VDIG to 1.8V, VGEN3 to 1.8V, VCAM to 2.6V */
 	mc13xxx_reg_read(mc, MC13892_REG_SETTING_0, &val);
 	val &= ~(MC13892_SETTING_0_VCAM_MASK |
+		MC13892_SETTING_0_VGEN1_MASK |
+		MC13892_SETTING_0_VGEN2_MASK |
 		MC13892_SETTING_0_VGEN3_MASK |
 		MC13892_SETTING_0_VDIG_MASK);
 	val |= MC13892_SETTING_0_VDIG_1_8 |
+		MC13892_SETTING_0_VGEN1_1_2 |
+		MC13892_SETTING_0_VGEN2_3_15 |
 		MC13892_SETTING_0_VGEN3_1_8 |
 		MC13892_SETTING_0_VCAM_2_6;
 	mc13xxx_reg_write(mc, MC13892_REG_SETTING_0, val);
@@ -136,9 +140,7 @@ static void efikamx_power_init(struct mc13xxx *mc)
 			MC13892_SETTING_1_VAUDIO_MASK);
 	val |= MC13892_SETTING_1_VSD_3_15 |
 		MC13892_SETTING_1_VAUDIO_3_0 |
-		MC13892_SETTING_1_VVIDEO_2_775 |
-		MC13892_SETTING_1_VGEN1_1_2 |
-		MC13892_SETTING_1_VGEN2_3_15;
+		MC13892_SETTING_1_VVIDEO_2_775;
 	mc13xxx_reg_write(mc, MC13892_REG_SETTING_1, val);
 
 	/* Enable VGEN1, VGEN2, VDIG, VPLL */
diff --git a/include/mfd/mc13892.h b/include/mfd/mc13892.h
index 22df5f0..c92a462 100644
--- a/include/mfd/mc13892.h
+++ b/include/mfd/mc13892.h
@@ -95,22 +95,22 @@
 #define MC13892_SETTING_1_VSD_3_0	(6 << 6)
 #define MC13892_SETTING_1_VSD_3_15	(7 << 6)
 #define MC13892_SETTING_1_VSD_MASK	(7 << 6)
-#define MC13892_SETTING_1_VGEN1_1_2	0
-#define MC13892_SETTING_1_VGEN1_1_5	1
-#define MC13892_SETTING_1_VGEN1_2_775	2
-#define MC13892_SETTING_1_VGEN1_3_15	3
-#define MC13892_SETTING_1_VGEN1_MASK	3
-#define MC13892_SETTING_1_VGEN2_1_2	(0 << 6)
-#define MC13892_SETTING_1_VGEN2_1_5	(1 << 6)
-#define MC13892_SETTING_1_VGEN2_1_6	(2 << 6)
-#define MC13892_SETTING_1_VGEN2_1_8	(3 << 6)
-#define MC13892_SETTING_1_VGEN2_2_7	(4 << 6)
-#define MC13892_SETTING_1_VGEN2_2_8	(5 << 6)
-#define MC13892_SETTING_1_VGEN2_3_0	(6 << 6)
-#define MC13892_SETTING_1_VGEN2_3_15	(7 << 6)
-#define MC13892_SETTING_1_VGEN2_MASK	(7 << 6)
 
 /* Fields in REG_SETTING_0 */
+#define MC13892_SETTING_0_VGEN1_1_2	(0 << 0)
+#define MC13892_SETTING_0_VGEN1_1_5	(1 << 0)
+#define MC13892_SETTING_0_VGEN1_2_775	(2 << 0)
+#define MC13892_SETTING_0_VGEN1_3_15	(3 << 0)
+#define MC13892_SETTING_0_VGEN1_MASK	(3 << 0)
+#define MC13892_SETTING_0_VGEN2_1_2	(0 << 6)
+#define MC13892_SETTING_0_VGEN2_1_5	(1 << 6)
+#define MC13892_SETTING_0_VGEN2_1_6	(2 << 6)
+#define MC13892_SETTING_0_VGEN2_1_8	(3 << 6)
+#define MC13892_SETTING_0_VGEN2_2_7	(4 << 6)
+#define MC13892_SETTING_0_VGEN2_2_8	(5 << 6)
+#define MC13892_SETTING_0_VGEN2_3_0	(6 << 6)
+#define MC13892_SETTING_0_VGEN2_3_15	(7 << 6)
+#define MC13892_SETTING_0_VGEN2_MASK	(7 << 6)
 #define MC13892_SETTING_0_VGEN3_1_8	(0 << 14)
 #define MC13892_SETTING_0_VGEN3_2_9	(1 << 14)
 #define MC13892_SETTING_0_VGEN3_MASK	(1 << 14)
-- 
2.4.9


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] mfd: mc13xxx: VGEN1 and VGEN2 voltage bits positioned in "Regulator Setting 0" register
  2016-06-29 16:26 [PATCH] mfd: mc13xxx: VGEN1 and VGEN2 voltage bits positioned in "Regulator Setting 0" register Alexander Shiyan
@ 2016-06-30  6:42 ` Sascha Hauer
  2016-06-30  7:02   ` Alexander Shiyan
  2016-07-07  7:49 ` Sascha Hauer
  1 sibling, 1 reply; 4+ messages in thread
From: Sascha Hauer @ 2016-06-30  6:42 UTC (permalink / raw)
  To: Alexander Shiyan; +Cc: barebox

Hi ALexander,

On Wed, Jun 29, 2016 at 07:26:02PM +0300, Alexander Shiyan wrote:
> The bits VGEN10-11 and VGEN20-22 is positioned in the Regulator Setting 0
> register. This patch fixes these definitions and board (Efika MX), which
> uses this voltages.
> 
> Signed-off-by: Alexander Shiyan <shc_work@mail.ru>

Have you tested this on real hardware? The register definitions may be
wrong, but I'm unsure if the actual register writes may be right. It
could be that I decoded binary register values (from U-Boot maybe) to
the symbols we actually had.

Sascha

> ---
>  arch/arm/boards/efika-mx-smartbook/board.c |  8 +++++---
>  include/mfd/mc13892.h                      | 28 ++++++++++++++--------------
>  2 files changed, 19 insertions(+), 17 deletions(-)
> 
> diff --git a/arch/arm/boards/efika-mx-smartbook/board.c b/arch/arm/boards/efika-mx-smartbook/board.c
> index d1d020e..d7c11dc 100644
> --- a/arch/arm/boards/efika-mx-smartbook/board.c
> +++ b/arch/arm/boards/efika-mx-smartbook/board.c
> @@ -122,9 +122,13 @@ static void efikamx_power_init(struct mc13xxx *mc)
>  	/* Set VDIG to 1.8V, VGEN3 to 1.8V, VCAM to 2.6V */
>  	mc13xxx_reg_read(mc, MC13892_REG_SETTING_0, &val);
>  	val &= ~(MC13892_SETTING_0_VCAM_MASK |
> +		MC13892_SETTING_0_VGEN1_MASK |
> +		MC13892_SETTING_0_VGEN2_MASK |
>  		MC13892_SETTING_0_VGEN3_MASK |
>  		MC13892_SETTING_0_VDIG_MASK);
>  	val |= MC13892_SETTING_0_VDIG_1_8 |
> +		MC13892_SETTING_0_VGEN1_1_2 |
> +		MC13892_SETTING_0_VGEN2_3_15 |
>  		MC13892_SETTING_0_VGEN3_1_8 |
>  		MC13892_SETTING_0_VCAM_2_6;
>  	mc13xxx_reg_write(mc, MC13892_REG_SETTING_0, val);
> @@ -136,9 +140,7 @@ static void efikamx_power_init(struct mc13xxx *mc)
>  			MC13892_SETTING_1_VAUDIO_MASK);
>  	val |= MC13892_SETTING_1_VSD_3_15 |
>  		MC13892_SETTING_1_VAUDIO_3_0 |
> -		MC13892_SETTING_1_VVIDEO_2_775 |
> -		MC13892_SETTING_1_VGEN1_1_2 |
> -		MC13892_SETTING_1_VGEN2_3_15;
> +		MC13892_SETTING_1_VVIDEO_2_775;
>  	mc13xxx_reg_write(mc, MC13892_REG_SETTING_1, val);
>  
>  	/* Enable VGEN1, VGEN2, VDIG, VPLL */
> diff --git a/include/mfd/mc13892.h b/include/mfd/mc13892.h
> index 22df5f0..c92a462 100644
> --- a/include/mfd/mc13892.h
> +++ b/include/mfd/mc13892.h
> @@ -95,22 +95,22 @@
>  #define MC13892_SETTING_1_VSD_3_0	(6 << 6)
>  #define MC13892_SETTING_1_VSD_3_15	(7 << 6)
>  #define MC13892_SETTING_1_VSD_MASK	(7 << 6)
> -#define MC13892_SETTING_1_VGEN1_1_2	0
> -#define MC13892_SETTING_1_VGEN1_1_5	1
> -#define MC13892_SETTING_1_VGEN1_2_775	2
> -#define MC13892_SETTING_1_VGEN1_3_15	3
> -#define MC13892_SETTING_1_VGEN1_MASK	3
> -#define MC13892_SETTING_1_VGEN2_1_2	(0 << 6)
> -#define MC13892_SETTING_1_VGEN2_1_5	(1 << 6)
> -#define MC13892_SETTING_1_VGEN2_1_6	(2 << 6)
> -#define MC13892_SETTING_1_VGEN2_1_8	(3 << 6)
> -#define MC13892_SETTING_1_VGEN2_2_7	(4 << 6)
> -#define MC13892_SETTING_1_VGEN2_2_8	(5 << 6)
> -#define MC13892_SETTING_1_VGEN2_3_0	(6 << 6)
> -#define MC13892_SETTING_1_VGEN2_3_15	(7 << 6)
> -#define MC13892_SETTING_1_VGEN2_MASK	(7 << 6)
>  
>  /* Fields in REG_SETTING_0 */
> +#define MC13892_SETTING_0_VGEN1_1_2	(0 << 0)
> +#define MC13892_SETTING_0_VGEN1_1_5	(1 << 0)
> +#define MC13892_SETTING_0_VGEN1_2_775	(2 << 0)
> +#define MC13892_SETTING_0_VGEN1_3_15	(3 << 0)
> +#define MC13892_SETTING_0_VGEN1_MASK	(3 << 0)
> +#define MC13892_SETTING_0_VGEN2_1_2	(0 << 6)
> +#define MC13892_SETTING_0_VGEN2_1_5	(1 << 6)
> +#define MC13892_SETTING_0_VGEN2_1_6	(2 << 6)
> +#define MC13892_SETTING_0_VGEN2_1_8	(3 << 6)
> +#define MC13892_SETTING_0_VGEN2_2_7	(4 << 6)
> +#define MC13892_SETTING_0_VGEN2_2_8	(5 << 6)
> +#define MC13892_SETTING_0_VGEN2_3_0	(6 << 6)
> +#define MC13892_SETTING_0_VGEN2_3_15	(7 << 6)
> +#define MC13892_SETTING_0_VGEN2_MASK	(7 << 6)
>  #define MC13892_SETTING_0_VGEN3_1_8	(0 << 14)
>  #define MC13892_SETTING_0_VGEN3_2_9	(1 << 14)
>  #define MC13892_SETTING_0_VGEN3_MASK	(1 << 14)
> -- 
> 2.4.9
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] mfd: mc13xxx: VGEN1 and VGEN2 voltage bits positioned in "Regulator Setting 0" register
  2016-06-30  6:42 ` Sascha Hauer
@ 2016-06-30  7:02   ` Alexander Shiyan
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander Shiyan @ 2016-06-30  7:02 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: barebox

>Четверг, 30 июня 2016, 9:42 +03:00 от Sascha Hauer <s.hauer@pengutronix.de>:
>
>Hi ALexander,
>
>On Wed, Jun 29, 2016 at 07:26:02PM +0300, Alexander Shiyan wrote:
>> The bits VGEN10-11 and VGEN20-22 is positioned in the Regulator Setting 0
>> register. This patch fixes these definitions and board (Efika MX), which
>> uses this voltages.
>> 
>> Signed-off-by: Alexander Shiyan < shc_work@mail.ru >
>
>Have you tested this on real hardware? The register definitions may be
>wrong, but I'm unsure if the actual register writes may be right. It
>could be that I decoded binary register values (from U-Boot maybe) to
>the symbols we actually had.

Hello.

Yes, this has been tested on i.MX51 based board with MC13892.
The same definitions is used in kernel (regulator/mc13892-regulator.c).

---

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] mfd: mc13xxx: VGEN1 and VGEN2 voltage bits positioned in "Regulator Setting 0" register
  2016-06-29 16:26 [PATCH] mfd: mc13xxx: VGEN1 and VGEN2 voltage bits positioned in "Regulator Setting 0" register Alexander Shiyan
  2016-06-30  6:42 ` Sascha Hauer
@ 2016-07-07  7:49 ` Sascha Hauer
  1 sibling, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2016-07-07  7:49 UTC (permalink / raw)
  To: Alexander Shiyan; +Cc: barebox

On Wed, Jun 29, 2016 at 07:26:02PM +0300, Alexander Shiyan wrote:
> The bits VGEN10-11 and VGEN20-22 is positioned in the Regulator Setting 0
> register. This patch fixes these definitions and board (Efika MX), which
> uses this voltages.
> 
> Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
> ---
>  arch/arm/boards/efika-mx-smartbook/board.c |  8 +++++---
>  include/mfd/mc13892.h                      | 28 ++++++++++++++--------------
>  2 files changed, 19 insertions(+), 17 deletions(-)

Applied, thanks

Sascha

> 
> diff --git a/arch/arm/boards/efika-mx-smartbook/board.c b/arch/arm/boards/efika-mx-smartbook/board.c
> index d1d020e..d7c11dc 100644
> --- a/arch/arm/boards/efika-mx-smartbook/board.c
> +++ b/arch/arm/boards/efika-mx-smartbook/board.c
> @@ -122,9 +122,13 @@ static void efikamx_power_init(struct mc13xxx *mc)
>  	/* Set VDIG to 1.8V, VGEN3 to 1.8V, VCAM to 2.6V */
>  	mc13xxx_reg_read(mc, MC13892_REG_SETTING_0, &val);
>  	val &= ~(MC13892_SETTING_0_VCAM_MASK |
> +		MC13892_SETTING_0_VGEN1_MASK |
> +		MC13892_SETTING_0_VGEN2_MASK |
>  		MC13892_SETTING_0_VGEN3_MASK |
>  		MC13892_SETTING_0_VDIG_MASK);
>  	val |= MC13892_SETTING_0_VDIG_1_8 |
> +		MC13892_SETTING_0_VGEN1_1_2 |
> +		MC13892_SETTING_0_VGEN2_3_15 |
>  		MC13892_SETTING_0_VGEN3_1_8 |
>  		MC13892_SETTING_0_VCAM_2_6;
>  	mc13xxx_reg_write(mc, MC13892_REG_SETTING_0, val);
> @@ -136,9 +140,7 @@ static void efikamx_power_init(struct mc13xxx *mc)
>  			MC13892_SETTING_1_VAUDIO_MASK);
>  	val |= MC13892_SETTING_1_VSD_3_15 |
>  		MC13892_SETTING_1_VAUDIO_3_0 |
> -		MC13892_SETTING_1_VVIDEO_2_775 |
> -		MC13892_SETTING_1_VGEN1_1_2 |
> -		MC13892_SETTING_1_VGEN2_3_15;
> +		MC13892_SETTING_1_VVIDEO_2_775;
>  	mc13xxx_reg_write(mc, MC13892_REG_SETTING_1, val);
>  
>  	/* Enable VGEN1, VGEN2, VDIG, VPLL */
> diff --git a/include/mfd/mc13892.h b/include/mfd/mc13892.h
> index 22df5f0..c92a462 100644
> --- a/include/mfd/mc13892.h
> +++ b/include/mfd/mc13892.h
> @@ -95,22 +95,22 @@
>  #define MC13892_SETTING_1_VSD_3_0	(6 << 6)
>  #define MC13892_SETTING_1_VSD_3_15	(7 << 6)
>  #define MC13892_SETTING_1_VSD_MASK	(7 << 6)
> -#define MC13892_SETTING_1_VGEN1_1_2	0
> -#define MC13892_SETTING_1_VGEN1_1_5	1
> -#define MC13892_SETTING_1_VGEN1_2_775	2
> -#define MC13892_SETTING_1_VGEN1_3_15	3
> -#define MC13892_SETTING_1_VGEN1_MASK	3
> -#define MC13892_SETTING_1_VGEN2_1_2	(0 << 6)
> -#define MC13892_SETTING_1_VGEN2_1_5	(1 << 6)
> -#define MC13892_SETTING_1_VGEN2_1_6	(2 << 6)
> -#define MC13892_SETTING_1_VGEN2_1_8	(3 << 6)
> -#define MC13892_SETTING_1_VGEN2_2_7	(4 << 6)
> -#define MC13892_SETTING_1_VGEN2_2_8	(5 << 6)
> -#define MC13892_SETTING_1_VGEN2_3_0	(6 << 6)
> -#define MC13892_SETTING_1_VGEN2_3_15	(7 << 6)
> -#define MC13892_SETTING_1_VGEN2_MASK	(7 << 6)
>  
>  /* Fields in REG_SETTING_0 */
> +#define MC13892_SETTING_0_VGEN1_1_2	(0 << 0)
> +#define MC13892_SETTING_0_VGEN1_1_5	(1 << 0)
> +#define MC13892_SETTING_0_VGEN1_2_775	(2 << 0)
> +#define MC13892_SETTING_0_VGEN1_3_15	(3 << 0)
> +#define MC13892_SETTING_0_VGEN1_MASK	(3 << 0)
> +#define MC13892_SETTING_0_VGEN2_1_2	(0 << 6)
> +#define MC13892_SETTING_0_VGEN2_1_5	(1 << 6)
> +#define MC13892_SETTING_0_VGEN2_1_6	(2 << 6)
> +#define MC13892_SETTING_0_VGEN2_1_8	(3 << 6)
> +#define MC13892_SETTING_0_VGEN2_2_7	(4 << 6)
> +#define MC13892_SETTING_0_VGEN2_2_8	(5 << 6)
> +#define MC13892_SETTING_0_VGEN2_3_0	(6 << 6)
> +#define MC13892_SETTING_0_VGEN2_3_15	(7 << 6)
> +#define MC13892_SETTING_0_VGEN2_MASK	(7 << 6)
>  #define MC13892_SETTING_0_VGEN3_1_8	(0 << 14)
>  #define MC13892_SETTING_0_VGEN3_2_9	(1 << 14)
>  #define MC13892_SETTING_0_VGEN3_MASK	(1 << 14)
> -- 
> 2.4.9
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2016-07-07  7:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-29 16:26 [PATCH] mfd: mc13xxx: VGEN1 and VGEN2 voltage bits positioned in "Regulator Setting 0" register Alexander Shiyan
2016-06-30  6:42 ` Sascha Hauer
2016-06-30  7:02   ` Alexander Shiyan
2016-07-07  7:49 ` Sascha Hauer

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