From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Rudi Heitbaum <rudi@heitbaum.com>,
Mark Brown <broonie@kernel.org>, Sasha Levin <sashal@kernel.org>,
oder_chiou@realtek.com, lgirdwood@gmail.com, perex@perex.cz,
tiwai@suse.com, linux-sound@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18-5.10] ASoC: rt5645: Perform the initial jack detect at probe
Date: Mon, 31 Aug 2026 09:24:34 -0400 [thread overview]
Message-ID: <20260831133314.4125787-246-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Rudi Heitbaum <rudi@heitbaum.com>
[ Upstream commit 54b279699279411c77c8afbc73b83c70740a7303 ]
The only initial jack detect is the rt5645_irq(0, rt5645) at the end of
rt5645_set_jack_detect(). A card described with simple-audio-card has no
machine driver to call that, so jack state is only ever sampled from an
edge on hp-detect-gpios.
A headphone already in the socket at boot is therefore never noticed, and
the card is silent with every mixer control set correctly.
rt5645_jack_detect() is what force enables the "LDO2" and "Mic Det Power"
supplies that the "HP amp" widget depends on, and what programs
RT5645_CHARGE_PUMP away from its reset value, so without it "HP amp"
cannot power up. Unplugging and replugging the jack is the only way to
recover.
Do the detect at the end of the component probe when the driver owns a
hp-detect GPIO and the codec's own jack detect is unused, which is the
case that has no other trigger. A machine driver calling
rt5645_set_jack_detect() later just repeats it.
Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
Link: https://patch.msgid.link/anNU3tOUR7rOReSB@5e001e58230e
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
## Phase 1: Commit Message Forensics
### Step 1.1: Subject line
**Record:** `[ASoC: rt5645]` `[Perform]` — Perform initial headphone
jack detection during component probe for GPIO-based jack-detect setups
without a machine driver.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Rudi Heitbaum `<rudi@heitbaum.com>` (author)
- **Link:** https://patch.msgid.link/anNU3tOUR7rOReSB@5e001e58230e
- **Signed-off-by:** Mark Brown `<broonie@kernel.org>` (ASoC maintainer,
committer)
- No `Fixes:`, `Reported-by:`, `Tested-by:`, `Reviewed-by:`, `Cc:
stable@vger.kernel.org`
- Notable: maintainer ack/applied; no syzbot or multi-reporter tags
### Step 1.3: Body analysis
**Record:**
- **Bug:** With `simple-audio-card` (no machine driver calling
`rt5645_set_jack_detect()`), jack state is only sampled on GPIO edge
transitions. Headphones already inserted at boot are never detected.
- **Symptom:** Card is silent despite correct mixer settings;
unplug/replug is the only recovery.
- **Root cause:** `rt5645_jack_detect()` enables `LDO2`, `Mic Det
Power`, and programs `RT5645_CHARGE_PUMP` — required for the `HP amp`
DAPM widget. Without an initial detect, HP amp cannot power up.
- **Fix approach:** Call `rt5645_irq(0, rt5645)` at end of
`rt5645_probe()` when `jd_mode == 0` and codec `hp-detect` GPIO is
present.
- **Version info:** None in message.
### Step 1.4: Hidden bug fix?
**Record:** Yes — clearly a functional bug fix disguised as
initialization. Not cleanup or optimization; restores missing probe-time
hardware setup.
---
## Phase 2: Diff Analysis
### Step 2.1: Inventory
**Record:**
- **Files:** `sound/soc/codecs/rt5645.c` (+4 lines, 0 removed)
- **Function modified:** `rt5645_probe()`
- **Scope:** Single-file, surgical fix
### Step 2.2: Code flow change
**Record:**
- **Before:** `rt5645_probe()` returns after EQ param allocation with no
jack detect when using external GPIO (`jd_mode == 0`).
- **After:** When `!rt5645->pdata.jd_mode && rt5645->gpiod_hp_det`,
calls `rt5645_irq(0, rt5645)`, which queues `jack_detect_work` (250 ms
delay), reads GPIO, and runs `rt5645_jack_detect()` to power codec
paths.
- **Path affected:** Component probe initialization for GPIO jack-detect
configurations.
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Logic / correctness — missing initialization
- **Mechanism:** Initial jack detect only happened via
`rt5645_set_jack_detect()` → `rt5645_irq(0, rt5645)`. Cards without a
machine driver never trigger this; GPIO edges after boot are the only
other trigger, so a pre-inserted jack is missed and HP power path
stays off.
### Step 2.4: Fix quality
**Record:**
- Obviously correct: reuses the existing `rt5645_irq()` →
`rt5645_jack_detect_work()` → `rt5645_jack_detect()` path already used
by `rt5645_set_jack_detect()`.
- Minimal and self-contained.
- **Regression risk:** Low. `snd_soc_jack_report()` safely no-ops on
NULL jack (`if (!jack || !jack->jack) return;`). Machine drivers that
call `rt5645_set_jack_detect()` later simply repeat detection, per
commit message. Condition limits scope to `jd_mode == 0` with codec
`hp-detect` GPIO.
---
## Phase 3: Git History Investigation
### Step 3.1: Blame
**Record:** Probe return path (lines 3493–3500) dates to 2018 (EQ param)
and 2021 (ENOMEM check). Missing initial detect is longstanding. GPIO
hp-detect path via `gpiod_hp_det` since commit `0b0cefc8fd105` (2015).
`jd_mode == 0` GPIO path in `rt5645_jack_detect_work()` since
`6e747d5311fc6` (2015).
### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: Related file history
**Record:** Recent rt5645 changes in this tree include deadlock fix
(`6ef5d5b92f711`), DMI quirks, push-button fixes.
`rt5645_set_jack_detect()` added in `f3fa1bbd836a7` (2014); `set_jack`
component callback in `7f6ecc220272d` (2023). Standalone one-patch fix,
not part of a series.
### Step 3.4: Author context
**Record:** Rudi Heitbaum is an active embedded/DRM contributor; this is
his first rt5645 change in this tree. Mark Brown (maintainer) committed
it to mainline as `54b2796992794`.
### Step 3.5: Dependencies
**Record:** No prerequisites. All symbols (`rt5645_irq`, `gpiod_hp_det`,
`jd_mode`) exist in this tree. `git apply --check` on mainline patch
succeeds cleanly.
---
## Phase 4: Mailing List and External Research
### Step 4.1: Original discussion
**Record:**
- **URL:** https://patch.msgid.link/anNU3tOUR7rOReSB@5e001e58230e
- **Series:** v1 only (single patch)
- **Feedback:** Mark Brown applied to `for-7.2` sound tree; no NAKs, no
stable nomination in thread
- Thread saved via `b4 dig -m /tmp/rt5645-jack.mbox`
### Step 4.2: Reviewers
**Record:** CC'd: `lgirdwood@gmail.com`, `broonie@kernel.org`, `linux-
sound@vger.kernel.org`, `linux-kernel@vger.kernel.org`
### Step 4.3: Bug report
**Record:** No external bug report or syzbot link. Bug described in
commit message from author's platform experience.
### Step 4.4: Related patches
**Record:** Standalone; no series dependencies.
### Step 4.5: Stable list
**Record:** Not searched (lore blocked for web fetch); b4 thread shows
no stable nomination. Absence is not a negative signal per instructions.
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key functions
**Record:** `rt5645_probe()` (modified); calls `rt5645_irq()` →
`rt5645_jack_detect_work()` → `rt5645_jack_detect()`.
### Step 5.2: Callers
**Record:** `rt5645_probe()` is the component `.probe` callback, invoked
during ASoC card bring-up. `rt5645_irq()` also called from
`rt5645_set_jack_detect()` (machine drivers: `rockchip_rt5645.c`, Intel
`cht_bsw_rt5645.c`, `bdw-rt5650.c`, AMD `acp-rt5645.c`, Mediatek mt8173
boards) and codec I2C IRQ handler.
### Step 5.3: Callees
**Record:** `rt5645_irq()` queues delayed work; work handler reads
`gpiod_hp_det`, calls `rt5645_jack_detect()` which writes registers,
enables DAPM pins (`LDO2`, `Mic Det Power`), programs charge pump.
### Step 5.4: Reachability
**Record:** Triggered at every boot/probe for boards with `jd_mode == 0`
and codec `hp-detect` GPIO. Common on embedded DT boards using `simple-
audio-card` without custom machine driver.
`simple_util_init_aux_jacks()` does not help rt5645 because rt5645 lacks
`get_jack_type` callback.
### Step 5.5: Similar patterns
**Record:** `rt5645_set_jack_detect()` already ends with `rt5645_irq(0,
rt5645)` — fix mirrors that established pattern.
---
## Phase 6: Cross-Reference Against Local Tree
### Step 6.1: Buggy code present?
**Record:** **Yes.** Local tree is **v6.18.44** (`stable/linux-6.18.y`).
`rt5645_probe()` at lines 3497–3500 returns without initial jack detect.
All relevant infrastructure (`gpiod_hp_det`, `jd_mode`, `rt5645_irq`,
`rt5645_jack_detect_work` case 0) is present. Bug predates 6.18 branch
(present since ~2015 GPIO path).
### Step 6.2: Backport complications
**Record:** **Clean apply** — `git apply --check` on mainline commit
`54b2796992794` succeeds with no conflicts.
### Step 6.3: Related fixes already present?
**Record:** No equivalent fix in this tree. Commit `54b2796992794` is in
mainline but not in `stable/linux-6.18.y` (confirmed via `git log
stable/linux-6.18.y..origin/master -- sound/soc/codecs/rt5645.c`).
---
## Phase 7: Subsystem and Maintainer Context
### Step 7.1: Subsystem criticality
**Record:** **IMPORTANT** — ASoC codec driver
(`sound/soc/codecs/rt5645.c`). Affects audio on rt5645/rt5650 platforms
(ARM SBCs, some x86 ACPI tablets).
### Step 7.2: Subsystem activity
**Record:** Actively maintained; recent stable-tree rt5645 commits
include DMI quirks, deadlock fix, push-button fixes.
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who is affected
**Record:** **Platform-specific** — boards using rt5645 with:
- `realtek,jd-mode = <0>` (or unset jd_mode via DT parse path)
- Codec `hp-detect` GPIO
- No machine driver calling `rt5645_set_jack_detect()` (e.g. `simple-
audio-card`)
### Step 8.2: Trigger conditions
**Record:** Headphones plugged in before/during boot. Deterministic on
affected hardware; not timing-dependent. Unprivileged users cannot
trigger remotely, but every boot with pre-inserted headphones hits it.
### Step 8.3: Failure mode severity
**Record:** **MEDIUM-HIGH** — complete loss of headphone audio at boot
(silent output). No crash, corruption, or security impact. Workaround
exists (unplug/replug). For embedded devices this is a significant
functional defect.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for affected hardware users (audio works at boot)
- **Risk:** VERY LOW (4 lines, reuses existing path, guarded conditions)
- **Ratio:** Favorable — classic hardware workaround fix
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence summary
**FOR backport:**
- Real, reproducible user-visible bug (silent audio with headphones at
boot)
- Small, surgical, obviously correct fix
- Maintainer-reviewed and merged
- Hardware platform workaround category (explicit stable exception)
- Buggy code exists in v6.18.44; patch applies cleanly
- No dependencies
**AGAINST backport:**
- Not a crash/security/corruption issue
- Narrow hardware configuration
- User workaround available (replug jack)
- No explicit stable nomination or external bug reports
**Unresolved:** No independent Tested-by; exact board DT that triggered
the fix not identified in-tree (no rt5645 DTS nodes in this checkout).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — mirrors
`rt5645_set_jack_detect()`; maintainer merged; logic verified in code
2. Fixes a real bug affecting users? **PASS** — silent audio on affected
boards
3. Important issue? **PASS** — significant functional failure on
affected hardware (hardware quirk category)
4. Small and contained? **PASS** — 4 lines, one file
5. No new features or APIs? **PASS**
6. Can apply to local tree? **PASS** — clean apply verified
### Step 9.3: Exception category
**Record:** Hardware quirk/workaround — missing initialization for GPIO
jack-detect platforms.
### Step 9.4: Decision rationale
For **linux-6.18.y (v6.18.44)**, this commit fixes a longstanding
initialization gap where rt5645 codec HP amplifier power paths are never
enabled when headphones are already inserted at boot on GPIO jack-detect
platforms without a machine driver. The fix is minimal, reuses existing
detection infrastructure, applies cleanly, and falls squarely in the
hardware workaround category that stable trees routinely accept. While
not a crash or security issue, silent audio on every cold boot is a
meaningful functional defect for affected embedded platforms.
---
## Verification
- [Phase 1] `git describe HEAD` → v6.18.44; parsed commit message tags
and body
- [Phase 2] Read diff and `rt5645_probe()`, `rt5645_irq()`,
`rt5645_jack_detect_work()`, `rt5645_jack_detect()` in local tree
- [Phase 2] Verified `snd_soc_jack_report()` NULL safety in
`sound/soc/soc-jack.c:39-40`
- [Phase 3] `git blame -L 3493,3500 sound/soc/codecs/rt5645.c` → lines
from 2015–2021
- [Phase 3] `git log -S "gpiod_hp_det"` → introduced `0b0cefc8fd105`
(2015)
- [Phase 3] `git show 7f6ecc220272d` → set_jack callback (2023), present
in tree
- [Phase 3] `git show 54b2796992794` → mainline commit SHA and metadata
- [Phase 3] `git log stable/linux-6.18.y..origin/master --
sound/soc/codecs/rt5645.c` → fix not yet in stable branch
- [Phase 4] `b4 dig -c 54b2796992794` → lore URL found
- [Phase 4] `b4 dig -c 54b2796992794 -a` → single v1 patch
- [Phase 4] `b4 dig -c 54b2796992794 -w` → CC list with
broonie@kernel.org, linux-sound
- [Phase 4] `b4 dig -m /tmp/rt5645-jack.mbox` → Mark Brown applied, no
objections
- [Phase 5] `grep rt5645_set_jack_detect` → machine driver call sites
verified
- [Phase 5] Verified rt5645 lacks `get_jack_type` →
`simple_util_init_aux_jacks()` won't call set_jack
- [Phase 6] Confirmed missing fix at `rt5645_probe()` lines 3497–3500
- [Phase 6] `git apply --check` on `54b2796992794` patch → clean apply
- [Phase 6] `grep rt5645` in `*.dts*` → no in-tree DTS examples (driver
code still present)
- [Phase 8] Verified `rt5645_get_pdata()` / `rt5645_check_dp()` jd_mode
handling in local tree
**YES**
sound/soc/codecs/rt5645.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c
index 29a403526cd9e..428cc6850dc5e 100644
--- a/sound/soc/codecs/rt5645.c
+++ b/sound/soc/codecs/rt5645.c
@@ -3497,6 +3497,10 @@ static int rt5645_probe(struct snd_soc_component *component)
if (!rt5645->eq_param)
return -ENOMEM;
+ /* no machine driver to call rt5645_set_jack_detect(), so detect here */
+ if (!rt5645->pdata.jd_mode && rt5645->gpiod_hp_det)
+ rt5645_irq(0, rt5645);
+
return 0;
}
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:41 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 ` Sasha Levin [this message]
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-246-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=broonie@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=oder_chiou@realtek.com \
--cc=patches@lists.linux.dev \
--cc=perex@perex.cz \
--cc=rudi@heitbaum.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