Linux Sound subsystem development
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Ai Chao <aichao@kylinos.cn>, 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-6.1] ALSA: usb-audio: Add quirk flags for SC13A
Date: Mon, 31 Aug 2026 09:22:21 -0400	[thread overview]
Message-ID: <20260831133314.4125787-113-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>

From: Ai Chao <aichao@kylinos.cn>

[ Upstream commit 8956950dab22fbaefe92ca1980728165c5da793d ]

The SC13A ( VID 0x1ff7, PID 0x0f81) not support reading the current
sample rate and results in an error message printed to kmsg. Set
QUIRK_FLAG_GET_SAMPLE_RATE to skip the sample rate check.

Quirky device sample:
  usb 3-5.2.4.1: new high-speed USB device number 11 using xhci_hcd
  usb 3-5.2.4.1: New USB device found, idVendor=1ff7, idProduct=0f81
  usb 3-5.2.4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
  usb 3-5.2.4.1: Product: SC13A
  usb 3-5.2.4.1: Manufacturer: Linux Foundation
  usb 3-5.2.4.1: SerialNumber: 000002
  usb 3-5.2.4.1: Found UVC 1.50 device SC13A (1ff7:0f81)
  usb 3-5.2.4.1: 3:1: cannot get freq at ep 0x86
  usb 3-5.2.4.1: Warning! Unlikely big volume range (=4096),
    cval->res is probably wrong.
  usb 3-5.2.4.1: [5] FU [Mic Capture Volume] ch = 1, val = 0/4096/1
  usbcore: registered new interface driver snd-usb-audio
  usb 3-5.2.4.1: 3:1: cannot get freq at ep 0x86
  usb 3-5.2.4.1: 3:1: cannot get freq at ep 0x86

Signed-off-by: Ai Chao <aichao@kylinos.cn>
Link: https://patch.msgid.link/20260617025234.3344935-1-aichao@kylinos.cn
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: usb-audio: Add quirk flags for SC13A

**Local tree:** `v6.18.44` (Makefile: 6.18.44)

---

## PHASE 1: COMMIT MESSAGE FORENSICS

### Step 1.1: Parse the subject line
**Record:** `[ALSA: usb-audio]` `[Add]` — Add quirk flags for SC13A USB
webcam (VID 0x1ff7, PID 0x0f81).

### Step 1.2: Parse all commit message tags
**Record:**
- **Link:**
  `https://patch.msgid.link/20260617025234.3344935-1-aichao@kylinos.cn`
- **Signed-off-by:** Ai Chao `<aichao@kylinos.cn>` (author)
- **Signed-off-by:** Takashi Iwai `<tiwai@suse.de>` (ALSA maintainer,
  committer)
- No `Fixes:`, `Reported-by:`, `Tested-by:`, `Reviewed-by:`, `Acked-
  by:`, or `Cc: stable@vger.kernel.org`
- Notable: maintainer sign-off from Takashi Iwai; no syzbot or multi-
  reporter signals

### Step 1.3: Analyze commit body
**Record:**
- **Bug:** SC13A webcam does not support reading the current sample rate
  via USB audio class GET_CUR.
- **Symptom:** Repeated kernel messages: `cannot get freq at ep 0x86`
  during probe and audio setup.
- **Root cause (author):** Device firmware does not implement sample-
  rate readback; driver still attempts verification after SET.
- **Fix approach:** Set `QUIRK_FLAG_GET_SAMPLE_RATE` to skip the
  readback check.
- **Evidence:** Full dmesg excerpt showing UVC detection, volume-range
  warning, successful `snd-usb-audio` registration, and repeated freq
  errors.
- **Version info:** None stated in the message.

### Step 1.4: Detect hidden bug fixes
**Record:** Not a hidden crash/leak/race fix. This is an explicit
**hardware quirk** entry — a well-established stable category. The
underlying code path already tolerates read failure (returns 0), so the
primary user-visible issue is **repeated error logging** and
**unnecessary failing USB control transfers**, not a kernel oops.
Similar webcam quirks (e.g. NexiGo N930AF) addressed the same `cannot
get freq` pattern and were treated as real hardware compatibility fixes.

---

## PHASE 2: DIFF ANALYSIS

### Step 2.1: Inventory the changes
**Record:**
- **Files:** `sound/usb/quirks.c` only (+2 lines)
- **Functions modified:** None; only `quirk_flags_table[]` static data
- **Scope:** Single-file, surgical hardware-quirk table addition

