linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2 v2] mfd: arizona: Add DT binding for the DMIC reference voltages
@ 2015-03-03 15:04 Charles Keepax
  2015-03-03 15:04 ` [PATCH 2/2 v2] mfd: arizona: Add DT binding documentation for " Charles Keepax
  2015-03-09  9:38 ` [PATCH 1/2 v2] mfd: arizona: Add DT binding for the " Lee Jones
  0 siblings, 2 replies; 4+ messages in thread
From: Charles Keepax @ 2015-03-03 15:04 UTC (permalink / raw)
  To: lee.jones
  Cc: sameo, robh+dt, mark.rutland, galak, devicetree, linux-kernel, patches

Add a DT binding that lets the DMIC reference voltage source be
specified for each input.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---

The only change since rev 1 is a slight tweak to the wording of
everything to make clear these are voltages.

Thanks,
Charles

 drivers/mfd/arizona-core.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c
index 09ba8f1..d6f306e 100644
--- a/drivers/mfd/arizona-core.c
+++ b/drivers/mfd/arizona-core.c
@@ -561,6 +561,16 @@ static int arizona_of_get_core_pdata(struct arizona *arizona)
 		count++;
 	}
 
+	count = 0;
+	of_property_for_each_u32(arizona->dev->of_node, "wlf,dmic-ref", prop,
+				 cur, val) {
+		if (count == ARRAY_SIZE(arizona->pdata.dmic_ref))
+			break;
+
+		arizona->pdata.dmic_ref[count] = val;
+		count++;
+	}
+
 	return 0;
 }
 
-- 
1.7.2.5


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

* [PATCH 2/2 v2] mfd: arizona: Add DT binding documentation for DMIC reference voltages
  2015-03-03 15:04 [PATCH 1/2 v2] mfd: arizona: Add DT binding for the DMIC reference voltages Charles Keepax
@ 2015-03-03 15:04 ` Charles Keepax
  2015-03-09  9:38   ` Lee Jones
  2015-03-09  9:38 ` [PATCH 1/2 v2] mfd: arizona: Add DT binding for the " Lee Jones
  1 sibling, 1 reply; 4+ messages in thread
From: Charles Keepax @ 2015-03-03 15:04 UTC (permalink / raw)
  To: lee.jones
  Cc: sameo, robh+dt, mark.rutland, galak, devicetree, linux-kernel, patches

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
 Documentation/devicetree/bindings/mfd/arizona.txt |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/Documentation/devicetree/bindings/mfd/arizona.txt b/Documentation/devicetree/bindings/mfd/arizona.txt
index bfef000..f1b9b7a 100644
--- a/Documentation/devicetree/bindings/mfd/arizona.txt
+++ b/Documentation/devicetree/bindings/mfd/arizona.txt
@@ -49,6 +49,12 @@ Optional properties:
     input singals. If values less than the number of input signals, elements
     that has not been specifed are set to 0 by default.
 
+  - wlf,dmic-ref : DMIC reference voltage source for each input, can be
+    selected from either MICVDD or one of the MICBIAS's, defines
+    (ARIZONA_DMIC_xxxx) are provided in <dt-bindings/mfd/arizona.txt>. If
+    present, the number of values should be less than or equal to the
+    number of inputs, unspecified inputs will use the chip default.
+
   - DCVDD-supply, MICVDD-supply : Power supplies, only need to be specified if
     they are being externally supplied. As covered in
     Documentation/devicetree/bindings/regulator/regulator.txt
-- 
1.7.2.5


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

* Re: [PATCH 1/2 v2] mfd: arizona: Add DT binding for the DMIC reference voltages
  2015-03-03 15:04 [PATCH 1/2 v2] mfd: arizona: Add DT binding for the DMIC reference voltages Charles Keepax
  2015-03-03 15:04 ` [PATCH 2/2 v2] mfd: arizona: Add DT binding documentation for " Charles Keepax
