From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Colton Jones <cjones1308@pm.me>, Takashi Iwai <tiwai@suse.de>,
Sasha Levin <sashal@kernel.org>,
perex@perex.cz, tiwai@suse.com, linux-sound@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add CS35L41 I2C quirk for ASUS UM3405GA
Date: Mon, 31 Aug 2026 09:29:29 -0400 [thread overview]
Message-ID: <20260831133314.4125787-541-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Colton Jones <cjones1308@pm.me>
[ Upstream commit f61bc797ac0075dbaac5e44238674858e9dbe399 ]
The ASUS Zenbook 14 UM3405GA uses a Realtek ALC294 codec with two
Cirrus Logic CS35L41 speaker amplifiers exposed through the CSC3551 ACPI
device. The machine reports the Realtek subsystem ID 1043:19f4.
Without a PCI quirk, the codec falls back to generic pin matching and the
internal speakers remain silent even though PCM playback completes.
Add the UM3405GA subsystem ID and reuse the same ASUS I2C headset-mic
fixup used by the closely related UM3406HA. That fixup configures the
headset microphone pin and chains to CS35L41 I2C speaker-amp binding.
Signed-off-by: Colton Jones <cjones1308@pm.me>
Link: https://patch.msgid.link/20260615033619.7-1-cjones1308@pm.me
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: ALSA: hda/realtek: Add CS35L41 I2C quirk for
ASUS UM3405GA
**Local tree:** Linux **6.18.44** (`v6.18.44-1-g2736c32da98b9`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Parse the subject line
**Record:** `[ALSA: hda/realtek]` `[Add]` — Add a PCI subsystem ID quirk
for ASUS UM3405GA laptop audio.
### Step 1.2: Parse all commit message tags
**Record:**
- **Link:**
`https://patch.msgid.link/20260615033619.7-1-cjones1308@pm.me`
- **Signed-off-by:** Colton Jones `<cjones1308@pm.me>` (author)
- **Signed-off-by:** Takashi Iwai `<tiwai@suse.de>` (ALSA/HDA maintainer
merge)
- No `Fixes:`, `Reported-by:`, `Tested-by:`, `Reviewed-by:`, `Acked-
by:`, or `Cc: stable@vger.kernel.org` tags present (absence of stable
tag is expected per pipeline instructions)
**Notable patterns:** Maintainer (Takashi Iwai) signed off — standard
for accepted ALSA patches.
### Step 1.3: Analyze commit body text
**Record:**
- **Bug description:** ASUS Zenbook 14 UM3405GA uses Realtek ALC294 +
two Cirrus CS35L41 speaker amps over I2C (CSC3551 ACPI device),
subsystem ID `1043:19f4`. Without a PCI quirk, codec falls back to
generic pin matching.
- **Symptom:** Internal speakers remain silent; PCM playback completes
but produces no audible output.
- **Root cause (author):** Missing subsystem ID → wrong/missing fixup →
CS35L41 I2C amp binding and pin configuration not applied.
- **Fix approach:** Add `1043:19f4` quirk entry reusing
`ALC294_FIXUP_ASUS_I2C_HEADSET_MIC` (same as closely related
UM3406HA).
### Step 1.4: Detect hidden bug fixes
**Record:** Not disguised — this is an explicit hardware-enablement
quirk. It fixes broken audio output on a specific shipping laptop model.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory the changes
**Record:**
- **Files changed:** `sound/hda/codecs/realtek/alc269.c` — 1 line added,
0 removed
- **Function/table modified:** `alc269_fixup_tbl[]` (static quirk table)
- **Scope classification:** Single-file, single-line surgical hardware
quirk addition
### Step 2.2: Understand the code flow change
**Record:**
- **Hunk (quirk table entry):**
- **Before:** SSID `1043:19f4` has no matching `SND_PCI_QUIRK` entry;
`snd_hda_pick_fixup()` at codec probe does not select a model-
specific fixup.
- **After:** SSID `1043:19f4` maps to
`ALC294_FIXUP_ASUS_I2C_HEADSET_MIC`, which configures headset-mic
pin 0x19 and chains to `ALC287_FIXUP_CS35L41_I2C_2` for CS35L41 I2C
amp binding.
- **Execution path:** Codec probe (`alc269_probe` →
`snd_hda_pick_fixup()` → fixup chain application during
`HDA_FIXUP_ACT_PRE_PROBE` / `HDA_FIXUP_ACT_PROBE`).
### Step 2.3: Identify the bug mechanism
**Record:**
- **Bug category:** Hardware quirk / logic correctness (missing device
ID mapping)
- **Mechanism:** Without the quirk, `cs35l41_fixup_i2c_two()` is never
invoked for this machine's CSC3551 ACPI devices, so external CS35L41
amplifiers are not bound and speakers produce no sound.
### Step 2.4: Assess fix quality
**Record:**
- **Fix quality:** Obviously correct — reuses an existing, proven fixup
already applied to the sibling model UM3406HA (`0x1043:0x1c03`).
- **Regression risk:** Very low — only affects machines reporting SSID
`1043:19f4`; no changes to shared logic, locking, or APIs.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame the changed lines
**Record:** Insertion point is between existing entries at lines
7121–7122 (`0x19e1` and `0x1a13`). Surrounding quirk table entries date
from July 2025 (`aeeb85f26c3bb`). The target fixup
`ALC294_FIXUP_ASUS_I2C_HEADSET_MIC` was introduced in commit
`018f659753fd3` (Aug 18, 2025) for UM3406HA. The missing `0x19f4` entry
is a gap, not a recently introduced regression.
### Step 3.2: Follow Fixes: tag
**Record:** No `Fixes:` tag present — step not applicable.
### Step 3.3: Check file history for related changes
**Record:** Related commits in this tree:
- `018f659753fd3` — introduced `ALC294_FIXUP_ASUS_I2C_HEADSET_MIC` +
UM3406HA quirk
- `ef8b0cc691f1a` — UX3405MA headset mic fix (different SSID `0x1a63`,
SPI variant)
- `93ee5471731b8` — UM3406GA CS35L41 support (stable backport format,
different model)
- Numerous similar one-line quirk additions in recent history (e.g.,
TongFang, HP, Lenovo quirks)
**Prerequisites:** Standalone — only adds a table entry; does not
require other patches from a series.
### Step 3.4: Check author's other commits
**Record:** No commits by Colton Jones found in this tree (`git log
--author="Colton Jones"` returned empty). This is a first-time
contributor patch, but it follows established patterns and was merged by
the subsystem maintainer.
### Step 3.5: Check for dependent/prerequisite commits
**Record:**
- **Required fixup `ALC294_FIXUP_ASUS_I2C_HEADSET_MIC`:** Present —
introduced by `018f659753fd3`, confirmed ancestor of HEAD.
- **Required chain target `ALC287_FIXUP_CS35L41_I2C_2`:** Present —
`cs35l41_fixup_i2c_two()` at line 6126.
- **Can apply standalone:** Yes — one-line addition to existing table
with all dependencies already in tree.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Find original patch discussion
**Record:** `b4 dig -c <commit>` could not be run — commit is not yet in
this tree. `b4 dig` with subject search returned no results. WebFetch of
`patch.msgid.link` and `lore.kernel.org` blocked by Anubis bot
protection.
**UNVERIFIED:** Full mailing list review thread content.
### Step 4.2: Check who reviewed the patch
**Record:** UNVERIFIED via b4 dig. Commit message shows Takashi Iwai
(ALSA maintainer) as merge Signed-off-by.
### Step 4.3: Search for bug report
**Record:** No `Reported-by:` tag. Commit message describes hardware-
verified silent speaker behavior on UM3405GA. No external bug tracker
link beyond patch submission.
### Step 4.4: Check for related patches and series
**Record:** Standalone 1/1 patch. Closely related to `018f659753fd3`
(UM3406HA) which introduced the reused fixup. Not part of a multi-patch
series.
### Step 4.5: Check stable mailing list history
**Record:** UNVERIFIED — lore.kernel.org inaccessible via WebFetch.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Identify key functions in the diff
**Record:** Modified: `alc269_fixup_tbl[]` (data table). Affected fixup
chain: `ALC294_FIXUP_ASUS_I2C_HEADSET_MIC` →
`ALC287_FIXUP_CS35L41_I2C_2` → `cs35l41_fixup_i2c_two()`.
### Step 5.2: Trace callers
**Record:** `snd_hda_pick_fixup(codec, alc269_fixup_models,
alc269_fixup_tbl, alc269_fixups)` called from `alc269_probe()` at line
8471. This runs on every Realtek ALC269-family codec probe when
`CONFIG_SND_HDA_CODEC_REALTEK` is enabled — standard laptop audio
initialization path.
### Step 5.3: Trace callees
**Record:** Fixup chain calls:
1. Pin configuration for headset mic (pin 0x19 → `0x03a19020`)
2. `cs35l41_fixup_i2c_two()` → `comp_generic_fixup()` binding CSC3551
ACPI I2C devices to CS35L41 HDA codec components
### Step 5.4: Follow call chain (bug reachability)
**Record:** Triggered automatically at boot/module load on UM3405GA
hardware when the HDA Realtek driver probes the ALC294 codec. Every boot
on affected hardware hits this path. Not userspace-triggerable, but
affects all users of this laptop model.
### Step 5.5: Search for similar patterns
**Record:** Identical pattern used for UM3406HA at line 7131:
```7131:7131:sound/hda/codecs/realtek/alc269.c
SND_PCI_QUIRK(0x1043, 0x1c03, "ASUS UM3406HA",
ALC294_FIXUP_ASUS_I2C_HEADSET_MIC),
```
Same hardware family (Zenbook 14, ALC294 + CS35L41 I2C). The UM3405GA
fix is a direct extension of this established pattern.
---
## PHASE 6: CROSS-REFERENCING AGAINST THE LOCAL TREE
### Step 6.1: Does the buggy code exist in this tree?
**Record:** **Yes.** The quirk table exists but lacks `1043:19f4`.
Verified: `grep "0x19f4"` in `alc269.c` returns no matches. Gap is
between `0x19e1` (line 7121) and `0x1a13` (line 7122). Without this
entry, UM3405GA users on 6.18.y get silent speakers.
### Step 6.2: Check for backport complications
**Record:** **Clean apply expected.** Context lines at insertion point
match the diff exactly:
```7120:7123:sound/hda/codecs/realtek/alc269.c
SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA",
ALC294_FIXUP_ASUS_HPE),
SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV",
ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw",
ALC269_FIXUP_ASUS_G73JW),
SND_PCI_QUIRK(0x1043, 0x1a63, "ASUS UX3405MA",
ALC294_FIXUP_ASUS_SPI_HEADSET_MIC),
```
No conflicting recent churn in this table region.
### Step 6.3: Check if related fixes are already here
**Record:** Prerequisite fixup `ALC294_FIXUP_ASUS_I2C_HEADSET_MIC` is
present (lines 5177–5185). UM3406HA quirk using the same fixup is
present (line 7131). The UM3405GA-specific entry (`0x19f4`) is **not**
present — this is the missing piece.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Identify subsystem and criticality
**Record:** **Subsystem:** `sound/hda` — Realtek HD-audio codec driver.
**Criticality:** IMPORTANT (peripheral driver, but affects a common
laptop class — ASUS Zenbook 14).
### Step 7.2: Assess subsystem activity
**Record:** Highly active — multiple quirk additions in recent
`alc269.c` history. One-line PCI quirk additions are routine stable
material for this subsystem.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** **Driver-specific / hardware-specific** — owners of ASUS
Zenbook 14 UM3405GA (SSID `1043:19f4`) with
`CONFIG_SND_HDA_CODEC_REALTEK` enabled.
### Step 8.2: Trigger conditions
**Record:** Every boot on affected hardware when the Realtek codec
driver probes. Trigger is deterministic and 100% on unmatched hardware.
Not a security issue; not privilege-dependent.
### Step 8.3: Failure mode severity
**Record:** **Silent internal speakers** — audio subsystem non-
functional for primary output. Severity: **MEDIUM** (no crash, data
corruption, or security impact, but core laptop functionality broken).
### Step 8.4: Risk-benefit ratio
**Record:**
- **Benefit:** Restores speaker output on a shipping ASUS laptop;
follows proven UM3406HA pattern.
- **Risk:** Minimal — 1-line addition, SSID-specific, no logic changes.
- **Ratio:** Strongly favorable.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Compile the evidence
**FOR backporting:**
- Fixes real hardware bug (silent speakers on UM3405GA)
- Falls under stable exception: **hardware quirk** (PCI subsystem ID
addition to existing driver)
- One-line, surgical change reusing proven fixup from sibling model
- All prerequisites present in Linux 6.18.44 tree
- Merged by ALSA maintainer (Takashi Iwai)
- Identical pattern to UM3406HA quirk already in tree since
`018f659753fd3`
- Clean apply to current tree expected
**AGAINST backporting:**
- No crash/corruption/security impact (functional hardware issue only)
- First-time contributor (mitigated by maintainer review and pattern
reuse)
**UNRESOLVED:**
- Mailing list discussion content (lore/patch.msgid.link inaccessible)
- Whether reviewers explicitly nominated for stable
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — reuses existing fixup;
maintainer merged
2. Fixes a real bug affecting users? **PASS** — silent speakers on
UM3405GA
3. Important issue? **PASS** — broken primary audio output on shipping
hardware (hardware quirk exception)
4. Small and contained? **PASS** — 1 line, 1 file
5. No new features or APIs? **PASS** — subsystem ID quirk only
6. Can apply to local tree? **PASS** — prerequisites present, clean
context
### Step 9.3: Exception categories
**Record:** **Hardware quirk** — adding PCI subsystem ID (`1043:19f4`)
to map to existing fixup in an existing driver. This is one of the most
common and accepted stable backport categories.
### Step 9.4: Decision rationale
For Linux **6.18.44**, this commit should be backported. The tree
already contains the `ALC294_FIXUP_ASUS_I2C_HEADSET_MIC` fixup and the
UM3406HA quirk using it; only the UM3405GA subsystem ID mapping is
missing. The patch is a single-line addition with no dependencies, no
API changes, and no regression risk beyond the targeted hardware. Users
of ASUS Zenbook 14 UM3405GA on 6.18.y currently have non-functional
internal speakers — exactly the class of issue stable trees routinely
fix via HDA quirk additions.
---
## Verification
- **[Phase 1]** Parsed subject, tags (Link, Signed-off-by ×2); no
Fixes/Reported-by/Cc:stable
- **[Phase 1]** Identified bug: silent speakers due to missing SSID
quirk
- **[Phase 2]** Diff: 1 line added to `alc269_fixup_tbl[]` in `alc269.c`
- **[Phase 2]** Verified fixup chain:
`ALC294_FIXUP_ASUS_I2C_HEADSET_MIC` → `ALC287_FIXUP_CS35L41_I2C_2` →
`cs35l41_fixup_i2c_two()` (lines 5177–5185, 6126–6128, 3198–3200)
- **[Phase 3]** `git describe HEAD`: v6.18.44-1-g2736c32da98b9 (6.18.44)
- **[Phase 3]** `git blame` lines 7120–7135: insertion point between
`0x19e1` and `0x1a13` confirmed
- **[Phase 3]** `git log -1 -S ALC294_FIXUP_ASUS_I2C_HEADSET_MIC`:
`018f659753fd3` (Aug 2025)
- **[Phase 3]** `git merge-base --is-ancestor 018f659753fd3 HEAD`:
prerequisite fixup is in tree
- **[Phase 3]** `grep 0x19f4 alc269.c`: no match — quirk absent from
tree
- **[Phase 3]** `grep UM3406HA alc269.c`: sibling quirk present at line
7131
- **[Phase 4]** WebFetch lore.kernel.org and patch.msgid.link: blocked
(Anubis) — **UNVERIFIED**
- **[Phase 4]** `b4 dig` with subject search: no results (commit not in
tree) — **UNVERIFIED**
- **[Phase 5]** `snd_hda_pick_fixup()` called from `alc269_probe()` at
line 8471
- **[Phase 5]** `cs35l41_fixup_i2c_two()` present at line 3198
- **[Phase 6]** Confirmed gap at lines 7121–7122 where `0x19f4` entry
should be inserted
- **[Phase 6]** Context lines match diff exactly for clean apply
- **[Phase 8]** Failure mode: silent speakers, severity MEDIUM; benefit
high for affected hardware, risk minimal
**YES**
sound/hda/codecs/realtek/alc269.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/alc269.c
index c8714e59d8199..490589c042bd9 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -7121,6 +7121,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
+ SND_PCI_QUIRK(0x1043, 0x19f4, "ASUS UM3405GA", ALC294_FIXUP_ASUS_I2C_HEADSET_MIC),
SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
SND_PCI_QUIRK(0x1043, 0x1a63, "ASUS UX3405MA", ALC294_FIXUP_ASUS_SPI_HEADSET_MIC),
SND_PCI_QUIRK(0x1043, 0x1a83, "ASUS UM5302LA", ALC294_FIXUP_CS35L41_I2C_2),
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:49 UTC|newest]
Thread overview: 74+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260831133314.4125787-1-sashal@kernel.org>
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] ALSA: es18xx: check control allocation before private data setup Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Add quirk for HP EliteBook 830 G8 (8AB8) to enable mute LEDs Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] ASoC: fs210x: Make cache write through again during resume Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Add quirk for HP 255 15.6 inch G9 Notebook PC Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Propagate write errors in generic mixer put callbacks Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Fix speakers on MECHREVO WUJIE Series Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] soundwire: only handle alert events when the peripheral is attached Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] ALSA: hda/conexant: Add pin config quirk for Lenovo IdeaPad Slim 5 16AKP10 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] ASoC: Intel: catpt: Complete coredump handling Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.12] soundwire: intel_auxdevice: Add cs42l43b to wake_capable_list Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.1] ALSA: usb-audio: Add quirk flags for SC13A Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Enable mute LED quirk for HP Laptop 15-dw0xxx Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Fix speakers on Alienware x16 R2 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda: Add Lenovo Legion 7i 16IAX7 17AA3874 quirk Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.6] ALSA: hda/realtek: Add quirk for HP Pavilion x360 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Add quirk for Lenovo Xiaoxin 14 GT Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] ASoC: SOF: validate probe info element counts Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] ASoC: Intel: sof_sdw: append dai type to dai link name unconditionally Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: rockchip_pdm: Handle runtime PM resume failures in set_fmt Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] ASoC: mediatek: mt8365-afe-pcm: fix possible NULL-pointer dereferences in mt8365_afe_suspend() Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] ALSA: hda: cs35l41: imply SERIAL_MULTI_INSTANTIATE Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] ASoC/soundwire: Intel: reset the PCMSyCM registers in hda_sdw_bpt_close Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] ALSA: hda/ca0132: add QUIRK_GENERIC path for Gigabyte GA-Z170X-Gaming G1 Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rt5645: Perform the initial jack detect at probe Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Add quirk for Corsair Virtuoso (later revision) Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ALSA: seq: oss: Reject reads that cannot fit the next event Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] ALSA: ice1724: Fix blocking open for independent surround PCMs Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ASoC: codecs: pcm3168a: Drop CONFIG_PM-conditional preproc directive Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] ASoC: codecs: rk3328: Use managed GPIO and clock helpers Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] ASoC: rt712-sdca: reset codec at io_init to fix silent headphone Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.6] ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14IRH8 Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] ALSA: usb-audio: qcom: Free QMI handle Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Add quirk for YAMAHA CDS3000 Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.12] ASoC: fsl-asoc-card: reduce WM8904 PLL ratio to meet frequency limit Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.1] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] ASoC: ti: omap3pandora: update board check to use DT compatible Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add quirk for Infinix INBOOK X3 Slim Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] ALSA: hda/tas2781: clear cali_data.total_sz when calibration read fails Sasha Levin
2026-08-31 19:32 ` Philipp Oster
2026-09-01 12:25 ` Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] ALSA: hda/realtek: Add mute LED quirk for HP Laptop 14s-dr1xxx Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] ASoC: tas2781: Update default register address to TAS2563 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-5.10] soundwire: validate DT compatible before parsing it Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek: Add quirk for Lenovo Yoga 7 16IAP7 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usx2y: Drain pending US-428 pipe-4 output commands Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] ASoC: codecs: pcm3168a: Prevent regulator double-disable in S4 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] ASoC: amd: yc: Add DMI quirk for HyperX OMEN Gaming Laptop 16-ap1xxx Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] ALSA: hda/realtek: Add HDA_CODEC_QUIRK for Samsung 750XBE/730XBE Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] ASoC: sdw_utils: Add missed component_name strings for TI amps Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] ALSA: usb-audio: Add dB map quirk for Razer Barracuda X 2.4 Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add quirk for HP Dragonfly Folio G3 2-in-1 (103c:8a05) Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] soundwire: dmi-quirks: Disable ghost Realtek devices Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] ALSA: hda/tas2781: Fix device-0 reset issue and handle -EXDEV in block data processing Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda: cs35l56: Fail if wmfw file is missing Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek: Add mute LED quirk for HP Victus 16-e0xxx (MB 88ED) Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: spdif: Restore regcache cache-only mode on sync failure Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Add quirk for Novation Mininova Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.1] ASoC: qcom: q6apm: return error code to consumers on failures Sasha Levin
2026-08-31 13:29 ` Sasha Levin [this message]
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: caiaq: validate EP1 reply lengths Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.6] ASoC: amd: yc: Add DMI quirk for HP Victus Laptop 16-e1xxx Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] ASoC: Intel: sof_sdw: Add quirks for new Dell laptops Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek - Add quirk for HP Victus 15-fa0xxx (MB 8A50) Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: rockchip_pdm: Reorder clock enable sequence Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Fix headphone output on ASUS ROG Ally X Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek: Add quirk for HP Victus 16-e0xxx (88EE) to enable mute LED Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ALSA: usb-audio: Add delay quirk for iBasso DC-Elite Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.6] soundwire: intel: Move suspend tracking from trigger to pm suspend Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ASoC: rt1320: run the initialisation preset on the first hardware init Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: ALC882: Fixup for Clevo P775TM1 Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] ALSA: seq: Remove arbitrary prioq insertion limit Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.15] ALSA: usb-audio: Add FIXED_RATE quirk for JBL Quantum650 Wireless Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-5.10] ALSA: hda/realtek: Add quirk for ASUS VivoBook X509DAP Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] ASoC: sof_sdw: Add a quirk for 0x17aa383c laptop using sidecar amps with cs42l43 Sasha Levin
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=20260831133314.4125787-541-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=cjones1308@pm.me \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=patches@lists.linux.dev \
--cc=perex@perex.cz \
--cc=stable@vger.kernel.org \
--cc=tiwai@suse.com \
--cc=tiwai@suse.de \
/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