### Step 2.2: Code flow change
**Record:**
- **Before:** SC13A (1ff7:0f81) not in `quirk_flags_table[]`;
  `chip->quirk_flags` lacks `QUIRK_FLAG_GET_SAMPLE_RATE` at probe.
- **After:** Device matched at probe via
  `snd_usb_init_quirk_flags_table()` → flag set → `set_sample_rate_v1()`
  skips GET_CUR after SET.
- **Affected path:** USB audio probe (`stream.c`) and runtime sample-
  rate changes (`endpoint.c`), normal UAC1 devices with sample-rate
  control.

### Step 2.3: Bug mechanism
**Record:**
- **Category:** Hardware workaround (quirk table entry)
- **Mechanism:** After `UAC_SET_CUR` for sample rate,
  `set_sample_rate_v1()` in `clock.c` normally issues `UAC_GET_CUR` to
  verify. SC13A firmware rejects GET; driver logs `dev_err()` up to 3
  times per endpoint (`sample_rate_read_error` counter), then stops.
  Quirk bypasses the unsupported GET entirely.

### Step 2.4: Fix quality
**Record:**
- **Obviously correct:** Yes — identical pattern to ~30 existing
  `QUIRK_FLAG_GET_SAMPLE_RATE` entries in the same table (e.g.
  0x1bcf:0x2281/0x2283 webcams right at the insertion point).
- **Minimal:** 2 lines, no logic changes.
- **Regression risk:** Very low — flag only affects post-SET
  verification read, not rate setting itself.
- **Red flags:** None.

---

## PHASE 3: GIT HISTORY INVESTIGATION

### Step 3.1: Blame changed lines
**Record:** No line changes to logic — only new table entry. Related
verification code in `clock.c:488-505` dates to 2015 (Joe Turner);
`QUIRK_FLAG_GET_SAMPLE_RATE` check added in `4d4dee0aefec3` (Takashi
Iwai, 2021). Long-standing infrastructure.

### Step 3.2: Follow Fixes: tag
**Record:** N/A — no `Fixes:` tag.