@ 2015-03-09  9:38 ` Lee Jones
  1 sibling, 0 replies; 4+ messages in thread
From: Lee Jones @ 2015-03-09  9:38 UTC (permalink / raw)
  To: Charles Keepax
  Cc: sameo, robh+dt, mark.rutland, galak, devicetree, linux-kernel, patches

On Tue, 03 Mar 2015, Charles Keepax wrote:

> Add a DT binding that lets the DMIC reference voltage source be
> specified for each input.
> 
> Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
> ---
> 
> The only change since rev 1 is a slight tweak to the wording of
> everything to make clear these are voltages.
> 
> Thanks,
> Charles
> 
>  drivers/mfd/arizona-core.c |   10 ++++++++++
>  1 files changed, 10 insertions(+), 0 deletions(-)

Applied, thanks.

> diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c
> index 09ba8f1..d6f306e 100644
> --- a/drivers/mfd/arizona-core.c
> +++ b/drivers/mfd/arizona-core.c
> @@ -561,6 +561,16 @@ static int arizona_of_get_core_pdata(struct arizona *arizona)
>  		count++;
>  	}
>  
> +	count = 0;
> +	of_property_for_each_u32(arizona->dev->of_node, "wlf,dmic-ref", prop,
> +				 cur, val) {
> +		if (count == ARRAY_SIZE(arizona->pdata.dmic_ref))
> +			break;
> +
> +		arizona->pdata.dmic_ref[count] = val;
> +		count++;
> +	}
> +
>  	return 0;
>  }
>  

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: [PATCH 2/2 v2] mfd: arizona: Add DT binding documentation for DMIC reference voltages
  2015-03-03 15:04 ` [PATCH 2/2 v2] mfd: arizona: Add DT binding documentation for " Charles Keepax
@ 2015-03-09  9:38   ` Lee Jones
  0 siblings, 0 replies; 4+ messages in thread
From: Lee Jones @ 2015-03-09  9:38 UTC (permalink / raw)
  To: Charles Keepax
  Cc: sameo, robh+dt, mark.rutland, galak, devicetree, linux-kernel, patches

On Tue, 03 Mar 2015, Charles Keepax wrote:

> Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
> ---
>  Documentation/devicetree/bindings/mfd/arizona.txt |    6 ++++++
>  1 files changed, 6 insertions(+), 0 deletions(-)

Applied, thanks.

> diff --git a/Documentation/devicetree/bindings/mfd/arizona.txt b/Documentation/devicetree/bindings/mfd/arizona.txt
> index bfef000..f1b9b7a 100644
> --- a/Documentation/devicetree/bindings/mfd/arizona.txt
> +++ b/Documentation/devicetree/bindings/mfd/arizona.txt
> @@ -49,6 +49,12 @@ Optional properties:
>      input singals. If values less than the number of input signals, elements
>      that has not been specifed are set to 0 by default.
>  
> +  - wlf,dmic-ref : DMIC reference voltage source for each input, can be
> +    selected from either MICVDD or one of the MICBIAS's, defines
> +    (ARIZONA_DMIC_xxxx) are provided in <dt-bindings/mfd/arizona.txt>. If
> +    present, the number of values should be less than or equal to the
> +    number of inputs, unspecified inputs will use the chip default.
> +
>    - DCVDD-supply, MICVDD-supply : Power supplies, only need to be specified if
>      they are being externally supplied. As covered in
>      Documentation/devicetree/bindings/regulator/regulator.txt

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

end of thread, other threads:[~2015-03-09  9:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-03 15:04 [PATCH 1/2 v2] mfd: arizona: Add DT binding for the DMIC reference voltages Charles Keepax
2015-03-03 15:04 ` [PATCH 2/2 v2] mfd: arizona: Add DT binding documentation for " Charles Keepax
2015-03-09  9:38   ` Lee Jones
2015-03-09  9:38 ` [PATCH 1/2 v2] mfd: arizona: Add DT binding for the " Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).