linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH resent v3 0/3] DT Fixes for OMAP5 boards
@ 2016-10-25 17:38 H. Nikolaus Schaller
  2016-10-25 17:38 ` [PATCH resent v3 1/3] dts: omap5: board-common: add phandle to reference Palmas gpadc H. Nikolaus Schaller
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: H. Nikolaus Schaller @ 2016-10-25 17:38 UTC (permalink / raw)
  To: Benoît Cousson, Tony Lindgren, Rob Herring, Pawel Moll,
	Mark Rutland, Ian Campbell, Kumar Gala, Russell King,
	Russell King
  Cc: ldewangan, linux-omap, devicetree, linux-kernel, marek, kernel,
	letux-kernel, H. Nikolaus Schaller

2016-10-25 19:29:49: Changes V3:
* fix property name to enable twl6040 jack-detection and not jack_detection (Peter Ujfalusi)
* fix typo on bindings documentation
* fix typos in commit messages (Tony Lindgren)

2016-10-25 18:48:28: This patch series adds DT nodes for:
* twl6040 enable jack_detection (e.g. OMAP5EVM)
* twl6037 gpadc for omap5 based boards (e.g. OMAP5EVM)


H. Nikolaus Schaller (3):
  dts: omap5: board-common: add phandle to reference Palmas gpadc
  dts: omap5: board-common: enable twl6040 headset jack detection
  ASoC: omap-abe-twl6040: fix typo in bindings documentation

 Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt | 2 +-
 arch/arm/boot/dts/omap5-board-common.dtsi                    | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

-- 
2.7.3

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

* [PATCH resent v3 1/3] dts: omap5: board-common: add phandle to reference Palmas gpadc
  2016-10-25 17:38 [PATCH resent v3 0/3] DT Fixes for OMAP5 boards H. Nikolaus Schaller
@ 2016-10-25 17:38 ` H. Nikolaus Schaller
  2016-10-25 17:38 ` [PATCH resent v3 2/3] dts: omap5: board-common: enable twl6040 headset jack detection H. Nikolaus Schaller
  2016-10-25 17:38 ` [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation H. Nikolaus Schaller
  2 siblings, 0 replies; 9+ messages in thread
From: H. Nikolaus Schaller @ 2016-10-25 17:38 UTC (permalink / raw)
  To: Benoît Cousson, Tony Lindgren, Rob Herring, Pawel Moll,
	Mark Rutland, Ian Campbell, Kumar Gala, Russell King,
	Russell King
  Cc: ldewangan, linux-omap, devicetree, linux-kernel, marek, kernel,
	letux-kernel, H. Nikolaus Schaller

Will be needed for iio based drivers.

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 arch/arm/boot/dts/omap5-board-common.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/omap5-board-common.dtsi b/arch/arm/boot/dts/omap5-board-common.dtsi
index 7500283..b04adee 100644
--- a/arch/arm/boot/dts/omap5-board-common.dtsi
+++ b/arch/arm/boot/dts/omap5-board-common.dtsi
@@ -415,7 +415,7 @@
 			ti,backup-battery-charge-high-current;
 		};
 
