linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: dts: imx6qdl-sabresd: Add asrc support for wm8962 sound card
@ 2021-04-29  2:50 Shengjiu Wang
  2021-04-29  2:50 ` [PATCH 2/2] ARM: dts: imx6qdl-sabresd: Configure the gpio for hp detect Shengjiu Wang
  0 siblings, 1 reply; 4+ messages in thread
From: Shengjiu Wang @ 2021-04-29  2:50 UTC (permalink / raw)
  To: robh+dt, shawnguo, s.hauer, kernel, festevam, linux-imx,
	devicetree, linux-kernel, linux-arm-kernel, shengjiu.wang

Add asrc support for wm8962 sound card.

Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
---
 arch/arm/boot/dts/imx6qdl-sabresd.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/imx6qdl-sabresd.dtsi b/arch/arm/boot/dts/imx6qdl-sabresd.dtsi
index f824c9abd11a..d20eaac6c5d6 100644
--- a/arch/arm/boot/dts/imx6qdl-sabresd.dtsi
+++ b/arch/arm/boot/dts/imx6qdl-sabresd.dtsi
@@ -99,6 +99,7 @@ sound {
 		model = "wm8962-audio";
 		ssi-controller = <&ssi2>;
 		audio-codec = <&codec>;
+		audio-asrc = <&asrc>;
 		audio-routing =
 			"Headphone Jack", "HPOUTL",
 			"Headphone Jack", "HPOUTR",
-- 
2.27.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 2/2] ARM: dts: imx6qdl-sabresd: Configure the gpio for hp detect
  2021-04-29  2:50 [PATCH 1/2] ARM: dts: imx6qdl-sabresd: Add asrc support for wm8962 sound card Shengjiu Wang
@ 2021-04-29  2:50 ` Shengjiu Wang
  2021-05-03 14:38   ` Fabio Estevam
  0 siblings, 1 reply; 4+ messages in thread
From: Shengjiu Wang @ 2021-04-29  2:50 UTC (permalink / raw)
  To: robh+dt, shawnguo, s.hauer, kernel, festevam, linux-imx,
	devicetree, linux-kernel, linux-arm-kernel, shengjiu.wang

Configure the gpio for hp detect for wm8962 sound card

Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
---
 arch/arm/boot/dts/imx6qdl-sabresd.dtsi | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/boot/dts/imx6qdl-sabresd.dtsi b/arch/arm/boot/dts/imx6qdl-sabresd.dtsi
index d20eaac6c5d6..4728dc612912 100644
--- a/arch/arm/boot/dts/imx6qdl-sabresd.dtsi
+++ b/arch/arm/boot/dts/imx6qdl-sabresd.dtsi
@@ -97,6 +97,8 @@ sound {
 		compatible = "fsl,imx6q-sabresd-wm8962",
 			   "fsl,imx-audio-wm8962";
 		model = "wm8962-audio";
+		pinctrl-names = "default";
+		pinctrl-0 = <&pinctrl_hp>;
 		ssi-controller = <&ssi2>;
 		audio-codec = <&codec>;
 		audio-asrc = <&asrc>;
@@ -546,6 +548,13 @@ MX6QDL_PAD_KEY_ROW2__HDMI_TX_CEC_LINE	0x1f8b0
 			>;
 		};
 
+		pinctrl_hp: hpgrp {
+			fsl,pins = <
+				MX6QDL_PAD_SD3_RST__GPIO7_IO08          0x80000000
+				MX6QDL_PAD_GPIO_9__GPIO1_IO09           0x80000000
+			>;
+		};
+
 		pinctrl_i2c1: i2c1grp {
 			fsl,pins = <
 				MX6QDL_PAD_CSI0_DAT8__I2C1_SDA		0x4001b8b1
-- 
2.27.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 2/2] ARM: dts: imx6qdl-sabresd: Configure the gpio for hp detect
  2021-04-29  2:50 ` [PATCH 2/2] ARM: dts: imx6qdl-sabresd: Configure the gpio for hp detect Shengjiu Wang
@ 2021-05-03 14:38   ` Fabio Estevam
  2021-05-06  3:11     ` Shengjiu Wang
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2021-05-03 14:38 UTC (permalink / raw)
  To: Shengjiu Wang
  Cc: Rob Herring, Shawn Guo, Sascha Hauer, Sascha Hauer,
	NXP Linux Team,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	linux-kernel,
	moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE,
	Shengjiu Wang

Hi Shengjiu,

On Thu, Apr 29, 2021 at 12:06 AM Shengjiu Wang <shengjiu.wang@nxp.com> wrote:

> +               pinctrl_hp: hpgrp {
> +                       fsl,pins = <
> +                               MX6QDL_PAD_SD3_RST__GPIO7_IO08          0x80000000
> +                               MX6QDL_PAD_GPIO_9__GPIO1_IO09           0x80000000

Please avoid using 0x80000000. Use the real PAD_CTL value instead.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 2/2] ARM: dts: imx6qdl-sabresd: Configure the gpio for hp detect
  2021-05-03 14:38   ` Fabio Estevam
@ 2021-05-06  3:11     ` Shengjiu Wang
  0 siblings, 0 replies; 4+ messages in thread
From: Shengjiu Wang @ 2021-05-06  3:11 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: Shengjiu Wang, Rob Herring, Shawn Guo, Sascha Hauer,
	Sascha Hauer, NXP Linux Team,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	linux-kernel,
	moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE

On Mon, May 3, 2021 at 10:38 PM Fabio Estevam <festevam@gmail.com> wrote:
>
> Hi Shengjiu,
>
> On Thu, Apr 29, 2021 at 12:06 AM Shengjiu Wang <shengjiu.wang@nxp.com> wrote:
>
> > +               pinctrl_hp: hpgrp {
> > +                       fsl,pins = <
> > +                               MX6QDL_PAD_SD3_RST__GPIO7_IO08          0x80000000
> > +                               MX6QDL_PAD_GPIO_9__GPIO1_IO09           0x80000000
>
> Please avoid using 0x80000000. Use the real PAD_CTL value instead.

Ok, will send v2.

best regards
wang shengjiu

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2021-05-06  3:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-29  2:50 [PATCH 1/2] ARM: dts: imx6qdl-sabresd: Add asrc support for wm8962 sound card Shengjiu Wang
2021-04-29  2:50 ` [PATCH 2/2] ARM: dts: imx6qdl-sabresd: Configure the gpio for hp detect Shengjiu Wang
2021-05-03 14:38   ` Fabio Estevam
2021-05-06  3:11     ` Shengjiu Wang

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