2024-01-24 11:29:31

by Richard Fitzgerald

[permalink] [raw]
Subject: [PATCH 0/2] ALSA: hda: Move component binding support into separate library

The Cirrus Logic amplifiers are currently paired with Realtek HDA codecs.
But they could be used with other codecs. To prepare for this, these two
patches move the manager side of the component binding out of the Realtek
driver into a library module.

The first patch tweaks the CS35L41 code so that it is not hardcoded to
CS35L41, and changes the TAS2781 handling so that it re-uses that code
instead of having a near-identical copy of it.

Can someone please test that these two patches don't break TAS2781?
I have checked that they should work in theory but I don't have hardware
to test on.

Richard Fitzgerald (2):
ALSA: hda: realtek: Re-work CS35L41 fixups to re-use for other amps
ALSA: hda: realtek: Move hda_component implementation to module

MAINTAINERS | 1 +
sound/pci/hda/Kconfig | 4 +
sound/pci/hda/Makefile | 2 +
sound/pci/hda/hda_component.c | 169 ++++++++++++++++++++++++++
sound/pci/hda/hda_component.h | 59 +++++++++
sound/pci/hda/patch_realtek.c | 217 ++++------------------------------
6 files changed, 261 insertions(+), 191 deletions(-)
create mode 100644 sound/pci/hda/hda_component.c

--
2.30.2



2024-01-24 14:21:55

by Takashi Iwai

[permalink] [raw]
Subject: Re: [PATCH 0/2] ALSA: hda: Move component binding support into separate library

On Wed, 24 Jan 2024 12:26:05 +0100,
Richard Fitzgerald wrote:
>
> The Cirrus Logic amplifiers are currently paired with Realtek HDA codecs.
> But they could be used with other codecs. To prepare for this, these two
> patches move the manager side of the component binding out of the Realtek
> driver into a library module.
>
> The first patch tweaks the CS35L41 code so that it is not hardcoded to
> CS35L41, and changes the TAS2781 handling so that it re-uses that code
> instead of having a near-identical copy of it.
>
> Can someone please test that these two patches don't break TAS2781?
> I have checked that they should work in theory but I don't have hardware
> to test on.
>
> Richard Fitzgerald (2):
> ALSA: hda: realtek: Re-work CS35L41 fixups to re-use for other amps
> ALSA: hda: realtek: Move hda_component implementation to module

Through a quick glance, it looks good.
I'll wait for the verification for TAS codec for a while.


thanks,

Takashi

2024-01-24 21:55:42

by Gergo Koteles

[permalink] [raw]
Subject: Re: [PATCH 0/2] ALSA: hda: Move component binding support into separate library

Hi Richard,

On Wed, 2024-01-24 at 11:26 +0000, Richard Fitzgerald wrote:
> The Cirrus Logic amplifiers are currently paired with Realtek HDA codecs.
> But they could be used with other codecs. To prepare for this, these two
> patches move the manager side of the component binding out of the Realtek
> driver into a library module.
>
> The first patch tweaks the CS35L41 code so that it is not hardcoded to
> CS35L41, and changes the TAS2781 handling so that it re-uses that code
> instead of having a near-identical copy of it.
>
> Can someone please test that these two patches don't break TAS2781?
> I have checked that they should work in theory but I don't have hardware
> to test on.
>

It works on a Lenovo Yoga 7 14ARB7 laptop.

Tested-by: Gergo Koteles <[email protected]>

Regards,
Gergo

> Richard Fitzgerald (2):
> ALSA: hda: realtek: Re-work CS35L41 fixups to re-use for other amps
> ALSA: hda: realtek: Move hda_component implementation to module
>
> MAINTAINERS | 1 +
> sound/pci/hda/Kconfig | 4 +
> sound/pci/hda/Makefile | 2 +
> sound/pci/hda/hda_component.c | 169 ++++++++++++++++++++++++++
> sound/pci/hda/hda_component.h | 59 +++++++++
> sound/pci/hda/patch_realtek.c | 217 ++++------------------------------
> 6 files changed, 261 insertions(+), 191 deletions(-)
> create mode 100644 sound/pci/hda/hda_component.c
>


2024-01-25 09:42:43

by Takashi Iwai

[permalink] [raw]
Subject: Re: [PATCH 0/2] ALSA: hda: Move component binding support into separate library

On Wed, 24 Jan 2024 14:43:47 +0100,
Takashi Iwai wrote:
>
> On Wed, 24 Jan 2024 12:26:05 +0100,
> Richard Fitzgerald wrote:
> >
> > The Cirrus Logic amplifiers are currently paired with Realtek HDA codecs.
> > But they could be used with other codecs. To prepare for this, these two
> > patches move the manager side of the component binding out of the Realtek
> > driver into a library module.
> >
> > The first patch tweaks the CS35L41 code so that it is not hardcoded to
> > CS35L41, and changes the TAS2781 handling so that it re-uses that code
> > instead of having a near-identical copy of it.
> >
> > Can someone please test that these two patches don't break TAS2781?
> > I have checked that they should work in theory but I don't have hardware
> > to test on.
> >
> > Richard Fitzgerald (2):
> > ALSA: hda: realtek: Re-work CS35L41 fixups to re-use for other amps
> > ALSA: hda: realtek: Move hda_component implementation to module
>
> Through a quick glance, it looks good.
> I'll wait for the verification for TAS codec for a while.

Now applied to for-next branch.


thanks,

Takashi