All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ASoC: rt5682: Add a new property for the DMIC clock driving
@ 2020-11-13  5:53 Oder Chiou
  2020-11-13  5:54 ` [PATCH 2/2] ASoC: rt5682: Add a new property to the device tree Oder Chiou
  2020-11-13 16:06 ` [PATCH 1/2] ASoC: rt5682: Add a new property for the DMIC clock driving Mark Brown
  0 siblings, 2 replies; 5+ messages in thread
From: Oder Chiou @ 2020-11-13  5:53 UTC (permalink / raw)
  To: broonie, lgirdwood
  Cc: Oder Chiou, jack.yu, alsa-devel, cychiang, albertchen,
	derek.fang, shumingf, flove

The patch adds a new property to set the DMIC clock driving.

Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
---
 include/sound/rt5682.h        |  1 +
 sound/soc/codecs/rt5682-i2c.c |  5 +++++
 sound/soc/codecs/rt5682.c     |  3 +++
 sound/soc/codecs/rt5682.h     | 14 ++++++++++++++
 4 files changed, 23 insertions(+)

diff --git a/include/sound/rt5682.h b/include/sound/rt5682.h
index e1f790561ac1..3900a07e3935 100644
--- a/include/sound/rt5682.h
+++ b/include/sound/rt5682.h
@@ -40,6 +40,7 @@ struct rt5682_platform_data {
 	unsigned int btndet_delay;
 	unsigned int dmic_clk_rate;
 	unsigned int dmic_delay;
+	bool dmic_clk_driving_high;
 
 	const char *dai_clk_names[RT5682_DAI_NUM_CLKS];
 };
diff --git a/sound/soc/codecs/rt5682-i2c.c b/sound/soc/codecs/rt5682-i2c.c
index 6b4e0eb30c89..37d13120f5ba 100644
--- a/sound/soc/codecs/rt5682-i2c.c
+++ b/sound/soc/codecs/rt5682-i2c.c
@@ -221,6 +221,11 @@ static int rt5682_i2c_probe(struct i2c_client *i2c,
 		case RT5682_DMIC1_CLK_GPIO3: /* share with BCLK2 */
 			regmap_update_bits(rt5682->regmap, RT5682_GPIO_CTRL_1,
 				RT5682_GP3_PIN_MASK, RT5682_GP3_PIN_DMIC_CLK);
+			if (rt5682->pdata.dmic_clk_driving_high)
+				regmap_update_bits(rt5682->regmap,
+					RT5682_PAD_DRIVING_CTRL,
+					RT5682_PAD_DRV_GP3_MASK,
+					2 << RT5682_PAD_DRV_GP3_SFT);
 			break;
 
 		default:
diff --git a/sound/soc/codecs/rt5682.c b/sound/soc/codecs/rt5682.c
index a9acce7b6cca..f299b30f4f59 100644
--- a/sound/soc/codecs/rt5682.c
+++ b/sound/soc/codecs/rt5682.c
@@ -2989,6 +2989,9 @@ int rt5682_parse_dt(struct rt5682_priv *rt5682, struct device *dev)
 			 rt5682->pdata.dai_clk_names[RT5682_DAI_WCLK_IDX],
 			 rt5682->pdata.dai_clk_names[RT5682_DAI_BCLK_IDX]);
 
+	rt5682->pdata.dmic_clk_driving_high = device_property_read_bool(dev,
+		"realtek,dmic-clk-driving-high");
+
 	return 0;
 }
 EXPORT_SYMBOL_GPL(rt5682_parse_dt);
diff --git a/sound/soc/codecs/rt5682.h b/sound/soc/codecs/rt5682.h
index 354acd735ef4..99b85cfe6248 100644
--- a/sound/soc/codecs/rt5682.h
+++ b/sound/soc/codecs/rt5682.h
@@ -1271,6 +1271,20 @@
 #define RT5682_CP_CLK_HP_300KHZ			(0x2 << 4)
 #define RT5682_CP_CLK_HP_600KHZ			(0x3 << 4)
 
