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: Baojun Xu <baojun.xu@ti.com>, Mark Brown <broonie@kernel.org>,
	Sasha Levin <sashal@kernel.org>,
	shenghao-ding@ti.com, kevin-lu@ti.com, sen@ti.com,
	perex@perex.cz, tiwai@suse.com, linux-sound@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18-6.12] ASoC: tas2781: Update default register address to TAS2563
Date: Mon, 31 Aug 2026 09:27:11 -0400	[thread overview]
Message-ID: <20260831133314.4125787-403-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>

From: Baojun Xu <baojun.xu@ti.com>

[ Upstream commit 64184f07e7516eb3ac1839387eb7cbe2dbeaa96f ]

The previous TAS2781 address is overwritten during calibration,
so switching to the TAS2563 address is required.

Signed-off-by: Baojun Xu <baojun.xu@ti.com>
Link: https://patch.msgid.link/20260625102815.20043-1-baojun.xu@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---

LLM Generated explanations, may be completely bogus:

# Stable Backport Analysis: ASoC: tas2781: Update default register
address to TAS2563

**Local tree:** `v6.18.44` (`6.18.44`, commit `2736c32da98b9`)
**Upstream commit:** `64184f07e7516` (mainline, merged Jun 25, 2026)
**Stable candidate:** `43c6afb999d7e` (on `autosel` branch, not yet in
HEAD)

---

## PHASE 1: COMMIT MESSAGE FORENSICS

### Step 1.1: Subject Line
**Record:** `[ASoC: tas2781]` `[Update]` — Change default XM calibration
register addresses from TAS2781 book/page to TAS2563 book/page.

### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Baojun Xu `<baojun.xu@ti.com>` (TI, driver author)
- **Link:**
  https://patch.msgid.link/20260625102815.20043-1-baojun.xu@ti.com
- **Signed-off-by:** Mark Brown `<broonie@kernel.org>` (ASoC maintainer)
- **No** Fixes:, Reported-by:, Tested-by:, Cc: stable@vger.kernel.org,
  Acked-by:
- **Notable:** Maintainer applied with no objections; no syzbot or user
  bug reports cited.

### Step 1.3: Body Analysis
**Record:**
- **Bug:** Default `TASDEVICE_XM_A1_REG` / `TASDEVICE_XM_A2_REG` point
  to TAS2781 page `0x63`, which is overwritten during speaker
  calibration.
- **Symptom:** ALSA controls `"Amp XMA1 Data"` and `"Amp XMA2 Data"`
  read from wrong registers and return incorrect calibration data.
- **Root cause:** Hardware/firmware overwrites the TAS2781-specific page
  during calibration; TAS2563 page `0x02` holds the persistent XM data.
- **Version info:** None stated; addresses introduced with calibration
  kcontrols in Sep 2024.

### Step 1.4: Hidden Bug Fix
**Record:** Yes. Wording is "update address," but this is a functional
calibration correctness fix — wrong register map causes bad data reads,
not a cosmetic change.

---

## PHASE 2: DIFF ANALYSIS

### Step 2.1: Inventory
**Record:**
- **Files:** `include/sound/tas2781.h` only (+2 / -2 lines)
- **Functions affected indirectly:** `tasdev_XMA1_data_get()`,
  `tasdev_XMA2_data_get()` in `sound/soc/codecs/tas2781-i2c.c`
- **Scope:** Single-file, surgical header fix

| Macro | Before | After |
|-------|--------|-------|
| `TASDEVICE_XM_A1_REG` | `TASDEVICE_REG(0x64, 0x63, 0x3c)` |
`TASDEVICE_REG(0x64, 0x02, 0x4c)` |
| `TASDEVICE_XM_A2_REG` | `TASDEVICE_REG(0x64, 0x63, 0x38)` |
`TASDEVICE_REG(0x64, 0x02, 0x64)` |

New addresses share book `0x64`, page `0x02` with existing
`TAS2563_RUNTIME_RE_REG` (`0x48`) and `TAS2563_RUNTIME_RE_REG_TF`
(`0x70`).