### Step 3.3: File history for related changes
**Record:** Recent `quirks.c` commits are similar quirk-flag
additions/fixes (`f4e23e661a259`, `66b315279b887`, `908dd5faf8169`).
Precedent commit `4a63e68a29518` ("Fix microphone sound on Nexigo
webcam") added `QUIRK_FLAG_GET_SAMPLE_RATE` for 0x1bcf:0x2283 with
nearly identical dmesg (`cannot get freq at ep 0x86`). Standalone one-
patch fix, not part of a series.

### Step 3.4: Author's other commits
**Record:** Ai Chao has ACPI/ASoC/platform commits in this tree; not a
regular ALSA contributor, but patch carries Takashi Iwai maintainer SOB.

### Step 3.5: Prerequisites
**Record:** Requires `quirk_flags_table[]`,
`QUIRK_FLAG_GET_SAMPLE_RATE`, and `snd_usb_init_quirk_flags_table()` —
all present (`git merge-base --is-ancestor 4d4dee0aefec3 HEAD` → YES).
No dependencies on other commits. Applies standalone.

---

## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH

### Step 4.1: Original patch discussion
**Record:** `b4 dig -c` could not run — commit hash not in local tree.
Lore/patch.msgid.link returned 403/Anubis bot protection.
**UNVERIFIED:** full mailing-list review thread and any stable
nominations.

### Step 4.2: Reviewers
**Record:** **UNVERIFIED** (`b4 dig -w` unavailable). Commit message
shows Takashi Iwai as committer SOB (ALSA/usb-audio maintainer).

### Step 4.3: Bug report
**Record:** Commit body includes author's dmesg as reproduction
evidence. No external bugzilla/syzbot link. Severity from reporter:
kernel log noise on device plug-in; driver still binds.

### Step 4.4: Related patches/series
**Record:** Standalone quirk addition; not part of a multi-patch series.

### Step 4.5: Stable mailing list
**Record:** **UNVERIFIED** — lore search blocked.

---

## PHASE 5: CODE SEMANTIC ANALYSIS

### Step 5.1: Key functions
**Record:** No functions modified. Affected at runtime:
`snd_usb_init_quirk_flags_table()`, `set_sample_rate_v1()`,
`snd_usb_init_sample_rate()`.

### Step 5.2: Callers
**Record:**
- `snd_usb_init_quirk_flags_table()` called from `card.c:728` during USB
  audio chip init.
- `snd_usb_init_sample_rate()` called from `stream.c:1259`
  (probe/interface setup) and `endpoint.c:1431` (runtime stream rate
  change).
- Common path: every USB audio device probe; SC13A users hit this on
  plug-in.

### Step 5.3: Callees
**Record:** Quirk setup sets `chip->quirk_flags`; rate path uses
`snd_usb_ctl_msg()` for USB class control transfers.

### Step 5.4: Call chain / reachability
**Record:** USB device plug-in → `snd_usb_audio_probe()` → quirk table
lookup → later `snd_usb_init_sample_rate()` → without quirk, failing GET
logged. Triggered by attaching hardware; no special privileges needed
beyond having the device.

### Step 5.5: Similar patterns
**Record:** Many identical entries in `quirk_flags_table[]`, including
adjacent webcam entries at 0x1bcf:0x2281 and 0x1bcf:0x2283 with the same
flag. Documented in `usbaudio.h:171-173`: *"Skip reading sample rate for
devices, as some devices behave inconsistently or return error"*.

---

## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE (6.18.44)

### Step 6.1: Does buggy code exist?
**Record:** **YES.** `QUIRK_FLAG_GET_SAMPLE_RATE` mechanism fully
present. SC13A entry **absent** (`grep 0x1ff7/0x0f81` → no matches).
Without this patch, 6.18.44 users with SC13A get the described errors.
Bug is in long-standing sample-rate verification code, not recently
introduced.

### Step 6.2: Backport complications
**Record:** **Clean apply expected.** Insertion point verified between
existing entries:

```2335:2340:sound/usb/quirks.c
        DEVICE_FLG(0x1bcf, 0x2281, /* HD Webcam */
                   QUIRK_FLAG_GET_SAMPLE_RATE | QUIRK_FLAG_MIC_RES_16),
        DEVICE_FLG(0x1bcf, 0x2283, /* NexiGo N930AF FHD Webcam */
                   QUIRK_FLAG_GET_SAMPLE_RATE | QUIRK_FLAG_MIC_RES_16),
        DEVICE_FLG(0x2040, 0x7200, /* Hauppauge HVR-950Q */
```

### Step 6.3: Related fixes already present?
**Record:** No existing SC13A entry or equivalent fix (`git log
--grep=SC13A` → empty).

---

## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT

### Step 7.1: Subsystem criticality
**Record:** `sound/usb/` — ALSA USB audio driver. **IMPORTANT** (common
USB webcam/audio hardware; not core kernel, but widely used).

### Step 7.2: Subsystem activity
**Record:** Actively maintained; frequent quirk-table updates in
`quirks.c` (5 commits in recent history on that file alone).

---

## PHASE 8: IMPACT AND RISK ASSESSMENT

### Step 8.1: Who is affected
**Record:** Users of SC13A USB webcam (1ff7:0f81) — hardware-specific,
but a real commercial device (UVC + USB audio composite).

### Step 8.2: Trigger conditions
**Record:** Device plug-in and audio interface initialization; occurs on
every attach. Common for webcam users. Unprivileged physical access (USB
attach).

### Step 8.3: Failure mode severity
**Record:** Without fix: repeated `dev_err()` kernel messages (`cannot
get freq at ep 0x86`), unnecessary USB control traffic; audio driver
still registers and rate-set path returns 0 on read failure. **Severity:
LOW–MEDIUM** (log spam / suboptimal device handling, not crash or
corruption). With fix: clean probe, no spurious errors.

### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Enables correct handling for SC13A; eliminates error
  spam; matches established webcam quirk pattern.
- **Risk:** Minimal — 2-line table entry using existing, well-tested
  flag.
- **Ratio:** Low risk, modest but real benefit for affected hardware
  owners.

---

## PHASE 9: FINAL SYNTHESIS

### Step 9.1: Evidence compile

**FOR backport:**
- Hardware quirk — explicit stable exception category
- 2-line, surgical, obviously correct
- Uses existing `QUIRK_FLAG_GET_SAMPLE_RATE` infrastructure present
  since 2021
- Maintainer (Takashi Iwai) sign-off
- Identical pattern to NexiGo/HD webcam quirks already in tree
- Clean apply to 6.18.44 verified
- Fixes real device misbehavior (unsupported USB control op + kmsg
  errors)

**AGAINST backport:**
- Does not fix crash, data corruption, deadlock, or security issue
- Audio may function without the quirk (verification read failure is
  tolerated)
- No syzbot/user bugzilla reports; impact limited to SC13A owners

**UNRESOLVED:**
- Full lore review thread inaccessible
- Whether reviewers explicitly nominated for stable

### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — standard quirk pattern;
   maintainer SOB; dmesg evidence in commit message.
2. Fixes a real bug affecting users? **PASS** — real hardware
   incompatibility with repeated kernel errors on attach.
3. Important issue? **PASS (borderline)** — not CRITICAL severity, but
   hardware quirk fixes are accepted stable material per project
   practice; prevents user-visible malfunction/noise on a supported
   device class.
4. Small and contained? **PASS** — 2 lines, one file.
5. No new features or APIs? **PASS** — device ID + existing quirk flag
   only.
6. Can apply to local tree? **PASS** — all prerequisites present;
   insertion point matches.

### Step 9.3: Exception category
**Record:** **Hardware quirk/workaround** — adding
`QUIRK_FLAG_GET_SAMPLE_RATE` for a broken USB audio device. This is
explicitly listed as automatic YES material in stable guidelines.

### Step 9.4: Decision rationale
For **linux-6.18.y** specifically: the quirk infrastructure exists, the
SC13A entry is missing, and the patch applies cleanly. This is textbook
USB-audio hardware quirk material — the same class of fix as existing
webcam entries at 0x1bcf:0x2281/0x2283. While severity is lower than a
crash fix, stable trees routinely carry such device-specific quirk
additions, especially when signed off by the subsystem maintainer and
using established flags.

---

## Verification

- **[Phase 1]** Parsed subject, tags, body; identified hardware quirk
  intent and dmesg symptoms.
- **[Phase 2]** Diff: +2 lines in `sound/usb/quirks.c`; verified
  `QUIRK_FLAG_GET_SAMPLE_RATE` behavior in `clock.c:488-505`.
- **[Phase 3]** `git blame clock.c:488-505`: verification code from
  2015; quirk flag from `4d4dee0aefec3`. `git log --grep=SC13A`: empty.
  `4a63e68a29518`: similar Nexigo webcam quirk precedent. `git merge-
  base --is-ancestor 4d4dee0aefec3 HEAD`: YES.
- **[Phase 4]** `b4 dig`: failed (no commit in tree).
  Lore/patch.msgid.link/curl: 403/bot-blocked. **UNVERIFIED:** review
  thread, stable nominations.
- **[Phase 5]** `grep snd_usb_init_sample_rate`: callers in
  `stream.c:1259`, `endpoint.c:1431`, `quirks.c:206`. `grep
  snd_usb_init_quirk_flags_table`: `card.c:728`.
- **[Phase 6]** `git describe HEAD`: v6.18.44. `grep 0x1ff7/0x0f81`: not
  present. Insertion point at lines 2335-2339 confirmed. Clean apply
  expected.
- **[Phase 7]** Subsystem: sound/usb, actively maintained.
- **[Phase 8]** Failure mode: kmsg errors, not crash; severity
  LOW–MEDIUM; benefit modest, risk minimal.

**YES**

 sound/usb/quirks.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
index 3d81b003a5109..c5b06374044da 100644
--- a/sound/usb/quirks.c
+++ b/sound/usb/quirks.c
@@ -2336,6 +2336,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
 		   QUIRK_FLAG_GET_SAMPLE_RATE | QUIRK_FLAG_MIC_RES_16),
 	DEVICE_FLG(0x1bcf, 0x2283, /* NexiGo N930AF FHD Webcam */
 		   QUIRK_FLAG_GET_SAMPLE_RATE | QUIRK_FLAG_MIC_RES_16),
+	DEVICE_FLG(0x1ff7, 0x0f81, /* SC13A Webcam */
+		   QUIRK_FLAG_GET_SAMPLE_RATE),
 	DEVICE_FLG(0x2040, 0x7200, /* Hauppauge HVR-950Q */
 		   QUIRK_FLAG_SHARE_MEDIA_DEVICE | QUIRK_FLAG_ALIGN_TRANSFER),
 	DEVICE_FLG(0x2040, 0x7201, /* Hauppauge HVR-950Q-MXL */
-- 
2.53.0


  parent reply	other threads:[~2026-08-31 13:37 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 ` Sasha Levin [this message]
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 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add CS35L41 I2C quirk for ASUS UM3405GA Sasha Levin
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-113-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=aichao@kylinos.cn \
    --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