+/* Pad Driving Control (0x0136) */
+#define RT5682_PAD_DRV_GP1_MASK			(0x3 << 14)
+#define RT5682_PAD_DRV_GP1_SFT			14
+#define RT5682_PAD_DRV_GP2_MASK			(0x3 << 12)
+#define RT5682_PAD_DRV_GP2_SFT			12
+#define RT5682_PAD_DRV_GP3_MASK			(0x3 << 10)
+#define RT5682_PAD_DRV_GP3_SFT			10
+#define RT5682_PAD_DRV_GP4_MASK			(0x3 << 8)
+#define RT5682_PAD_DRV_GP4_SFT			8
+#define RT5682_PAD_DRV_GP5_MASK			(0x3 << 6)
+#define RT5682_PAD_DRV_GP5_SFT			6
+#define RT5682_PAD_DRV_GP6_MASK			(0x3 << 4)
+#define RT5682_PAD_DRV_GP6_SFT			4
+
 /* Chopper and Clock control for DAC (0x013a)*/
 #define RT5682_CKXEN_DAC1_MASK			(0x1 << 13)
 #define RT5682_CKXEN_DAC1_SFT			13
-- 
2.29.0


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

* [PATCH 2/2] ASoC: rt5682: Add a new property to the device tree.
  2020-11-13  5:53 [PATCH 1/2] ASoC: rt5682: Add a new property for the DMIC clock driving Oder Chiou
@ 2020-11-13  5:54 ` Oder Chiou
  2020-11-13 14:54   ` Pierre-Louis Bossart
  2020-11-13 16:06 ` [PATCH 1/2] ASoC: rt5682: Add a new property for the DMIC clock driving Mark Brown
  1 sibling, 1 reply; 5+ messages in thread
From: Oder Chiou @ 2020-11-13  5:54 UTC (permalink / raw)
  To: broonie, lgirdwood
  Cc: Oder Chiou, jack.yu, alsa-devel, cychiang, albertchen,
	derek.fang, shumingf, flove

The patch adds a new property to the drice tree for the DMIC clcok driving.

Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
---
 Documentation/devicetree/bindings/sound/rt5682.txt | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/sound/rt5682.txt b/Documentation/devicetree/bindings/sound/rt5682.txt
index 707fa98d1310..9c5fadb6ac82 100644
--- a/Documentation/devicetree/bindings/sound/rt5682.txt
+++ b/Documentation/devicetree/bindings/sound/rt5682.txt
@@ -44,6 +44,8 @@ Optional properties:
 - realtek,dmic-delay-ms : Set the delay time (ms) for the requirement of
   the particular DMIC.
 
+- realtek,dmic-clk-driving-high : Set the high drving of the DMIC clock out.
+
 Pins on the device (for linking into audio routes) for RT5682:
 
   * DMIC L1
-- 
2.29.0


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

* Re: [PATCH 2/2] ASoC: rt5682: Add a new property to the device tree.
  2020-11-13  5:54 ` [PATCH 2/2] ASoC: rt5682: Add a new property to the device tree Oder Chiou
@ 2020-11-13 14:54   ` Pierre-Louis Bossart
  2020-11-16  1:31     ` Oder Chiou
  0 siblings, 1 reply; 5+ messages in thread
From: Pierre-Louis Bossart @ 2020-11-13 14:54 UTC (permalink / raw)
  To: Oder Chiou, broonie, lgirdwood
  Cc: jack.yu, alsa-devel, cychiang, albertchen, derek.fang, shumingf, flove

Couple of typos you may want to fix

On 11/12/20 11:54 PM, Oder Chiou wrote:
> The patch adds a new property to the drice tree for the DMIC clcok driving.

device?