-		gpadc {
+		gpadc: gpadc {
 			compatible = "ti,palmas-gpadc";
 			interrupts = <18 0
 				      16 0
-- 
2.7.3

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

* [PATCH resent v3 2/3] dts: omap5: board-common: enable twl6040 headset jack detection
  2016-10-25 17:38 [PATCH resent v3 0/3] DT Fixes for OMAP5 boards H. Nikolaus Schaller
  2016-10-25 17:38 ` [PATCH resent v3 1/3] dts: omap5: board-common: add phandle to reference Palmas gpadc H. Nikolaus Schaller
@ 2016-10-25 17:38 ` H. Nikolaus Schaller
  2016-10-26  8:02   ` Peter Ujfalusi
  2016-10-25 17:38 ` [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation H. Nikolaus Schaller
  2 siblings, 1 reply; 9+ messages in thread
From: H. Nikolaus Schaller @ 2016-10-25 17:38 UTC (permalink / raw)
  To: Benoît Cousson, Tony Lindgren, Rob Herring, Pawel Moll,
	Mark Rutland, Ian Campbell, Kumar Gala, Russell King,
	Russell King
  Cc: ldewangan, linux-omap, devicetree, linux-kernel, marek, kernel,
	letux-kernel, H. Nikolaus Schaller

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 arch/arm/boot/dts/omap5-board-common.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/omap5-board-common.dtsi b/arch/arm/boot/dts/omap5-board-common.dtsi
index b04adee..ab60a8e 100644
--- a/arch/arm/boot/dts/omap5-board-common.dtsi
+++ b/arch/arm/boot/dts/omap5-board-common.dtsi
@@ -124,6 +124,7 @@
 		compatible = "ti,abe-twl6040";
 		ti,model = "omap5-uevm";
 
+		ti,jack-detection;
 		ti,mclk-freq = <19200000>;
 
 		ti,mcpdm = <&mcpdm>;
-- 
2.7.3

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

* [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation
  2016-10-25 17:38 [PATCH resent v3 0/3] DT Fixes for OMAP5 boards H. Nikolaus Schaller
  2016-10-25 17:38 ` [PATCH resent v3 1/3] dts: omap5: board-common: add phandle to reference Palmas gpadc H. Nikolaus Schaller
  2016-10-25 17:38 ` [PATCH resent v3 2/3] dts: omap5: board-common: enable twl6040 headset jack detection H. Nikolaus Schaller
@ 2016-10-25 17:38 ` H. Nikolaus Schaller
  2016-10-26  7:59   ` Peter Ujfalusi
  2016-10-31  3:07   ` Rob Herring
  2 siblings, 2 replies; 9+ messages in thread
From: H. Nikolaus Schaller @ 2016-10-25 17:38 UTC (permalink / raw)
  To: Benoît Cousson, Tony Lindgren, Rob Herring, Pawel Moll,
	Mark Rutland, Ian Campbell, Kumar Gala, Russell King,
	Russell King
  Cc: ldewangan, linux-omap, devicetree, linux-kernel, marek, kernel,
	letux-kernel, H. Nikolaus Schaller

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt b/Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt
index fd40c85..462b04e8 100644
--- a/Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt
+++ b/Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt
@@ -12,7 +12,7 @@ Required properties:
 
 Optional properties:
 - ti,dmic: phandle for the OMAP dmic node if the machine have it connected
-- ti,jack_detection: Need to be present if the board capable to detect jack
+- ti,jack-detection: Need to be present if the board capable to detect jack
   insertion, removal.
 
 Available audio endpoints for the audio-routing table:
-- 
2.7.3

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

* Re: [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation
  2016-10-25 17:38 ` [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation H. Nikolaus Schaller
@ 2016-10-26  7:59   ` Peter Ujfalusi
  2016-10-31  3:07   ` Rob Herring
  1 sibling, 0 replies; 9+ messages in thread
From: Peter Ujfalusi @ 2016-10-26  7:59 UTC (permalink / raw)
  To: H. Nikolaus Schaller, Benoît Cousson, Tony Lindgren,
	Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala,
	Russell King, Russell King
  Cc: devicetree, letux-kernel, linux-kernel, ldewangan, kernel, marek,
	linux-omap

On 10/25/16 20:38, H. Nikolaus Schaller wrote:
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>

Acked-by: Peter Ujfalusi <perter.ujfalusi@ti.com>

> ---
>  Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt b/Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt
> index fd40c85..462b04e8 100644
> --- a/Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt
> +++ b/Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt
> @@ -12,7 +12,7 @@ Required properties:
>  
>  Optional properties:
>  - ti,dmic: phandle for the OMAP dmic node if the machine have it connected
> -- ti,jack_detection: Need to be present if the board capable to detect jack
> +- ti,jack-detection: Need to be present if the board capable to detect jack
>    insertion, removal.
>  
>  Available audio endpoints for the audio-routing table:
> 


-- 
Péter

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

* Re: [PATCH resent v3 2/3] dts: omap5: board-common: enable twl6040 headset jack detection
  2016-10-25 17:38 ` [PATCH resent v3 2/3] dts: omap5: board-common: enable twl6040 headset jack detection H. Nikolaus Schaller
@ 2016-10-26  8:02   ` Peter Ujfalusi
  2016-10-28 13:11     ` Tony Lindgren
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Ujfalusi @ 2016-10-26  8:02 UTC (permalink / raw)
  To: H. Nikolaus Schaller, Benoît Cousson, Tony Lindgren,
	Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala,
	Russell King, Russell King
  Cc: devicetree, letux-kernel, linux-kernel, ldewangan, kernel, marek,
	linux-omap

On 10/25/16 20:38, H. Nikolaus Schaller wrote:
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>

I'm not sure if this is valid for igep0500 as I have not seen the schematics.
It might be safer to enable the jack detection only for omap5-uevm?

In any case:
Reviewed-by: Peter Ujfalusi <peter.ujfalusi@ti.com>

> ---
>  arch/arm/boot/dts/omap5-board-common.dtsi | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/boot/dts/omap5-board-common.dtsi b/arch/arm/boot/dts/omap5-board-common.dtsi
> index b04adee..ab60a8e 100644
> --- a/arch/arm/boot/dts/omap5-board-common.dtsi
> +++ b/arch/arm/boot/dts/omap5-board-common.dtsi
> @@ -124,6 +124,7 @@
>  		compatible = "ti,abe-twl6040";
>  		ti,model = "omap5-uevm";
>  
> +		ti,jack-detection;
>  		ti,mclk-freq = <19200000>;
>  
>  		ti,mcpdm = <&mcpdm>;
> 


-- 
Péter

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

* Re: [PATCH resent v3 2/3] dts: omap5: board-common: enable twl6040 headset jack detection
  2016-10-26  8:02   ` Peter Ujfalusi
@ 2016-10-28 13:11     ` Tony Lindgren
  0 siblings, 0 replies; 9+ messages in thread
From: Tony Lindgren @ 2016-10-28 13:11 UTC (permalink / raw)
  To: Peter Ujfalusi
  Cc: H. Nikolaus Schaller, Benoît Cousson, Rob Herring,
	Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, Russell King,
	Russell King, devicetree, letux-kernel, linux-kernel, ldewangan,
	kernel, marek, linux-omap

* Peter Ujfalusi <peter.ujfalusi@ti.com> [161026 01:03]:
> On 10/25/16 20:38, H. Nikolaus Schaller wrote:
> > Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
> 
> I'm not sure if this is valid for igep0500 as I have not seen the schematics.
> It might be safer to enable the jack detection only for omap5-uevm?

FYI it's pretty much the same design and audio worked fine on igepv5
the last time I tested it. I guess a good reason to drill a new hole
to my pi-top case for the audio jack :)

Tony

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

* Re: [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation
  2016-10-25 17:38 ` [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation H. Nikolaus Schaller
  2016-10-26  7:59   ` Peter Ujfalusi
@ 2016-10-31  3:07   ` Rob Herring
  2016-11-07 23:29     ` Tony Lindgren
  1 sibling, 1 reply; 9+ messages in thread
From: Rob Herring @ 2016-10-31  3:07 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Benoît Cousson, Tony Lindgren, Pawel Moll, Mark Rutland,
	Ian Campbell, Kumar Gala, Russell King, Russell King, ldewangan,
	linux-omap, devicetree, linux-kernel, marek, kernel,
	letux-kernel

On Tue, Oct 25, 2016 at 07:38:11PM +0200, H. Nikolaus Schaller wrote:
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
> ---
>  Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Rob Herring <robh@kernel.org>

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

* Re: [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation
  2016-10-31  3:07   ` Rob Herring
@ 2016-11-07 23:29     ` Tony Lindgren
  0 siblings, 0 replies; 9+ messages in thread
From: Tony Lindgren @ 2016-11-07 23:29 UTC (permalink / raw)
  To: Rob Herring
  Cc: H. Nikolaus Schaller, Benoît Cousson, Pawel Moll,
	Mark Rutland, Ian Campbell, Kumar Gala, Russell King,
	Russell King, ldewangan, linux-omap, devicetree, linux-kernel,
	marek, kernel, letux-kernel

* Rob Herring <robh@kernel.org> [161030 20:08]:
> On Tue, Oct 25, 2016 at 07:38:11PM +0200, H. Nikolaus Schaller wrote:
> > Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
> > ---
> >  Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Acked-by: Rob Herring <robh@kernel.org>

Applying all three into omap-for-v4.9/fixes so we can
avoid the typo getting used somewhere.

Regards,

Tony

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

end of thread, other threads:[~2016-11-07 23:30 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-25 17:38 [PATCH resent v3 0/3] DT Fixes for OMAP5 boards H. Nikolaus Schaller
2016-10-25 17:38 ` [PATCH resent v3 1/3] dts: omap5: board-common: add phandle to reference Palmas gpadc H. Nikolaus Schaller
2016-10-25 17:38 ` [PATCH resent v3 2/3] dts: omap5: board-common: enable twl6040 headset jack detection H. Nikolaus Schaller
2016-10-26  8:02   ` Peter Ujfalusi
2016-10-28 13:11     ` Tony Lindgren
2016-10-25 17:38 ` [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation H. Nikolaus Schaller
2016-10-26  7:59   ` Peter Ujfalusi
2016-10-31  3:07   ` Rob Herring
2016-11-07 23:29     ` Tony Lindgren

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).