All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] ASoC: codecs: ES8389: Modify the ES8389 driver
@ 2026-06-09  3:06 Zhang Yi
  2026-06-09  3:06 ` [PATCH 1/7] ASoC: codecs: ES8389: Modify volatile_register Zhang Yi
                   ` (6 more replies)
  0 siblings, 7 replies; 23+ messages in thread
From: Zhang Yi @ 2026-06-09  3:06 UTC (permalink / raw)
  To: alsa-devel, broonie, devicetree; +Cc: tiwai, robh, krzk+dt, conor+dt, Zhang Yi

v0:
  - Modify volatile_register
  - Add MCLK_MASK to resolve the issue related to mclk_src
  - Modify configuration about clock
  - Add private members about HPF at driver and devicetree
  - Add INPUT MUX at route

Zhang Yi (7):
  ASoC: codecs: ES8389: Modify volatile_register
  ASoC: codecs: ES8389: Fix the issue about mclk_src
  ASoC: codecs: ES8389: Modify the clock table
  ASoC: codecs: ES8389: Modify the initial configuration
  ASoC: codecs: ES8389: Add private members related to HPF
  ASoC: codecs: ES8389: Add INPUTL MUX and INPUTR MUX
  ASoC: dt-bindings: ES8389: Add members about HPF and clock

 .../bindings/sound/everest,es8389.yaml        |  23 +++
 sound/soc/codecs/es8389.c                     | 136 +++++++++++++-----
 sound/soc/codecs/es8389.h                     |   6 +-
 3 files changed, 125 insertions(+), 40 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 23+ messages in thread