### Step 2.2: Code Flow Change
**Record:**
- **Before:** `tasdev_XMA1_data_get()` / `tasdev_XMA2_data_get()`
  default to page `0x63` when `dspbin_typ == 0`; firmware-provided
  addresses used when `dspbin_typ != 0`.
- **After:** Same logic, but defaults point to page `0x02` (TAS2563
  calibration page).
- **Path:** ALSA kcontrol read → `calib_data_get()` →
  `tasdevice_dev_bulk_read()` at corrected register.

### Step 2.3: Bug Mechanism
**Record:** **Category (g): Logic / correctness fix** — wrong hardware
register map. **Category (h): Hardware workaround** — TAS2781 page
overwritten during calibration; driver must use TAS2563 addresses for
persistent XM data.

### Step 2.4: Fix Quality
**Record:** Obviously correct and minimal. New addresses align with
other TAS2563 calibration registers already in the same header. Very low
regression risk; only changes fallback addresses when firmware does not
override them.

---

## PHASE 3: GIT HISTORY INVESTIGATION

### Step 3.1: Blame
**Record:** Wrong addresses introduced in `49e2e353fb0db` ("ASoC:
tas2781: Add Calibration Kcontrols for Chromebook", Sep 12, 2024).
Present in this tree.

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

### Step 3.3: Related Commits
**Record:**
- `fcc3d77fef02c` — already backported to this tree: wrong SINEGAIN2
  register in calibration path (same class of fix)
- `cf86e0ae60a22` — calibration failure fix (register unlock)
- `2aa13da97e2b9` — calibration stress-test fix
- `791520a8e54e2` — wrong period fix
- Standalone; not part of a multi-patch series.

### Step 3.4: Author Context
**Record:** Baojun Xu is a regular TI contributor to tas2781 (chip ID
fixes, DT updates, HDA quirks). Mark Brown is ASoC maintainer.

### Step 3.5: Dependencies
**Record:** None. Self-contained 2-line header change; no prerequisite
commits.

---

## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH

### Step 4.1: Original Discussion
**Record:**
- **URL:**
  https://patch.msgid.link/20260625102815.20043-1-baojun.xu@ti.com
- **Revisions:** v1 only
- **Review:** Mark Brown applied to `for-7.2` with no NAKs or change
  requests
- **Stable nomination:** None in thread

### Step 4.2: Reviewers
**Record:** CC'd: broonie@kernel.org, tiwai@suse.de, alsa-devel, linux-
sound, shenghao-ding@ti.com, other TI engineers.

### Step 4.3: Bug Reports
**Record:** No external bug report, syzbot, or Bugzilla link. Issue
identified internally by TI based on hardware behavior.

### Step 4.4: Series Context
**Record:** Standalone 1/1 patch; no series dependencies.

### Step 4.5: Stable List History
**Record:** Not searched on lore stable list (Anubis blocked web fetch).
Precedent in this tree: `fcc3d77fef02c` (tas2781 calibration register
fix) already backported.

---

## PHASE 5: CODE SEMANTIC ANALYSIS

### Step 5.1: Key Functions
**Record:** `tasdev_XMA1_data_get()`, `tasdev_XMA2_data_get()`,
`calib_data_get()`

### Step 5.2: Callers
**Record:** Registered in `tasdevice_cali_controls[]` (lines 925–926),
added for all chip types via `tasdevice_create_cali_ctrls()`. Invoked
from userspace ALSA control reads (e.g. Chromebook calibration tooling).

### Step 5.3: Callees
**Record:** `calib_data_get()` → `tasdevice_dev_bulk_read()` — 4-byte
register read under `codec_lock`.

### Step 5.4: Reachability
**Record:** Reachable from userspace via ALSA mixer/control interface.
Affects calibration data reads, not normal audio playback. Triggered
when userspace reads `"Amp XMA1 Data"` / `"Amp XMA2 Data"` and
`dspbin_typ == 0`.

### Step 5.5: Similar Patterns
**Record:** `tasdev_tf_data_get()` and `tasdev_re_data_get()` already
use `TAS2563_RUNTIME_RE_REG*` on page `0x02` for non-TAS2781 chips. This
fix brings XM defaults in line with that established mapping.

---

## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE

### Step 6.1: Buggy Code Present?
**Record:** **Yes.** `include/sound/tas2781.h` lines 62–64 still have
page `0x63` addresses. Upstream fix `64184f07e7516` is not in HEAD (`git
merge-base --is-ancestor` returns exit 1).

### Step 6.2: Backport Complications
**Record:** **Clean apply.** `git cherry-pick --no-commit 43c6afb999d7e`
succeeds with exit 0 on HEAD.

### Step 6.3: Related Fixes Already Present?
**Record:** `fcc3d77fef02c` (SINEGAIN2 calibration register fix) is
already in this tree. This XM address fix is not yet present.

---

## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT

### Step 7.1: Subsystem Criticality
**Record:** **IMPORTANT** — ASoC tas2781 driver; affects Chromebook
speaker calibration on TI TAS25xx/TAS27xx/TAS58xx hardware.

### Step 7.2: Subsystem Activity
**Record:** Actively maintained; multiple calibration fixes in
2024–2026, including several already deemed stable-worthy.

---

## PHASE 8: IMPACT AND RISK ASSESSMENT

### Step 8.1: Who Is Affected
**Record:** Chromebook / embedded systems using tas2781 codec with
calibration kcontrols. Config-dependent (`CONFIG_SND_SOC_TAS2781_I2C` or
equivalent). Not universal.

### Step 8.2: Trigger Conditions
**Record:**
- Userspace reads XMA1/XMA2 calibration controls
- `dspbin_typ == 0` (no firmware binary override)
- Especially after calibration has run (when page `0x63` is overwritten)
- Unprivileged users can trigger via ALSA control reads

### Step 8.3: Failure Mode Severity
**Record:** **Incorrect calibration data returned** — not a crash, oops,
or data corruption. Severity: **MEDIUM**. Impacts speaker impedance
calibration accuracy and factory/service tooling.

### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** MEDIUM — correct calibration data for real hardware users
- **Risk:** VERY LOW — 2-line constant change, maintainer-reviewed,
  consistent with existing TAS2563 register map
- **Ratio:** Favorable; same rationale as `fcc3d77fef02c` already
  accepted in this tree

---

## PHASE 9: FINAL SYNTHESIS

### Step 9.1: Evidence Summary

**FOR backport:**
- Real, verified hardware mapping bug (TI author + maintainer)
- Already in mainline (`64184f07e7516`)
- Tiny, surgical, applies cleanly to 6.18.44
- Same fix class as `fcc3d77fef02c` already backported here
- Hardware quirk / register-map correction per stable-kernel-rules.rst
- Affects userspace-reachable calibration path on shipping hardware

**AGAINST backport:**
- No crash, security issue, or data corruption
- Only affects calibration controls, not normal audio
- Only default path (`dspbin_typ == 0`); firmware override unaffected
- Niche hardware (Chromebooks with TI amps)
- No user bug report or syzbot finding

**Unresolved:** No independent user-reported failure case beyond TI's
hardware analysis.

### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — maintainer applied;
   addresses align with existing TAS2563 map
2. Fixes real bug affecting users? **PASS** — wrong calibration data on
   real hardware
3. Important issue? **PASS (MEDIUM)** — hardware quirk / calibration
   correctness; not crash-level but real functional impact
4. Small and contained? **PASS** — 2 lines, 1 file
5. No new features or APIs? **PASS** — register constant correction only
6. Can apply to local tree? **PASS** — clean cherry-pick verified

### Step 9.3: Exception Category
**Record:** **Hardware quirk / workaround** — correcting register
addresses for hardware that overwrites TAS2781 page during calibration.

### Step 9.4: Decision Rationale

This fix corrects wrong default register addresses for speaker
calibration data reads on TI amplifier chips used in Chromebooks. While
it does not cause crashes, it is a real hardware-mapping bug in a
userspace-reachable calibration path. The change is minimal, maintainer-
reviewed, already in mainline, applies cleanly to 6.18.44, and matches
the same class of fix (`fcc3d77fef02c`) already backported to this tree.
Per `stable-kernel-rules.rst`, hardware quirks that fix real-world
device issues are appropriate for stable.

---

## Verification

- **[Phase 1]** Parsed commit message from `git show 43c6afb999d7e` and
  upstream `64184f07e7516`
- **[Phase 1]** Tags: Baojun Xu SOB, Mark Brown SOB, Link tag; no
  Fixes/Reported-by/Cc:stable
- **[Phase 2]** Diff: 2 lines in `include/sound/tas2781.h`; verified
  current values at lines 62–64
- **[Phase 2]** Computed register values: old A1=`0x3231bc`, new
  A1=`0x32014c` (same page as `TAS2563_RUNTIME_RE_REG`=`0x320148`)
- **[Phase 3]** `git blame`: addresses from `49e2e353fb0db` (Sep 2024)
- **[Phase 3]** `git merge-base --is-ancestor 49e2e353fb0dbe HEAD`:
  calibration commit is ancestor
- **[Phase 3]** `git merge-base --is-ancestor 43c6afb999d7e HEAD`: exit
  1 — fix NOT in HEAD
- **[Phase 3]** Related: `fcc3d77fef02c` already in tree (SINEGAIN2
  calibration fix)
- **[Phase 4]** `b4 dig -c 43c6afb999d7e`: found thread at
  patch.msgid.link/20260625102815
- **[Phase 4]** `b4 dig -a`: v1 only
- **[Phase 4]** `b4 dig -w`: CC'd broonie, tiwai, alsa-devel, linux-
  sound
- **[Phase 4]** Downloaded mbox: Mark Brown applied with no objections
- **[Phase 5]** `grep`: `tasdev_XMA1_data_get`/`tasdev_XMA2_data_get`
  use macros as defaults; override when `dspbin_typ`
- **[Phase 5]** `tasdevice_cali_controls[]` registered for all chip
  types in `tasdevice_create_cali_ctrls()`
- **[Phase 6]** `git describe HEAD`: v6.18.44
- **[Phase 6]** Buggy code confirmed present at
  `include/sound/tas2781.h:62-64`
- **[Phase 6]** `git cherry-pick --no-commit 43c6afb999d7e`: exit 0
  (clean apply)
- **[Phase 8]** Failure mode: wrong calibration data, severity MEDIUM
  (not crash)

**YES****ASoC: tas2781: Update default register address to TAS2563** —
verdict for **6.18.44**: **YES**.

The default XM calibration register addresses in
`include/sound/tas2781.h` point at a TAS2781 page that gets overwritten
during calibration, so `"Amp XMA1 Data"` / `"Amp XMA2 Data"` can return
wrong values when firmware doesn’t override them. The fix is a 2-line
header change to the TAS2563 addresses (same page as other calibration
regs), already in mainline, applies cleanly here, and matches the kind
of tas2781 calibration fix already backported in this tree
(`fcc3d77fef02c`).

 include/sound/tas2781.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/sound/tas2781.h b/include/sound/tas2781.h
index 29d15ba65f04d..648fb55073282 100644
--- a/include/sound/tas2781.h
+++ b/include/sound/tas2781.h
@@ -59,9 +59,9 @@
 #define TASDEVICE_CHECKSUM_REG		TASDEVICE_REG(0x0, 0x0, 0x7e)
 
 /* XM_340 */
-#define	TASDEVICE_XM_A1_REG	TASDEVICE_REG(0x64, 0x63, 0x3c)
+#define	TASDEVICE_XM_A1_REG	TASDEVICE_REG(0x64, 0x02, 0x4c)
 /* XM_341 */
-#define	TASDEVICE_XM_A2_REG	TASDEVICE_REG(0x64, 0x63, 0x38)
+#define	TASDEVICE_XM_A2_REG	TASDEVICE_REG(0x64, 0x02, 0x64)
 
 /* Volume control */
 #define TAS2563_DVC_LVL			TASDEVICE_REG(0x00, 0x02, 0x0c)
-- 
2.53.0


  parent reply	other threads:[~2026-08-31 13:45 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 ` Sasha Levin [this message]
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-403-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=baojun.xu@ti.com \
    --cc=broonie@kernel.org \
    --cc=kevin-lu@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=perex@perex.cz \
    --cc=sen@ti.com \
    --cc=shenghao-ding@ti.com \
    --cc=stable@vger.kernel.org \
    --cc=tiwai@suse.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