> 
> Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
> ---
>   Documentation/devicetree/bindings/sound/rt5682.txt | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/sound/rt5682.txt b/Documentation/devicetree/bindings/sound/rt5682.txt
> index 707fa98d1310..9c5fadb6ac82 100644
> --- a/Documentation/devicetree/bindings/sound/rt5682.txt
> +++ b/Documentation/devicetree/bindings/sound/rt5682.txt
> @@ -44,6 +44,8 @@ Optional properties:
>   - realtek,dmic-delay-ms : Set the delay time (ms) for the requirement of
>     the particular DMIC.
>   
> +- realtek,dmic-clk-driving-high : Set the high drving of the DMIC clock out.

driving?

I must admit I actually don't understand what 'dmic-clk-driving-high' 
means, a clock is by definition dual-phase and we use both rising and 
falling edges for the mics.

Or driving high when idle?

> +
>   Pins on the device (for linking into audio routes) for RT5682:
>   
>     * DMIC L1
> 

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

* Re: [PATCH 1/2] ASoC: rt5682: Add a new property for the DMIC clock driving
  2020-11-13  5:53 [PATCH 1/2] ASoC: rt5682: Add a new property for the DMIC clock driving Oder Chiou
  2020-11-13  5:54 ` [PATCH 2/2] ASoC: rt5682: Add a new property to the device tree Oder Chiou
@ 2020-11-13 16:06 ` Mark Brown
  1 sibling, 0 replies; 5+ messages in thread
From: Mark Brown @ 2020-11-13 16:06 UTC (permalink / raw)
  To: lgirdwood, Oder Chiou
  Cc: jack.yu, alsa-devel, cychiang, albertchen, derek.fang, shumingf, flove

On Fri, 13 Nov 2020 13:53:59 +0800, Oder Chiou wrote:
> The patch adds a new property to set the DMIC clock driving.

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/2] ASoC: rt5682: Add a new property for the DMIC clock driving
      commit: 7416f6bc5fcb1fe6700391c94b59ac1c744ad9d1
[2/2] ASoC: rt5682: Add a new property to the device tree.
      commit: 33ee67b47ba09fc30840668c9ccec5ad18c94de0

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

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

* RE: [PATCH 2/2] ASoC: rt5682: Add a new property to the device tree.
  2020-11-13 14:54   ` Pierre-Louis Bossart
@ 2020-11-16  1:31     ` Oder Chiou
  0 siblings, 0 replies; 5+ messages in thread
From: Oder Chiou @ 2020-11-16  1:31 UTC (permalink / raw)
  To: 'Pierre-Louis Bossart', broonie, lgirdwood
  Cc: Jack Yu, alsa-devel, cychiang, Albert Chen,
	Derek [方德義],
	Shuming [范書銘], Flove(HsinFu)

> > diff --git a/Documentation/devicetree/bindings/sound/rt5682.txt
> > b/Documentation/devicetree/bindings/sound/rt5682.txt
> > index 707fa98d1310..9c5fadb6ac82 100644
> > --- a/Documentation/devicetree/bindings/sound/rt5682.txt
> > +++ b/Documentation/devicetree/bindings/sound/rt5682.txt
> > @@ -44,6 +44,8 @@ Optional properties:
> >   - realtek,dmic-delay-ms : Set the delay time (ms) for the requirement of
> >     the particular DMIC.
> >
> > +- realtek,dmic-clk-driving-high : Set the high drving of the DMIC clock out.
> 
> driving?
> 
> I must admit I actually don't understand what 'dmic-clk-driving-high'
> means, a clock is by definition dual-phase and we use both rising and falling
> edges for the mics.
> 
> Or driving high when idle?
That reduces the rising time and falling time while the clock is output,
and not driving high always when idle, thanks.

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

end of thread, other threads:[~2020-11-16  1:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-13  5:53 [PATCH 1/2] ASoC: rt5682: Add a new property for the DMIC clock driving Oder Chiou
2020-11-13  5:54 ` [PATCH 2/2] ASoC: rt5682: Add a new property to the device tree Oder Chiou
2020-11-13 14:54   ` Pierre-Louis Bossart
2020-11-16  1:31     ` Oder Chiou
2020-11-13 16:06 ` [PATCH 1/2] ASoC: rt5682: Add a new property for the DMIC clock driving Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.