* [PATCH 0/7] ASoC: codecs: ES8389: Modify the ES8389 driver
@ 2026-06-09  7:17 Zhang Yi
  2026-06-09  7:17 ` [PATCH 7/7] ASoC: dt-bindings: ES8389: Add members about HPF and clock Zhang Yi
  0 siblings, 1 reply; 23+ messages in thread
From: Zhang Yi @ 2026-06-09  7:17 UTC (permalink / raw)
  To: alsa-devel, broonie, devicetree; +Cc: tiwai, robh, krzk+dt, conor+dt, Zhang Yi

v0:
  - Modify volatile_register
  - Add MCLK_MASK to resolve the issue related to mclk_src
  - Modify configuration about clock
  - Add private members about HPF at driver and devicetree
  - Add INPUT MUX at route

Zhang Yi (7):
  ASoC: codecs: ES8389: Modify volatile_register
  ASoC: codecs: ES8389: Fix the issue about mclk_src
  ASoC: codecs: ES8389: Modify the clock table
  ASoC: codecs: ES8389: Modify the initial configuration
  ASoC: codecs: ES8389: Add private members related to HPF
  ASoC: codecs: ES8389: Add INPUTL MUX and INPUTR MUX
  ASoC: dt-bindings: ES8389: Add members about HPF and clock

 .../bindings/sound/everest,es8389.yaml        |  23 +++
 sound/soc/codecs/es8389.c                     | 141 +++++++++++++-----
 sound/soc/codecs/es8389.h                     |   6 +-
 3 files changed, 128 insertions(+), 42 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 23+ messages in thread
* Re: [PATCH 7/7] ASoC: dt-bindings: ES8389: Add members about HPF and clock
@ 2026-06-09 11:46 zhangyi
  0 siblings, 0 replies; 23+ messages in thread
From: zhangyi @ 2026-06-09 11:46 UTC (permalink / raw)
  To: krzk
  Cc: alsa-devel, broonie, conor+dt, devicetree, krzk+dt, robh, tiwai,
	zhangyi

> Please organize the patch documenting the ABI (DT bindings)

> before the patch using that ABI.

> See also:
https://elixir.bootlin.com/linux/v6.14-rc6/source/Documentation/devicetree/b
indings/submitting-patches.rst#L46

 

Thanks for the reminder

 

> > +  everest,mclk-from-sclk:

> > +    $ref: /schemas/types.yaml#/definitions/flag

> > +    description:

> > +      Indicates that SCLK is used as the internal clock.

> 

> And what happens with mclk in such case? Is it still wired?

 

Yes, setting mclk-from-sclk does not affect the MCLK connection.

 

> > +

> > +  everest,hpfl:

> > +    $ref: /schemas/types.yaml#/definitions/uint8

> > +    description:

> > +      the HPF value of ADCL.

> 

> Is HPF value in dB? If so, use proper unit suffix and proper units.

 

No, the values here correspond to the values in the registers.

The value is not in dB

 

> >          vddd-supply = <&vdd3v3>;

> >          vdda-supply = <&vdd3v3>;

> > +        everest,hpfl = [0a];

> 

> <0xa>? What did you want to say here?

 

I just wanted to give an example to show how to set the values of
everest,hpfl to 0x0a.

 


^ permalink raw reply	[flat|nested] 23+ messages in thread
* Re: [PATCH 7/7] ASoC: dt-bindings: ES8389: Add members about HPF and clock
@ 2026-06-10  9:12 zhangyi
  0 siblings, 0 replies; 23+ messages in thread
From: zhangyi @ 2026-06-10  9:12 UTC (permalink / raw)
  To: krzk; +Cc: alsa-devel, broonie, conor+dt, devicetree, krzk+dt, robh, tiwai

> You already sent v1 and received feedback.
> 
> You just completely ignored it

When I submitted the v0 patch, I received feedback and suggestions from
Sashiko.
I wasn't sure how to handle Sashiko's feedback, and I mistakenly assumed
that if my patch didn't pass Sashiko's tests, you wouldn't receive it. 
So, after modifying the code based on Sashiko's reasonable suggestions, I
submitted a patch with the same version ID.
As a result, you received two consecutive patches from me. I didn't mean to
ignore your valuable feedback, and I apologize for this.

So, when I receive feedback from Sashiko, do I need to wait for the
maintainers to provide their feedback before incorporating the changes into
the next version's patch?


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

end of thread, other threads:[~2026-06-13  7:37 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-09  3:06 [PATCH 0/7] ASoC: codecs: ES8389: Modify the ES8389 driver Zhang Yi
2026-06-09  3:06 ` [PATCH 1/7] ASoC: codecs: ES8389: Modify volatile_register Zhang Yi
2026-06-09  3:17   ` sashiko-bot
2026-06-09  3:06 ` [PATCH 2/7] ASoC: codecs: ES8389: Fix the issue about mclk_src Zhang Yi
2026-06-09  3:20   ` sashiko-bot
2026-06-09  7:34   ` Krzysztof Kozlowski
2026-06-10 10:06     ` Zhang Yi
2026-06-13  7:33       ` Krzysztof Kozlowski
2026-06-09  3:06 ` [PATCH 3/7] ASoC: codecs: ES8389: Modify the clock table Zhang Yi
2026-06-09  3:19   ` sashiko-bot
2026-06-09  3:06 ` [PATCH 4/7] ASoC: codecs: ES8389: Modify the initial configuration Zhang Yi
2026-06-09  3:13   ` sashiko-bot
2026-06-09  3:06 ` [PATCH 5/7] ASoC: codecs: ES8389: Add private members related to HPF Zhang Yi
2026-06-09  3:06 ` [PATCH 6/7] ASoC: codecs: ES8389: Add INPUTL MUX and INPUTR MUX Zhang Yi
2026-06-09  3:21   ` sashiko-bot
2026-06-09  3:06 ` [PATCH 7/7] ASoC: dt-bindings: ES8389: Add members about HPF and clock Zhang Yi
2026-06-09  7:33   ` Krzysztof Kozlowski
2026-06-10  9:58     ` Zhang Yi
2026-06-13  7:37       ` Krzysztof Kozlowski
  -- strict thread matches above, loose matches on Subject: below --
2026-06-09  7:17 [PATCH 0/7] ASoC: codecs: ES8389: Modify the ES8389 driver Zhang Yi
2026-06-09  7:17 ` [PATCH 7/7] ASoC: dt-bindings: ES8389: Add members about HPF and clock Zhang Yi
2026-06-10  8:53   ` Krzysztof Kozlowski
2026-06-09 11:46 zhangyi
2026-06-10  9:12 zhangyi

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.