From: Takashi Iwai <tiwai@suse.de>
To: Jackie Dong <xy-jackie@139.com>
Cc: ike.pan@canonical.com, hdegoede@redhat.com,
ilpo.jarvinen@linux.intel.com, perex@perex.cz, tiwai@suse.com,
bo.liu@senarytech.com, kovalev@altlinux.org, me@oldherl.one,
jaroslaw.janik@gmail.com, cs@tuxedo.de, songxiebing@kylinos.cn,
kailang@realtek.com, sbinding@opensource.cirrus.com,
simont@opensource.cirrus.com, josh@joshuagrisham.com,
rf@opensource.cirrus.com, linux-kernel@vger.kernel.org,
platform-driver-x86@vger.kernel.org, linux-sound@vger.kernel.org,
mpearson-lenovo@squebb.ca, waterflowdeg@gmail.com,
Jackie Dong <dongeg1@lenovo.com>
Subject: Re: [PATCH 2/2] ALSA : hda : Support for Ideapad hotkey mute LEDs
Date: Sun, 22 Dec 2024 09:49:22 +0100 [thread overview]
Message-ID: <87ed209k6l.wl-tiwai@suse.de> (raw)
In-Reply-To: <87v7veu00f.wl-tiwai@suse.de>
On Fri, 20 Dec 2024 11:22:40 +0100,
Takashi Iwai wrote:
>
> On Thu, 19 Dec 2024 11:15:31 +0100,
> Jackie Dong wrote:
> >
> > New ideapad helper file with support for handling FN key mute LEDS.
> > Update conexant and realtec codec to add LED support.
> >
> > Suggested-by: Mark Pearson <mpearson-lenovo@squebb.ca>
> > Signed-off-by: Jackie Dong <xy-jackie@139.com>
> > Signed-off-by: Jackie Dong <dongeg1@lenovo.com>
> > ---
> > sound/pci/hda/ideapad_hotkey_led_helper.c | 36 +++++++++++++++++++++++
> > sound/pci/hda/patch_conexant.c | 10 +++++++
> > sound/pci/hda/patch_realtek.c | 20 +++++++++++++
> > 3 files changed, 66 insertions(+)
> > create mode 100644 sound/pci/hda/ideapad_hotkey_led_helper.c
> >
> > diff --git a/sound/pci/hda/ideapad_hotkey_led_helper.c b/sound/pci/hda/ideapad_hotkey_led_helper.c
> > new file mode 100644
> > index 000000000000..e49765304cc0
> > --- /dev/null
> > +++ b/sound/pci/hda/ideapad_hotkey_led_helper.c
> > @@ -0,0 +1,36 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > +/*
> > + * Ideapad helper functions for Lenovo Ideapad LED control,
> > + * It should be included from codec driver.
> > + */
> > +
> > +#if IS_ENABLED(CONFIG_IDEAPAD_LAPTOP)
> > +
> > +#include <linux/acpi.h>
> > +#include <linux/leds.h>
> > +
> > +static bool is_ideapad(struct hda_codec *codec)
> > +{
> > + return (codec->core.subsystem_id >> 16 == 0x17aa) &&
> > + (acpi_dev_found("LHK2019") || acpi_dev_found("VPC2004"));
> > +}
> > +
> > +static void hda_fixup_ideapad_acpi(struct hda_codec *codec,
> > + const struct hda_fixup *fix, int action)
> > +{
> > + if (action == HDA_FIXUP_ACT_PRE_PROBE) {
> > + if (!is_ideapad(codec))
> > + return;
> > + snd_hda_gen_add_mute_led_cdev(codec, NULL);
> > + snd_hda_gen_add_micmute_led_cdev(codec, NULL);
> > + }
> > +}
> > +
> > +#else /* CONFIG_IDEAPAD_LAPTOP */
> > +
> > +static void hda_fixup_ideapad_acpi(struct hda_codec *codec,
> > + const struct hda_fixup *fix, int action)
> > +{
> > +}
> > +
> > +#endif /* CONFIG_IDEAPAD_LAPTOP */
> > diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c
> > index 538c37a78a56..127f9a9565c9 100644
> > --- a/sound/pci/hda/patch_conexant.c
> > +++ b/sound/pci/hda/patch_conexant.c
> > @@ -291,6 +291,7 @@ enum {
> > CXT_FIXUP_GPIO1,
> > CXT_FIXUP_ASPIRE_DMIC,
> > CXT_FIXUP_THINKPAD_ACPI,
> > + CXT_FIXUP_IDEAPAD_ACPI,
> > CXT_FIXUP_OLPC_XO,
> > CXT_FIXUP_CAP_MIX_AMP,
> > CXT_FIXUP_TOSHIBA_P105,
> > @@ -313,6 +314,9 @@ enum {
> > /* for hda_fixup_thinkpad_acpi() */
> > #include "thinkpad_helper.c"
> >
> > +/* for hda_fixup_ideapad_acpi() */
> > +#include "ideapad_hotkey_led_helper.c"
> > +
> > static void cxt_fixup_stereo_dmic(struct hda_codec *codec,
> > const struct hda_fixup *fix, int action)
> > {
> > @@ -928,6 +932,10 @@ static const struct hda_fixup cxt_fixups[] = {
> > .type = HDA_FIXUP_FUNC,
> > .v.func = hda_fixup_thinkpad_acpi,
> > },
> > + [CXT_FIXUP_IDEAPAD_ACPI] = {
> > + .type = HDA_FIXUP_FUNC,
> > + .v.func = hda_fixup_ideapad_acpi,
> > + },
> > [CXT_FIXUP_OLPC_XO] = {
> > .type = HDA_FIXUP_FUNC,
> > .v.func = cxt_fixup_olpc_xo,
> > @@ -1120,6 +1128,7 @@ static const struct hda_quirk cxt5066_fixups[] = {
> > SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo G50-70", CXT_FIXUP_STEREO_DMIC),
> > SND_PCI_QUIRK(0x17aa, 0x397b, "Lenovo S205", CXT_FIXUP_STEREO_DMIC),
> > SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", CXT_FIXUP_THINKPAD_ACPI),
> > + SND_PCI_QUIRK_VENDOR(0x17aa, "IdeaPad", CXT_FIXUP_IDEAPAD_ACPI),
>
> I'm afraid that this doesn't work. The former entry with the vendor
> 17aa already hits and it's used as the matched quirk.
>
> You'd need to create a chained quirk entry instead.
That is, add a new enum CXT_FIXUP_LENOVO_XPAD_ACPI, and define an
entry like:
[CXT_FIXUP_LENOVO_XPAD_ACPI] = {
.type = HDA_FIXUP_FUNC,
.v.func = hda_fixup_ideapad_acpi,
.chained = true,
.chain_id = ALC269_FIXUP_THINKPAD_ACPI,
},
then replace the line
SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", CXT_FIXUP_THINKPAD_ACPI),
with
SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad/Ideapad", CXT_FIXUP_LENOVO_XPAD_ACPI),
Care to rewrite the patch in that way, and resubmit v2 patch?
thanks,
Takashi
next prev parent reply other threads:[~2024-12-22 8:49 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-19 10:15 [PATCH 1/2] platform/x86: ideapad-laptop: Support for mic and audio leds Jackie Dong
2024-12-19 10:15 ` [PATCH 2/2] ALSA : hda : Support for Ideapad hotkey mute LEDs Jackie Dong
2024-12-20 10:22 ` Takashi Iwai
2024-12-22 8:49 ` Takashi Iwai [this message]
2024-12-19 11:40 ` [PATCH 1/2] platform/x86: ideapad-laptop: Support for mic and audio leds Ilpo Järvinen
2024-12-22 13:30 ` Jaroslav Kysela
2024-12-22 22:34 ` Armin Wolf
2024-12-24 9:29 ` [External] " Jackie EG1 Dong
2024-12-24 13:09 ` Armin Wolf
2024-12-25 5:03 ` [External] Re: [PATCH 1/2] platform/x86: ideapad-laptop: Supportfor " Jackie Dong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ed209k6l.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=bo.liu@senarytech.com \
--cc=cs@tuxedo.de \
--cc=dongeg1@lenovo.com \
--cc=hdegoede@redhat.com \
--cc=ike.pan@canonical.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=jaroslaw.janik@gmail.com \
--cc=josh@joshuagrisham.com \
--cc=kailang@realtek.com \
--cc=kovalev@altlinux.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=me@oldherl.one \
--cc=mpearson-lenovo@squebb.ca \
--cc=perex@perex.cz \
--cc=platform-driver-x86@vger.kernel.org \
--cc=rf@opensource.cirrus.com \
--cc=sbinding@opensource.cirrus.com \
--cc=simont@opensource.cirrus.com \
--cc=songxiebing@kylinos.cn \
--cc=tiwai@suse.com \
--cc=waterflowdeg@gmail.com \
--cc=xy-jackie@139.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox