* [PATCH AUTOSEL 6.18] drm/panel/tdo-tl070wsh30: Use refcounted allocation in place of devm_kzalloc()
[not found] <20260831133314.4125787-1-sashal@kernel.org>
@ 2026-08-31 13:20 ` Sasha Levin
2026-08-31 13:42 ` sashiko-bot
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] drm/arm/komeda: fix error handling for clk_prepare_enable() and callers Sasha Levin
` (65 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:20 UTC (permalink / raw)
To: patches, stable
Cc: Albert Esteve, Neil Armstrong, Maxime Ripard, Dmitry Baryshkov,
Thomas Zimmermann, Sasha Levin, maarten.lankhorst, airlied,
simona, dri-devel, linux-kernel
From: Albert Esteve <aesteve@redhat.com>
[ Upstream commit 928decbed75bf215a8d0eecc88aa2edc77023db2 ]
Move to using the new API devm_drm_panel_alloc() to allocate the
panel. In the call to the new API, avoid using explicit type and use
__typeof() for more type safety.
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Reviewed-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Albert Esteve <aesteve@redhat.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patch.msgid.link/20260508-drm_panel_init_rm-v2-6-0bd4ac429971@redhat.com
Signed-off-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/panel/tdo-tl070wsh30: Use refcounted
allocation in place of devm_kzalloc()`
**Local tree:** `v6.18.43` (`6.18.43`) — Linux 6.18.y stable series
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Parse the subject line
**Record:** `[drm/panel/tdo-tl070wsh30]` — migrate allocation — convert
from `devm_kzalloc()` + `drm_panel_init()` to `devm_drm_panel_alloc()`.
### Step 1.2: Parse all commit message tags
**Record:**
- **Reviewed-by:** Neil Armstrong, Maxime Ripard, Dmitry Baryshkov,
Thomas Zimmermann (DRM/panel maintainers/reviewers)
- **Signed-off-by:** Albert Esteve (author), Maxime Ripard (maintainer)
- **Link:** `https://patch.msgid.link/20260508-drm_panel_init_rm-v2-6-
0bd4ac429971@redhat.com` (patch 6/10 of `drm_panel_init_rm` v2 series)
- **No** Fixes:, Reported-by:, Cc: stable, Tested-by:, Acked-by:
Notable: multiple maintainer Reviewed-by tags; part of a reviewed
10-patch series.
### Step 1.3: Analyze commit body
**Record:**
- **Bug described:** Not in the per-driver commit body itself; the
series cover letter (patch 00/10) states the old `devm_kzalloc()` +
`drm_panel_init()` pattern is unsafe.
- **Symptom:** Use-after-free when the panel device is unbound — `devm`
frees the panel context struct immediately, but the DRM device may
still reference the embedded `drm_panel` via a panel bridge.
- **Root cause (series):** Panel memory lifetime tied to `devm_kzalloc`
does not match the lifetime of DRM-side panel bridge references.
`devm_drm_panel_alloc()` wraps allocation in a `kref` scheme so memory
is freed only when the last reference is dropped.
- **Version info:** None in commit message.
### Step 1.4: Detect hidden bug fixes
**Record:** Yes — despite no "fix" in the subject, this is a **use-
after-free prevention** fix, not a cosmetic refactor. The series cover
letter explicitly documents UAF on panel device unbind. The per-driver
commit is the mechanical driver-side half of that fix.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory the changes
**Record:**
- **Files:** `drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c` only (+7/−7
lines)
- **Functions modified:** `tdo_tl070wsh30_panel_add()`,
`tdo_tl070wsh30_panel_probe()`
- **Scope:** Single-file, surgical driver fix
### Step 2.2: Code flow change per hunk
**Hunk 1 — `tdo_tl070wsh30_panel_add()`:**
- **Before:** Explicit `drm_panel_init()` call to initialize the
embedded `drm_panel`.
- **After:** `drm_panel_init()` removed; initialization now happens
inside `devm_drm_panel_alloc()` during probe.
- **Path affected:** Normal probe path.
**Hunk 2 — `tdo_tl070wsh30_panel_probe()`:**
- **Before:** `devm_kzalloc()` allocation; `-ENOMEM` on failure.
- **After:** `devm_drm_panel_alloc()` with `__typeof(*tdo_tl070wsh30),
base, ...`; `IS_ERR()` / `PTR_ERR()` error handling.
- **Path affected:** Probe initialization path.
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Use-after-free / memory lifetime bug
- **Mechanism:** `devm_kzalloc()` ties panel struct lifetime to panel
device devres release. When the panel DSI device unbinds, memory is
freed while `drmm_panel_bridge_add()` / `devm_drm_of_get_bridge()` on
the display side may still hold a `struct drm_panel *` through a panel
bridge. `devm_drm_panel_alloc()` allocates via `kzalloc()` (not
devres-backed memory), initializes `kref`, and registers a devm
cleanup action calling `drm_panel_put()`, decoupling panel memory
lifetime from naive devres free ordering.
### Step 2.4: Fix quality assessment
**Record:**
- **Obviously correct:** Yes — identical pattern already applied to 100+
panel drivers in this tree (e.g., `panel-jdi-lt070me05000.c`, `panel-
novatek-nt36672a.c`).
- **Minimal/surgical:** Yes — only allocation/init changes, no logic
changes.
- **Regression risk:** Very low — mechanical API swap using existing,
exported API.
- **Red flags:** None. No API changes, no cross-subsystem impact.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame changed lines
**Record:** Shallow history — all lines blame to `5d324e5159d9e` (6.18
merge base). Driver has used `devm_kzalloc()` + `drm_panel_init()` since
import into this tree. The vulnerable pattern is long-standing in this
driver.
### Step 3.2: Follow Fixes: tag
**Record:** N/A — no Fixes: tag present.
### Step 3.3: File history for related changes
**Record:**
- `devm_drm_panel_alloc()` infrastructure present in
`drivers/gpu/drm/drm_panel.c` and `include/drm/drm_panel.h`.
- Bulk migration already done: **100+** panel drivers use
`devm_drm_panel_alloc`.
- **6 drivers** still use `drm_panel_init()` — exactly the set targeted
by this series:
- `panel-tdo-tl070wsh30.c` (this commit)
- `panel-visionox-g2647fb105.c`, `panel-samsung-s6e63m0.c`, `panel-
sharp-ls043t1le01.c`, `panel-truly-nt35597.c`, `panel-startek-
kd070fhfid015.c`
- This commit is **patch 6/10** of `drm_panel_init_rm` v2; patch 10/10
makes `drm_panel_init()` static but is **not required** for this
driver patch to function.
### Step 3.4: Author's other commits
**Record:** Albert Esteve authored the full 10-patch series converting
the last remaining panel drivers. Maxime Ripard (DRM maintainer) signed
off. Multiple subsystem maintainers reviewed.
### Step 3.5: Prerequisites
**Record:**
- **Required:** `devm_drm_panel_alloc()` — **present** in 6.18.43.
- **Not required:** Patch 10/10 (`drm_panel_init()` static) — this
driver patch compiles and works without it; `drm_panel_init()` remains
exported in this tree.
- **Standalone:** Yes — single-driver change, self-contained.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original patch discussion
**Record:**
- **Series URL:**
https://lkml.iu.edu/hypermail/linux/kernel/2605.1/00251.html (`[PATCH
v2 00/10]`)
- **This patch URL:**
https://www.spinics.net/lists/kernel/msg6193227.html (`[PATCH v2
06/10]`)
- **Series revisions:** v1 → v2 (v2 removed kdoc precedence mentions)
- **Key feedback:** Series cover letter documents UAF; v2 is latest
revision.
- **Stable nominations:** None found in thread excerpts.
- **NAKs/concerns:** None found.
### Step 4.2: Reviewers
**Record:** CC'd to dri-devel, linux-kernel. To: Neil Armstrong, Maxime
Ripard, Thomas Zimmermann, David Airlie, Maarten Lankhorst, and other
DRM maintainers. Reviewed-by from Neil Armstrong and Maxime Ripard on
this specific patch.
### Step 4.3: Bug report
**Record:** No syzbot/KASAN report. Bug identified through API lifetime
analysis in the series cover letter, not a specific crash report.
Severity is still real (UAF on unbind).
### Step 4.4: Related patches
**Record:** Part of 10-patch series; each driver patch is independent.
Other patches in series target the other 5 remaining `drm_panel_init()`
callers. `panel-ilitek-ili9806e` was already converted in this tree via
earlier work.
### Step 4.5: Stable mailing list
**Record:** No stable-specific discussion found (not searched
exhaustively on lore stable list; no evidence against backport).
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `tdo_tl070wsh30_panel_probe()`,
`tdo_tl070wsh30_panel_add()`, `tdo_tl070wsh30_panel_remove()`
### Step 5.2: Callers
**Record:**
- `tdo_tl070wsh30_panel_probe()` — MIPI DSI core during device probe
(`module_mipi_dsi_driver`)
- `tdo_tl070wsh30_panel_add()` — called from probe
- Panel registered globally via `drm_panel_add()`; discovered by display
drivers via `of_drm_find_panel()` / `drm_of_find_panel_or_bridge()` →
`drmm_panel_bridge_add()` / `devm_drm_of_get_bridge()`
### Step 5.3: Callees
**Record:** `devm_drm_panel_alloc()` → `kzalloc()`, `kref_init()`,
`devm_add_action_or_reset(drm_panel_put_void)`, `drm_panel_init()`.
Probe also calls `devm_regulator_get()`, `devm_gpiod_get()`,
`drm_panel_of_backlight()`, `drm_panel_add()`, `mipi_dsi_attach()`.
### Step 5.4: Call chain / reachability
**Record:**
```
Device probe → mipi_dsi_driver.probe → devm_drm_panel_alloc →
drm_panel_add
Display probe → drm_of_find_panel_or_bridge → drmm_panel_bridge_add
(stores panel pointer)
Panel unbind → devm cleanup → [UAF if old pattern, fixed with refcounted
alloc]
```
**Userspace reachable:** Yes — via device hot-unplug, module unload, or
driver rebinding on embedded systems using this panel.
### Step 5.5: Similar patterns
**Record:** Same fix pattern applied to 100+ sibling panel drivers in
this tree. Six drivers (including this one) are the remaining unmigrated
instances targeted by the series.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Does buggy code exist?
**Record:** **Yes.** `panel-tdo-tl070wsh30.c` at lines 165–166 and
186–189 still uses `drm_panel_init()` + `devm_kzalloc()`.
`CONFIG_DRM_PANEL_TDO_TL070WSH30` is present in Kconfig.
### Step 6.2: Backport complications
**Record:** **Clean apply expected.** Current file content matches the
patch base (`index 227f97f9b136f`). Diff is identical to published
v2-6/10 on spinics. No conflicting changes in this file.
### Step 6.3: Related fixes already present?
**Record:** Infrastructure fix (`devm_drm_panel_alloc`) and bulk driver
migration already in 6.18.43. This specific driver conversion is **not**
yet applied. No alternate fix for this driver found.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/panel/` — **IMPORTANT** (display
subsystem). Affects embedded platforms using the TDO TL070WSH30 1024×600
DSI panel (`compatible = "tdo,tl070wsh30"`).
### Step 7.2: Subsystem activity
**Record:** Actively maintained. Recent 6.18.y commits include multiple
`drm/panel` fixes. Panel refcount infrastructure recently landed and
bulk-converted.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** **Driver-specific / platform-specific** — systems with
`CONFIG_DRM_PANEL_TDO_TL070WSH30` enabled and the TDO TL070WSH30 panel
connected via MIPI DSI. Not universal, but real hardware (listed in
`panel-simple-dsi.yaml` compatible list).
### Step 8.2: Trigger conditions
**Record:**
- Panel DSI device unbinds (module unload, device removal, driver
unbind) while DRM display driver still holds a panel bridge reference
- Requires display + panel driver interaction via
`drm_of_find_panel_or_bridge()` path
- **Unprivileged direct trigger:** No (requires device/module management
capability)
- **Likelihood:** Low-to-moderate on embedded systems with hotplug or
driver reload; not every boot
### Step 8.3: Failure mode severity
**Record:** **Use-after-free** → kernel oops/panic when DRM accesses
freed panel memory through panel bridge. **Severity: HIGH** (crash,
potential security implications from UAF).
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for affected hardware — prevents UAF crash on panel
unbind
- **Risk:** VERY LOW — 7-line mechanical change, pattern proven across
100+ drivers, multiple maintainer reviews
- **Ratio:** Strong benefit, minimal risk
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Fixes documented UAF on panel device unbind (series cover letter)
- Same pattern already applied to 100+ panel drivers in 6.18.43
- Prerequisite API (`devm_drm_panel_alloc`) exists in this tree
- Buggy code still present in this tree (6 of 6 remaining
`drm_panel_init()` users)
- Small, surgical, reviewed by Neil Armstrong, Maxime Ripard, Dmitry
Baryshkov, Thomas Zimmermann
- UAF → crash is stable-worthy
**AGAINST backport:**
- Per-driver commit message doesn't explicitly say "fix UAF" (rationale
is in series cover)
- No syzbot/reporter crash report
- Affects niche hardware only
- Part of a series (though this patch is standalone-applicable)
**Unresolved:**
- `drm_panel_get()` has no external callers in this tree; exact UAF
prevention mechanism relies on devm action ordering and kref-managed
lifetime rather than explicit `drm_panel_get()` from bridge code.
Maintainers accepted this across the subsystem.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — mechanical API migration,
multiple Reviewed-by from maintainers, proven pattern in 100+ sibling
drivers.
2. Fixes a real bug? **PASS** — UAF on panel unbind documented in
series.
3. Important issue? **PASS** — UAF/crash, severity HIGH.
4. Small and contained? **PASS** — 1 file, ~14 lines changed.
5. No new features/APIs? **PASS** — uses existing
`devm_drm_panel_alloc()`.
6. Can apply to local tree? **PASS** — API present, buggy code present,
clean apply expected.
### Step 9.3: Exception categories
**Record:** N/A — not a device ID, quirk, DT, build, or docs fix. This
is a genuine memory-safety bug fix.
### Step 9.4: Decision rationale
This commit completes the refcounted-allocation migration for one of the
last six panel drivers still using the unsafe `devm_kzalloc()` +
`drm_panel_init()` pattern in Linux 6.18.43. The prerequisite
infrastructure is already in this stable tree, the vulnerable code is
present, and the fix matches a pattern already applied across the vast
majority of panel drivers. The series documents a real use-after-free
when the panel device unbinds while the DRM subsystem retains a panel
bridge reference. The change is minimal, maintainer-reviewed, and low-
risk.
---
## What Problem This Solves
The TDO TL070WSH30 panel driver allocates its context structure with
`devm_kzalloc()`, which frees memory immediately when the panel DSI
device unbinds. Display drivers that wrap the panel in a `panel_bridge`
(via `drmm_panel_bridge_add()` / `devm_drm_of_get_bridge()`) can retain
a pointer to the embedded `drm_panel` after that free, causing a use-
after-free and potential kernel crash on subsequent DRM access.
Switching to `devm_drm_panel_alloc()` ties panel memory lifetime to a
`kref` with a devm-managed `drm_panel_put()` cleanup action, matching
the allocation model used by the rest of the panel subsystem in 6.18.y.
---
## Verification
- [Phase 1] Parsed subject, tags, body; identified series context from
Link tag
- [Phase 1] Fetched series cover letter at lkml.iu.edu — confirmed UAF
rationale
- [Phase 1] Fetched patch 6/10 at spinics.net — confirmed diff matches
provided commit
- [Phase 2] Read full `panel-tdo-tl070wsh30.c` — confirmed old pattern
at lines 165–166, 186–189
- [Phase 2] Read `__devm_drm_panel_alloc()` in `drm_panel.c` — confirmed
kref + devm put action
- [Phase 3] `git describe HEAD` → `v6.18.43`; `make kernelversion` →
`6.18.43`
- [Phase 3] Counted drivers: 6 still use `drm_panel_init()`, 100+ use
`devm_drm_panel_alloc`
- [Phase 3] Verified `panel-jdi-lt070me05000.c` as example of already-
converted sibling driver
- [Phase 4] Series discussion at
https://lkml.iu.edu/hypermail/linux/kernel/2605.1/00251.html
- [Phase 4] Patch discussion at
https://www.spinics.net/lists/kernel/msg6193227.html
- [Phase 4] b4 dig: could not run — commit not present in local tree (no
commit hash available)
- [Phase 5] Traced `drmm_panel_bridge_add()` /
`devm_drm_of_get_bridge()` in `bridge/panel.c` — panel pointer stored
in bridge
- [Phase 5] Confirmed `drm_panel_get()` has no external callers in this
tree (only definition in `drm_panel.c`)
- [Phase 6] Confirmed `devm_drm_panel_alloc` in
`include/drm/drm_panel.h` and `drm_panel.c`
- [Phase 6] Confirmed `CONFIG_DRM_PANEL_TDO_TL070WSH30` in Kconfig
- [Phase 6] Confirmed `compatible = "tdo,tl070wsh30"` in DT bindings
- [Phase 8] Assessed UAF → crash as HIGH severity for affected platforms
**YES**The background git history lookups finished. Both searches (`-S
"allocated by devm_drm_panel_alloc"` and `-S "kref_init"` / `-S
"__devm_drm_panel_alloc"`) only hit the shallow tree base
(`5d324e5159d9e`, the 6.18-rc8 merge), so they didn’t add finer-grained
history beyond what we already verified in code.
That’s consistent with this checkout: `devm_drm_panel_alloc()` and the
panel refcount machinery are already in 6.18.43, while `panel-tdo-
tl070wsh30.c` is still one of six drivers on the old `devm_kzalloc()` +
`drm_panel_init()` path. The backport recommendation remains **YES**.
drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c b/drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c
index 227f97f9b136f..13cfe252a838d 100644
--- a/drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c
+++ b/drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c
@@ -162,9 +162,6 @@ static int tdo_tl070wsh30_panel_add(struct tdo_tl070wsh30_panel *tdo_tl070wsh30)
return err;
}
- drm_panel_init(&tdo_tl070wsh30->base, &tdo_tl070wsh30->link->dev,
- &tdo_tl070wsh30_panel_funcs, DRM_MODE_CONNECTOR_DSI);
-
err = drm_panel_of_backlight(&tdo_tl070wsh30->base);
if (err)
return err;
@@ -183,10 +180,13 @@ static int tdo_tl070wsh30_panel_probe(struct mipi_dsi_device *dsi)
dsi->format = MIPI_DSI_FMT_RGB888;
dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM;
- tdo_tl070wsh30 = devm_kzalloc(&dsi->dev, sizeof(*tdo_tl070wsh30),
- GFP_KERNEL);
- if (!tdo_tl070wsh30)
- return -ENOMEM;
+ tdo_tl070wsh30 = devm_drm_panel_alloc(&dsi->dev,
+ __typeof(*tdo_tl070wsh30), base,
+ &tdo_tl070wsh30_panel_funcs,
+ DRM_MODE_CONNECTOR_DSI);
+
+ if (IS_ERR(tdo_tl070wsh30))
+ return PTR_ERR(tdo_tl070wsh30);
mipi_dsi_set_drvdata(dsi, tdo_tl070wsh30);
tdo_tl070wsh30->link = dsi;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.10] drm/arm/komeda: fix error handling for clk_prepare_enable() and callers
[not found] <20260831133314.4125787-1-sashal@kernel.org>
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18] drm/panel/tdo-tl070wsh30: Use refcounted allocation in place of devm_kzalloc() Sasha Levin
@ 2026-08-31 13:21 ` Sasha Levin
2026-08-31 13:59 ` sashiko-bot
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: validate and share PSP fw_pri_buf copies via psp_copy_fw Sasha Levin
` (64 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:21 UTC (permalink / raw)
To: patches, stable
Cc: Gustavo Kenji Mendonça Kaneko, Liviu Dudau, Sasha Levin,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-kernel
From: Gustavo Kenji Mendonça Kaneko <kaneko.dev@pm.me>
[ Upstream commit 6502eb8cfcd6f7bc5f1f8b73ee524112bd93319d ]
komeda_dev_resume() calls clk_prepare_enable() without checking the
return value. If the clock fails to enable, the function returns 0
(success) while IRQs are enabled and IOMMU is connected on potentially
unclocked hardware, causing undefined behavior on resume.
Propagate the error from clk_prepare_enable() and fix all call sites
in komeda_drv.c that previously ignored the return value of
komeda_dev_resume():
- komeda_platform_probe(): if resume fails, jump to err_destroy_mdev
(skipping the suspend call, since the clock was never enabled)
- komeda_pm_resume(): propagate the error and skip
drm_mode_config_helper_resume() on failure
This issue was found by code review without access to Komeda hardware.
Signed-off-by: Gustavo Kenji Mendonça Kaneko <kaneko.dev@pm.me>
Reviewed-by: Liviu Dudau <liviu.dudau@arm.com>
Link: https://patch.msgid.link/20260609130828.1066038-1-kaneko.dev@pm.me
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/arm/komeda: fix error handling for
clk_prepare_enable() and callers`
**Local tree:** `v6.18.44` (Makefile: 6.18.44)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/arm/komeda]` `[fix]` — Correct error handling for
`clk_prepare_enable()` and propagate errors to all callers.
### Step 1.2: Tags
**Record:**
- **Fixes:** — absent (expected for manual review)
- **Reported-by:** — absent
- **Tested-by:** — absent
- **Reviewed-by:** Liviu Dudau `<liviu.dudau@arm.com>` (Komeda/ARM DRM
maintainer)
- **Acked-by:** — absent
- **Link:**
https://patch.msgid.link/20260609130828.1066038-1-kaneko.dev@pm.me
- **Cc: stable:** — absent (not a negative signal)
- **Signed-off-by:** Gustavo Kenji Mendonça Kaneko (author); Liviu Dudau
(maintainer); ignore pipeline-added Sasha Levin SOB
**Notable:** Reviewed by subsystem maintainer. No syzbot/user crash
report.
### Step 1.3: Body analysis
**Record:**
- **Bug:** `komeda_dev_resume()` calls `clk_prepare_enable()` without
checking its return value.
- **Symptom:** On clock-enable failure, function returns 0 (success)
while IRQs are enabled and IOMMU is connected on potentially unclocked
hardware.
- **Failure mode:** Undefined behavior — MMIO to display blocks without
a running clock.
- **Affected paths:** System suspend/resume (`komeda_pm_resume`), probe
when runtime PM is disabled, and the core resume helper itself.
- **Root cause:** Missing error propagation from `clk_prepare_enable()`
through resume call chain.
- **Version info:** None stated.
- **Discovery:** Code review only; author had no Komeda hardware.
### Step 1.4: Hidden bug fix detection
**Record:** Explicit bug fix, not disguised cleanup. Classic missing-
return-value-check pattern in a PM/resume path.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
| File | Changes |
|------|---------|
| `komeda_dev.c` | +4 / -1 (check `clk_prepare_enable` return) |
| `komeda_drv.c` | +10 / -4 (propagate errors in probe and system PM
resume) |
**Functions modified:** `komeda_dev_resume()`,
`komeda_platform_probe()`, `komeda_pm_resume()`
**Scope:** Single-driver, surgical fix (~15 net lines). Two files, one
subsystem.
### Step 2.2: Code flow per hunk
**Hunk 1 — `komeda_dev_resume()`:**
- **Before:** `clk_prepare_enable()` return ignored; always proceeds to
`enable_irq()` and `connect_iommu()`, returns 0.
- **After:** On clock failure, return error immediately; skip IRQ/IOMMU
setup.
- **Path:** Resume / probe-init path.
**Hunk 2 — `komeda_platform_probe()`:**
- **Before:** `komeda_dev_resume()` called with ignored return; probe
continues to KMS attach on failure.
- **After:** On failure, `goto err_destroy_mdev` (skips
`komeda_dev_suspend()` since clock was never enabled).
- **Path:** Probe error path when runtime PM is not enabled.
**Hunk 3 — `komeda_pm_resume()`:**
- **Before:** `komeda_dev_resume()` failure ignored;
`drm_mode_config_helper_resume()` always runs.
- **After:** Propagate resume error; skip DRM mode-config resume on
hardware failure.
- **Path:** System sleep resume.
### Step 2.3: Bug mechanism
**Record:** **Category:** Error-path / logic correctness fix.
**Mechanism:** Ignored `clk_prepare_enable()` error allows subsequent
MMIO (`d71_enable_irq()` → `malidp_write32_mask()` on GCU/CU/LPU/DOU
blocks; `d71_connect_iommu()` → GCU/LPU register writes) on unclocked
hardware, while callers believe resume succeeded.
### Step 2.4: Fix quality
**Record:**
- Fix is minimal and follows standard kernel error-propagation patterns.
- `err_destroy_mdev` correctly avoids calling `komeda_dev_suspend()`
when resume never enabled the clock.
- `komeda_rt_pm_resume()` already returned `komeda_dev_resume()`'s
value; this patch completes coverage for probe and system PM.
- **Regression risk:** Low. Only adds early error returns on failure
paths.
- **Note:** `enable_irq()` and `connect_iommu()` return values remain
ignored (pre-existing; out of scope).
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** Buggy `clk_prepare_enable()` without check introduced in
`2ebb6701654e0d` ("drm/komeda: Adds power management support",
2019-09-26). IRQ/IOMMU code added in `efb46508851874` (2019-12-12). Bug
has existed since Komeda PM support landed.
### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag in commit message.
### Step 3.3: Related file history
**Record:** Recent komeda changes in this tree are unrelated (FB
creation, AFBC overflow fix, DRM client setup). No prior fix for this
clk error-handling issue. Standalone patch, not part of a series.
### Step 3.4: Author commits
**Record:** No prior komeda commits from Kaneko in this tree. Fix
reviewed/committed by maintainer Liviu Dudau.
### Step 3.5: Dependencies
**Record:** No dependencies. No prerequisite commits. Self-contained.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:** Link from commit message (`patch.msgid.link`) blocked by
Anubis bot protection. `b4 dig` requires a commit hash; commit is not in
this tree, so `b4 dig -c` could not be used. Lore.kernel.org search also
blocked. **Could not retrieve mailing list thread content.**
### Step 4.2: Reviewers
**Record:** UNVERIFIED via b4 `-w`. Commit message confirms **Reviewed-
by: Liviu Dudau** (ARM Komeda maintainer).
### Step 4.3: Bug report
**Record:** No external bug report. Author states issue found by code
review without hardware access.
### Step 4.4: Related patches / series
**Record:** Standalone 1-patch fix. No series dependencies identified.
### Step 4.5: Stable list history
**Record:** UNVERIFIED — lore stable search blocked.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `komeda_dev_resume()`, `komeda_platform_probe()`,
`komeda_pm_resume()`.
### Step 5.2: Callers
**Record:**
| Caller | Context |
|--------|---------|
| `komeda_platform_probe()` | Device probe, when
`!pm_runtime_enabled(dev)` |
| `komeda_rt_pm_resume()` | Runtime PM resume (already propagated
return) |
| `komeda_pm_resume()` | System sleep resume |
Komeda supports `arm,mali-d71` and `arm,mali-d32` (local tree; mainline
also has `armchina,linlon-d6`).
### Step 5.3: Callees
**Record:** `clk_prepare_enable()` → on success,
`mdev->funcs->enable_irq()` (MMIO mask writes) and optional
`connect_iommu()` (MMIO + timeout polling).
### Step 5.4: Reachability
**Record:** Triggered on every system resume and probe (when runtime PM
disabled) for Komeda hardware. `CONFIG_DRM_KOMEDA` tristate driver for
ARM SoCs with Mali-D71/D32 display. Reachable from kernel PM resume —
not a userspace syscall path, but affects all suspend/resume cycles on
affected hardware.
### Step 5.5: Similar patterns
**Record:** Other DRM drivers in this tree have received clk error-
handling fixes (e.g., mediatek, rockchip, cdns-mhdp). Same class of bug.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE (6.18.y)
### Step 6.1: Buggy code present?
**Record:** **YES.** Current tree at `komeda_dev.c:316` has unchecked
`clk_prepare_enable(mdev->aclk)`. Callers at `komeda_drv.c:78` and
`:144` ignore the return value. Bug present since 2019, well before 6.18
branch.
### Step 6.2: Backport complications
**Record:** **Clean apply expected.** Local
`komeda_drv.c`/`komeda_dev.c` match the patch's "before" state at all
change sites. Only cosmetic difference: mainline `of_match` includes
`armchina,linlon-d6`; that entry is outside the fix hunks and does not
affect applicability.
### Step 6.3: Related fixes already present?
**Record:** **No.** `git log --grep` found no prior komeda clk error-
handling fix in this tree.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** **drivers/gpu/drm/arm/komeda** — PERIPHERAL (ARM Mali
display IP, embedded/SoC). Important for platforms using Komeda, not
universal.
### Step 7.2: Subsystem activity
**Record:** Moderately active in 6.18.y (client setup, DMA mask, AFBC
fixes). Mature driver with ongoing maintenance.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of `CONFIG_DRM_KOMEDA` on ARM SoCs with Mali-D71/D32
(and linlon-d6 on newer trees). Platform-specific, not all kernel users.
### Step 8.2: Trigger conditions
**Record:** `clk_prepare_enable(mdev->aclk)` returns an error — clock
provider failure, DT misconfiguration, resume ordering issue, power-
domain not ready. Uncommon on healthy systems, more plausible during
suspend/resume or probe on misconfigured/problematic platforms. Not
userspace-triggerable directly.
### Step 8.3: Failure mode severity
**Record:** MMIO to display controller blocks without clock → bus hang,
kernel oops, or unpredictable hardware behavior. Function returns
success, so PM stack and DRM resume continue on broken hardware.
**Severity: HIGH** (potential crash/hang on resume); not CRITICAL (no
demonstrated exploit, rare trigger, no user reports).
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Prevents undefined hardware access and false-success
resume on clock failure; correct probe teardown on init failure.
- **Risk:** Very low — ~15 lines, error-path only, maintainer-reviewed.
- **Ratio:** Favorable for stable. Conservative error handling with
minimal regression surface.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real, verifiable bug: ignored `clk_prepare_enable()` return since 2019
- Subsequent code performs MMIO (`enable_irq`, `connect_iommu`)
requiring clock
- Fix propagates errors through probe and system PM resume
- Small, surgical, maintainer-reviewed (Liviu Dudau)
- Bug exists in this 6.18.y tree; patch applies at all change sites
- PM/resume error-handling fixes are standard stable material
**AGAINST backport:**
- No user report, syzbot report, or hardware reproduction
- Trigger (clock enable failure) likely rare on production systems
- Driver affects a limited hardware population
- Could not verify mailing list discussion (lore blocked)
**Unresolved:**
- Full review thread content unavailable
- No confirmation of explicit stable nomination in review
### Step 9.2: Stable rules checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — Standard pattern;
maintainer reviewed; no hardware test claimed |
| 2. Fixes a real bug? | **PASS** — Ignored error + false success is a
real logic bug |
| 3. Important issue? | **PASS** — HIGH: potential crash/hang on resume
via unclocked MMIO |
| 4. Small and contained? | **PASS** — ~15 lines, 2 files, one driver |
| 5. No new features/APIs? | **PASS** — Error propagation only |
| 6. Applies to local tree? | **PASS** — Buggy code confirmed in
v6.18.44 |
### Step 9.3: Exception categories
**Record:** N/A — not a device ID, quirk, DT, build, or docs fix.
Qualifies on bug-fix merits.
### Step 9.4: Decision rationale
For **this 6.18.y tree**, the Komeda driver is present and has carried
this resume error-handling bug since 2019. When `clk_prepare_enable()`
fails, the driver enables IRQs and connects IOMMU via MMIO on unclocked
hardware while reporting success — a legitimate PM correctness bug with
crash/hang potential. The fix is minimal, reviewed by the subsystem
maintainer, and should apply cleanly. The lack of a user report lowers
urgency but does not negate the technical merit; stable trees routinely
take ignored-return-value fixes in driver PM paths.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from provided commit message
- **[Phase 1]** Confirmed Reviewed-by: Liviu Dudau; no Reported-
by/syzbot/Fixes tags
- **[Phase 2]** Diff analysis: 2 files, 3 functions, error-propagation
pattern verified
- **[Phase 2]** Read `d71_enable_irq()` and `d71_connect_iommu()` — both
perform MMIO requiring clock
- **[Phase 3]** `git blame -L 314,325 komeda_dev.c`: bug since
`2ebb6701654e0d` (2019-09-26)
- **[Phase 3]** `git show 2ebb6701654e0d`: original PM support commit
- **[Phase 3]** `git log -20 -- komeda_dev.c komeda_drv.c`: no related
prior fix
- **[Phase 4]** WebFetch patch.msgid.link: **BLOCKED** (Anubis)
- **[Phase 4]** WebFetch lore.kernel.org: **BLOCKED** (Anubis)
- **[Phase 4]** `b4 dig -c`: not usable — commit not in local tree
- **[Phase 5]** Grep callers: probe (line 78), rt_pm_resume (123),
pm_resume (144)
- **[Phase 5]** Verified `komeda_rt_pm_resume` already returns resume
error; probe/pm_resume did not
- **[Phase 6]** `git describe HEAD`: v6.18.44
- **[Phase 6]** Read current `komeda_dev.c:314-325` and
`komeda_drv.c:76-146`: buggy code confirmed present
- **[Phase 6]** Line-by-line comparison: patch hunks match local file
structure
- **[Phase 6]** `git log --grep`: no duplicate fix in tree
- **[Phase 7]** Read `drivers/gpu/drm/arm/display/Kconfig`:
`CONFIG_DRM_KOMEDA` tristate, depends on DRM+OF+COMMON_CLK
- **[Phase 8]** Assessed severity from verified MMIO-after-clk-failure
code path
- **UNVERIFIED:** Mailing list review discussion content
- **UNVERIFIED:** Explicit stable nomination in review thread
- **UNVERIFIED:** Formal `git apply --check` (test patch malformed;
manual hunk comparison confirms applicability)
**YES**
drivers/gpu/drm/arm/display/komeda/komeda_dev.c | 6 +++++-
drivers/gpu/drm/arm/display/komeda/komeda_drv.c | 14 +++++++++-----
2 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_dev.c b/drivers/gpu/drm/arm/display/komeda/komeda_dev.c
index 5ba62e637a616..9aad1d1d28ec0 100644
--- a/drivers/gpu/drm/arm/display/komeda/komeda_dev.c
+++ b/drivers/gpu/drm/arm/display/komeda/komeda_dev.c
@@ -313,7 +313,11 @@ void komeda_dev_destroy(struct komeda_dev *mdev)
int komeda_dev_resume(struct komeda_dev *mdev)
{
- clk_prepare_enable(mdev->aclk);
+ int err;
+
+ err = clk_prepare_enable(mdev->aclk);
+ if (err)
+ return err;
mdev->funcs->enable_irq(mdev);
diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_drv.c b/drivers/gpu/drm/arm/display/komeda/komeda_drv.c
index 358c1512b0879..fc1816c634087 100644
--- a/drivers/gpu/drm/arm/display/komeda/komeda_drv.c
+++ b/drivers/gpu/drm/arm/display/komeda/komeda_drv.c
@@ -74,8 +74,11 @@ static int komeda_platform_probe(struct platform_device *pdev)
}
pm_runtime_enable(dev);
- if (!pm_runtime_enabled(dev))
- komeda_dev_resume(mdrv->mdev);
+ if (!pm_runtime_enabled(dev)) {
+ err = komeda_dev_resume(mdrv->mdev);
+ if (err)
+ goto err_destroy_mdev;
+ }
mdrv->kms = komeda_kms_attach(mdrv->mdev);
if (IS_ERR(mdrv->kms)) {
@@ -93,7 +96,7 @@ static int komeda_platform_probe(struct platform_device *pdev)
pm_runtime_disable(dev);
else
komeda_dev_suspend(mdrv->mdev);
-
+err_destroy_mdev:
komeda_dev_destroy(mdrv->mdev);
free_mdrv:
@@ -139,11 +142,12 @@ static int __maybe_unused komeda_pm_suspend(struct device *dev)
static int __maybe_unused komeda_pm_resume(struct device *dev)
{
struct komeda_drv *mdrv = dev_get_drvdata(dev);
+ int err = 0;
if (!pm_runtime_status_suspended(dev))
- komeda_dev_resume(mdrv->mdev);
+ err = komeda_dev_resume(mdrv->mdev);
- return drm_mode_config_helper_resume(&mdrv->kms->base);
+ return err ? err : drm_mode_config_helper_resume(&mdrv->kms->base);
}
static const struct dev_pm_ops komeda_pm_ops = {
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: validate and share PSP fw_pri_buf copies via psp_copy_fw
[not found] <20260831133314.4125787-1-sashal@kernel.org>
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18] drm/panel/tdo-tl070wsh30: Use refcounted allocation in place of devm_kzalloc() Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] drm/arm/komeda: fix error handling for clk_prepare_enable() and callers Sasha Levin
@ 2026-08-31 13:21 ` Sasha Levin
2026-08-31 14:00 ` sashiko-bot
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm: rz-du: Ensure correct suspend/resume ordering with VSP Sasha Levin
` (63 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:21 UTC (permalink / raw)
To: patches, stable
Cc: Candice Li, Tao Zhou, Alex Deucher, Sasha Levin, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Candice Li <candice.li@amd.com>
[ Upstream commit d1f9f5839bd785a3a06335a01d53282e80f8e5fa ]
Change psp_copy_fw from void to int: return -ENODEV when drm_dev_enter
fails, and -EINVAL when the image size is zero or larger than the
1 MiB PSP private buffer.
Replace open-coded memset/memcpy into fw_pri_buf with psp_copy_fw.
Signed-off-by: Candice Li <candice.li@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amdgpu: validate and share PSP
fw_pri_buf copies via psp_copy_fw`
**Local tree:** `v6.18.44` (`stable/linux-6.18.y`)
**Upstream commit:** `d1f9f5839bd78` (not yet in this tree)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject Line
**Record:** `[drm/amdgpu]` `[validate]` — Add size validation and error
propagation to `psp_copy_fw`, consolidating open-coded `fw_pri_buf`
copies.
### Step 1.2: Tags
**Record:**
- `Signed-off-by: Candice Li <candice.li@amd.com>` (author)
- `Reviewed-by: Tao Zhou <tao.zhou1@amd.com>`
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` (subsystem
maintainer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`,
`Tested-by:`
Notable: AMD maintainer review and merge; no fuzzer or user bug report.
### Step 1.3: Body Analysis
**Record:**
- **Bug:** `psp_copy_fw()` silently returns on `drm_dev_enter()`
failure; `memcpy()` into `fw_pri_buf` has no bounds check against the
1 MiB (`PSP_1_MEG`) buffer.
- **Symptom:** Callers proceed as if the copy succeeded — PSP commands
may run with stale/empty buffer data, or a heap buffer overflow occurs
if `bin_size > PSP_1_MEG`.
- **Root cause:** `psp_copy_fw` was `void` with no size validation;
several PSP version files duplicated `memset`/`memcpy` without checks.
- **Fix:** Return `-ENODEV` / `-EINVAL`; propagate errors to all
callers; route all copies through `psp_copy_fw`.
### Step 1.4: Hidden Bug Fix?
**Record:** Yes. Despite "validate and share" wording, this is a real
memory-safety and error-handling bug fix, not cosmetic cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- 8 files: `amdgpu_psp.c` (+32/-7 net), `amdgpu_psp.h` (+1/-1),
`psp_v3_1.c`, `psp_v11_0.c`, `psp_v12_0.c`, `psp_v13_0.c`,
`psp_v13_0_4.c`, `psp_v14_0.c`
- Total: +62 / -38 lines
- Functions: `psp_copy_fw`, `psp_load_toc`, `psp_rl_load`,
`psp_ta_load`, plus bootloader load helpers in PSP version files
- **Scope:** Multi-file but mechanical; single-subsystem surgical fix
### Step 2.2: Code Flow Changes
**Record:**
| Hunk | Before | After |
|------|--------|-------|
| `psp_copy_fw` | `void`; silent return on `drm_dev_enter` fail;
unchecked `memcpy` | `int`; returns `-ENODEV`/`-EINVAL`; validates `0 <
bin_size <= PSP_1_MEG` |
| `psp_load_toc`, `psp_rl_load`, `psp_ta_load` | Ignored `psp_copy_fw`
result | Check return; release cmd buf and abort on error |
| `psp_v11_0`–`psp_v14_0` bootloader paths | Open-coded
`memset`/`memcpy` or ignored `psp_copy_fw` return | Use `psp_copy_fw`
with error propagation |
### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Memory safety (buffer overflow) + logic bug (ignored
error path)
- **Mechanism:** `fw_pri_buf` is allocated at exactly `PSP_1_MEG`
(verified at `amdgpu_psp.c:508`). `is_psp_fw_valid()` only checks
`size_bytes != 0` (`amdgpu_psp.c:4179-4181`). `memcpy(psp->fw_pri_buf,
start_addr, bin_size)` with `bin_size > PSP_1_MEG` overflows the 1 MiB
kernel buffer. On `drm_dev_enter` failure, callers previously
submitted PSP commands believing the copy succeeded.
### Step 2.4: Fix Quality
**Record:** Obviously correct. Mirrors existing TA validation
(`ta_bin_len > PSP_1_MEG` in `amdgpu_psp_ta.c:169`). Minimal regression
risk; error paths properly release acquired resources.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `psp_copy_fw` introduced in `f89f8c6bafd06` (May 2021,
"Guard against write accesses after device removal"). `drm_dev_enter`
guard added then; silent `return` on failure is the latent bug. Code
present in 6.18.44.
### Step 3.2: Fixes Tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: Related File History
**Record:** Related prior fix `c99769bceab4e` ("Validate TA binary
size", 2023) is already in 6.18.44 — validates userspace TA loads
against `PSP_1_MEG`. This commit extends the same constraint to kernel
firmware copy paths. Standalone; not part of a multi-patch series.
### Step 3.4: Author Context
**Record:** Candice Li is an active AMD amdgpu contributor. Alex Deucher
(maintainer) committed the merge.
### Step 3.5: Dependencies
**Record:** No prerequisites. All touched files and `psp_copy_fw` exist
in 6.18.44. Cherry-pick test: applies cleanly (exit 0).
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Patch Discussion
**Record:** `b4 dig -c d1f9f5839bd78` — no lore match found. Patch
likely merged via GitLab/Freedesktop rather than public lore thread.
### Step 4.2: Reviewers
**Record:** `b4 dig -w` not run (no lore match). Commit message confirms
`Reviewed-by: Tao Zhou` and `Signed-off-by: Alex Deucher`.
### Step 4.3: Bug Report
**Record:** N/A — no `Reported-by:` or `Link:` tags. No syzbot report.
### Step 4.4: Related Patches
**Record:** `c99769bceab4e` (TA size validation) is the directly related
prior fix, already in this tree.
### Step 4.5: Stable List History
**Record:** lore.kernel.org search blocked (Anubis bot protection). No
stable-list discussion found.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key Functions
**Record:** `psp_copy_fw`, `psp_load_toc`, `psp_rl_load`, `psp_ta_load`,
`psp_v*_bootloader_load_*`
### Step 5.2: Callers
**Record:** `psp_copy_fw` called from PSP init/bootloader paths
(`psp_v3_1`, `psp_v11_0`, `psp_v12_0`, `psp_v13_0`, `psp_v13_0_4`,
`psp_v14_0`) and from `psp_load_toc`, `psp_ta_load` during GPU
probe/initialization. All AMD GPU users with PSP enabled hit these paths
at driver load.
### Step 5.3: Callees
**Record:** `drm_dev_enter/exit`, `memset`, `memcpy`, `dev_err` —
operates on `psp->fw_pri_buf` (1 MiB BO-mapped buffer).
### Step 5.4: Reachability
**Record:** Triggered during GPU probe/init (every boot with amdgpu).
Not a direct syscall path, but universal for amdgpu hardware. Overflow
requires `size_bytes > PSP_1_MEG` from firmware header parsing;
`drm_dev_enter` failure occurs during device teardown concurrent with
PSP operations.
### Step 5.5: Similar Patterns
**Record:** Userspace TA path already validates `ta_bin_len > PSP_1_MEG`
(`amdgpu_psp_ta.c:169`). Kernel paths in `psp_v13_0.c`, `psp_v14_0.c`,
`psp_v13_0_4.c`, and `psp_rl_load` still use unchecked `memcpy` —
exactly what this fix addresses.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE
### Step 6.1: Buggy Code Present?
**Record:** Yes. In 6.18.44, `psp_copy_fw` is still `void` with
unchecked `memcpy` (`amdgpu_psp.c:4157-4168`). Open-coded unchecked
copies exist in `psp_v13_0.c:268-271`, `psp_v14_0.c:143-146`,
`psp_v13_0_4.c`, and `psp_rl_load` (`amdgpu_psp.c:1162-1163`). Bug
present since 2021.
### Step 6.2: Backport Complications
**Record:** Clean apply confirmed via test cherry-pick. No conflicts
expected.
### Step 6.3: Related Fixes Already Present?
**Record:** TA userspace validation (`c99769bceab4e`) is in tree. The
kernel-path validation this commit adds is not.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem
**Record:** `drivers/gpu/drm/amd/amdgpu` — GPU driver (IMPORTANT).
Affects all AMD GPU users with PSP firmware loading.
### Step 7.2: Activity
**Record:** Actively maintained; PSP v13/v14 support added in recent
6.18 development.
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who Is Affected
**Record:** All amdgpu users during GPU initialization (driver-specific,
but broad within AMD GPU deployments).
### Step 8.2: Trigger Conditions
**Record:**
- **Overflow:** Corrupt/malformed firmware header with `size_bytes >
0x100000`, or internal bug setting oversized `size_bytes`.
Unprivileged users cannot directly trigger kernel firmware path;
requires bad firmware on disk.
- **drm_dev_enter failure:** Device removal/teardown racing with PSP
firmware load (uncommon but realistic).
### Step 8.3: Failure Mode Severity
**Record:**
- Buffer overflow → heap corruption, kernel oops/panic — **CRITICAL**
- Silent copy failure → PSP commands with stale data, init failure or
hardware hang — **HIGH**
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** HIGH — closes a real overflow window; consistent with
existing TA validation; proper error propagation
- **Risk:** LOW — small, mechanical, reviewed by AMD maintainer, applies
cleanly
- **Ratio:** Strongly favors backport
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence Summary
**FOR:**
- Fixes potential heap buffer overflow (memory safety)
- Fixes silent error on `drm_dev_enter` failure
- Extends validation already applied to userspace TA path
(`c99769bceab4e`, in tree)
- Small (+62/-38), obviously correct, AMD-reviewed
- Applies cleanly to 6.18.44
- All affected code exists in this tree
**AGAINST:**
- No user report, syzbot, or CVE
- Normal AMD firmware sizes are well under 1 MiB; overflow requires
corrupt firmware or parsing bug
- Primarily defense-in-depth on init path
**UNRESOLVED:**
- No public lore discussion found
- No production crash report documented
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — simple bounds check; AMD
internal review
2. Fixes a real bug? **PASS** — unchecked `memcpy` into fixed 1 MiB
buffer
3. Important issue? **PASS** — buffer overflow (CRITICAL class)
4. Small and contained? **PASS** — 8 files, ~100 lines, single subsystem
5. No new features/APIs? **PASS** — validation and error propagation
only
6. Can apply to local tree? **PASS** — clean cherry-pick confirmed
### Step 9.3: Exception Category
**Record:** None of the automatic exception categories apply; this is a
standard memory-safety bug fix.
### Step 9.4: Decision Rationale
This commit closes a genuine memory-safety hole: `fw_pri_buf` is exactly
1 MiB, but multiple kernel firmware copy paths perform unchecked
`memcpy` based on `size_bytes` from firmware headers, with
`is_psp_fw_valid()` only rejecting zero size. The driver already
validates the same 1 MiB limit for userspace-loaded TA binaries — this
brings kernel paths to the same standard. The `drm_dev_enter` error
propagation fix prevents PSP command submission after a failed copy
during device teardown.
While no crash has been reported, buffer overflow fixes are explicitly
stable-worthy, the change is small and low-risk, and it applies cleanly
to 6.18.44.
---
## Verification
- [Phase 1] Parsed commit `d1f9f5839bd78` message and tags from `git
show`
- [Phase 2] Analyzed full diff; confirmed `PSP_1_MEG = 0x100000` in
`amdgpu_psp.h:37`
- [Phase 2] Verified `fw_pri_buf` allocated at `PSP_1_MEG`
(`amdgpu_psp.c:508-513`)
- [Phase 2] Verified `is_psp_fw_valid()` only checks non-zero
(`amdgpu_psp.c:4179-4181`)
- [Phase 2] Found unchecked `memcpy` in `psp_v13_0.c:271`,
`psp_v14_0.c:146`, `psp_rl_load` (`amdgpu_psp.c:1162-1163`)
- [Phase 3] `git blame`: `psp_copy_fw` from `f89f8c6bafd06` (May 2021)
- [Phase 3] Related fix `c99769bceab4e` confirmed in tree via `git
merge-base --is-ancestor`
- [Phase 3] Cherry-pick test: `git cherry-pick --no-commit
d1f9f5839bd78` — clean apply (exit 0)
- [Phase 4] `b4 dig -c d1f9f5839bd78` — no lore match
- [Phase 4] lore.kernel.org fetch — blocked by Anubis
- [Phase 5] `grep psp_copy_fw`: 14 call sites across 7 files in tree
- [Phase 5] TA validation at `amdgpu_psp_ta.c:169` confirmed
- [Phase 6] `git describe HEAD` → `v6.18.44`
- [Phase 6] Buggy `void psp_copy_fw` confirmed present at
`amdgpu_psp.c:4157`
- [Phase 6] Commit not in tree: present on `origin/master`, absent from
`stable/linux-6.18.y`
- [Phase 8] Failure modes assessed from code flow analysis
**YES**The background `git log` search for `psp_copy_fw` and "validate
and share PSP fw_pri_buf" finished with no matches in this tree —
expected, since `d1f9f5839bd78` is on mainline but not in `v6.18.44`
yet.
That lines up with the earlier analysis: the unchecked `memcpy` paths
are still present here, and the fix applies cleanly. Verdict remains
**YES** for backport.
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 32 ++++++++++++++++++------
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.h | 2 +-
drivers/gpu/drm/amd/amdgpu/psp_v11_0.c | 8 ++++--
drivers/gpu/drm/amd/amdgpu/psp_v12_0.c | 8 ++++--
drivers/gpu/drm/amd/amdgpu/psp_v13_0.c | 14 +++++------
drivers/gpu/drm/amd/amdgpu/psp_v13_0_4.c | 14 +++++------
drivers/gpu/drm/amd/amdgpu/psp_v14_0.c | 14 +++++------
drivers/gpu/drm/amd/amdgpu/psp_v3_1.c | 8 ++++--
8 files changed, 62 insertions(+), 38 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
index 5f7aa840b2151..9f3581ce492f3 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
@@ -832,7 +832,11 @@ static int psp_load_toc(struct psp_context *psp,
struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);
/* Copy toc to psp firmware private buffer */
- psp_copy_fw(psp, psp->toc.start_addr, psp->toc.size_bytes);
+ ret = psp_copy_fw(psp, psp->toc.start_addr, psp->toc.size_bytes);
+ if (ret) {
+ release_psp_cmd_buf(psp);
+ return ret;
+ }
psp_prep_load_toc_cmd_buf(cmd, psp->fw_pri_mc_addr, psp->toc.size_bytes);
@@ -1159,8 +1163,11 @@ static int psp_rl_load(struct amdgpu_device *adev)
cmd = acquire_psp_cmd_buf(psp);
- memset(psp->fw_pri_buf, 0, PSP_1_MEG);
- memcpy(psp->fw_pri_buf, psp->rl.start_addr, psp->rl.size_bytes);
+ ret = psp_copy_fw(psp, psp->rl.start_addr, psp->rl.size_bytes);
+ if (ret) {
+ release_psp_cmd_buf(psp);
+ return ret;
+ }
cmd->cmd_id = GFX_CMD_ID_LOAD_IP_FW;
cmd->cmd.cmd_load_ip_fw.fw_phy_addr_lo = lower_32_bits(psp->fw_pri_mc_addr);
@@ -1383,8 +1390,12 @@ int psp_ta_load(struct psp_context *psp, struct ta_context *context)
cmd = acquire_psp_cmd_buf(psp);
- psp_copy_fw(psp, context->bin_desc.start_addr,
- context->bin_desc.size_bytes);
+ ret = psp_copy_fw(psp, context->bin_desc.start_addr,
+ context->bin_desc.size_bytes);
+ if (ret) {
+ release_psp_cmd_buf(psp);
+ return ret;
+ }
if (amdgpu_virt_xgmi_migrate_enabled(psp->adev) &&
context->mem_context.shared_bo)
@@ -4154,17 +4165,24 @@ static ssize_t psp_usbc_pd_fw_sysfs_write(struct device *dev,
return count;
}
-void psp_copy_fw(struct psp_context *psp, uint8_t *start_addr, uint32_t bin_size)
+int psp_copy_fw(struct psp_context *psp, uint8_t *start_addr, uint32_t bin_size)
{
int idx;
if (!drm_dev_enter(adev_to_drm(psp->adev), &idx))
- return;
+ return -ENODEV;
+
+ if (!bin_size || bin_size > PSP_1_MEG) {
+ dev_err(psp->adev->dev, "PSP firmware is invalid\n");
+ drm_dev_exit(idx);
+ return -EINVAL;
+ }
memset(psp->fw_pri_buf, 0, PSP_1_MEG);
memcpy(psp->fw_pri_buf, start_addr, bin_size);
drm_dev_exit(idx);
+ return 0;
}
/**
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.h
index 237b624aa51ca..c3a5940e311aa 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.h
@@ -605,7 +605,7 @@ int psp_get_fw_attestation_records_addr(struct psp_context *psp,
int psp_update_fw_reservation(struct psp_context *psp);
int psp_load_fw_list(struct psp_context *psp,
struct amdgpu_firmware_info **ucode_list, int ucode_count);
-void psp_copy_fw(struct psp_context *psp, uint8_t *start_addr, uint32_t bin_size);
+int psp_copy_fw(struct psp_context *psp, uint8_t *start_addr, uint32_t bin_size);
int psp_spatial_partition(struct psp_context *psp, int mode);
int psp_memory_partition(struct psp_context *psp, int mode);
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c b/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c
index 27d883fda5fa9..6f131f4b81134 100644
--- a/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c
@@ -217,7 +217,9 @@ static int psp_v11_0_bootloader_load_component(struct psp_context *psp,
return ret;
/* Copy PSP System Driver binary to memory */
- psp_copy_fw(psp, bin_desc->start_addr, bin_desc->size_bytes);
+ ret = psp_copy_fw(psp, bin_desc->start_addr, bin_desc->size_bytes);
+ if (ret)
+ return ret;
/* Provide the sys driver to bootloader */
WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36,
@@ -263,7 +265,9 @@ static int psp_v11_0_bootloader_load_sos(struct psp_context *psp)
return ret;
/* Copy Secure OS binary to PSP memory */
- psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
+ ret = psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
+ if (ret)
+ return ret;
/* Provide the PSP secure OS to bootloader */
WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36,
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v12_0.c b/drivers/gpu/drm/amd/amdgpu/psp_v12_0.c
index 4c6450d62299a..80ba57cce3916 100644
--- a/drivers/gpu/drm/amd/amdgpu/psp_v12_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/psp_v12_0.c
@@ -87,7 +87,9 @@ static int psp_v12_0_bootloader_load_sysdrv(struct psp_context *psp)
return ret;
/* Copy PSP System Driver binary to memory */
- psp_copy_fw(psp, psp->sys.start_addr, psp->sys.size_bytes);
+ ret = psp_copy_fw(psp, psp->sys.start_addr, psp->sys.size_bytes);
+ if (ret)
+ return ret;
/* Provide the sys driver to bootloader */
WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36,
@@ -123,7 +125,9 @@ static int psp_v12_0_bootloader_load_sos(struct psp_context *psp)
return ret;
/* Copy Secure OS binary to PSP memory */
- psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
+ ret = psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
+ if (ret)
+ return ret;
/* Provide the PSP secure OS to bootloader */
WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36,
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c b/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c
index af4a7d7c4abd8..8100930e47eb1 100644
--- a/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c
@@ -265,10 +265,9 @@ static int psp_v13_0_bootloader_load_component(struct psp_context *psp,
if (ret)
return ret;
- memset(psp->fw_pri_buf, 0, PSP_1_MEG);
-
- /* Copy PSP KDB binary to memory */
- memcpy(psp->fw_pri_buf, bin_desc->start_addr, bin_desc->size_bytes);
+ ret = psp_copy_fw(psp, bin_desc->start_addr, bin_desc->size_bytes);
+ if (ret)
+ return ret;
/* Provide the PSP KDB to bootloader */
WREG32_SOC15(MP0, 0, regMP0_SMN_C2PMSG_36,
@@ -347,10 +346,9 @@ static int psp_v13_0_bootloader_load_sos(struct psp_context *psp)
if (ret)
return ret;
- memset(psp->fw_pri_buf, 0, PSP_1_MEG);
-
- /* Copy Secure OS binary to PSP memory */
- memcpy(psp->fw_pri_buf, psp->sos.start_addr, psp->sos.size_bytes);
+ ret = psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
+ if (ret)
+ return ret;
/* Provide the PSP secure OS to bootloader */
WREG32_SOC15(MP0, 0, regMP0_SMN_C2PMSG_36,
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v13_0_4.c b/drivers/gpu/drm/amd/amdgpu/psp_v13_0_4.c
index 5f39a2edcc956..3d5e26b3fa00a 100644
--- a/drivers/gpu/drm/amd/amdgpu/psp_v13_0_4.c
+++ b/drivers/gpu/drm/amd/amdgpu/psp_v13_0_4.c
@@ -105,10 +105,9 @@ static int psp_v13_0_4_bootloader_load_component(struct psp_context *psp,
if (ret)
return ret;
- memset(psp->fw_pri_buf, 0, PSP_1_MEG);
-
- /* Copy PSP KDB binary to memory */
- memcpy(psp->fw_pri_buf, bin_desc->start_addr, bin_desc->size_bytes);
+ ret = psp_copy_fw(psp, bin_desc->start_addr, bin_desc->size_bytes);
+ if (ret)
+ return ret;
/* Provide the PSP KDB to bootloader */
WREG32_SOC15(MP0, 0, regMP0_SMN_C2PMSG_36,
@@ -168,10 +167,9 @@ static int psp_v13_0_4_bootloader_load_sos(struct psp_context *psp)
if (ret)
return ret;
- memset(psp->fw_pri_buf, 0, PSP_1_MEG);
-
- /* Copy Secure OS binary to PSP memory */
- memcpy(psp->fw_pri_buf, psp->sos.start_addr, psp->sos.size_bytes);
+ ret = psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
+ if (ret)
+ return ret;
/* Provide the PSP secure OS to bootloader */
WREG32_SOC15(MP0, 0, regMP0_SMN_C2PMSG_36,
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v14_0.c b/drivers/gpu/drm/amd/amdgpu/psp_v14_0.c
index 38dfc5c19f2a7..040a61aefa866 100644
--- a/drivers/gpu/drm/amd/amdgpu/psp_v14_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/psp_v14_0.c
@@ -140,10 +140,9 @@ static int psp_v14_0_bootloader_load_component(struct psp_context *psp,
if (ret)
return ret;
- memset(psp->fw_pri_buf, 0, PSP_1_MEG);
-
- /* Copy PSP KDB binary to memory */
- memcpy(psp->fw_pri_buf, bin_desc->start_addr, bin_desc->size_bytes);
+ ret = psp_copy_fw(psp, bin_desc->start_addr, bin_desc->size_bytes);
+ if (ret)
+ return ret;
/* Provide the PSP KDB to bootloader */
WREG32_SOC15(MP0, 0, regMPASP_SMN_C2PMSG_36,
@@ -214,10 +213,9 @@ static int psp_v14_0_bootloader_load_sos(struct psp_context *psp)
if (ret)
return ret;
- memset(psp->fw_pri_buf, 0, PSP_1_MEG);
-
- /* Copy Secure OS binary to PSP memory */
- memcpy(psp->fw_pri_buf, psp->sos.start_addr, psp->sos.size_bytes);
+ ret = psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
+ if (ret)
+ return ret;
/* Provide the PSP secure OS to bootloader */
WREG32_SOC15(MP0, 0, regMPASP_SMN_C2PMSG_36,
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v3_1.c b/drivers/gpu/drm/amd/amdgpu/psp_v3_1.c
index 833830bc3e2e3..409f097f4c524 100644
--- a/drivers/gpu/drm/amd/amdgpu/psp_v3_1.c
+++ b/drivers/gpu/drm/amd/amdgpu/psp_v3_1.c
@@ -96,7 +96,9 @@ static int psp_v3_1_bootloader_load_sysdrv(struct psp_context *psp)
return ret;
/* Copy PSP System Driver binary to memory */
- psp_copy_fw(psp, psp->sys.start_addr, psp->sys.size_bytes);
+ ret = psp_copy_fw(psp, psp->sys.start_addr, psp->sys.size_bytes);
+ if (ret)
+ return ret;
/* Provide the sys driver to bootloader */
WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36,
@@ -135,7 +137,9 @@ static int psp_v3_1_bootloader_load_sos(struct psp_context *psp)
return ret;
/* Copy Secure OS binary to PSP memory */
- psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
+ ret = psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
+ if (ret)
+ return ret;
/* Provide the PSP secure OS to bootloader */
WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36,
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm: rz-du: Ensure correct suspend/resume ordering with VSP
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (2 preceding siblings ...)
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: validate and share PSP fw_pri_buf copies via psp_copy_fw Sasha Levin
@ 2026-08-31 13:21 ` Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Check for sharpening case when calculating max vtaps for scaler Sasha Levin
` (62 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:21 UTC (permalink / raw)
To: patches, stable
Cc: Tommaso Merciai, Laurent Pinchart, Biju Das, Sasha Levin,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-renesas-soc, linux-kernel
From: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
[ Upstream commit c94e765abb051df62b9f7c27116ef9307216c868 ]
The VSP serves as an interface to memory and a compositor to the DU. It
therefore needs to be suspended after and resumed before the DU, to be
properly stopped and restarted in a controlled fashion driven by the DU
driver. This currently works by chance. Avoid relying on luck by
enforcing the correct suspend/resume ordering with device links.
Based on similar work done by Laurent Pinchart for R-Car DU.
commit db5be3a7d6bd ("drm: rcar-du: Ensure correct suspend/resume
ordering with VSP")
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
Link: https://patch.msgid.link/20260330144651.817338-1-tommaso.merciai.xr@bp.renesas.com
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm: rz-du: Ensure correct suspend/resume
ordering with VSP`
**Local tree:** Linux **6.18.43** (`git describe HEAD` → `v6.18.43`,
detached at `stable/linux-6.18.y`)
**Upstream commit:** `c94e765abb051` (on `all-next`, not yet in this
6.18.43 checkout)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm: rz-du]` `[Ensure]` — enforce correct suspend/resume
ordering between RZ/G2L Display Unit (DU) and its VSP compositor via
device links.
### Step 1.2: Tags
**Record:**
| Tag | Value |
|-----|-------|
| Reviewed-by | Laurent Pinchart
\<laurent.pinchart+renesas@ideasonboard.com\> |
| Signed-off-by | Tommaso Merciai, Biju Das |
| Link | https://patch.msgid.link/20260330144651.817338-1-
tommaso.merciai.xr@bp.renesas.com |
| Fixes: | **None** (expected for manual review) |
| Cc: stable | **None** |
| Reported-by / Tested-by | **None** |
| syzbot | **None** |
Notable: reviewed by the R-Car/Renesas DRM expert who authored the
identical rcar-du fix. No user crash report or Tested-by.
### Step 1.3: Body analysis
**Record:**
- **Bug:** VSP must be suspended *after* DU and resumed *before* DU
because VSP is DU's memory interface/compositor. Current ordering
relies on luck (device-tree probe order).
- **Symptom:** Incorrect suspend/resume ordering can leave VSP stopped
while DU still uses it (or vice versa on resume) — undefined behavior
during power transitions.
- **Root cause:** No explicit consumer/supplier relationship between DU
and VSP platform devices.
- **Fix approach:** `device_link_add(DU, VSP, DL_FLAG_STATELESS)` plus
cleanup in `rzg2l_du_vsp_cleanup()`.
- **Reference:** Mirrors `db5be3a7d6bd` ("drm: rcar-du: Ensure correct
suspend/resume ordering with VSP").
### Step 1.4: Hidden bug fix?
**Record:** Yes. Despite "Ensure" wording rather than "fix", this is a
power-management correctness bug fix — a race/ordering hazard disguised
as hardening. Same pattern as a well-understood rcar-du bug fix.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
| File | Changes |
|------|---------|
| `rzg2l_du_vsp.c` | +16 lines |
| `rzg2l_du_vsp.h` | +2 lines (`struct device_link *link`) |
| **Total** | 18 lines, 2 files |
| **Functions** | `rzg2l_du_vsp_cleanup()`, `rzg2l_du_vsp_init()` |
| **Scope** | Single-subsystem, surgical |
### Step 2.2: Code flow per hunk
**Record:**
1. **Include `linux/device.h`** — needed for `device_link_add/del`.
2. **`rzg2l_du_vsp_cleanup()`** — Before: only `put_device(vsp->vsp)`.
After: also `device_link_del(vsp->link)` if set.
3. **`rzg2l_du_vsp_init()`** — Before: find VSP pdev, register cleanup,
call `vsp1_du_init()`. After: create stateless device link
`DU(consumer) → VSP(supplier)`; fail probe with `-EINVAL` if link
creation fails.
4. **`rzg2l_du_vsp.h`** — Add `struct device_link *link` to `struct
rzg2l_du_vsp`.
### Step 2.3: Bug mechanism
**Record:** **Category:** Power-management ordering / race condition.
- VSP (`vsp1_drv.c`) has `SYSTEM_SLEEP_PM_OPS`
(`vsp1_pm_suspend`/`vsp1_pm_resume`).
- When `vsp1->drm` is set (DU pipeline mode), VSP expects DU to
stop/restart it explicitly; it only does `pm_runtime_force_suspend`
during system sleep.
- Without a device link, kernel suspend/shutdown order depends on
ACPI/DT enumeration order — nondeterministic across platforms.
- `device_link_add(consumer, supplier)` reorders
`dpm_list`/`devices_kset` so consumer is always processed before
supplier on suspend/shutdown and after supplier on resume.
### Step 2.4: Fix quality
**Record:**
- **Obviously correct:** Yes — identical, proven pattern from rcar-du;
reviewed by subsystem maintainer.
- **Minimal:** Yes — 18 lines, no refactoring.
- **Regression risk:** Very low. Worst case: `device_link_add()` fails
at probe (logged, `-EINVAL`); no hot-path changes.
- **Red flags:** None.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `rzg2l_du_vsp_init()` and cleanup logic date to initial VSP
integration (file introduced with RZ/G2L DU driver). Buggy code (no
device link) has been present since VSP support was added. RZ/G2L DU
driver landed in `768e9e61b3b99` ("drm: renesas: Add RZ/G2L DU
Support"), confirmed ancestor of HEAD.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag.
### Step 3.3: Related file history
**Record:** Recent rz-du stable activity includes power-sequencing fixes
(e.g. `79f42487ed60d` — MIPI DSI reboot panic). No prior device_link fix
for rz-du in this tree. rcar-du sibling fix `db5be3a7d6bd` exists on
`all-next` but is **not** an ancestor of 6.18.43 HEAD.
### Step 3.4: Author commits
**Record:** Tommaso Merciai — Renesas contributor; no other rz-du
commits in this 6.18.43 tree. Biju Das is rz-du maintainer (signed off).
### Step 3.5: Dependencies
**Record:** **Standalone.** Single patch (v1→v2 only added Reviewed-by
tag and rcar-du commit reference). No prerequisite commits. Applies
cleanly (`git apply --check` passed).
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- `b4 dig -c c94e765abb051` → https://patch.msgid.link/20260330144651.81
7338-1-tommaso.merciai.xr@bp.renesas.com
- Series: v1 (2026-03-24) → v2 (2026-03-30, committed version)
- Maintainer response: "Applied to drm-misc-next" (Biju Das)
- **No stable nomination, no NAKs**
### Step 4.2: Reviewers
**Record:** CC'd to `dri-devel`, `linux-renesas-soc`, Laurent Pinchart,
Maarten Lankhorst, David Airlie, Thomas Zimmermann, etc. Reviewed-by
from Laurent Pinchart (subsystem expert).
### Step 4.3: Bug report
**Record:** No external bug report, stack trace, or syzbot link. Issue
identified by code analysis ("works by chance").
### Step 4.4: Series context
**Record:** Standalone 1-patch series. rcar-du counterpart is separate
but parallel.
### Step 4.5: Stable list
**Record:** No stable@vger.kernel.org discussion found for this specific
patch.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `rzg2l_du_vsp_init()`, `rzg2l_du_vsp_cleanup()`,
`rzg2l_du_vsps_init()` (caller).
### Step 5.2: Callers
**Record:** `rzg2l_du_vsps_init()` → called from
`rzg2l_du_modeset_init()` during DU probe. Runs once per VSP referenced
in DT `renesas,vsps` property. Init path only — not a hot path.
### Step 5.3: Callees
**Record:** `of_find_device_by_node()`, `drmm_add_action_or_reset()`,
`device_link_add()`, `vsp1_du_init()`, `device_link_del()`,
`put_device()`.
### Step 5.4: Reachability
**Record:** Triggered at boot on RZ/G2L platforms with
`CONFIG_DRM_RZG2L_DU` + `CONFIG_VIDEO_RENESAS_VSP1`. Power-transition
bugs manifest on suspend/resume/reboot/shutdown — common embedded
operations.
### Step 5.5: Similar patterns
**Record:** Identical fix in `rcar_du_vsp.c` (`db5be3a7d6bd` on all-
next). rcar-du also uses `device_link_add` for CMM ordering in
`rcar_du_kms.c` (already in 6.18.43). Established Renesas DRM pattern.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE (6.18.43)
### Step 6.1: Buggy code present?
**Record:** **Yes.** Current `rzg2l_du_vsp.c` lacks
`device_link_add/del` and `vsp->link` field. VSP integration has been
present since RZ/G2L DU driver merge (`768e9e61b3b99` is ancestor of
HEAD).
### Step 6.2: Backport complications
**Record:** **Clean apply** — `git apply --check` on commit diff
succeeded with no conflicts.
### Step 6.3: Related fixes already present?
**Record:** No equivalent device_link fix for rz-du in 6.18.43. Related
rz-du power fix `79f42487ed60d` (MIPI DSI reboot panic) is already in
stable — shows this subsystem's power-sequencing bugs are stable-worthy.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/renesas/rz-du/` — **PERIPHERAL** (Renesas
RZ/G2L embedded SoCs only). Critical for affected hardware users; not
universal.
### Step 7.2: Activity
**Record:** Actively maintained in 6.18.y (MIPI DSI fixes, resolution
updates, encoder fixes in 2025–2026).
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who is affected
**Record:** Users of RZ/G2L/RZ/V2L SoCs with DU+VSP display pipeline
(`CONFIG_DRM_RZG2L_DU`, `ARCH_RZG2L`). Driver-specific, not config-
universal.
### Step 8.2: Trigger conditions
**Record:** System suspend (S3), resume, reboot/shutdown. DU has
`.shutdown` handler (`drm_atomic_helper_shutdown`); VSP has system-sleep
PM ops. Ordering nondeterminism depends on DT/ACPI device enumeration —
"works by chance" today.
**Note:** rz-du lacks explicit `DEFINE_SIMPLE_DEV_PM_OPS` suspend/resume
(unlike rcar-du). This limits the immediate S3 benefit until DU PM is
added, but device links still affect shutdown ordering and will enforce
correct ordering once PM is added. Maintainers merged this on mainline
knowing rz-du has no PM ops yet.
### Step 8.3: Failure mode severity
**Record:** When wrong order triggers: VSP suspended while DU still
active → undefined behavior, possible oops/corruption/display failure.
**Severity: HIGH** when triggered; **likelihood: LOW–MEDIUM** (depends
on DT order). Prior rz-du reboot panic stable backport confirms real-
world power-transition failures in this driver.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** MEDIUM-HIGH for RZ/G2L embedded users; prevents
nondeterministic suspend/shutdown ordering bugs.
- **Risk:** VERY LOW — 18-line, proven pattern, probe-time only.
- **Ratio:** Favorable.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real PM ordering bug in production code path (VSP system-sleep PM + DU
dependency)
- Small, surgical, obviously correct fix mirroring accepted rcar-du
pattern
- Reviewed by Laurent Pinchart (Renesas DRM expert)
- Buggy code confirmed present in 6.18.43; patch applies cleanly
- Prior stable backport of rz-du power-sequencing bug (`79f42487ed60d`)
- VSP driver explicitly documents DU must control VSP during pipeline
suspend
**AGAINST backport:**
- No user-reported crash or Tested-by for rz-du specifically
- rz-du lacks system-sleep PM ops (unlike rcar-du), reducing immediate
S3 suspend benefit
- Peripheral driver — limited user base
- Theoretical "works by chance" rather than demonstrated failure
**Unresolved:** No runtime test evidence for rz-du specifically; exact
failure rate on RZ/G2L boards unverified.
### Step 9.2: Stable rules checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — correct by inspection;
reviewed by maintainer; rcar-du analogue tested |
| 2. Fixes real bug? | **PASS** — PM ordering hazard in DU+VSP pipeline
|
| 3. Important issue? | **PASS** — potential crash/corruption on
suspend/resume/reboot (HIGH severity, moderate likelihood) |
| 4. Small and contained? | **PASS** — 18 lines, 2 files |
| 5. No new features/APIs? | **PASS** — internal device link only |
| 6. Applies to local tree? | **PASS** — clean apply, code and driver
present |
### Step 9.3: Exception categories
**Record:** N/A — standard bug fix, not device-ID/quirk/DT/build/doc
exception.
### Step 9.4: Decision rationale
This commit fixes a real power-management ordering defect in the RZ/G2L
DU driver that has been present since VSP support was added to 6.18.y.
The fix is minimal, follows an identical accepted rcar-du pattern, is
reviewed by the subsystem expert, and applies cleanly to 6.18.43. While
rz-du currently lacks explicit system-sleep PM callbacks (a separate
gap), the device link still enforces correct shutdown ordering (DU has a
`.shutdown` handler) and ensures correct suspend/resume ordering for the
VSP's system-sleep PM path. The risk is negligible and consistent with
prior stable backports of rz-du power-sequencing fixes.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user-provided diff
and `git show c94e765abb051`
- **[Phase 2]** Diff analysis: 18 lines across 2 files; adds
`device_link_add/del` in init/cleanup
- **[Phase 3]** `git describe HEAD` → v6.18.43; `git blame` on
`rzg2l_du_vsp.c:292-325` → original VSP init code; `git merge-base
--is-ancestor 768e9e61b3b99 HEAD` → rz-du driver in tree;
`db5be3a7d6bd` not ancestor of HEAD
- **[Phase 3]** `git apply --check` on commit diff → applies cleanly
- **[Phase 4]** `b4 dig -c c94e765abb051` → lore URL; `b4 dig -a` →
v1/v2 only; `b4 dig -w` → maintainers CC'd; mbox grep → Reviewed-by
Laurent Pinchart, "Applied to drm-misc-next", no stable nomination
- **[Phase 5]** `grep rzg2l_du_vsp_init` → called from
`rzg2l_du_vsps_init()` in `rzg2l_du_kms.c`; verified VSP PM ops in
`vsp1_drv.c:625-701`
- **[Phase 6]** Read current `rzg2l_du_vsp.c` — no device_link present;
`grep device_link` in rz-du → no matches
- **[Phase 6]** `git show all-next:rzg2l_du_drv.c | rg pm` → no PM ops
on all-next either (fix merged without DU PM)
- **[Phase 6]** Confirmed `79f42487ed60d` in tree as prior rz-du power
stable backport
- **[Phase 7]** Driver is `CONFIG_DRM_RZG2L_DU`, `ARCH_RZG2L` —
peripheral/embedded
- **[Phase 8]** Verified rz-du has `.shutdown` but no `.pm`
suspend/resume in `rzg2l_du_drv.c`; rcar-du has PM ops for comparison
**YES**The analysis is complete for **Linux 6.18.43**
(`stable/linux-6.18.y`).
**Commit:** `c94e765abb051` — `drm: rz-du: Ensure correct suspend/resume
ordering with VSP`
**Verdict: YES** — backport to this tree.
**Summary:** The RZ/G2L DU driver in 6.18.43 uses a VSP compositor
without an explicit device link, so suspend/resume/shutdown ordering
depends on DT probe order. The patch adds the same small
`device_link_add()` pattern already used for rcar-du (~18 lines, applies
cleanly). Reviewed by Laurent Pinchart; low risk and consistent with
prior stable rz-du power-sequencing fixes.
**Caveat:** rz-du still lacks system-sleep PM callbacks (unlike rcar-
du), so the main immediate benefit is shutdown ordering and future-
proofing when PM is added — but the underlying ordering bug is real on
RZ/G2L hardware with VSP.
drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.c | 16 ++++++++++++++++
drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.h | 2 ++
2 files changed, 18 insertions(+)
diff --git a/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.c b/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.c
index 040d4e4aff000..ab49604d69acf 100644
--- a/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.c
+++ b/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.c
@@ -20,6 +20,7 @@
#include <drm/drm_vblank.h>
#include <linux/bitops.h>
+#include <linux/device.h>
#include <linux/dma-mapping.h>
#include <linux/of_platform.h>
#include <linux/platform_device.h>
@@ -293,6 +294,9 @@ static void rzg2l_du_vsp_cleanup(struct drm_device *dev, void *res)
{
struct rzg2l_du_vsp *vsp = res;
+ if (vsp->link)
+ device_link_del(vsp->link);
+
put_device(vsp->vsp);
}
@@ -317,6 +321,18 @@ int rzg2l_du_vsp_init(struct rzg2l_du_vsp *vsp, struct device_node *np,
if (ret < 0)
return ret;
+ /*
+ * Enforce suspend/resume ordering between the DU (consumer) and the
+ * VSP (supplier). The DU will be suspended before and resume after the
+ * VSP.
+ */
+ vsp->link = device_link_add(rcdu->dev, vsp->vsp, DL_FLAG_STATELESS);
+ if (!vsp->link) {
+ dev_err(rcdu->dev, "Failed to create device link to VSP %s\n",
+ dev_name(vsp->vsp));
+ return -EINVAL;
+ }
+
ret = vsp1_du_init(vsp->vsp);
if (ret < 0)
return ret;
diff --git a/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.h b/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.h
index 322eb80dcbaff..a22aaf0843ed7 100644
--- a/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.h
+++ b/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.h
@@ -15,6 +15,7 @@
#include <linux/scatterlist.h>
struct device;
+struct device_link;
struct drm_framebuffer;
struct rzg2l_du_device;
struct rzg2l_du_format_info;
@@ -29,6 +30,7 @@ struct rzg2l_du_vsp_plane {
struct rzg2l_du_vsp {
unsigned int index;
struct device *vsp;
+ struct device_link *link;
struct rzg2l_du_device *dev;
};
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Check for sharpening case when calculating max vtaps for scaler
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (3 preceding siblings ...)
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm: rz-du: Ensure correct suspend/resume ordering with VSP Sasha Levin
@ 2026-08-31 13:21 ` Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] drm/amdgpu: validate RAS EEPROM tbl_size before record count Sasha Levin
` (61 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:21 UTC (permalink / raw)
To: patches, stable
Cc: Samson Tam, Charlene Liu, Ray Wu, Daniel Wheeler, Alex Deucher,
Sasha Levin, harry.wentland, sunpeng.li, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Samson Tam <Samson.Tam@amd.com>
[ Upstream commit 4d8cfd570386eb0b6cb8aa0ca9e9db60a0404337 ]
[Why & How]
- calc_lb_num_partitions has check when scaler is not enabled to use
larger LB in calculations for max vtaps based on viewport being 1:1
- however, scaler is forced on when sharpening is enabled, so need
to consider this in check
- taps is predetermined in spl_get_optimal_number_of_taps prior to
calc_lb_num_partitions. Add check for taps not 1 to handle
sharpening case
Reviewed-by: Charlene Liu <charlene.liu@amd.com>
Signed-off-by: Samson Tam <Samson.Tam@amd.com>
Signed-off-by: Ray Wu <ray.wu@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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: `[drm/amd/display]` `[Check]` — verify sharpening when computing
max vertical taps for the DCN401 scaler line-buffer partition
calculation.
**Step 1.2 — Tags**
Record:
- `Reviewed-by: Charlene Liu <charlene.liu@amd.com>`
- `Signed-off-by: Samson Tam <Samson.Tam@amd.com>`
- `Signed-off-by: Ray Wu <ray.wu@amd.com>`
- `Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>`
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>`
- No `Fixes:`, `Reported-by:`, `Link:`, or `Cc: stable@vger.kernel.org`
(expected for manual review)
- Notable: AMD internal review + `Tested-by` from AMD QA; no syzbot or
public bug report
**Step 1.3 — Body analysis**
Record:
- **Bug:** `dscl401_spl_calc_lb_num_partitions()` treats a 1:1 viewport
as “scaler disabled” and uses an inflated line-buffer (LB) size for
max-vtap math, but sharpening forces the scaler on at 1:1.
- **Symptom:** Overestimated max vertical taps → scaler programmed
beyond real LB capacity → display corruption/underflow risk on DCN401
with sharpening at native resolution.
- **Root cause:** `spl_get_optimal_number_of_taps()` sets `taps > 1`
before calling `spl_calc_lb_num_partitions()`, but the LB-size branch
only checked viewport 1:1, not taps.
- **Version info:** None in the message.
**Step 1.4 — Hidden bug fix?**
Record: Yes. Despite no “fix” in the subject, this is a hardware-
programming correctness bug in the display scaler path, not a cleanup.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- 1 file: `drivers/gpu/drm/amd/display/dc/dpp/dcn401/dcn401_dpp.c` (+6 /
−2)
- Function: `dscl401_spl_calc_lb_num_partitions()`
- Scope: single-file, surgical (two conditionals in two `lb_config`
branches)
**Step 2.2 — Code flow change**
Record:
- **Before:** `viewport.width == h_active && viewport.height ==
v_active` → use enlarged LB constants (e.g. `970+1290+1170` vs
`970+1290+484`).
- **After:** Same enlarged LB only when viewport is 1:1 **and** `h_taps
== 1 && v_taps == 1` (scaler truly off).
- **Path:** `spl_get_optimal_number_of_taps()` →
`spl_calc_lb_num_partitions()` →
`dscl401_spl_calc_lb_num_partitions()` during mode/plane setup on
DCN401.
**Step 2.3 — Bug mechanism**
Record: **Logic / hardware correctness fix.**
When sharpening is enabled at 1:1, taps are already 6 (EASF path) before
LB calculation, but the old code still assumed scaler-off and inflated
LB size by ~25% (RGB) or ~55% (YUV420), inflating `num_part_y` and
`max_taps_y`.
**Step 2.4 — Fix quality**
Record: Obviously correct and minimal. Uses taps already set before the
LB call as the scaler-enabled indicator. Low regression risk; only
narrows the enlarged-LB fast path.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record: Buggy viewport-only check introduced in `70839da636050` (“Add
new DCN401 sources”, 2024-04-26). Present in v6.18.44.
**Step 3.2 — Fixes: tag**
Record: N/A — no `Fixes:` tag.
**Step 3.3 — Related file history**
Record: DCN401 added in `70839da636050`; ISHARP for DCN401 in
`2998bccfa4197` (2024-05-29). Related DCN401 corruption fix:
`5d74be8c3a941` (YUV color corruption). Standalone one-commit fix.
**Step 3.4 — Author context**
Record: Samson Tam is an active AMD display contributor; same author as
`5d74be8c3a941`.
**Step 3.5 — Dependencies**
Record: None. Only needs `scl_data->taps` fields already used in this
tree. `git apply --check` on mainline commit `4d8cfd570386e` succeeds
cleanly.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record: `b4 dig -c 4d8cfd570386e` found no lore.kernel.org match (likely
direct AMD/DRM tree path). lore.kernel.org search blocked by Anubis.
**Step 4.2 — Reviewers**
Record: `b4 dig -w` also found nothing. Commit has `Reviewed-by`
(Charlene Liu), `Tested-by` (Daniel Wheeler), and Alex Deucher as
committer.
**Step 4.3 — Bug report**
Record: N/A — no `Reported-by:` or `Link:` tags.
**Step 4.4 — Series context**
Record: Standalone; not part of a multi-patch series.
**Step 4.5 — Stable list history**
Record: Not searched successfully on lore (bot protection). No evidence
of prior stable rejection.
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `dscl401_spl_calc_lb_num_partitions()`, called via SPL callbacks
from `spl_get_optimal_number_of_taps()`.
**Step 5.2 — Callers**
Record:
- `spl_get_optimal_number_of_taps()` (dc_spl.c:1033)
- `spl_calculate_number_of_taps()` → `spl_calculate_scaler_params()` —
display mode/plane configuration on DCN401
**Step 5.3 — Callees**
Record: Arithmetic on LB memory constants; sets `num_part_y` /
`num_part_c` used to derive `max_taps_y` / `max_taps_c`.
**Step 5.4 — Reachability**
Record: Reachable on normal display use when DCN401 + adaptive
sharpening (ISHARP) at 1:1 scaling. Userspace can enable sharpening via
amdgpu display stack; not an obscure debug-only path.
**Step 5.5 — Similar patterns**
Record: `dscl32_spl_calc_lb_num_partitions()` has the same viewport-only
check without taps check, but this commit targets DCN401 only.
`dscl401_calc_lb_num_partitions()` (non-SPL) unchanged; SPL path is the
sharpening path (`use_spl`).
---
## Phase 6: Cross-Reference Against Local Tree (v6.18.44)
**Step 6.1 — Buggy code present?**
Record: **Yes.**
`drivers/gpu/drm/amd/display/dc/dpp/dcn401/dcn401_dpp.c` lines 391–406
lack the taps check. Fix commit `4d8cfd570386e` is **not** in this tree
(`git merge-base --is-ancestor` fails).
**Step 6.2 — Backport complications**
Record: Clean apply verified (`git show 4d8cfd570386e | git apply
--check`). No conflicts expected.
**Step 6.3 — Related fixes already present?**
Record: No equivalent taps check. DCN401 and ISHARP support are both
present.
---
## Phase 7: Subsystem and Maintainer Context
**Step 7.1 — Subsystem**
Record: `drivers/gpu/drm/amd/display` — AMDGPU display (DCN401 DPP
scaler). Criticality: **IMPORTANT** (display output for DCN401 hardware
users).
**Step 7.2 — Activity**
Record: Actively maintained; multiple DCN401 fixes in this tree (NULL
deref, color corruption, signal checks).
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: Users of DCN401-based AMD GPUs (discrete/APU) on 6.18.y with
adaptive sharpening at native (1:1) resolution. Driver-specific, not
universal.
**Step 8.2 — Trigger conditions**
Record: DCN401 + sharpening enabled + 1:1 viewport. Common for desktop
use at native panel resolution with sharpening on. Unprivileged users
can trigger via normal display configuration.
**Step 8.3 — Failure mode severity**
Record: Incorrect max-vtap calculation → scaler programmed beyond LB
capacity → **display corruption / underflow** (MEDIUM–HIGH for affected
hardware; not a kernel oops, but user-visible and similar to accepted
DCN401 corruption fixes).
**Step 8.4 — Risk/benefit**
Record:
- **Benefit:** MEDIUM–HIGH for DCN401 + sharpening users
- **Risk:** VERY LOW (8-line logic fix, tested, reviewed)
- **Ratio:** Favorable for backport
---
## Phase 9: Final Synthesis
**Step 9.1 — Evidence**
*For backport:*
- Real bug in v6.18.44 DCN401 SPL scaler LB calculation
- Causes overestimated max vtaps when sharpening forces scaler at 1:1
- Small, reviewed, tested, applies cleanly
- Precedent: `5d74be8c3a941` (DCN401 display corruption) is already in
this tree
- DCN401 + ISHARP both present since 2024
*Against backport:*
- No public bug report or syzbot finding
- Narrow hardware/feature scope (DCN401 + sharpening at 1:1)
- Display corruption, not documented kernel crash
- No lore discussion found
*Unresolved:*
- No public user reports found
- Exact visual failure modes not documented in the commit message
**Step 9.2 — Stable rules checklist**
1. Obviously correct and tested? **PASS** — logic matches commit
explanation; `Tested-by` + `Reviewed-by`
2. Fixes a real user-affecting bug? **PASS** — incorrect HW scaler
config on reachable path
3. Important issue? **PASS** — display corruption on affected hardware
(same class as prior DCN401 stable fix)
4. Small and contained? **PASS** — 8 lines, one function, one file
5. No new features/APIs? **PASS** — correctness fix only
6. Can apply to local tree? **PASS** — verified clean apply
**Step 9.3 — Exception category**
Record: Hardware workaround / driver correctness fix for existing DCN401
hardware support (not a new device ID).
**Step 9.4 — Decision rationale**
For **linux-6.18.y (v6.18.44)**: the buggy code exists, prerequisites
(DCN401, ISHARP, SPL) are present, the fix is minimal and low-risk, and
it prevents display corruption on a real use case (sharpening at native
resolution). This matches the class of AMDGPU display corruption fixes
already carried in this stable tree.
---
## Verification
- [Phase 1] Parsed commit `4d8cfd570386e` message and tags from `git
show`
- [Phase 2] Read diff and current `dcn401_dpp.c` lines 357–428;
confirmed missing taps check
- [Phase 2] Traced `spl_get_optimal_number_of_taps()` at
dc_spl.c:1006–1034 — taps set before LB calc
- [Phase 2] Read sharpening logic at dc_spl.c:1121–1140 and
dml21_translation_helper.c:558–563
- [Phase 3] `git blame` lines 390–416 → `70839da636050` (2024-04-26)
- [Phase 3] `git log -S "use increased LB size..."` → introduced with
DCN401
- [Phase 3] `2998bccfa4197` ISHARP support confirmed ancestor of HEAD
- [Phase 3] `git show 4d8cfd570386e | git apply --check` → clean apply
- [Phase 4] `b4 dig -c 4d8cfd570386e` → no lore match
- [Phase 4] `b4 dig -c 4d8cfd570386e -w` and `-a` → no results
- [Phase 4] lore.kernel.org WebFetch → blocked by Anubis
- [Phase 5] Grep callers: `spl_get_optimal_number_of_taps` →
`spl_calculate_number_of_taps` → display setup
- [Phase 6] `git describe HEAD` → v6.18.44
- [Phase 6] `git merge-base --is-ancestor 4d8cfd570386e HEAD` → fix NOT
in tree
- [Phase 6] Buggy viewport-only conditions confirmed at lines 391–392
and 405–406
- [Phase 7] `git log --grep=dcn401` shows active DCN401 maintenance
including `5d74be8c3a941`
- [Phase 8] Quantified LB overestimate: 3430 vs 2744 (RGB), 5770 vs 3712
(YUV420)
**YES**
drivers/gpu/drm/amd/display/dc/dpp/dcn401/dcn401_dpp.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/dc/dpp/dcn401/dcn401_dpp.c b/drivers/gpu/drm/amd/display/dc/dpp/dcn401/dcn401_dpp.c
index b62bbadb0d440..029f59a58c780 100644
--- a/drivers/gpu/drm/amd/display/dc/dpp/dcn401/dcn401_dpp.c
+++ b/drivers/gpu/drm/amd/display/dc/dpp/dcn401/dcn401_dpp.c
@@ -389,9 +389,11 @@ void dscl401_spl_calc_lb_num_partitions(
lb_memory_size_a = 1290;
} else if (lb_config == LB_MEMORY_CONFIG_3) {
if (scl_data->viewport.width == scl_data->h_active &&
- scl_data->viewport.height == scl_data->v_active) {
+ scl_data->viewport.height == scl_data->v_active &&
+ scl_data->taps.h_taps == 1 && scl_data->taps.v_taps == 1) {
/* 420 mode: luma using all 3 mem from Y, plus 3rd mem from Cr and Cb */
/* use increased LB size for calculation only if Scaler not enabled */
+ /* Scaler is forced on when sharpening is on. Add check for taps = 1 */
lb_memory_size = 970 + 1290 + 1170 + 1170 + 1170;
lb_memory_size_c = 970 + 1290;
lb_memory_size_a = 970 + 1290 + 1170;
@@ -403,8 +405,10 @@ void dscl401_spl_calc_lb_num_partitions(
}
} else {
if (scl_data->viewport.width == scl_data->h_active &&
- scl_data->viewport.height == scl_data->v_active) {
+ scl_data->viewport.height == scl_data->v_active &&
+ scl_data->taps.h_taps == 1 && scl_data->taps.v_taps == 1) {
/* use increased LB size for calculation only if Scaler not enabled */
+ /* Scaler is forced on when sharpening is on. Add check for taps = 1 */
lb_memory_size = 970 + 1290 + 1170;
lb_memory_size_c = 970 + 1290 + 1170;
lb_memory_size_a = 970 + 1290 + 1170;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu: validate RAS EEPROM tbl_size before record count
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (4 preceding siblings ...)
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Check for sharpening case when calculating max vtaps for scaler Sasha Levin
@ 2026-08-31 13:21 ` Sasha Levin
2026-08-31 14:20 ` sashiko-bot
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/amd/ras: Fix CPER ring debugfs read overflow Sasha Levin
` (60 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:21 UTC (permalink / raw)
To: patches, stable
Cc: Candice Li, Hawking Zhang, Alex Deucher, Sasha Levin,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Candice Li <candice.li@amd.com>
[ Upstream commit c83e4a45ff9a0b7aa1c48246102009a99ccef11b ]
Corrupt EEPROM data can set tbl_size below the table header size.
Guard the RAS_NUM_RECS macros against undersized tbl_size and reset
the table during init when tbl_size is below the minimum for the table
version instead of trusting the header.
Signed-off-by: Candice Li <candice.li@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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:** `[drm/amdgpu]` `[validate]` — Validate RAS EEPROM `tbl_size`
before computing record count from the EEPROM table header.
### Step 1.2: Commit Message Tags
**Record:**
- **Signed-off-by:** Candice Li `<candice.li@amd.com>` (author)
- **Reviewed-by:** Hawking Zhang `<Hawking.Zhang@amd.com>`
- **Signed-off-by:** Alex Deucher `<alexander.deucher@amd.com>`
(drm/amdgpu maintainer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`,
`Tested-by:`, or syzbot tags
- Notable absence: no fuzzer or user bug report; maintainer-reviewed
driver fix only
### Step 1.3: Commit Body Analysis
**Record:**
- **Bug:** Corrupt EEPROM can set `tbl_size` below the minimum size for
the table version (20 bytes for V1, 276 bytes for V2.1/V3).
- **Symptom:** `RAS_NUM_RECS` / `RAS_NUM_RECS_V2_1` perform unsigned
subtraction on undersized `tbl_size`, producing incorrect record
counts; driver should not trust the header.
- **Fix approach:** Guard macros to return 0 on undersized `tbl_size`;
during `amdgpu_ras_eeprom_init()`, detect undersized `tbl_size` and
reset the table via `amdgpu_ras_eeprom_reset_table()` instead of
proceeding.
- **Root cause:** Missing minimum-size validation before using
`tbl_size` in record-count arithmetic.
### Step 1.4: Hidden Bug Fix Detection
**Record:** Yes — described as validation, but it is a real correctness
bug fix. Undersized `tbl_size` causes unsigned underflow in
`RAS_NUM_RECS*` macros. The init-path change converts a permanent init
failure (`-EINVAL`, EEPROM marked invalid) into self-healing table
reset, matching the existing invalid-header recovery pattern.
---
## Phase 2: Diff Analysis
### Step 2.1: Change Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c` only
- **Scope:** ~20 lines changed (macro guards + two init checks)
- **Functions/macros modified:** `RAS_NUM_RECS`, `RAS_NUM_RECS_V2_1`,
`amdgpu_ras_eeprom_init()`
- **Classification:** Single-file surgical fix
### Step 2.2: Code Flow Change
**Record:**
- **Macro hunks:** Before — unconditional `(tbl_size - header_size) /
record_size` (unsigned underflow when `tbl_size` too small). After —
return `0u` if below minimum, else compute normally.
- **V2.1/V3 init hunk:** Before — compute `ras_num_recs` immediately.
After — if `tbl_size < 276`, log error and reset table.
- **V1 init hunk:** Before — compute immediately. After — if `tbl_size <
20`, log error and reset table.
- **Path affected:** Driver init on GPUs with RAS EEPROM support (probe-
time `amdgpu_ras_eeprom_init()`).
### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Memory safety / logic correctness (unsigned arithmetic
on corrupt data)
- **Mechanism:** `tbl_size` is `uint32_t`. When `tbl_size <
RAS_TABLE_HEADER_SIZE` (V1) or `< RAS_TABLE_HEADER_SIZE +
RAS_TABLE_V2_1_INFO_SIZE` (V2.1/V3), subtraction wraps to a very large
value. Commit 5df0d6addb7e9’s `ras_num_recs > ras_max_record_count`
check catches this and returns `-EINVAL`, but EEPROM stays permanently
disabled. This commit adds explicit minimum-size validation and auto-
recovery.
### Step 2.4: Fix Quality
**Record:** Obviously correct and minimal. Mirrors `6ffc6e056febb`
(“Reset RAS table if header is invalid”). Low regression risk: only
triggers on already-corrupt EEPROM headers; reset path is well-tested.
No API changes.
---
## Phase 3: Git History Investigation
### Step 3.1: Blame
**Record:**
- `RAS_NUM_RECS` introduced in `63d4c081a556a` (2021-04-06, “Optimize
EEPROM RAS table I/O”)
- `RAS_NUM_RECS_V2_1` introduced in `65183faec89f3e` (2023-05-30, “Add
RAS table v2.1 macro definition”)
- Buggy unsigned arithmetic present since those commits; this tree is
**v6.18.44**
### Step 3.2: Fixes: Tag
**Record:** N/A — no `Fixes:` tag in commit message.
### Step 3.3: Related File History
**Record:** Related validation commits already in this tree:
- `5df0d6addb7e9` — “Add basic validation for RAS header” (max record
count check)
- `6ffc6e056febb` — “Reset RAS table if header is invalid”
- `660261df61fb7` — “refine eeprom data check” (checksum on unload)
- `89232d0db3ca9` — “return when ras table checksum is error”
Standalone fix; not part of a numbered series.
### Step 3.4: Author Context
**Record:** Candice Li is an AMD contributor. Related validation work by
Lijo Lazar and ganglxie in the same file. Alex Deucher (maintainer)
signed off.
### Step 3.5: Dependencies
**Record:** Requires `RAS_NUM_RECS_V2_1`,
`amdgpu_ras_eeprom_reset_table()`, and the version switch in init — all
present in v6.18.44. User diff shows HBM3E context from newer mainline;
that block is **not** in this tree and is **not** part of the patch
hunks. Applies standalone to 6.18.44 init switch.
---
## Phase 4: Mailing List and External Research
### Step 4.1: Original Discussion
**Record:** Commit hash not in this checkout; `b4 dig -c` could not
match. Lore search blocked by Anubis bot protection. **UNVERIFIED:**
full mailing-list review thread.
### Step 4.2: Reviewers
**Record:** **UNVERIFIED** via b4. Commit message shows Reviewed-by
Hawking Zhang (AMD) and Signed-off-by Alex Deucher (maintainer).
### Step 4.3: Bug Reports
**Record:** N/A — no `Reported-by:` or `Link:` tags.
### Step 4.4: Related Patches
**Record:** Part of ongoing amdgpu RAS EEPROM validation hardening;
prior related commits are already in v6.18.44.
### Step 4.5: Stable List History
**Record:** **UNVERIFIED** — could not search lore stable archive.
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key Functions
**Record:** `RAS_NUM_RECS`, `RAS_NUM_RECS_V2_1`,
`amdgpu_ras_eeprom_init()`
### Step 5.2: Callers
**Record:** `amdgpu_ras_eeprom_init()` called from
`amdgpu_ras_init_badpage_info()` in `amdgpu_ras.c:3590`, which runs
during GPU RAS initialization at probe. Affects VEGA20, Arcturus, Sienna
Cichlid, Aldebaran, and other RAS-EEPROM-capable dGPUs per
`__is_ras_eeprom_supported()`.
### Step 5.3: Callees
**Record:** On undersized `tbl_size`, calls
`amdgpu_ras_eeprom_reset_table()` which rewrites a valid header to
EEPROM via I2C.
### Step 5.4: Reachability
**Record:** Triggered at every boot on affected hardware when EEPROM
`tbl_size` is corrupt. Not userspace-triggerable directly, but affects
all boots on affected systems. Corrupt EEPROM is a realistic
hardware/partial-write scenario on datacenter GPUs.
### Step 5.5: Similar Patterns
**Record:** Same recovery pattern as `6ffc6e056febb` for invalid header
magic. Complements `5df0d6addb7e9` max-record validation.
---
## Phase 6: Cross-Reference Against Local Tree (v6.18.44)
### Step 6.1: Buggy Code Present?
**Record:** **Yes.** Current tree at lines 145–150 has unguarded
`RAS_NUM_RECS` macros; `amdgpu_ras_eeprom_init()` at lines 1415–1432
lacks `tbl_size` minimum checks. Bug present since 2021/2023; partial
mitigation since `5df0d6addb7e9` (Mar 2025).
### Step 6.2: Backport Complications
**Record:** Expected **clean apply** — init switch structure matches; no
HBM3E block in 6.18.44 that would conflict. Only line-number offset
differs; context-based apply should work.
### Step 6.3: Related Fixes Already Present?
**Record:** Max record count validation (`5df0d6addb7e9`) and invalid-
header reset (`6ffc6e056febb`) are present. **This specific `tbl_size`
minimum validation is NOT present.**
---
## Phase 7: Subsystem Context
### Step 7.1: Subsystem and Criticality
**Record:** `drivers/gpu/drm/amd/amdgpu` — **IMPORTANT** (AMD
datacenter/enterprise GPU RAS reliability; not universal but critical
for affected hardware).
### Step 7.2: Subsystem Activity
**Record:** Actively maintained — 4 EEPROM-related commits in recent
file history on this tree.
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who Is Affected
**Record:** Users of AMD GPUs with RAS EEPROM support (VEGA20, Arcturus,
MI-series, RDNA/CDNA dGPUs with HBM RAS). Config: `CONFIG_DRM_AMDGPU`
with supported ASICs.
### Step 8.2: Trigger Conditions
**Record:** Corrupt EEPROM `tbl_size` field on boot. Uncommon but
realistic (wear, partial write, hardware glitch). Not unprivileged-
triggerable; hardware/firmware corruption path.
### Step 8.3: Failure Mode Severity
**Record:**
- **Without fix:** Undersized `tbl_size` → unsigned underflow →
`ras_num_recs > ras_max_record_count` → `-EINVAL` → `is_eeprom_valid =
false` every boot. GPU runs but RAS EEPROM bad-page tracking is
permanently disabled until manual intervention. Verified: all
`tbl_size < 20` (V1) and `tbl_size < 276` (V2.1) underflow cases
produce record counts above max (Python verification).
- **With fix:** Table auto-reset; RAS EEPROM functionality restored.
- **Severity:** **MEDIUM-HIGH** for affected datacenter hardware
(operational RAS degradation, not kernel crash). No OOM path because
`amdgpu_ras_load_bad_pages()` is gated on `is_eeprom_valid` (line
3600).
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** Self-healing corrupt EEPROM; defense-in-depth on macros;
consistent with existing reset-on-corruption policy.
- **Risk:** Very low — ~20 lines, only error/corruption path, uses
existing reset function.
- **Ratio:** Moderate benefit, very low risk. Worth backporting given
prior similar fixes already in 6.18.y.
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence Summary
**FOR backport:**
- Fixes real corrupt-EEPROM bug (unsigned underflow + incorrect trust of
header)
- Auto-recovery instead of permanent EEPROM disable on every boot
- Small, surgical, maintainer-reviewed
- Prerequisites present in v6.18.44
- Consistent with already-backported validation series (`5df0d6`,
`6ffc6e`, `660261`, `89232d`)
- Affects production RAS-capable AMD GPUs
**AGAINST backport:**
- Existing max-record check already prevents huge `kcalloc` / OOM (since
Mar 2025)
- No crash, deadlock, or security exploit demonstrated
- No user/syzbot report
- Primary improvement is operational recovery, not crash prevention
- Lore review unverified
**UNRESOLVED:** Mailing-list discussion and stable-list nomination
history.
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — logic is straightforward;
reviewed by AMD engineer and maintainer (no runtime test tag).
2. Fixes real bug affecting users? **PASS** — corrupt EEPROM leaves RAS
tracking disabled on every boot on affected hardware.
3. Important issue? **PASS (MEDIUM-HIGH)** — datacenter RAS reliability
degradation on supported GPUs; not a kernel crash but materially
impacts production GPU health tracking.
4. Small and contained? **PASS** — one file, ~20 lines.
5. No new features/APIs? **PASS** — validation and recovery only.
6. Can apply to local tree? **PASS** — code exists; patch should apply
cleanly to v6.18.44.
### Step 9.3: Exception Categories
**Record:** Hardware workaround for corrupt EEPROM data on existing RAS-
EEPROM driver — analogous to quirk/validation exception category.
### Step 9.4: Decision Rationale
This commit completes the RAS EEPROM validation work already present in
v6.18.44. While the max-record check added in `5df0d6addb7e9` prevents
the worst outcome (huge allocation), corrupt undersized `tbl_size` still
causes permanent EEPROM init failure on every boot. The fix follows the
established pattern of resetting corrupt tables rather than leaving the
driver in a degraded state. It is small, obviously correct, low-risk,
and relevant to this tree’s existing amdgpu RAS EEPROM code.
---
## Verification
- **[Phase 1]** Parsed commit message: subject, tags (SOB, Reviewed-by,
no Fixes/Reported-by/Link)
- **[Phase 2]** Diff analysis: 1 file, macro guards + 2 init checks in
`amdgpu_ras_eeprom_init()`
- **[Phase 3]** `git describe HEAD`: v6.18.44
- **[Phase 3]** `git blame` lines 145–150: macros from 63d4c081a556a
(2021), 65183faec89f3e (2023)
- **[Phase 3]** `git log -15 -- amdgpu_ras_eeprom.c`: related validation
commits present
- **[Phase 3]** `git show 5df0d6addb7e9`: added max record count
validation
- **[Phase 3]** `git show 6ffc6e056febb`: reset on invalid header magic
- **[Phase 3]** `git merge-base --is-ancestor`: 5df0d6 and 65183fa both
in tree
- **[Phase 4]** `b4 dig`: no commit hash available in tree — no match
- **[Phase 4]** lore.kernel.org fetch: blocked by Anubis —
**UNVERIFIED**
- **[Phase 5]** `grep amdgpu_ras_eeprom_init`: caller at
`amdgpu_ras.c:3590`
- **[Phase 5]** `grep RAS_NUM_RECS`: only used in
`amdgpu_ras_eeprom_init()`
- **[Phase 5]** `grep is_eeprom_valid`: gates
`amdgpu_ras_load_bad_pages` at line 3600
- **[Phase 6]** Read current `amdgpu_ras_eeprom.c` lines 145–150,
1415–1444: buggy code confirmed present
- **[Phase 6]** Python verification: all `tbl_size < 20` (V1) and
`tbl_size < 276` (V2.1) underflow cases produce record counts > max —
existing check returns `-EINVAL`
- **[Phase 8]** Read `amdgpu_ras_init_badpage_info()`: `is_eeprom_valid
= !ret`; load gated on validity
- **[Phase 8]** `tbl_size` type confirmed `uint32_t` in
`amdgpu_ras_eeprom.h:51`
**YES**
.../gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c | 26 +++++++++++++++----
1 file changed, 21 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
index 652aa085b6263..51382d604b1f0 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
@@ -142,12 +142,15 @@
#define RAS_RI_TO_AI(_C, _I) (((_I) + (_C)->ras_fri) % \
(_C)->ras_max_record_count)
-#define RAS_NUM_RECS(_tbl_hdr) (((_tbl_hdr)->tbl_size - \
- RAS_TABLE_HEADER_SIZE) / RAS_TABLE_RECORD_SIZE)
+#define RAS_NUM_RECS(_tbl_hdr) \
+ (((_tbl_hdr)->tbl_size < RAS_TABLE_HEADER_SIZE) ? 0u : \
+ (((_tbl_hdr)->tbl_size - RAS_TABLE_HEADER_SIZE) / RAS_TABLE_RECORD_SIZE))
-#define RAS_NUM_RECS_V2_1(_tbl_hdr) (((_tbl_hdr)->tbl_size - \
- RAS_TABLE_HEADER_SIZE - \
- RAS_TABLE_V2_1_INFO_SIZE) / RAS_TABLE_RECORD_SIZE)
+#define RAS_NUM_RECS_V2_1(_tbl_hdr) \
+ (((_tbl_hdr)->tbl_size < RAS_TABLE_HEADER_SIZE + \
+ RAS_TABLE_V2_1_INFO_SIZE) ? 0u : \
+ (((_tbl_hdr)->tbl_size - RAS_TABLE_HEADER_SIZE - \
+ RAS_TABLE_V2_1_INFO_SIZE) / RAS_TABLE_RECORD_SIZE))
#define to_amdgpu_device(x) ((container_of(x, struct amdgpu_ras, eeprom_control))->adev)
@@ -1415,11 +1418,24 @@ int amdgpu_ras_eeprom_init(struct amdgpu_ras_eeprom_control *control)
switch (hdr->version) {
case RAS_TABLE_VER_V2_1:
case RAS_TABLE_VER_V3:
+ if (hdr->tbl_size < RAS_TABLE_HEADER_SIZE + RAS_TABLE_V2_1_INFO_SIZE) {
+ dev_err(adev->dev,
+ "RAS header invalid, tbl_size %u smaller than minimum %u, resetting table\n",
+ hdr->tbl_size,
+ RAS_TABLE_HEADER_SIZE + RAS_TABLE_V2_1_INFO_SIZE);
+ return amdgpu_ras_eeprom_reset_table(control);
+ }
control->ras_num_recs = RAS_NUM_RECS_V2_1(hdr);
control->ras_record_offset = RAS_RECORD_START_V2_1;
control->ras_max_record_count = RAS_MAX_RECORD_COUNT_V2_1;
break;
case RAS_TABLE_VER_V1:
+ if (hdr->tbl_size < RAS_TABLE_HEADER_SIZE) {
+ dev_err(adev->dev,
+ "RAS header invalid, tbl_size %u smaller than minimum %u, resetting table\n",
+ hdr->tbl_size, RAS_TABLE_HEADER_SIZE);
+ return amdgpu_ras_eeprom_reset_table(control);
+ }
control->ras_num_recs = RAS_NUM_RECS(hdr);
control->ras_record_offset = RAS_RECORD_START;
control->ras_max_record_count = RAS_MAX_RECORD_COUNT;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amd/ras: Fix CPER ring debugfs read overflow
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (5 preceding siblings ...)
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] drm/amdgpu: validate RAS EEPROM tbl_size before record count Sasha Levin
@ 2026-08-31 13:22 ` Sasha Levin
2026-08-31 14:24 ` sashiko-bot
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend Sasha Levin
` (59 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:22 UTC (permalink / raw)
To: patches, stable
Cc: Xiang Liu, Tao Zhou, Alex Deucher, Sasha Levin, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Xiang Liu <xiang.liu@amd.com>
[ Upstream commit 1e40ef87ffdc291e05ccdade8b9170cc9c1c4249 ]
The legacy CPER debugfs reader can reach the payload path without a
valid pointer snapshot. The remaining user byte count is also treated as
the ring occupancy in dwords, so reads past the header can copy more than
requested.
Take the CPER lock before sampling pointers. Resample rptr/wptr for
payload reads, bound the payload copy by available dwords and the
remaining user size, and advance the file position for each dword copied.
Signed-off-by: Xiang Liu <xiang.liu@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/amd/ras: Fix CPER ring debugfs read
overflow
**Local tree:** Linux 6.18.43 (`git describe HEAD` →
`v6.18.43-1-gc7f0dac02d232`, Makefile `6.18.43`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
**Step 1.1 — Subject line**
Record: `[drm/amd/ras]` `[Fix]` — fixes a buffer-overflow / bounds bug
in the legacy CPER ring debugfs reader (`amdgpu_debugfs_ring_read`).
**Step 1.2 — Tags**
Record:
- `Signed-off-by: Xiang Liu <xiang.liu@amd.com>` (author)
- `Reviewed-by: Tao Zhou <tao.zhou1@amd.com>`
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` (drm/amdgpu
maintainer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`,
`Tested-by:`
- Cherry-pick object in repo notes `(cherry picked from commit
1e40ef87ffdc291e05ccdade8b9170cc9c1c4249)`
**Step 1.3 — Body analysis**
Record:
- **Bug:** Legacy CPER debugfs reader can enter the payload path without
a valid rptr/wptr snapshot; user byte count (`size`) is overwritten
with ring occupancy in dwords, so reads past the 12-byte header can
copy more data than the user requested.
- **Symptom:** User buffer overflow on `read()` of
`/sys/kernel/debug/dri/*/amdgpu_ring_cper`; also uninitialized pointer
use and missing lock coverage on payload-only reads (`*pos >= 12`).
- **Root cause (author):** Lock taken only inside `if (*pos < 12)`;
`early[]` not populated when skipping header; `size` repurposed as
dword count; wrong wrap size (`ring_size` bytes vs dword indices);
`*pos` not advanced in CPER payload loop.
**Step 1.4 — Hidden bug fix?**
Record: No — explicitly labeled and described as an overflow fix.
---
## PHASE 2: DIFF ANALYSIS
**Step 2.1 — Inventory**
Record:
- 1 file: `drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c` (+21 / −8 in the
cherry-pick object `6bbede02dc62`)
- Function modified: `amdgpu_debugfs_ring_read()`
- Scope: single-file surgical fix (the user-provided diff also shows
`amdgpu_ras_cper_debugfs_read` changes, but those are **not** in
commit `6bbede02dc62` nor in this tree)
**Step 2.2 — Code flow changes**
| Hunk | Before | After |
|------|--------|-------|
| Lock scope | `mutex_lock` only inside `if (*pos < 12)` | Lock held for
entire CPER read path |
| Payload entry with `*pos >= 12` | `early[0/1]` never set; unlock
without lock | Resample rptr/wptr under lock |
| Copy bound | `size = ring occupancy` (dwords), ignoring user request |
`read_dw = min(avail_dw, size >> 2)` |
| Wrap calc | `ring->ring_size` (bytes) | `ring->buf_mask + 1` (dwords)
|
| Position | `*pos` not updated in CPER payload loop | `*pos += 4` per
dword |
**Step 2.3 — Bug mechanism**
Record: **Buffer overflow / out-of-bounds user copy** + **uninitialized
stack data** + **mutex imbalance** + **logic error** (wrong units,
missing file position advance).
Verified in current HEAD (`amdgpu_ring.c` lines 511–568):
```511:568:drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
if (*pos < 12) {
if (ring->funcs->type == AMDGPU_RING_TYPE_CPER)
mutex_lock(&ring->adev->cper.ring_lock);
// early[0..2] populated here only
...
}
...
} else {
p = early[0]; // uninitialized if *pos >= 12 at entry
...
size = (early[1] - early[0]); // overwrites
user's byte count
...
while (size) { // may copy far more than user
requested
...
size--;
// *pos not advanced
}
}
out:
if (ring->funcs->type == AMDGPU_RING_TYPE_CPER)
mutex_unlock(...); // unlock even when lock was never
taken
```
**Step 2.4 — Fix quality**
Record: Obviously correct, minimal, no API changes. Low regression risk
— only affects CPER ring debugfs reads. Reviewed by AMD RAS engineer and
merged by amdgpu maintainer.
---
## PHASE 3: GIT HISTORY INVESTIGATION
**Step 3.1 — Blame**
Record: Current buggy function attributed to merge `5d324e5159d9e`
(6.18-rc8 era). Shallow stable history prevents tracing the original
CPER introduction commit; `amdgpu_cper.c` and CPER ring debugfs support
are present in this tree.
**Step 3.2 — Fixes: tag**
Record: N/A — no `Fixes:` tag.
**Step 3.3 — Related file history**
Record: `git log --oneline -20 --
drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c` shows only merge commit in
this shallow tree. AUTOSel nomination exists: `[PATCH AUTOSEL 7.0-6.18]
drm/amd/ras: Fix CPER ring debugfs read overflow`.
**Step 3.4 — Author context**
Record: Xiang Liu (AMD). Reviewed by Tao Zhou (AMD RAS). Acked by Alex
Deucher (amdgpu maintainer).
**Step 3.5 — Dependencies**
Record: Standalone. `git cherry-pick --no-commit 6bbede02dc62` auto-
merges cleanly on HEAD (21 insertions, 8 deletions, 1 file only). No
prerequisite commits required.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
**Step 4.1 — Original discussion**
Record: `b4 dig -c 6bbede02dc62` →
https://patch.msgid.link/20260507140004.244348-1-xiang.liu@amd.com
Single v1 patch, no NAKs found. Tao Zhou replied with `Reviewed-by`.
**Step 4.2 — Reviewers**
Record: `b4 dig -w`: To/Cc included `amd-gfx@lists.freedesktop.org`,
Hawking Zhang, Tao Zhou (AMD).
**Step 4.3 — Bug reports**
Record: No syzbot, bugzilla, or user crash reports. Issue identified by
code review / internal analysis.
**Step 4.4 — Series context**
Record: Standalone 1-patch series. AUTOSel 6.18 nomination confirms
stable relevance for this series.
**Step 4.5 — Stable list**
Record: AUTOSel 7.0-6.18 patch explicitly targets this stable series
(web search confirmed).
---
## PHASE 5: CODE SEMANTIC ANALYSIS
**Step 5.1 — Key functions**
Record: `amdgpu_debugfs_ring_read()`, called from debugfs
`file_operations.read`.
**Step 5.2 — Callers**
Record: `amdgpu_debugfs_ring_fops.read` → debugfs file
`amdgpu_ring_<name>` created in `amdgpu_debugfs_ring_init()`. CPER ring
named `"cper"` → `/sys/kernel/debug/dri/<card>/amdgpu_ring_cper`.
**Step 5.3 — Callees**
Record: `mutex_lock/unlock`, `amdgpu_ring_get_rptr/wptr`, `put_user`,
ring buffer indexing.
**Step 5.4 — Reachability**
Record: Reachable via `read()` syscall on debugfs (requires
`CONFIG_DEBUG_FS`, debugfs mounted, typically `CAP_SYS_ADMIN`).
Triggered on any CPER ring read where `*pos >= 12` (normal after first
12-byte header) or partial reads.
**Step 5.5 — Similar patterns**
Record: Non-CPER ring path in same function correctly bounds by
`ring->ring_size + 12` and advances `*pos`; CPER path was the outlier.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
**Step 6.1 — Buggy code present?**
Record: **YES** — verified in HEAD at `amdgpu_ring.c:497–576`. CPER
subsystem present (`amdgpu_cper.c`, `amdgpu_cper_init()` in
`amdgpu_device.c:3310`). Fix commit `6bbede02dc62` is **not** an
ancestor of HEAD.
**Step 6.2 — Backport complications**
Record: **Clean apply** — cherry-pick test succeeded with no conflicts.
**Step 6.3 — Related fixes already present?**
Record: **No** — `git diff HEAD 6bbede02dc62 --
drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c` shows only the intended fix
hunks when cherry-picked; HEAD still has buggy code.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
**Step 7.1 — Subsystem**
Record: `drivers/gpu/drm/amd/amdgpu` — GPU driver, RAS/CPER debug path.
Criticality: **PERIPHERAL** (AMD GPU + debugfs + CPER/RAS enabled).
**Step 7.2 — Activity**
Record: Active development; CPER support is relatively recent (mainline
~6.15+ per external references).
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
**Step 8.1 — Who is affected**
Record: Systems with AMDGPU, `CONFIG_DEBUG_FS`, CPER ring initialized
(ACA or SR-IOV RAS CPER enabled), and a privileged user reading the CPER
ring debugfs file.
**Step 8.2 — Trigger conditions**
Record: Common on second/subsequent `read()` calls (after 12-byte
header). Requires debugfs access (typically root). Not triggerable by
unprivileged users under default permissions (debugfs `0444` but debugfs
mount is root-only on most distros).
**Step 8.3 — Failure mode severity**
Record:
- User buffer overflow via `put_user` beyond requested `size` → **HIGH**
(memory safety)
- `mutex_unlock` without `mutex_lock` when `*pos >= 12` → **HIGH**
(lockdep WARN / potential corruption in debug builds)
- Uninitialized `early[]` → **MEDIUM-HIGH** (undefined behavior,
possible kernel data leak to userspace)
- Overall: **HIGH** for memory safety; practical exploitability reduced
by privileged-only access
**Step 8.4 — Risk vs benefit**
Record:
- **Benefit:** Prevents user buffer overflow, fixes mutex imbalance,
corrects CPER debugfs semantics — **moderate** (narrow audience but
real bugs)
- **Risk:** Very low — 21-line surgical change, reviewed, clean apply
- **Ratio:** Benefit outweighs risk
---
## PHASE 9: FINAL SYNTHESIS
**Step 9.1 — Evidence summary**
| FOR | AGAINST |
|-----|---------|
| Real user buffer overflow | Debugfs-only path |
| Mutex unlock-without-lock bug | Requires `CONFIG_DEBUG_FS` |
| Uninitialized stack variable use | Admin/privileged access typically
required |
| Small, reviewed, maintainer-acked fix | No syzbot/user crash reports |
| Applies cleanly to 6.18.43 | Affects narrow hardware/config subset |
| AUTOSel nominated for 6.18.y | |
| Buggy code confirmed in this tree | |
**Step 9.2 — Stable rules checklist**
1. Obviously correct and tested? **PASS** — reviewed by AMD engineer +
amdgpu maintainer; logic verified against buggy code
2. Fixes a real bug? **PASS** — confirmed overflow, mutex bug,
uninitialized data
3. Important issue? **PASS** — memory safety / buffer overflow (severity
tempered by privileged-only access)
4. Small and contained? **PASS** — 1 file, ~29 lines
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — cherry-pick tested clean
**Step 9.3 — Exception category**
Record: N/A (not device ID, quirk, DT, build, or docs fix — standard bug
fix).
**Step 9.4 — Decision rationale**
This fix addresses a genuine memory-safety bug in the CPER ring debugfs
reader that exists in Linux 6.18.43. The overflow is reachable on
ordinary multi-read patterns once the 12-byte header has been consumed.
While the path requires debugfs and typically root access, stable trees
routinely accept such fixes when they prevent kernel-to-userspace buffer
overruns and mutex imbalances. The patch is minimal, reviewed, applies
cleanly, and has been AUTOSel-nominated for 6.18.y.
---
## Verification
- [Phase 1] Parsed subject, tags (Reviewed-by Tao Zhou, SOB Alex
Deucher); no Fixes/Reported-by/Link
- [Phase 1] Identified overflow, uninitialized pointers, lock scope as
described bugs
- [Phase 2] Read `amdgpu_ring.c:497–576` — confirmed all four bug
mechanisms in HEAD
- [Phase 2] Cherry-pick object `6bbede02dc62` changes only
`amdgpu_debugfs_ring_read` (+21/−8)
- [Phase 3] `git describe HEAD` → v6.18.43; `make kernelversion`
equivalent → 6.18.43
- [Phase 3] `git merge-base --is-ancestor 6bbede02dc62 HEAD` → NOT
ancestor (fix not yet applied)
- [Phase 3] `git cherry-pick --no-commit 6bbede02dc62` → clean auto-
merge on `amdgpu_ring.c`
- [Phase 3] `git show 5d324e5159d9e:...amdgpu_ring.c` lines 545–575 →
buggy CPER path present at 6.18 base
- [Phase 4] `b4 dig -c 6bbede02dc62` →
https://patch.msgid.link/20260507140004.244348-1-xiang.liu@amd.com
- [Phase 4] `b4 dig -a` → single v1 revision only
- [Phase 4] `b4 dig -w` → amd-gfx list, Hawking Zhang, Tao Zhou CC'd
- [Phase 4] Freedesktop archive — Tao Zhou Reviewed-by, no NAKs
- [Phase 4] Web search — AUTOSel 7.0-6.18 nomination found
- [Phase 5] `grep amdgpu_debugfs_ring_fops` → debugfs read entry point
at `amdgpu_ring.c:592–595`
- [Phase 5] `amdgpu_debugfs_ring_init()` creates `amdgpu_ring_cper`
debugfs file at line 648–656
- [Phase 6] `amdgpu_cper_init` present in `amdgpu_device.c:3310`;
`amdgpu_cper.c` exists
- [Phase 6] No `amdgpu_uniras_enabled` or `amdgpu_ras_cper_debugfs_read`
in this tree (not needed for fix)
- [Phase 8] Failure modes verified by code inspection: overflow, mutex
imbalance, uninitialized `early[]`
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c | 29 +++++++++++++++++-------
1 file changed, 21 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
index 304564ec2f59a..431cc39ea0178 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
@@ -498,8 +498,9 @@ static ssize_t amdgpu_debugfs_ring_read(struct file *f, char __user *buf,
size_t size, loff_t *pos)
{
struct amdgpu_ring *ring = file_inode(f)->i_private;
- uint32_t value, result, early[3];
+ u32 value, result, early[3] = { 0 };
uint64_t p;
+ u32 avail_dw, start_dw, read_dw;
loff_t i;
int r;
@@ -508,10 +509,10 @@ static ssize_t amdgpu_debugfs_ring_read(struct file *f, char __user *buf,
result = 0;
- if (*pos < 12) {
- if (ring->funcs->type == AMDGPU_RING_TYPE_CPER)
- mutex_lock(&ring->adev->cper.ring_lock);
+ if (ring->funcs->type == AMDGPU_RING_TYPE_CPER)
+ mutex_lock(&ring->adev->cper.ring_lock);
+ if (*pos < 12) {
early[0] = amdgpu_ring_get_rptr(ring) & ring->buf_mask;
early[1] = amdgpu_ring_get_wptr(ring) & ring->buf_mask;
early[2] = ring->wptr & ring->buf_mask;
@@ -543,13 +544,24 @@ static ssize_t amdgpu_debugfs_ring_read(struct file *f, char __user *buf,
*pos += 4;
}
} else {
+ early[0] = amdgpu_ring_get_rptr(ring) & ring->buf_mask;
+ early[1] = amdgpu_ring_get_wptr(ring) & ring->buf_mask;
+
p = early[0];
if (early[0] <= early[1])
- size = (early[1] - early[0]);
+ avail_dw = early[1] - early[0];
else
- size = ring->ring_size - (early[0] - early[1]);
+ avail_dw = ring->buf_mask + 1 - (early[0] - early[1]);
- while (size) {
+ start_dw = (*pos > 12) ? ((*pos - 12) >> 2) : 0;
+ if (start_dw >= avail_dw)
+ goto out;
+
+ p = (p + start_dw) & ring->ptr_mask;
+ avail_dw -= start_dw;
+ read_dw = min_t(u32, avail_dw, size >> 2);
+
+ while (read_dw) {
if (p == early[1])
goto out;
@@ -562,9 +574,10 @@ static ssize_t amdgpu_debugfs_ring_read(struct file *f, char __user *buf,
buf += 4;
result += 4;
- size--;
+ read_dw--;
p++;
p &= ring->ptr_mask;
+ *pos += 4;
}
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.10] drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (6 preceding siblings ...)
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/amd/ras: Fix CPER ring debugfs read overflow Sasha Levin
@ 2026-08-31 13:22 ` Sasha Levin
2026-08-31 14:33 ` sashiko-bot
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add AUO B133HAN06.6 and BOE NV133FHM-N4F V8.0 Sasha Levin
` (58 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:22 UTC (permalink / raw)
To: patches, stable
Cc: Gustavo Kenji Mendonça Kaneko, Liviu Dudau, Sasha Levin,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-kernel
From: Gustavo Kenji Mendonça Kaneko <kaneko.dev@pm.me>
[ Upstream commit 46f715a16989f4e7bbbc2eb41447051874b027f3 ]
malidp_runtime_pm_resume() calls clk_prepare_enable() three times
without checking the return value. If any clock fails to enable, the
driver silently proceeds with unclocked hardware, leading to undefined
behavior.
Convert both the resume and suspend paths to use the clk_bulk API:
clk_bulk_prepare_enable() in resume checks the return value and rolls
back any successfully enabled clocks on failure;
clk_bulk_disable_unprepare() in suspend keeps the two paths symmetric.
This issue was found by code review without access to Mali DP hardware.
Signed-off-by: Gustavo Kenji Mendonça Kaneko <kaneko.dev@pm.me>
Reviewed-by: Liviu Dudau <liviu.dudau@arm.com>
Link: https://patch.msgid.link/20260609130812.1065699-1-kaneko.dev@pm.me
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
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: `[drm/arm/malidp]` `[use]` — Convert runtime PM resume/suspend
clock handling to `clk_bulk` API with proper error checking.
**Step 1.2 — Tags**
Record:
- **Fixes:** none
- **Reported-by:** none
- **Tested-by:** none
- **Reviewed-by:** Liviu Dudau `<liviu.dudau@arm.com>` (Mali DP driver
maintainer/original author)
- **Acked-by:** none
- **Link:**
https://patch.msgid.link/20260609130812.1065699-1-kaneko.dev@pm.me
- **Cc: stable:** none (expected for manual review)
- **Signed-off-by:** Gustavo Kenji Mendonça Kaneko, Liviu Dudau (ignore
pipeline-added SOBs)
Notable: maintainer Reviewed-by; no user/fuzzer reports.
**Step 1.3 — Body analysis**
Record:
- **Bug:** `malidp_runtime_pm_resume()` calls `clk_prepare_enable()`
three times without checking return values.
- **Symptom/failure mode:** On clock-enable failure, driver continues
with unclocked or partially clocked hardware → undefined behavior;
then sets `pm_suspended = false` and runs IRQ hardware init.
- **Version info:** none stated.
- **Root cause:** Missing error handling on runtime PM resume clock
enables; partial enable not rolled back.
**Step 1.4 — Hidden bug fix?**
Record: **Yes.** Subject says "use clk_bulk API," but the substantive
fix is ignored `clk_prepare_enable()` errors on the PM resume path — a
real correctness/robustness bug, not mere style.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- **File:** `drivers/gpu/drm/arm/malidp_drv.c` (+16 / −6)
- **Functions:** `malidp_runtime_pm_suspend()`,
`malidp_runtime_pm_resume()`
- **Scope:** Single-file surgical fix
**Step 2.2 — Code flow per hunk**
| Hunk | Before | After |
|------|--------|-------|
| Suspend | Three individual `clk_disable_unprepare()` calls
(mclk→aclk→pclk) | `clk_bulk_disable_unprepare()` on `[pclk, aclk,
mclk]` array |
| Resume | Three `clk_prepare_enable()` calls, return values ignored |
`clk_bulk_prepare_enable()` with error check; return error on failure |
Record: Suspend path is symmetric refactor only (bulk disable runs in
reverse order, matching old behavior). Resume path adds error
propagation and rollback on partial failure.
**Step 2.3 — Bug mechanism**
Record: **Error-path / logic correctness fix.** Category: ignored return
values + partial resource state on failure. If `aclk` fails after `pclk`
succeeds, old code leaves `pclk` enabled, ignores failure, and proceeds
to `malidp_de_irq_hw_init()` / `malidp_se_irq_hw_init()` on mis-clocked
hardware.
**Step 2.4 — Fix quality**
Record: Fix is minimal and idiomatic. `clk_bulk_disable()` /
`clk_bulk_unprepare()` iterate in reverse order, so suspend behavior
matches the old manual sequence. Resume rollback via
`clk_bulk_prepare_enable()` is standard. Low regression risk; maintainer
requested v2 suspend symmetry change.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record: Buggy `clk_prepare_enable()` calls introduced in
`85f6421889eca6` ("drm: mali-dp: Enable power management for the
device.", 2017-03-22, Liviu Dudau). Present in this tree since driver PM
was added.
**Step 3.2 — Fixes: tag**
Record: N/A — no Fixes: tag.
**Step 3.3 — Related file history**
Record: Recent `malidp_drv.c` changes are unrelated DRM API cleanups.
Standalone patch; v2 incorporated maintainer feedback (suspend
symmetry). No prerequisite commits required.
**Step 3.4 — Author context**
Record: Gustavo Kenji Mendonça Kaneko is a contributor; Liviu Dudau is
the Mali DP maintainer and original driver author. Maintainer reviewed
and merged to `drm-misc-fixes`.
**Step 3.5 — Dependencies**
Record: No dependencies. `clk_bulk_prepare_enable()` /
`clk_bulk_disable_unprepare()` exist in `include/linux/clk.h` in this
tree. Patch is self-contained.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record:
- **URL:**
https://patch.msgid.link/20260609130812.1065699-1-kaneko.dev@pm.me
- **Series:** v1 (resume only) → v2 (resume + suspend symmetry, per
Liviu Dudau)
- **Reviewer feedback:** Liviu Dudau requested suspend conversion and
commit-message correction in v2
- **Stable nomination:** none found in thread
- **NAKs:** none
**Step 4.2 — Reviewers (b4 dig -w)**
Record: CC'd dri-devel, Liviu Dudau, DRM maintainers (Lankhorst, Ripard,
Zimmermann, Airlie, Vetter), linux-kernel.
**Step 4.3 — Bug report**
Record: No external bug report. Author states issue found by code review
without Mali DP hardware access.
**Step 4.4 — Related patches**
Record: v1 was `[PATCH 1/2] drm/arm/malidp: fix ignored
clk_prepare_enable() in runtime PM resume`; v2 is the committed version.
**Step 4.5 — Stable list**
Record: No stable-specific discussion found.
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `malidp_runtime_pm_resume()`, `malidp_runtime_pm_suspend()`
**Step 5.2 — Callers**
| Caller | Context |
|--------|---------|
| `SET_RUNTIME_PM_OPS` | PM core runtime suspend/resume |
| `pm_runtime_get_sync()` in `malidp_bind()`, atomic commit, unbind |
Hot display paths |
| `malidp_pm_resume_early()` | System sleep early resume — **still
ignores return value** (pre-existing) |
| Direct call when PM runtime disabled | Probe fallback |
Record: Reachable on every runtime PM resume and system sleep resume on
Mali DP hardware.
**Step 5.3 — Callees**
Record: `clk_bulk_prepare_enable()`, `clk_bulk_disable_unprepare()`,
`malidp_de_irq_hw_init()`, `malidp_se_irq_hw_init()`
**Step 5.4 — Reachability**
Record: Triggered during device probe, display atomic commits
(`pm_runtime_get_sync` in `malidp_atomic_commit_tail`), system
suspend/resume, and module teardown. Users with
`CONFIG_DRM_MALI_DISPLAY` on ARM/ARM64 platforms (e.g. NXP LS1028A) are
affected.
**Step 5.5 — Similar patterns**
Record: Komeda driver in the same tree also has unchecked
`clk_prepare_enable()` calls — separate issue; this fix is Mali-DP-
specific.
---
## Phase 6: Cross-Reference Against Local Tree
**Step 6.1 — Buggy code in tree?**
Record: **Yes.** Local tree is **v6.18.44** (`make kernelversion` =
6.18.44). Buggy code at lines 679–694 of `malidp_drv.c`. Present since
2017. Mainline fix commit `46f715a16989f4e7bbbc2eb41447051874b027f3` is
**not** an ancestor of HEAD.
**Step 6.2 — Backport complications**
Record: Expected clean apply — structure matches mainline diff context.
No conflicting recent PM changes in this file.
**Step 6.3 — Related fixes already present?**
Record: None. `git log -S 'clk_bulk_prepare_enable' --
drivers/gpu/drm/arm/malidp_drv.c` returns empty.
---
## Phase 7: Subsystem and Maintainer Context
**Step 7.1 — Subsystem**
Record: `drivers/gpu/drm/arm/` — DRM display driver for ARM Mali
DP500/550/650. **Criticality: PERIPHERAL** (platform-specific
embedded/display hardware via `CONFIG_DRM_MALI_DISPLAY`).
**Step 7.2 — Activity**
Record: Driver is mature with infrequent changes; PM code largely
unchanged since 2017.
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: Users with Mali Display Processor hardware on ARM/ARM64
(DP500/550/650), typically embedded (NXP LS1028A, ARM Juno, etc.).
Config-specific: `CONFIG_DRM_MALI_DISPLAY=m/y`.
**Step 8.2 — Trigger conditions**
Record: Any `clk_prepare_enable()` failure during runtime PM resume —
most plausible after system suspend/resume or power-domain transitions
when clock framework state changes. Rare in practice (clocks succeed at
probe), but realistic on resume paths. Not a direct userspace attack
vector.
**Step 8.3 — Failure mode severity**
Record: Undefined hardware behavior — possible bus hang, kernel oops, or
corrupted display state when IRQ/block init runs without clocks.
**Severity: HIGH** (potential crash/hang), though **unreported in the
field**.
**Step 8.4 — Risk-benefit**
Record:
- **Benefit:** Prevents proceeding with broken clock state; propagates
errors to `pm_runtime_get_sync()` callers; rolls back partial enables.
- **Risk:** Very low — 22-line change, maintainer-reviewed, suspend
order preserved by bulk API semantics.
- **Ratio:** Favorable for affected hardware users.
---
## Phase 9: Final Synthesis
**Evidence FOR backport:**
- Real, verifiable bug (ignored error returns) present since 2017 in
this tree
- Serious failure mode if triggered (unclocked HW + IRQ init)
- Small, self-contained, maintainer-reviewed fix
- Uses existing `clk_bulk` API already in 6.18
- Improves error propagation to `pm_runtime_get_sync()` paths used
during display commits
**Evidence AGAINST backport:**
- No user reports, syzbot, or hardware testing
- Niche driver affecting limited embedded platforms
- `malidp_pm_resume_early()` still ignores resume errors (incomplete for
system-sleep path; pre-existing call-site issue)
- Clock failures after successful probe are uncommon
**Unresolved questions:**
- No confirmed production crash from this bug
- No runtime test on actual Mali DP hardware
**Stable rules checklist:**
1. Obviously correct and tested? **PASS** — standard API, maintainer
Reviewed-by; no hardware Tested-by
2. Fixes a real bug? **PASS** — objectively ignores
`clk_prepare_enable()` errors
3. Important issue? **PASS** — undefined behavior / potential crash on
PM resume (HIGH if triggered, rare trigger)
4. Small and contained? **PASS** — 1 file, ~22 lines
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — buggy code present, APIs
available
**Exception category:** None (not device ID, quirk, DT, build, or docs
fix — straight driver bug fix).
---
## Problem Summary for Stable Users
On Linux **6.18.44**, the Mali DP driver's runtime PM resume enables
three clocks (`pclk`, `aclk`, `mclk`) without checking for failure. If
any enable fails (e.g. during resume from suspend), the driver
continues, marks the device active, and initializes display IRQ hardware
on potentially unclocked silicon. The fix uses
`clk_bulk_prepare_enable()` to check errors and roll back partial
enables, and makes suspend symmetric via `clk_bulk_disable_unprepare()`.
For stable trees carrying Mali DP since 2017, this closes a long-
standing PM robustness hole. Impact is limited to
`CONFIG_DRM_MALI_DISPLAY` users, but the consequence of triggering is
severe enough to warrant backport: small fix, low risk, prevents
potential hangs/crashes on resume.
**Concern:** Fix does not address `malidp_pm_resume_early()` ignoring
the return value — a follow-up could improve system-sleep resume, but
that does not diminish the value of fixing the runtime PM callback
itself.
---
## Verification
- [Phase 1] Parsed commit message and tags from user-provided content
and mainline commit `46f715a`
- [Phase 1] Confirmed no Reported-by/syzbot; found Reviewed-by: Liviu
Dudau
- [Phase 2] Verified diff: +16/−6 in `malidp_drv.c`, two functions
modified
- [Phase 2] Read `clk_bulk_disable()` in `drivers/clk/clk-bulk.c`:
disables in reverse order (lines 214–215), matching old suspend
sequence
- [Phase 2] Read `clk_bulk_prepare_enable()` in `include/linux/clk.h`
(lines 1164–1175): prepare+enable with rollback
- [Phase 3] `git blame -L 686,700`: buggy code from `85f6421889eca6`
(2017-03-22)
- [Phase 3] `git log -S 'clk_prepare_enable(hwdev->pclk)'`: introduced
in `ad49f8602fe88` (initial driver)
- [Phase 3] `git merge-base --is-ancestor 46f715a HEAD`: commit NOT in
current tree
- [Phase 4] `b4 dig -c 46f715a`: found thread at
https://patch.msgid.link/20260609130812.1065699-1-kaneko.dev@pm.me
- [Phase 4] `b4 dig -a`: v2 is latest revision
- [Phase 4] `b4 dig -w`: dri-devel + DRM maintainers CC'd
- [Phase 4] Saved mbox; Liviu Dudau Reviewed-by + merge confirmation; no
stable nomination
- [Phase 4] Fetched lkml.iu.edu mirror of patch thread
- [Phase 5] Grep callers: `pm_runtime_get_sync` at lines 242, 761, 862,
892; `SET_RUNTIME_PM_OPS` at line 985
- [Phase 5] Read `malidp_pm_resume_early()` (lines 975–979): ignores
return value (not fixed by this patch)
- [Phase 6] `git describe HEAD` = v6.18.44-1-g2736c32da98b9; `make
kernelversion` = 6.18.44
- [Phase 6] Read current `malidp_drv.c` lines 667–700: buggy code
confirmed present
- [Phase 6] `git log -S 'clk_bulk_prepare_enable' -- malidp_drv.c`:
empty (fix not present)
- [Phase 7] Read `drivers/gpu/drm/arm/Kconfig`:
`CONFIG_DRM_MALI_DISPLAY` for DP500/550/650
- [Phase 8] Grep DTS: Mali DP references in `fsl-ls1028a.dtsi` (limited
platform footprint)
**YES****Verdict: YES** — backport to this tree (Linux **6.18.44**).
The Mali DP driver’s runtime PM resume has ignored
`clk_prepare_enable()` failures since 2017. On failure it can still
bring up IRQs on unclocked hardware. The fix is small (one file, ~22
lines), uses the existing `clk_bulk` API, and was **Reviewed-by** Liviu
Dudau (driver maintainer). The buggy code is present here; mainline
commit `46f715a` is not in this tree yet.
**Caveat:** No field reports or hardware testing — found by code review
only. `malidp_pm_resume_early()` still ignores the resume return value;
that’s a separate follow-up, not a reason to skip this fix.
drivers/gpu/drm/arm/malidp_drv.c | 22 ++++++++++++++++------
1 file changed, 16 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/arm/malidp_drv.c b/drivers/gpu/drm/arm/malidp_drv.c
index bc5f5e9798c32..2bf4a647e4b28 100644
--- a/drivers/gpu/drm/arm/malidp_drv.c
+++ b/drivers/gpu/drm/arm/malidp_drv.c
@@ -669,6 +669,11 @@ static int malidp_runtime_pm_suspend(struct device *dev)
struct drm_device *drm = dev_get_drvdata(dev);
struct malidp_drm *malidp = drm_to_malidp(drm);
struct malidp_hw_device *hwdev = malidp->dev;
+ struct clk_bulk_data clks[] = {
+ { .clk = hwdev->pclk },
+ { .clk = hwdev->aclk },
+ { .clk = hwdev->mclk },
+ };
/* we can only suspend if the hardware is in config mode */
WARN_ON(!hwdev->hw->in_config_mode(hwdev));
@@ -676,9 +681,7 @@ static int malidp_runtime_pm_suspend(struct device *dev)
malidp_se_irq_fini(hwdev);
malidp_de_irq_fini(hwdev);
hwdev->pm_suspended = true;
- clk_disable_unprepare(hwdev->mclk);
- clk_disable_unprepare(hwdev->aclk);
- clk_disable_unprepare(hwdev->pclk);
+ clk_bulk_disable_unprepare(ARRAY_SIZE(clks), clks);
return 0;
}
@@ -688,10 +691,17 @@ static int malidp_runtime_pm_resume(struct device *dev)
struct drm_device *drm = dev_get_drvdata(dev);
struct malidp_drm *malidp = drm_to_malidp(drm);
struct malidp_hw_device *hwdev = malidp->dev;
+ struct clk_bulk_data clks[] = {
+ { .clk = hwdev->pclk },
+ { .clk = hwdev->aclk },
+ { .clk = hwdev->mclk },
+ };
+ int err;
+
+ err = clk_bulk_prepare_enable(ARRAY_SIZE(clks), clks);
+ if (err)
+ return err;
- clk_prepare_enable(hwdev->pclk);
- clk_prepare_enable(hwdev->aclk);
- clk_prepare_enable(hwdev->mclk);
hwdev->pm_suspended = false;
malidp_de_irq_hw_init(hwdev);
malidp_se_irq_hw_init(hwdev);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/panel-edp: Add AUO B133HAN06.6 and BOE NV133FHM-N4F V8.0
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (7 preceding siblings ...)
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend Sasha Levin
@ 2026-08-31 13:22 ` Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/amd/display: Avoid DPMS-on for phantom stream Sasha Levin
` (57 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:22 UTC (permalink / raw)
To: patches, stable
Cc: Chen-Yu Tsai, Douglas Anderson, Sasha Levin, neil.armstrong,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-kernel
From: Chen-Yu Tsai <wenst@chromium.org>
[ Upstream commit 5dd1ff95c623b8118ccaae3242119b8552f7b98f ]
These two panels are found in MT8195 Dojo, a.k.a. the HP Chromebook
x360 13b-ca0xxx laptop.
Only the BOE entry was tested on an actual device. The AUO entry is
solely based on the provided datasheet.
raw EDIDs:
AUO B133HAN06.6 (from the datasheet)
00 ff ff ff ff ff ff 00 06 af 8f cb 00 00 00 00
2f 1d 01 04 95 1d 11 78 03 93 05 92 58 59 90 29
1d 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 14 37 80 b8 70 38 24 40 10 10
3e 00 25 a5 10 00 00 18 b8 24 80 b8 70 38 24 40
10 10 3e 00 25 a5 10 00 00 18 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 10 48 ff 0f 3c 7d 14 0e 1d 7d 20 20 20 00 77
BOE NV133FHM-N4F V8.0 (from an actual panel)
00 ff ff ff ff ff ff 00 09 e5 25 0a 00 00 00 00
2c 1f 01 04 95 1d 11 78 03 28 65 97 59 54 8e 27
1e 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 a4 39 80 c8 70 38 50 40 30 20
36 00 26 a5 10 00 00 1a 6d 26 80 c8 70 38 50 40
30 20 36 00 26 a5 10 00 00 1a 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 0d 40 ff 0a 3c 7d 0f 0f 1f 7d 00 00 00 00 d2
Signed-off-by: Chen-Yu Tsai <wenst@chromium.org>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://patch.msgid.link/20260512045454.1505733-1-wenst@chromium.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
Connection lost, reconnecting to https://agentn.us.api5.cursor.sh
(attempt 1)...
Retry attempt 1...
# Stable Backport Analysis: drm/panel-edp panel ID additions
**Local tree:** `v6.18.43-1-gc7f0dac02d232` (kernel version **6.18.43**)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/panel-edp]` **`Add`** — Add AUO B133HAN06.6 and BOE
NV133FHM-N4F V8.0 panel entries to the EDID-based panel timing table.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Chen-Yu Tsai `<wenst@chromium.org>` (author)
- **Reviewed-by:** Douglas Anderson `<dianders@chromium.org>`
- **Signed-off-by:** Douglas Anderson `<dianders@chromium.org>`
- **Link:**
https://patch.msgid.link/20260512045454.1505733-1-wenst@chromium.org
- No Fixes:, Reported-by:, Tested-by:, Cc: stable@vger.kernel.org, or
syzbot tags
Notable: Reviewed-by from a Chromium DRM developer; BOE panel tested on
hardware per commit body.
### Step 1.3: Body analysis
**Record:**
- **Bug/problem:** Panels on HP Chromebook x360 13b-ca0xxx (MT8195 Dojo)
are not in the `edp_panels[]` table, so the driver cannot apply
correct eDP power-sequencing delays.
- **Symptom:** Without a table match, `generic_edp_panel_probe()`
triggers `WARN_ON(!panel->detected_panel)` and falls back to
conservative timings (`unprepare=2000ms`, `enable=200ms`), which can
cause display initialization/resume problems.
- **Hardware:** MT8195 Dojo platform; BOE NV133FHM-N4F V8.0 tested on
device; AUO B133HAN06.6 from datasheet only.
- **Root cause:** Missing EDID panel-ID → delay-profile mapping for
these two product IDs (`0xcb8f` AUO, `0x0a25` BOE).
### Step 1.4: Hidden bug fix?
**Record:** Yes. Although labeled "Add", this is a hardware-timing quirk
fix. Unknown panels get wrong power-sequencing delays and a `WARN_ON` on
every probe. Adding the entries supplies panel-specific delays needed
for reliable display operation.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/panel/panel-edp.c` (+2 lines)
- **Functions modified:** None directly; changes are in static
`edp_panels[]` table
- **Scope:** Single-file, surgical panel-ID addition
### Step 2.2: Code flow change
**Record:**
- **Hunk 1 (AUO):** Inserts `EDP_PANEL_ENTRY('A','U','O', 0xcb8f,
&delay_200_500_e50, "B133HAN06.6")` after `0xc9a8`.
- Before: AUO `0xcb8f` unmatched → conservative fallback.
- After: Matched → `desc->delay = *panel->detected_panel->delay` with
standard AUO delay profile.
- **Hunk 2 (BOE):** Inserts `EDP_PANEL_ENTRY('B','O','E', 0x0a25,
&delay_200_500_e50_po2e200, "NV133FHM-N4F V8.0")` after `0x0a1b`.
- Before: BOE `0x0a25` unmatched → conservative fallback.
- After: Matched → delay profile including
`powered_on_to_enable=200ms` (same profile as existing NV133FHM-N42
at `0x0717`).
### Step 2.3: Bug mechanism
**Record:** **Hardware quirk / panel timing table entry** (allowed
stable exception). `find_edp_panel()` returns NULL for unknown IDs;
probe path then uses overly conservative delays unsuitable for these
panels' eDP power sequencing.
### Step 2.4: Fix quality
**Record:** Fix is minimal and follows established patterns in the same
table. BOE uses the same `delay_200_500_e50_po2e200` profile as a
related NV133FHM panel already in-tree. AUO uses the common
`delay_200_500_e50` profile used by many AUO entries. Regression risk is
very low.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** Insertion-point lines in current tree date to
`6bda50f4333fa` (Nov 29, 2025), which added the entire `panel-edp.c`
driver to 6.18. The missing panel entries are absent because this commit
has not been applied yet—not because the code is structurally different.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag present.
### Step 3.3: Related file history
**Record:** Recent panel-edp additions already in this 6.18.y tree:
- `0bd968c04acfb` — Add AUO B140QAX01.H panel
- `6ca4647a74155` — Add AUO B140HAN06.4
- `b173ba3365ff0` — Add BOE NV140WUM-T08 panel
Same pattern of single-line `EDP_PANEL_ENTRY` additions. Standalone; not
part of a multi-patch series.
### Step 3.4: Author context
**Record:** Chen-Yu Tsai (Chromium) is a regular MT8195/Chromebook
contributor. Douglas Anderson (Chromium DRM) reviewed. No other commits
from this author in `panel-edp.c` in this tree, but the subsystem
maintainership pattern matches other Chromium panel additions.
### Step 3.5: Dependencies
**Record:** No dependencies. Requires only:
- `panel-edp.c` driver (present since 6.18)
- `delay_200_500_e50` and `delay_200_500_e50_po2e200` delay structs
(both present at lines 1818+ in current tree)
- `EDP_PANEL_ENTRY` macro (present)
Patch applies cleanly at verified insertion points (after
`0xc9a8`/`0xcdba` and `0x0a1b`/`0x0a36`).
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:** Link tag points to patch.msgid.link thread. **Could not
fetch** — lore.kernel.org and patch.msgid.link blocked by Anubis bot
protection. `b4 dig -c` could not run because the upstream commit hash
is not in this checkout.
### Step 4.2: Reviewers
**Record:** Reviewed-by and Signed-off-by from Douglas Anderson
(Chromium DRM developer). UNVERIFIED: full recipient list via `b4 dig
-w`.
### Step 4.3: Bug report
**Record:** No external bug report or syzbot link. Hardware enablement
driven by Chromebook platform need (MT8195 Dojo).
### Step 4.4: Related patches
**Record:** Same author/subsystem pattern as Terry Hsiao's May 2026
batch of panel-edp additions (separate series in workspace mbox files).
This commit is standalone (1/1).
### Step 4.5: Stable list discussion
**Record:** UNVERIFIED — could not search lore stable list due to access
restrictions.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** Affected lookup path: `find_edp_panel()` → called from
`generic_edp_panel_probe()`.
### Step 5.2: Callers
**Record:** `generic_edp_panel_probe()` is invoked during `panel_edp`
device probe on platforms using `compatible = "edp-panel"`. MT8195
Cherry/Dojo DTS in this tree uses this compatible string.
### Step 5.3: Callees
**Record:** `find_edp_panel()` uses `drm_edid_match()` and panel-ID
comparison against `edp_panels[]`. On match, `desc->delay =
*panel->detected_panel->delay` sets power-sequencing parameters used by
`panel_edp_prepare()`, `panel_edp_enable()`, and suspend/resume paths.
### Step 5.4: Reachability
**Record:** Triggered at boot on every MT8195 Dojo machine with these
panels — common Chromebook laptop path, not an obscure config option.
### Step 5.5: Similar patterns
**Record:** BOE NV133FHM-N4F V8.0 uses identical delay profile to
existing `NV133FHM-N42` (`0x0717`). Many AUO entries use
`delay_200_500_e50`. Consistent with table conventions.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Does buggy code exist?
**Record:** **Yes.** `panel-edp.c` exists; `edp_panels[]` table exists;
`0xcb8f` and `0x0a25` entries are **absent** (grep confirmed no
matches). MT8195 Dojo platform support exists
(`arch/arm64/boot/dts/mediatek/mt8195-cherry-dojo-r1.dts`,
`mt8195-cherry.dtsi` with `compatible = "edp-panel"`).
### Step 6.2: Backport complications
**Record:** **Clean apply expected.** Insertion anchor lines (`0xc9a8`,
`0x0a1b`) match exactly between patch context and current tree.
### Step 6.3: Related fixes already present?
**Record:** No — panel IDs not present. Similar panel additions
(B140QAX01.H, B140HAN06.4, NV140WUM-T08) are already in this 6.18.y
tree, establishing precedent.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem
**Record:** `drivers/gpu/drm/panel/` — DRM panel driver. **Criticality:
IMPORTANT** (display subsystem; affects laptop users on supported
platform, not universal core kernel).
### Step 7.2: Activity
**Record:** `panel-edp.c` is new in 6.18 (added Nov 2025); actively
receiving panel-ID additions in this stable series.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of HP Chromebook x360 13b-ca0xxx (MT8195 Dojo) and any
other systems shipping AUO B133HAN06.6 or BOE NV133FHM-N4F V8.0 panels
with the generic `edp-panel` driver. Platform-specific, driver-specific.
### Step 8.2: Trigger conditions
**Record:** Every boot and resume when EDID reports panel IDs `0xcb8f`
or `0x0a25`. Highly likely on affected hardware — not a rare race.
### Step 8.3: Failure mode severity
**Record:** Without fix: `WARN_ON` on probe + wrong power-sequencing
delays (2000ms unprepare vs. 500ms; missing `powered_on_to_enable` for
BOE). Can cause black screen, flicker, or failed resume. **Severity:
MEDIUM-HIGH** for affected users (display reliability, not kernel
crash/security).
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Enables correct display power sequencing on real shipping
Chromebook hardware already supported in this tree.
- **Risk:** Very low — two table entries, no logic changes, delay
profiles already used by other panels.
- **Ratio:** Strong benefit, minimal risk.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Fixes real display issue on HP Chromebook x360 13b (MT8195 Dojo) —
platform in this tree
- BOE entry tested on hardware
- Tiny, surgical change (2 lines)
- Follows established pattern; similar commits already in 6.18.y
- Hardware quirk / panel-ID exception category
- Clean apply to current tree
- Reviewed-by from Chromium DRM developer
**AGAINST backport:**
- AUO entry untested (datasheet only) — minor concern, standard practice
for this table
- Not a crash/security/data-corruption fix — display reliability issue
- Lore discussion unverified
**Unresolved:** Mailing list thread content; whether stable was
explicitly nominated in review.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — BOE tested; AUO follows
datasheet + standard delay profile
2. Fixes real bug affecting users? **PASS** — wrong panel delays on real
hardware
3. Important issue? **PASS** — display reliability on shipping
Chromebook (MEDIUM-HIGH)
4. Small and contained? **PASS** — 2 lines, one file
5. No new features/APIs? **PASS** — panel table entries only (allowed
exception)
6. Can apply to local tree? **PASS** — driver, delay structs, and
insertion points all present
### Step 9.3: Exception category
**Record:** **Hardware quirk / panel timing workaround** — adding EDID
panel-ID entries with power-sequencing delays to an existing driver,
analogous to USB/PCI quirks and device-ID additions.
### Step 9.4: Decision rationale
This commit should be backported to **Linux 6.18.y**. The `panel-edp`
driver and MT8195 Dojo platform are both present in this tree, but these
panel IDs are missing. Without them, affected Chromebooks get incorrect
eDP power-sequencing delays and a `WARN_ON` on every probe. The fix is
two lines, uses delay profiles already in the table, and matches the
pattern of panel additions already accepted into this stable series.
---
## Verification
- [Phase 1] Parsed subject, tags, body; identified hardware enablement
intent and BOE on-device testing
- [Phase 2] Diff analysis: 2 `EDP_PANEL_ENTRY` lines added to
`edp_panels[]`
- [Phase 3] `git describe HEAD`: v6.18.43-1-gc7f0dac02d232; `make
kernelversion`: 6.18.43
- [Phase 3] `git blame` on lines 1918-1925, 1966-1972: table from
`6bda50f4333fa` (Nov 2025)
- [Phase 3] `git log --grep=panel-edp`: similar additions
`0bd968c04acfb`, `6ca4647a74155`, `b173ba3365ff0` already in tree
- [Phase 3] Grep `0xcb8f|0x0a25|B133HAN06|NV133FHM-N4F` in panel-edp.c:
no matches — entries absent
- [Phase 3] Verified insertion anchors `0xc9a8`, `0xcdba`, `0x0a1b`
exist at lines 1921, 1922, 1969
- [Phase 3] Verified `delay_200_500_e50` and `delay_200_500_e50_po2e200`
exist at line 1818+
- [Phase 4] WebFetch lore.kernel.org and patch.msgid.link: **FAILED**
(Anubis bot block)
- [Phase 4] `b4 dig -c`: **NOT RUN** — upstream commit hash not in
checkout
- [Phase 5] Read `generic_edp_panel_probe()` lines 759-825: confirmed
NULL `detected_panel` → WARN_ON + conservative timings
- [Phase 5] Read `find_edp_panel()` lines 2091-2113: confirmed lookup
mechanism
- [Phase 5] Confirmed NV133FHM-N42 (`0x0717`) uses same
`delay_200_500_e50_po2e200` profile
- [Phase 6] Grep Dojo DTS: `mt8195-cherry-dojo-r1.dts` and
`mt8195-cherry.dtsi` with `compatible = "edp-panel"` present
- [Phase 6] Confirmed patch context matches current file structure for
clean apply
- [Phase 8] Failure mode: wrong delays + WARN_ON on display probe;
severity MEDIUM-HIGH for affected laptops
- **UNVERIFIED:** Mailing list review discussion and stable nomination
comments
- **UNVERIFIED:** Whether AUO panel is actually shipped on Dojo SKUs
(commit says both found on platform; only BOE tested)
**YES**
drivers/gpu/drm/panel/panel-edp.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c
index 105074d8cf765..c6d1dfdd64f2e 100644
--- a/drivers/gpu/drm/panel/panel-edp.c
+++ b/drivers/gpu/drm/panel/panel-edp.c
@@ -1924,6 +1924,7 @@ static const struct edp_panel_entry edp_panels[] = {
EDP_PANEL_ENTRY('A', 'U', 'O', 0xc4b4, &delay_200_500_e50, "B116XAT04.1"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xc7ad, &delay_200_500_e50, "B140HAN07.7"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xc9a8, &delay_200_500_e50, "B140QAN08.H"),
+ EDP_PANEL_ENTRY('A', 'U', 'O', 0xcb8f, &delay_200_500_e50, "B133HAN06.6"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xcdba, &delay_200_500_e50, "B140UAX01.2"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xd497, &delay_200_500_e50, "B120XAN01.0"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xf390, &delay_200_500_e50, "B140XTN07.7"),
@@ -1973,6 +1974,7 @@ static const struct edp_panel_entry edp_panels[] = {
EDP_PANEL_ENTRY('B', 'O', 'E', 0x09ae, &delay_200_500_e200, "NT140FHM-N45"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x09dd, &delay_200_500_e50, "NT116WHM-N21"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0a1b, &delay_200_500_e50, "NV133WUM-N63"),
+ EDP_PANEL_ENTRY('B', 'O', 'E', 0x0a25, &delay_200_500_e50_po2e200, "NV133FHM-N4F V8.0"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0a36, &delay_200_500_e200, "Unknown"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0a3e, &delay_200_500_e80_d50, "NV116WHM-N49"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0a5d, &delay_200_500_e50, "NV116WHM-N45"),
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amd/display: Avoid DPMS-on for phantom stream
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (8 preceding siblings ...)
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add AUO B133HAN06.6 and BOE NV133FHM-N4F V8.0 Sasha Levin
@ 2026-08-31 13:22 ` Sasha Levin
2026-08-31 14:35 ` sashiko-bot
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] drm/panel: simple: Add AM-1280800W8TZQW-T00H Sasha Levin
` (56 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:22 UTC (permalink / raw)
To: patches, stable
Cc: Ilya Bakoulin, Alvin Lee, Ray Wu, Daniel Wheeler, Alex Deucher,
Sasha Levin, harry.wentland, sunpeng.li, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Ilya Bakoulin <Ilya.Bakoulin@amd.com>
[ Upstream commit 10f5f9c0ef32d08b228bfee3684b62f36f395852 ]
[Why & How]
Calling dc_update_planes_and_stream separately for stream and its
phantom stream causes a NULL pointer dereference, since the phantom is
destroyed on the first call.
Skip the call for phantom streams.
Reviewed-by: Alvin Lee <alvin.lee2@amd.com>
Signed-off-by: Ilya Bakoulin <Ilya.Bakoulin@amd.com>
Signed-off-by: Ray Wu <ray.wu@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amd/display: Avoid DPMS-on for phantom
stream`
**Local tree:** `stable/linux-6.18.y` at **v6.18.44** (`git describe
HEAD` / `make kernelversion` → 6.18.44)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/amd/display]` `[Avoid]` — Skip DPMS-on stream updates
for phantom (SubVP) streams during DP link-training automation to
prevent a NULL pointer dereference.
### Step 1.2: Tags
**Record:**
- **Reviewed-by:** Alvin Lee \<alvin.lee2@amd.com\>
- **Tested-by:** Daniel Wheeler \<daniel.wheeler@amd.com\>
- **Signed-off-by:** Ilya Bakoulin, Ray Wu, Alex Deucher (maintainer)
- **No** Fixes:, Reported-by:, Link:, Cc: stable@vger.kernel.org
- Notable: Reviewed and tested by AMD display engineers; Alex Deucher
acked (subsystem maintainer).
### Step 1.3: Body analysis
**Record:**
- **Bug:** Calling `dc_update_planes_and_stream()` separately for a real
stream and its paired phantom stream causes a NULL pointer
dereference.
- **Symptom:** Kernel oops / crash in the display driver during DP link
retrain automation.
- **Root cause (author):** The phantom stream is destroyed on the first
`dc_update_planes_and_stream()` call; a second call uses a stale/freed
pointer.
- **Fix:** Skip phantom streams when building the list of streams to
update with DPMS-on.
### Step 1.4: Hidden bug fix?
**Record:** No — this is an explicit NULL-deref fix, not disguised
cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:**
`drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c` (+2
lines)
- **Function:** `dp_retrain_link_dp_test()`
- **Scope:** Single-file, surgical fix (2 lines added)
### Step 2.2: Code flow change
**Record:**
- **Before:** Loop over `state->streams[i]` on the link caches every
stream (including phantoms), then calls
`dc_update_planes_and_stream()` for each.
- **After:** Streams with `is_phantom == true` are skipped during
caching; only real streams get DPMS-on updates.
- **Path affected:** DP link retrain / compliance-test automation error
path in `dp_retrain_link_dp_test()`.
### Step 2.3: Bug mechanism
**Record:**
- **Category:** NULL pointer dereference (memory safety)
- **Mechanism:** `dc_update_planes_and_stream()` with
`stream_update->dpms_off` forces `UPDATE_TYPE_FULL` (verified in
`check_update_surfaces_for_stream()` at lines 2966–2996 of `dc.c`).
Full updates call `dc_state_remove_phantom_streams_and_planes()` and
`dc_state_release_phantom_streams_and_planes()` (lines 3529–3530 of
`dc.c`), freeing phantom streams. The second loop iteration still
holds a cached phantom pointer → NULL deref.
### Step 2.4: Fix quality
**Record:**
- Fix is obviously correct and minimal.
- Matches existing convention: `resource_log_pipe_topology_update()`
already skips `is_phantom` streams (`dc_resource.c:2419`).
- Regression risk: very low — phantom streams should not receive
independent DPMS-on updates.
- No API or structural changes.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- Buggy loop introduced by **f5b69101f956f** (2025-07-17): "Cache
streams targeting link when performing LT automation"
- That commit is an ancestor of v6.18.0 and of current HEAD.
- `is_phantom` on `struct dc_stream_state` dates to **012a04b1d6af6**
(2023-11-21).
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag in commit message.
### Step 3.3: Related file history
**Record:**
- **f5b69101f956f** — introduced stream caching loop (root of this bug
pattern)
- **89939cf252d80** (2025-09-29) — different NULL-deref fix in same
function: cache `dc` from `link->dc` instead of stale
`state->clk_mgr->ctx->dc` after first stream update. Already in
6.18.44 but does **not** fix the phantom-stream issue.
- Fix commit **10f5f9c0ef32d** (upstream) / **56337aae2421b** (stable
candidate) is **not** in 6.18.44.
- Standalone fix; not part of a multi-patch series.
### Step 3.4: Author context
**Record:** Ilya Bakoulin is an active AMD display contributor (link/DP
fixes). Alex Deucher is amdgpu/drm maintainer.
### Step 3.5: Dependencies
**Record:**
- Requires `is_phantom` field — present in this tree
(`dc_stream.h:313`).
- Requires stream-caching loop from f5b69101 — present in this tree.
- Cherry-pick of upstream **10f5f9c0ef32d** auto-merges cleanly against
6.18.44 (verified).
- **Standalone:** PASS.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1–4.5
**Record:**
- `b4 dig -c 10f5f9c0ef32d`: no lore match found.
- lore.kernel.org fetch: 403 Forbidden (bot protection).
- **UNVERIFIED:** No mailing-list thread or stable-list discussion
retrieved.
- Tags show AMD internal review (Reviewed-by, Tested-by) and maintainer
sign-off.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `dp_retrain_link_dp_test()` modified; calls
`dc_update_planes_and_stream()`.
### Step 5.2: Callers
**Record:**
- `dp_test_send_link_training()` → `dp_handle_automated_test()` (DP
compliance test / link-training automation)
- `dp_set_preferred_training_settings()` path at line 991 (preferred
link settings retrain during normal DP operation)
### Step 5.3: Callees
**Record:** `dc_update_planes_and_stream()` →
`update_planes_and_stream_v3/v2()` → phantom removal on FULL updates.
### Step 5.4: Reachability
**Record:**
- Trigger requires SubVP/MALL phantom streams on a DP link (`is_phantom
== true`).
- Triggered during DP link retrain (compliance testing or preferred-
settings retrain).
- Not a direct unprivileged syscall path, but reachable during normal
display hotplug/link-rate changes on AMD GPUs with SubVP enabled.
- Config: `CONFIG_DRM_AMD_DC` (common on AMD systems).
### Step 5.5: Similar patterns
**Record:** `dc_resource.c:2419` skips phantom streams in topology
logging — same semantic rule applied here.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE (6.18.44)
### Step 6.1: Buggy code present?
**Record:** **YES.** Lines 145–148 of `link_dp_cts.c` cache all link
streams without phantom skip. Bug present since v6.18.0 (f5b69101 is
ancestor of v6.18).
### Step 6.2: Backport complications
**Record:** Clean apply — cherry-pick test succeeded with auto-merge.
Only contextual difference from upstream is the already-applied `struct
dc *dc = link->dc` from 89939cf; phantom skip is independent.
### Step 6.3: Related fixes already present?
**Record:** 89939cf fixes a **different** NULL deref in the same
function (stale `dc` context). Phantom-stream NULL deref remains unfixed
in 6.18.44.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem / criticality
**Record:** `drivers/gpu/drm/amd/display` — **IMPORTANT** (AMD GPU
display driver; crash on affected hardware configs).
### Step 7.2: Activity
**Record:** Actively maintained; multiple recent fixes in
`link_dp_cts.c` on this branch.
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who is affected
**Record:** AMD GPU users with SubVP/MALL phantom streams on a
DisplayPort link during link retrain or DP compliance-test automation.
### Step 8.2: Trigger conditions
**Record:**
- SubVP phantom stream active on the DP link
- DP link retrain via `dp_retrain_link_dp_test()`
- Moderately rare compared to general kernel paths, but real on modern
AMD APUs/laptops with power-saving display features
### Step 8.3: Failure mode
**Record:** NULL pointer dereference → kernel oops. **Severity: HIGH**
(system crash when triggered).
### Step 8.4: Risk vs benefit
**Record:**
- **Benefit:** Prevents kernel crash on a real, reproducible code path;
2-line fix.
- **Risk:** Very low — aligns with existing phantom-skip patterns
elsewhere.
- **Ratio:** Favorable for stable backport.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Fixes verified NULL pointer dereference
- Small (2 lines), obviously correct
- Buggy code confirmed in 6.18.44 since v6.18.0
- Applies cleanly
- Reviewed, tested, maintainer-signed
- Complements but does not duplicate existing 89939cf fix
**AGAINST backport:**
- Narrow trigger (SubVP + DP link retrain)
- No public bug report or syzbot trace in commit message
**UNRESOLVED:**
- Mailing-list discussion (b4/lore unavailable)
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** (code review + Tested-by)
2. Fixes real bug affecting users? **PASS** (NULL deref on real path)
3. Important issue? **PASS** (kernel crash — HIGH severity when
triggered)
4. Small and contained? **PASS** (2 lines, 1 file)
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** (verified cherry-pick)
### Step 9.3: Exception categories
**Record:** None — standard bug fix.
### Step 9.4: Decision rationale
This commit fixes a real NULL pointer dereference in the 6.18.y tree.
The buggy stream-caching loop has been present since v6.18.0; the fix is
not yet in 6.18.44. The existing 89939cf fix addresses a separate stale-
context NULL deref in the same function. The phantom-stream skip is
minimal, follows established conventions, applies cleanly, and prevents
a kernel oops on AMD systems using SubVP during DP link retrain.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user-provided diff
and `git show 10f5f9c0ef32d`
- **[Phase 2]** Read `link_dp_cts.c:65-157`, `dc.c:2927-2996`,
`dc.c:3526-3530`, `dc_state.c:916-956`
- **[Phase 3]** `git blame -L 145,148 link_dp_cts.c` → f5b69101f956f
- **[Phase 3]** `git log --oneline` on `link_dp_cts.c` → f5b69101,
89939cf present; phantom fix absent
- **[Phase 3]** `git merge-base --is-ancestor f5b69101 HEAD` → in tree;
`10f5f9c0ef32d` → NOT in tree
- **[Phase 3]** `git merge-base --is-ancestor f5b69101 v6.18` → buggy
code in v6.18.0
- **[Phase 4]** `b4 dig -c 10f5f9c0ef32d` → no match; lore fetch → 403
- **[Phase 5]** `grep dp_retrain_link_dp_test` → callers at lines 185,
601, 991
- **[Phase 5]** `grep is_phantom` → field exists in `dc_stream.h:313`;
skip pattern in `dc_resource.c:2419`
- **[Phase 6]** `git describe HEAD` → v6.18.44; buggy code confirmed at
lines 145-148 without phantom skip
- **[Phase 6]** Cherry-pick test of 10f5f9c0ef32d → auto-merge success
- **[Phase 8]** Failure mode: NULL deref on second
`dc_update_planes_and_stream()` call after phantom freed
**YES**
drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c b/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c
index 2676ae9f6fe83..5f70793b8372e 100644
--- a/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c
+++ b/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c
@@ -143,6 +143,8 @@ static void dp_retrain_link_dp_test(struct dc_link *link,
// Set DPMS on with stream update
// Cache all streams on current link since dc_update_planes_and_stream might kill current_state
for (i = 0; i < MAX_PIPES; i++) {
+ if (state->streams[i] && state->streams[i]->is_phantom)
+ continue;
if (state->streams[i] && state->streams[i]->link && state->streams[i]->link == link)
streams_on_link[num_streams_on_link++] = state->streams[i];
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.10] drm/panel: simple: Add AM-1280800W8TZQW-T00H
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (9 preceding siblings ...)
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/amd/display: Avoid DPMS-on for phantom stream Sasha Levin
@ 2026-08-31 13:22 ` Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/panel: Enable GPIOLIB for panels which uses functions from it Sasha Levin
` (55 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:22 UTC (permalink / raw)
To: patches, stable
Cc: Dario Binacchi, Michael Trimarchi, Dmitry Baryshkov,
Neil Armstrong, Sasha Levin, maarten.lankhorst, mripard,
tzimmermann, airlied, simona, dri-devel, linux-kernel
From: Dario Binacchi <dario.binacchi@amarulasolutions.com>
[ Upstream commit 6acb810ebc5d8dea5c250326c14dc44e32dc8e92 ]
Add Ampire, AM-1280800W8TZQW-T00H 10.1" TFT LCD panel timings.
Co-developed-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20260515082232.1766586-2-dario.binacchi@amarulasolutions.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/panel: simple: Add AM-1280800W8TZQW-T00H
**Local tree:** Linux **6.18.44** (`v6.18.44`, `stable/linux-6.18.y`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/panel: simple]` `[Add]` — Add Ampire
AM-1280800W8TZQW-T00H 10.1" TFT LCD panel timings to the existing
`panel-simple` driver.
### Step 1.2: Tags
**Record:**
- **Co-developed-by:** Michael Trimarchi
\<michael@amarulasolutions.com\>
- **Signed-off-by:** Michael Trimarchi, Dario Binacchi
- **Reviewed-by:** Dmitry Baryshkov
\<dmitry.baryshkov@oss.qualcomm.com\> (DRM/panel reviewer)
- **Signed-off-by:** Neil Armstrong \<neil.armstrong@linaro.org\>
(maintainer ack)
- **Link:** https://patch.msgid.link/20260515082232.1766586-2-
dario.binacchi@amarulasolutions.com
- **No** Fixes:, Reported-by:, Tested-by:, Cc: stable@vger.kernel.org,
or syzbot tags
- **Notable:** Part of a 2-patch v2 series (patch 2/2); patch 1/2 adds
the DT binding
### Step 1.3: Body analysis
**Record:**
- **Bug description:** None — this is hardware enablement, not a bug
fix.
- **Symptom without patch:** A device tree node with `compatible =
"ampire,am-1280800w8tzqw-t00h"` will not match `panel-simple`, so the
display will not probe and no framebuffer will come up.
- **Root cause:** Missing `panel_desc` / `drm_display_mode` entry and
missing OF compatible in `platform_of_match[]`.
- **Version info:** None in the message.
### Step 1.4: Hidden bug fix?
**Record:** No. This is a straightforward device-ID / panel-timing
addition. It does not fix leaks, races, crashes, or corruption in
existing code paths.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File changed:** `drivers/gpu/drm/panel/panel-simple.c` only (+28
lines)
- **Functions modified:** None (only static data and one
`platform_of_match[]` entry)
- **Scope:** Single-file, surgical data addition
### Step 2.2: Code flow change
**Record:**
- **Hunk 1 (after `ampire_am_1280800n3tzqw_t00h`):** Adds
`ampire_am_1280800w8tzqw_t00h_mode` (1280×800, 72.4 MHz pixel clock,
different vsync from the N3 sibling) and
`ampire_am_1280800w8tzqw_t00h` descriptor (8 bpc, LVDS, RGB888 SPWG).
- Before: only the N3 variant is known.
- After: W8 variant is also known.
- **Hunk 2 (`platform_of_match[]`):** Adds `{ .compatible =
"ampire,am-1280800w8tzqw-t00h", .data = &ire_am_1280800w8tzqw_t00h
}`.
- Before: probe fails for W8 compatible strings.
- After: probe succeeds and uses W8-specific timings.
### Step 2.3: Bug mechanism
**Record:** **Category h) — hardware workarounds / device enablement.**
Not a software bug fix; adds OF compatible + timings for a new panel
variant on an existing driver.
### Step 2.4: Fix quality
**Record:**
- **Quality:** High — mirrors the existing `am-1280800n3tzqw-t00h`
pattern exactly.
- **Regression risk:** Very low — purely additive static data; no logic
or locking changes.
- **Minor note:** W8 mode struct omits `.flags = DRM_MODE_FLAG_PHSYNC |
DRM_MODE_FLAG_PVSYNC` present on the N3 sibling; this matches the
submitted upstream patch and was reviewed as-is.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** On `origin/master`, the W8 panel code is present at lines
823–846 and in `platform_of_match`. In the local 6.18.44 tree, the
insertion point after `ampire_am_1280800n3tzqw_t00h` (lines 797–821) and
the matching `platform_of_match` entry (line 4966) already exist. The W8
entry is absent — this is new mainline content not yet in 6.18.y.
### Step 3.2: Fixes: tag
**Record:** Not applicable — no Fixes: tag.
### Step 3.3: Related file history
**Record:**
- Sibling panel `am-1280800n3tzqw-t00h` is already in this tree and used
by in-tree DTS files (`imx6q-icore-ofcap10.dts`, `px30-engicam-
px30-core-ctouch2-of10.dts`, `stm32mp157a-icore-
stm32mp1-ctouch2-of10.dts`).
- On `stable/linux-6.6.y`, the nearly identical sibling addition was
backported: `bca684e69c4ce` (+29 lines, same vendor/subject pattern).
- `w8tzqw` appears only in `panel-simple.c` and `panel-simple.yaml` on
mainline — no in-tree DTS references anywhere.
### Step 3.4: Author context
**Record:** Amarula Solutions (same vendor ecosystem as Engicam boards
using the N3 panel). Dmitry Baryshkov reviewed; Neil Armstrong signed
off. Same maintainer chain as prior Ampire panel additions.
### Step 3.5: Dependencies
**Record:** Part of a 2-patch series:
1. `dt-bindings: display: simple: Add AM-1280800W8TZQW-T00H` (Acked-by:
Conor Dooley)
2. `drm/panel: simple: Add AM-1280800W8TZQW-T00H` (this commit)
This driver patch is self-contained and applies cleanly to 6.18.44. The
binding patch is a companion but not a compile-time prerequisite for the
driver itself.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- **b4 am** on msgid
`20260515082232.1766586-2-dario.binacchi@amarulasolutions.com` found
the v2 series (2 patches).
- **Link:** https://patch.msgid.link/20260515082232.1766586-1-
dario.binacchi@amarulasolutions.com
- **b4 dig -c** on merge commit `0fd8b67e27ff7` failed (merge commit,
not the original patch).
- **No Cc: stable** nominations found in the mbox thread.
- **No NAKs** found in the retrieved mbox.
### Step 4.2: Reviewers
**Record:** Dmitry Baryshkov (Reviewed-by), Conor Dooley (Acked-by on
bindings), Neil Armstrong (Signed-off-by). Appropriate DRM/DT reviewers
involved.
### Step 4.3: Bug report
**Record:** Not applicable — no bug report, syzbot link, or user crash
report.
### Step 4.4: Series context
**Record:** 2-patch v2 series. v2 changes were alphabetical ordering and
correcting WQVGA → WXGA in the binding comment. No board DTS included in
the series.
### Step 4.5: Stable list history
**Record:** No stable-list discussion found for this specific panel.
Sibling `AM-1280800N3TZQW-T00H` was previously backported to 6.6.y.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** No functions modified. Data consumed by
`panel_simple_get_desc()` → `of_device_get_match_data()` via
`platform_of_match[]`.
### Step 5.2: Callers
**Record:** `panel_simple_platform_probe()` and DSI probe paths call
`panel_simple_probe()`, which calls `panel_simple_get_desc()`. Any
platform device with `compatible = "ampire,am-1280800w8tzqw-t00h"` would
use the new descriptor. Triggered at boot during DRM/display
initialization on affected embedded boards.
### Step 5.3: Callees
**Record:** Standard panel-simple probe path: mode/timing setup,
connector registration. No new allocation or locking paths introduced.
### Step 5.4: Reachability
**Record:** Reachable on any system with a DT node using this compatible
and `CONFIG_DRM_PANEL_SIMPLE`. Not userspace-triggered, but affects
display bring-up on boot for matching hardware.
### Step 5.5: Similar patterns
**Record:** Identical pattern to `ampire_am_1280800n3tzqw_t00h` already
in this tree (29-line sibling addition backported to 6.6.y as
`bca684e69c4ce`).
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE (6.18.44)
### Step 6.1: Does the “buggy” code exist?
**Record:** The `panel-simple` driver and the sibling N3 Ampire panel
entry exist in 6.18.44. The W8 compatible is **missing** — boards using
it cannot get display support. The gap was introduced when W8 support
landed in mainline after the 6.18 branch point.
### Step 6.2: Backport complications
**Record:** **Clean apply expected.** Insertion point (`after
ampire_am_1280800n3tzqw_t00h` and in `platform_of_match[]`) is present
and unchanged. `git diff HEAD origin/master` shows exactly this 28-line
addition among broader mainline drift.
### Step 6.3: Related fixes already present?
**Record:** No equivalent W8 entry in this tree. Sibling N3 panel is
present. No duplicate fix found.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** **drivers/gpu/drm/panel** — IMPORTANT for embedded/display
platforms; not universal core kernel, but critical for affected
hardware.
### Step 7.2: Subsystem activity
**Record:** `panel-simple.c` is mature with extensive static panel
tables. This follows established conventions.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** **Platform-specific** — embedded boards (Engicam/Amarula
ecosystem) using the Ampire AM-1280800W8TZQW-T00H 10.1" LVDS panel.
Requires `CONFIG_DRM_PANEL_SIMPLE`.
### Step 8.2: Trigger conditions
**Record:** Boot on hardware with DT `compatible =
"ampire,am-1280800w8tzqw-t00h"`. **No in-tree DTS currently uses this
compatible** on mainline or 6.18.44. Impact is for downstream/custom DTS
or future board additions.
### Step 8.3: Failure mode severity
**Record:** Without the patch: panel probe failure → **no display**
(MEDIUM functional impact for affected hardware; not a crash,
corruption, or security issue).
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Enables display on W8-variant Ampire panels; follows
established stable exception for device-ID additions; direct precedent
from sibling N3 backport to 6.6.y.
- **Risk:** Very low — 28 lines of static data, no behavioral change for
existing panels.
- **Ratio:** Favorable for stable, under the explicit “add a device ID”
exception in `stable-kernel-rules.rst`.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Explicitly permitted by `Documentation/process/stable-kernel-
rules.rst`: *“It must either fix a real bug that bothers people or
just add a device ID.”*
- Falls under the device-ID / DT-binding exception category in the
evaluation guidelines.
- Small (28 lines), contained, obviously correct, reviewed.
- `panel-simple` driver and sibling N3 panel already exist in 6.18.44.
- Applies cleanly to this tree.
- Already in mainline (prerequisite met).
- Identical precedent: `bca684e69c4ce` backported the N3 sibling to
6.6.y (+29 lines).
**AGAINST backport:**
- Not a bug fix — pure hardware enablement.
- No in-tree DTS uses this compatible yet (no demonstrated user impact
in 6.18.44 today).
- Ideally paired with patch 1/2 (DT binding yaml update).
- No stable nomination or user bug report.
**Unresolved:** Whether a specific shipping board on 6.18.y already uses
this panel in downstream trees (not verifiable from this tree).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — reviewed by Dmitry
Baryshkov; mirrors existing N3 entry.
2. Fixes a real bug affecting users? **PASS (via device-ID exception)**
— not a software bug, but enables hardware that otherwise cannot
work.
3. Important issue? **PASS (moderate)** — display failure on affected
hardware; not crash/security.
4. Small and contained? **PASS** — 28 lines, one file.
5. No new features or APIs? **PASS** — new OF compatible on existing
driver; standard stable device-ID pattern.
6. Can apply to local tree? **PASS** — clean apply to existing `panel-
simple.c`.
### Step 9.3: Exception category
**Record:** **NEW DEVICE ID / DT binding addition** to an existing
driver (`panel-simple`). Same category as PCI/USB ID additions and prior
Ampire panel additions backported to stable.
### Step 9.4: Decision rationale
This commit does not fix a kernel bug, but it adds a device identifier
(OF compatible + panel timings) to an existing, in-tree driver. That is
explicitly allowed for stable trees per `stable-kernel-rules.rst` and
matches the established pattern of backporting Ampire `panel-simple`
additions (the N3 sibling was backported to 6.6.y in an essentially
identical 29-line patch). The change is low-risk, applies cleanly to
Linux 6.18.44, and is already in mainline. The companion DT binding
patch should ideally be backported alongside it, but this driver commit
alone is valid stable material.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from provided commit message
and mbox.
- **[Phase 1]** `b4 am
20260515082232.1766586-2-dario.binacchi@amarulasolutions.com`:
confirmed v2 2-patch series; Reviewed-by Dmitry Baryshkov; Acked-by
Conor Dooley on patch 1/2.
- **[Phase 2]** Diff analysis: +28 lines in `panel-simple.c`; static
data + one `platform_of_match` entry.
- **[Phase 3]** `git describe HEAD`: v6.18.44 / 6.18.44 on
`stable/linux-6.18.y`.
- **[Phase 3]** `git grep "am-1280800w8tzqw-t00h" origin/master`: only
in `panel-simple.c` and `panel-simple.yaml` on mainline; absent from
HEAD.
- **[Phase 3]** `git show bca684e69c4ce --stat`: sibling N3 panel
backported to 6.6.y (+29 lines, same pattern).
- **[Phase 3]** `git log stable/linux-6.6.y --grep="1280800"`: N3 panel
+ binding + bpc fix backported to 6.6.y.
- **[Phase 4]** `b4 dig -c 0fd8b67e27ff7`: no match (merge commit).
- **[Phase 4]** Read mbox `v2_20260515_dario_binacchi_dt_bindings_displa
y_simple_add_am_1280800w8tzqw_t00h.mbx`: no Cc: stable; 2-patch series
confirmed.
- **[Phase 5]** `grep panel_simple_probe/panel_simple_get_desc` in
`panel-simple.c`: standard probe path via
`of_device_get_match_data()`.
- **[Phase 6]** `grep "am-1280800w8tzqw"`: zero matches in local tree.
- **[Phase 6]** `grep "am-1280800n3tzqw"`: present in `panel-simple.c`
and three in-tree DTS files.
- **[Phase 6]** `git diff HEAD origin/master --
drivers/gpu/drm/panel/panel-simple.c`: W8 addition is a clean 28-line
insert at expected location.
- **[Phase 6]** `git show origin/master:panel-simple.c | rg
"1280800w8"`: confirmed mainline has full W8 definition.
- **[Phase 7]** Read `Documentation/process/stable-kernel-rules.rst`:
confirms device-ID additions are valid stable material.
- **[Phase 8]** `git grep "am-1280800w8tzqw-t00h" origin/master`: no DTS
references — no in-tree board uses this panel yet.
**YES**The background lookups finished and line up with the earlier
analysis:
- **Pickaxe search** (`am-1280800w8tzqw-t00h` on `origin/master`): only
surfaced merge commit `0fd8b67e27ff7`, not the original panel patch —
the change is buried in a merge, which is why a direct subject/hash
search was needed.
- **Broader pickaxe search** (with `--all`): slow and similarly
unhelpful for finding the real introducing commit.
- **`b4 dig -c 0fd8b67e27ff7`**: no lore match on that RDMA merge
commit.
The useful trace came from **`b4 am`** on the patch msgid, which found
the v2 2-patch series (DT binding + driver). That supports the **YES**
verdict for 6.18.44: a small device-ID addition to an existing driver,
with the companion binding patch ideally backported alongside it.
drivers/gpu/drm/panel/panel-simple.c | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index ef1c4b9299ee4..878a5dc7748fb 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -820,6 +820,31 @@ static const struct panel_desc ampire_am_1280800n3tzqw_t00h = {
.connector_type = DRM_MODE_CONNECTOR_LVDS,
};
+static const struct drm_display_mode ampire_am_1280800w8tzqw_t00h_mode = {
+ .clock = 72400,
+ .hdisplay = 1280,
+ .hsync_start = 1280 + 40,
+ .hsync_end = 1280 + 40 + 80,
+ .htotal = 1280 + 40 + 80 + 40,
+ .vdisplay = 800,
+ .vsync_start = 800 + 10,
+ .vsync_end = 800 + 10 + 18,
+ .vtotal = 800 + 10 + 18 + 10,
+};
+
+static const struct panel_desc ampire_am_1280800w8tzqw_t00h = {
+ .modes = &ire_am_1280800w8tzqw_t00h_mode,
+ .num_modes = 1,
+ .bpc = 8,
+ .size = {
+ .width = 217,
+ .height = 136,
+ },
+ .bus_flags = DRM_BUS_FLAG_DE_HIGH,
+ .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
+ .connector_type = DRM_MODE_CONNECTOR_LVDS,
+};
+
static const struct drm_display_mode ampire_am_480272h3tmqw_t01h_mode = {
.clock = 9000,
.hdisplay = 480,
@@ -4965,6 +4990,9 @@ static const struct of_device_id platform_of_match[] = {
{
.compatible = "ampire,am-1280800n3tzqw-t00h",
.data = &ire_am_1280800n3tzqw_t00h,
+ }, {
+ .compatible = "ampire,am-1280800w8tzqw-t00h",
+ .data = &ire_am_1280800w8tzqw_t00h,
}, {
.compatible = "ampire,am-480272h3tmqw-t01h",
.data = &ire_am_480272h3tmqw_t01h,
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/panel: Enable GPIOLIB for panels which uses functions from it
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (10 preceding siblings ...)
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] drm/panel: simple: Add AM-1280800W8TZQW-T00H Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Let driver decide buffer size at AMDKFD_IOC_GET_DMABUF_INFO ioctl Sasha Levin
` (54 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: David Heidelberg, Neil Armstrong, Sasha Levin, maarten.lankhorst,
mripard, tzimmermann, airlied, simona, dri-devel, linux-kernel
From: David Heidelberg <david@ixit.cz>
[ Upstream commit ae3aa8cf5fd5ccb428a814e7eb38ae33ad1cfa34 ]
These panels used on sdm845 devices are using GPIOLIB functions,
ensure it's enabled.
Signed-off-by: David Heidelberg <david@ixit.cz>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20260505-panel-clean-up-kconfig-dep-v2-4-9cc31d6e6919@ixit.cz
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/panel: Enable GPIOLIB for panels which
uses functions from it`
**Local tree:** Linux **6.18.43** (`git describe HEAD` →
`v6.18.43-1-gc7f0dac02d232`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Parse the subject line
**Record:** `[drm/panel]` `[Enable]` — Add missing `GPIOLIB` Kconfig
dependencies for DRM panel drivers that call GPIO descriptor APIs.
### Step 1.2: Parse all commit message tags
**Record:**
- **Signed-off-by:** David Heidelberg `<david@ixit.cz>` (author)
- **Reviewed-by:** Neil Armstrong `<neil.armstrong@linaro.org>`
(drm/panel maintainer)
- **Signed-off-by:** Neil Armstrong `<neil.armstrong@linaro.org>`
- **Link:** https://patch.msgid.link/20260505-panel-clean-up-kconfig-
dep-v2-4-9cc31d6e6919@ixit.cz
- No `Fixes:`, `Reported-by:`, `Cc: stable@vger.kernel.org`, or syzbot
tags
- Notable: Reviewed-by from subsystem maintainer; patch 4/4 of a Kconfig
cleanup series (v2)
### Step 1.3: Analyze commit body
**Record:**
- **Bug:** Five panel Kconfig entries can be enabled without `GPIOLIB`,
even though their `.c` drivers call `devm_gpiod_get()` /
`gpiod_set_value*()`.
- **Symptom:** Broken or invalid kernel configuration on SDM845-class
devices (Poco F1, etc.); panel drivers selected without GPIO support
compiled in.
- **Root cause:** Missing `depends on GPIOLIB` in Kconfig for drivers
that use GPIO consumer APIs.
- **Version info:** None in commit message.
### Step 1.4: Detect hidden bug fixes
**Record:** Yes — presented as Kconfig cleanup, but it fixes a real
configuration correctness bug. Without `GPIOLIB`, `devm_gpiod_get()`
stubs return `-ENOSYS` and probe fails (verified in `panel-ebbg-
ft8719.c`). Not a crash, but a broken driver configuration path.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory the changes
**Record:**
- **Files:** `drivers/gpu/drm/panel/Kconfig` only (+9 / -2)
- **Configs modified:** 7 entries
- **Adds `depends on GPIOLIB`:** `DRM_PANEL_EBBG_FT8719`,
`DRM_PANEL_LG_SW43408`, `DRM_PANEL_NOVATEK_NT36672A`,
`DRM_PANEL_NOVATEK_NT36672E`, `DRM_PANEL_VISIONOX_RM69299`
- **Reformats only (already had GPIOLIB):**
`DRM_PANEL_JDI_LPM102A188A`, `DRM_PANEL_RAYDIUM_RM69380` (`depends
on OF && GPIOLIB` → separate lines)
- **Scope:** Single-file, surgical Kconfig fix
### Step 2.2: Code flow change
**Record:**
- **Before:** Kconfig allows `CONFIG_DRM_PANEL_*=y/m` with
`CONFIG_GPIOLIB=n`.
- **After:** Panel options are only visible/selectable when `GPIOLIB` is
enabled, ensuring GPIO infrastructure is present when these drivers
are built.
- **Affected path:** Kernel configuration / module build selection, not
runtime hot path.
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Kconfig dependency / configuration correctness (related
to build-fix exception)
- **Mechanism:** Drivers include `<linux/gpio/consumer.h>` and call
`devm_gpiod_get()` / `gpiod_set_value*()`. Without `depends on
GPIOLIB`, Kconfig does not enforce the dependency. With `GPIOLIB=n`,
header stubs compile but return `-ENOSYS` at probe time.
### Step 2.4: Fix quality
**Record:** Obviously correct and minimal. Each affected driver verified
to use GPIO APIs. No runtime logic changed. Regression risk: very low
(Kconfig-only). Two entries already had GPIOLIB — only formatting
changes there.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame changed lines
**Record:** Affected Kconfig entries trace to `19eef1d98eeda` in this
tree's history. Drivers have used `devm_gpiod_get` since introduction
(verified via `git log -S devm_gpiod_get`). Bug present since drivers
were added without GPIOLIB dependency.
### Step 3.2: Follow Fixes: tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: File history for related changes
**Record:** Recent `Kconfig` changes in this tree:
- `3139b806923b1` — `drm/panel: s6e3ha8: fix unmet dependency on
DRM_DISPLAY_HELPER` (already backported)
- `d003d9bb44da1` — `drm/panel: Clean up S6E3HA2 config dependencies` —
**patch 3/4 of same series**, adds GPIOLIB to S6E3HA8 (already
backported)
- This commit (patch 4/4) is **not** in HEAD (`ae3aa8cf5fd5` is not an
ancestor of HEAD)
### Step 3.4: Author's other commits
**Record:** David Heidelberg authored `d003d9bb44da1` (patch 3, already
in 6.18.y). Neil Armstrong reviewed both.
### Step 3.5: Prerequisites
**Record:** Standalone Kconfig change. Patch 3 of the series is already
in this tree; patch 1 (S6E3FC2X01) is not present (that config doesn't
exist here). This patch applies independently for the five panels
missing GPIOLIB.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original patch discussion
**Record:** `b4 dig -c ae3aa8cf5fd5 -a` found v1 and v2 series on lore.
v2 message ID matches commit Link tag. `b4 dig -w` failed (lore fetch
error). WebFetch of lore blocked by Anubis bot protection. Web search
confirmed upstream commit `ae3aa8cf5fd5` and series context.
### Step 4.2: Reviewers
**Record:** Neil Armstrong (drm/panel maintainer) provided `Reviewed-
by`. Series cover letter (from search) describes Kconfig dependency
cleanup verified against all driver source files.
### Step 4.3: Bug report
**Record:** No formal bug report or syzbot link. Issue identified
through Kconfig dependency audit (same class as `kconfirm`-found s6e3ha8
fix already in this tree).
### Step 4.4: Related patches
**Record:** 4-patch series:
1. S6E3FC2X01 cleanup — not applicable (config absent in 6.18.y)
2. (unclear numbering in resends)
3. S6E3HA2 GPIOLIB + help text — **already in tree** (`d003d9bb44da1`)
4. **This commit** — GPIOLIB for 5 additional panels
### Step 4.5: Stable mailing list
**Record:** UNVERIFIED — lore stable search blocked. No evidence against
backport found.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** No C functions modified. Affected probe functions in driver
`.c` files use GPIO APIs:
- `panel_ebbg_ft8719_probe()` — `devm_gpiod_get()`,
`gpiod_set_value_cansleep()`
- `panel_lg_sw43408` — `devm_gpiod_get()`, `gpiod_set_value()`
- `panel_novatek_nt36672a/e` — `devm_gpiod_get()`, `gpiod_set_value()`
- `panel_visionox_rm69299` — `devm_gpiod_get()`, `gpiod_set_value()`
### Step 5.2: Callers
**Record:** Probe functions called from module init / device
registration during boot on platforms with these panels (SDM845 phones,
Poco F1, etc.).
### Step 5.3: Callees
**Record:** `devm_gpiod_get()`, `gpiod_set_value()`,
`gpiod_set_value_cansleep()` from GPIOLIB (or stubs when `GPIOLIB=n`).
### Step 5.4: Reachability
**Record:** Reachable on ARM64 platforms with these panel device trees
when the panel driver is enabled. Common on SDM845 devices mentioned in
the commit message.
### Step 5.5: Similar patterns
**Record:** Many other panel Kconfig entries in the same file already
have `depends on GPIOLIB`. S6E3HA8 received the same fix in
`d003d9bb44da1` already backported here. Consistent with established
pattern.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Does buggy code exist?
**Record:** **Yes.** In 6.18.43, these five configs lack `GPIOLIB`:
- `DRM_PANEL_EBBG_FT8719` (line 110: `depends on OF` only)
- `DRM_PANEL_LG_SW43408` (line 421)
- `DRM_PANEL_NOVATEK_NT36672A` (line 525)
- `DRM_PANEL_NOVATEK_NT36672E` (line 535)
- `DRM_PANEL_VISIONOX_RM69299` (line 1121)
All five driver `.c` files confirmed to use GPIO APIs.
### Step 6.2: Backport complications
**Record:** Clean apply expected — single Kconfig file, no conflicts
with recent changes. Two configs (`JDI_LPM102A188A`, `RAYDIUM_RM69380`)
already have GPIOLIB; only formatting differs.
### Step 6.3: Related fixes already present?
**Record:** Patch 3 of same series (`d003d9bb44da1`) and similar unmet-
dependency fix (`3139b806923b1`) already backported. **This specific fix
is not yet in the tree.**
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/panel` — **IMPORTANT** (display subsystem,
mobile/embedded hardware).
### Step 7.2: Subsystem activity
**Record:** Active — recent Kconfig dependency fixes backported to this
6.18.y tree in the same subsystem.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of SDM845-class mobile devices (Poco F1, etc.) and
anyone building custom kernels with these panel drivers. Config-
specific, not universal.
### Step 8.2: Trigger conditions
**Record:** Triggered when `CONFIG_DRM_PANEL_<name>=y/m` with
`CONFIG_GPIOLIB=n`. Uncommon on ARM mobile defconfigs (GPIOLIB typically
enabled), but possible with custom/randconfig builds. Not a security
issue.
### Step 8.3: Failure mode severity
**Record:** Panel probe fails with `-ENOSYS` from `devm_gpiod_get()`
stub; display non-functional. **Severity: MEDIUM** (broken hardware
support, not crash/corruption). Kconfig tools may also report unmet
dependencies.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** MEDIUM — correct Kconfig dependencies; prevents broken
panel configs; completes a series partially already backported
- **Risk:** VERY LOW — Kconfig-only, 9 lines, maintainer-reviewed
- **Ratio:** Favorable for backport, especially given precedent in this
tree
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence compile
**FOR backport:**
- Real Kconfig bug: 5 drivers use GPIOLIB APIs without declaring
dependency
- Verified in source for all 5 drivers
- Small, surgical, maintainer-reviewed (Neil Armstrong)
- Patch 3 of same series already backported to 6.18.y
- Similar Kconfig unmet-dependency fix (`3139b806923b1`) already in this
tree
- Build/config fix exception category
- Affects real mobile hardware (SDM845 panels)
- Zero runtime regression risk
**AGAINST backport:**
- Does not cause compile failure (`gpio/consumer.h` provides stubs when
`GPIOLIB=n`)
- Runtime failure is graceful probe error, not crash/UAF/corruption
- Typical ARM mobile defconfigs already enable GPIOLIB
- Low practical impact for most production users
**Unresolved:**
- Full lore review thread (Anubis blocked WebFetch)
- Whether randconfig/kconfirm explicitly flagged these five panels
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — verified driver/GPIO usage;
Reviewed-by from maintainer
2. Fixes a real bug? **PASS** — Kconfig allows invalid configuration for
real hardware
3. Important issue? **PASS (MEDIUM)** — broken display driver config,
not crash/security
4. Small and contained? **PASS** — 1 file, +9/-2 lines
5. No new features/APIs? **PASS** — Kconfig dependency only
6. Can apply to local tree? **PASS** — buggy code present; clean apply
expected
### Step 9.3: Exception categories
**Record:** **Build/config fix** — Kconfig dependency correction (same
class as `3139b806923b1` and `d003d9bb44da1` already in 6.18.y).
### Step 9.4: Decision rationale
This is not a critical crash fix, but it is a correct, zero-risk Kconfig
dependency fix for real hardware panel drivers. The 6.18.y tree has
already accepted two nearly identical drm/panel Kconfig dependency fixes
from the same author and reviewer, including patch 3 of this very
series. Leaving patch 4 out leaves five panel drivers with the same
class of bug that was already fixed for S6E3HA8. The fix is small,
obviously correct, and completes consistent Kconfig hygiene in a
subsystem where this tree has established precedent.
---
## Verification
- [Phase 1] Parsed subject, tags; found Reviewed-by Neil Armstrong, Link
to v2-4 patch
- [Phase 2] Diff: 1 file, +9/-2; 5 configs gain GPIOLIB, 2 reformat only
- [Phase 2] Verified `panel-ebbg-ft8719.c` uses `devm_gpiod_get` +
`gpiod_set_value_cansleep`
- [Phase 2] Verified `panel-lg-sw43408.c`, `panel-novatek-nt36672a.c`,
`panel-novatek-nt36672e.c`, `panel-visionox-rm69299.c` use GPIO APIs
- [Phase 2] Read `include/linux/gpio/consumer.h`: stubs provided when
`CONFIG_GPIOLIB` disabled (no link error, `-ENOSYS` at probe)
- [Phase 3] `git describe HEAD`: v6.18.43; `make kernelversion`: 6.18.43
- [Phase 3] `git merge-base --is-ancestor ae3aa8cf5fd5 HEAD`: NOT IN
TREE
- [Phase 3] `d003d9bb44da1` (patch 3, S6E3HA2 GPIOLIB) confirmed in tree
- [Phase 3] `3139b806923b1` (s6e3ha8 unmet dependency) confirmed in tree
- [Phase 4] `b4 dig -c ae3aa8cf5fd5 -a`: found v1/v2 series on lore
- [Phase 4] UNVERIFIED: `b4 dig -w` failed; lore WebFetch blocked by
Anubis
- [Phase 5] Grep confirmed all 5 drivers in `Makefile` and use GPIO
consumer APIs
- [Phase 6] Grep of `Kconfig`: 5 panels missing GPIOLIB dependency in
6.18.43
- [Phase 6] `JDI_LPM102A188A` and `RAYDIUM_RM69380` already have GPIOLIB
- [Phase 7] Neil Armstrong is drm/panel maintainer (Reviewed-by)
- [Phase 8] Failure mode: probe `-ENOSYS`, display broken; severity
MEDIUM
- [Phase 8] Typical ARM defconfigs: GPIOLIB usually enabled; impact
lower for default configs
**YES**The background check finished: upstream commit `ae3aa8cf5fd5` is
**not** in the current 6.18.43 tree, so the GPIOLIB Kconfig fix still
needs to be backported.
The five affected panel drivers (`EBBG_FT8719`, `LG_SW43408`,
`NOVATEK_NT36672A/E`, `VISIONOX_RM69299`) are still missing the `depends
on GPIOLIB` entries in this tree. Verdict from the analysis: **YES** for
stable backport.
drivers/gpu/drm/panel/Kconfig | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/panel/Kconfig b/drivers/gpu/drm/panel/Kconfig
index 7354dc85a6aa7..967265ed6fc96 100644
--- a/drivers/gpu/drm/panel/Kconfig
+++ b/drivers/gpu/drm/panel/Kconfig
@@ -107,6 +107,7 @@ config DRM_PANEL_BOE_TV101WUM_LL2
config DRM_PANEL_EBBG_FT8719
tristate "EBBG FT8719 panel driver"
+ depends on GPIOLIB
depends on OF
depends on DRM_MIPI_DSI
depends on BACKLIGHT_CLASS_DEVICE
@@ -316,7 +317,8 @@ config DRM_PANEL_JADARD_JD9365DA_H3
config DRM_PANEL_JDI_LPM102A188A
tristate "JDI LPM102A188A DSI panel"
- depends on OF && GPIOLIB
+ depends on GPIOLIB
+ depends on OF
depends on DRM_MIPI_DSI
depends on BACKLIGHT_CLASS_DEVICE
help
@@ -418,6 +420,7 @@ config DRM_PANEL_LG_LG4573
config DRM_PANEL_LG_SW43408
tristate "LG SW43408 panel"
+ depends on GPIOLIB
depends on OF
depends on DRM_MIPI_DSI
depends on BACKLIGHT_CLASS_DEVICE
@@ -522,6 +525,7 @@ config DRM_PANEL_NOVATEK_NT36523
config DRM_PANEL_NOVATEK_NT36672A
tristate "Novatek NT36672A DSI panel"
+ depends on GPIOLIB
depends on OF
depends on DRM_MIPI_DSI
depends on BACKLIGHT_CLASS_DEVICE
@@ -532,6 +536,7 @@ config DRM_PANEL_NOVATEK_NT36672A
config DRM_PANEL_NOVATEK_NT36672E
tristate "Novatek NT36672E DSI panel"
+ depends on GPIOLIB
depends on OF
depends on DRM_MIPI_DSI
depends on BACKLIGHT_CLASS_DEVICE
@@ -660,7 +665,8 @@ config DRM_PANEL_RAYDIUM_RM692E5
config DRM_PANEL_RAYDIUM_RM69380
tristate "Raydium RM69380-based DSI panel"
- depends on OF && GPIOLIB
+ depends on GPIOLIB
+ depends on OF
depends on DRM_MIPI_DSI
depends on BACKLIGHT_CLASS_DEVICE
help
@@ -1118,6 +1124,7 @@ config DRM_PANEL_VISIONOX_R66451
config DRM_PANEL_VISIONOX_RM69299
tristate "Visionox RM69299"
+ depends on GPIOLIB
depends on OF
depends on DRM_MIPI_DSI
help
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Let driver decide buffer size at AMDKFD_IOC_GET_DMABUF_INFO ioctl
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (11 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/panel: Enable GPIOLIB for panels which uses functions from it Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 14:44 ` sashiko-bot
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Initialize dsc_caps to 0 Sasha Levin
` (53 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: Xiaogang Chen, Alex Deucher, Sasha Levin, Felix.Kuehling,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Xiaogang Chen <xiaogang.chen@amd.com>
[ Upstream commit 8242a8d9d7194d5ef8a8b38a5621ca0966a3ec15 ]
amdkfd driver needs allocate buffer to return bo metadata to user space. The
buffer size is controlled by user currently. It is a potential security issue
that hostile value (e.g. 2 GiB) lets any render-group user trigger order-MAX
allocation/OOM in kernel context.
This patch first finds bo metadata size. If the size is smaller than user
provided value drive can safely allocate buffer in kernel space and copy to
user space buffer. If not, driver will let user know, not allocate and copy.
User will redo with new buffer in user space.
This patch lets driver decide buffer allocation size to avoid potential hostile
size from user space.
Signed-off-by: Xiaogang Chen <xiaogang.chen@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit f54ce9e8cbd3abe0eda3a285f54dc4f572fe589a)
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: `[drm/amdkfd]` `[Let driver decide]` — ioctl security hardening
for `AMDKFD_IOC_GET_DMABUF_INFO` so the kernel no longer allocates based
on user-supplied buffer size.
**Step 1.2 — Tags**
Record:
- `Signed-off-by: Xiaogang Chen <xiaogang.chen@amd.com>` (author)
- `Reviewed-by: Alex Deucher <alexander.deucher@amd.com>` (AMD DRM
maintainer)
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` (committer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`,
`Tested-by:`, or `Acked-by:`
Notable: maintainer review only; no fuzzer or user bug report cited.
**Step 1.3 — Body analysis**
Record:
- **Bug:** `kfd_ioctl_get_dmabuf_info()` allocates a kernel buffer with
`kzalloc(args->metadata_size, GFP_KERNEL)` where `metadata_size` is
fully user-controlled.
- **Symptom:** A render-group user can pass a hostile size (e.g. 2 GiB)
and force large kernel allocations → OOM / denial of service.
- **Root cause:** Allocation size is driven by userspace, not by actual
BO metadata size.
- **Fix approach:** Query actual metadata size first via
`amdgpu_bo_get_metadata()` with `buffer=NULL`; allocate only
`*metadata_size` bytes (bounded by driver data); reject with `-EINVAL`
if user buffer is too small.
- **Version info:** None in message.
**Step 1.4 — Hidden bug fix?**
Record: **Yes.** Although not labeled “fix”, this is a classic user-
controlled kernel allocation / DoS hardening pattern, same class as
other KFD ioctl validation fixes already in stable.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- `drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c`: +15 / -3
- `drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h`: signature change (1
line)
- `drivers/gpu/drm/amd/amdkfd/kfd_chardev.c`: +2 / -8
- **Functions:** `amdgpu_amdkfd_get_dmabuf_info()`,
`kfd_ioctl_get_dmabuf_info()`
- **Scope:** Single-subsystem, 3-file surgical fix (~22 insertions, ~13
deletions)
**Step 2.2 — Code flow per hunk**
Record:
1. **`kfd_chardev.c`:** Before → `kzalloc(args->metadata_size)` when
`metadata_ptr` set. After → no user-size allocation; passes
`&metadata_buffer` to helper; copies only if both kernel buffer and
`metadata_ptr` are set.
2. **`amdgpu_amdkfd.c`:** Before → passes user buffer directly to
`amdgpu_bo_get_metadata()`. After → queries size with `buffer=NULL`,
allocates `kzalloc(*metadata_size)` only when `*metadata_size <=
buffer_size`, else `-EINVAL`.
3. **`amdgpu_amdkfd.h`:** `metadata_buffer` parameter becomes `void **`
so callee can allocate and return buffer pointer.
**Step 2.3 — Bug mechanism**
Record: **Memory safety / DoS via user-controlled allocation size.**
Category: unvalidated userspace size passed to `kzalloc()` in ioctl
handler. Fix caps kernel allocation to actual BO metadata size (small,
driver-controlled).
**Step 2.4 — Fix quality**
Record: **Obviously correct** for the stated problem. Minimal, focused
change. Minor concern: on `kzalloc()` failure the fix returns `-ENOMEM`
directly without `goto out_put`, leaking a `dma_buf` reference — rare
path, does not undermine the security fix. No API or UAPI structure
changes.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record: Vulnerable `kzalloc(args->metadata_size, ...)` introduced in
`1dde0ea95b782` (Felix Kuehling, 2018-11-20) — “drm/amdkfd: Add DMABuf
import functionality”. Bug present since v4.20 era; definitely present
in this 6.18.44 tree.
**Step 3.2 — Fixes: tag**
Record: N/A — no `Fixes:` tag.
**Step 3.3 — Related file history**
Record: Related stable-style KFD ioctl hardening already in this tree:
- `db9530a9873a7` — “drm/amdkfd: validate SVM ioctl nattr against buffer
size” (cherry-picked to stable by Greg K-H)
- `9e52212aff8ed` — missing authorization check fix
- `6156c101e5f08` — `memdup_user` replacing `kzalloc` + `copy_from_user`
Standalone fix; not part of a multi-patch series.
**Step 3.4 — Author context**
Record: Xiaogang Chen is an AMD contributor (recent KFD/amdgpu commits).
Alex Deucher reviewed and committed — strong subsystem credibility.
**Step 3.5 — Dependencies**
Record: **None.** Uses existing `amdgpu_bo_get_metadata()` NULL-buffer
query path (supported since that function was written). Only caller of
`amdgpu_amdkfd_get_dmabuf_info()` is `kfd_ioctl_get_dmabuf_info()`. `git
apply --check` passes cleanly on this tree.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record: `b4 dig -c f54ce9e8cbd3` — **no match found** on
lore.kernel.org. Manual lore search blocked (Anubis bot protection).
Phase partially N/A.
**Step 4.2 — Reviewers from b4 -w**
Record: N/A (b4 found nothing).
**Step 4.3 — Bug report**
Record: N/A — no `Reported-by:` or `Link:` tags.
**Step 4.4 — Related patches**
Record: Same subsystem pattern as `db9530a9873a7` (user-controlled ioctl
sizing). No series dependency.
**Step 4.5 — Stable list**
Record: Could not search lore stable archive (bot protection). However,
analogous KFD ioctl validation was already accepted into this 6.18.y
tree (`db9530a9873a7`).
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `kfd_ioctl_get_dmabuf_info()`,
`amdgpu_amdkfd_get_dmabuf_info()`, `amdgpu_bo_get_metadata()`.
**Step 5.2 — Callers**
Record: `kfd_ioctl_get_dmabuf_info()` registered as
`AMDKFD_IOC_GET_DMABUF_INFO` ioctl handler (render-node accessible).
`amdgpu_amdkfd_get_dmabuf_info()` called only from that ioctl path.
**Step 5.3 — Callees**
Record: `dma_buf_get/put`, `amdgpu_bo_get_metadata()`, `kzalloc/kfree`,
`copy_to_user`, `kfd_devcgroup_check_permission()`.
**Step 5.4 — Reachability**
Record: **Userspace-reachable** via `/dev/kfd` ioctl from processes with
render-node access (`kfd_devcgroup_check_permission()` checks
`DEVCG_ACC_READ|WRITE` on DRM render minor). Attacker needs render-group
membership and a valid amdgpu dmabuf fd — realistic on desktop/container
ROCm/GPU compute setups.
**Step 5.5 — Similar patterns**
Record: Same anti-pattern fixed elsewhere in KFD (`db9530a9873a7` for
SVM ioctl). Confirms subsystem maintainers treat user-controlled ioctl
allocation sizes as security issues.
---
## Phase 6: Cross-Reference Against Local Tree
**Step 6.1 — Buggy code present?**
Record: **Yes.** Local tree is **Linux 6.18.44** (`git describe HEAD` →
`v6.18.44-1-g2736c32da98b9`). Commit `f54ce9e8cbd3` is **not** an
ancestor of HEAD. Vulnerable code confirmed at
`kfd_chardev.c:1527-1530`:
```1527:1531:drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
if (args->metadata_ptr) {
metadata_buffer = kzalloc(args->metadata_size,
GFP_KERNEL);
if (!metadata_buffer)
return -ENOMEM;
}
```
**Step 6.2 — Backport complications**
Record: **Clean apply** — `git show f54ce9e8cbd3 | git apply --check`
succeeds with no conflicts.
**Step 6.3 — Related fixes already present?**
Record: No duplicate fix for this ioctl. Related KFD ioctl validation
fixes exist (`db9530a9873a7`) but not for `GET_DMABUF_INFO`.
---
## Phase 7: Subsystem and Maintainer Context
**Step 7.1 — Subsystem criticality**
Record: `drivers/gpu/drm/amd/amdkfd` — **IMPORTANT** (AMD GPU compute /
ROCm users; not universal core kernel, but widely deployed on AMD
systems with `CONFIG_DRM_AMDGPU`).
**Step 7.2 — Activity**
Record: Actively maintained — 20 recent commits on `kfd_chardev.c`
including multiple security/validation fixes in 2026.
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: Users of AMD KFD/ROCm with amdgpu (`CONFIG_DRM_AMDGPU=y/m`). Any
process in the GPU render group on multi-user or containerized systems.
**Step 8.2 — Trigger conditions**
Record: Call `AMDKFD_IOC_GET_DMABUF_INFO` with `metadata_ptr != 0` and
large `metadata_size` (e.g. 2 GiB). **Likelihood:** trivial for
authorized render-group users. **Unprivileged:** requires render-node
access (not fully unprivileged, but local DoS from less-privileged GPU
users is a recognized security concern).
**Step 8.3 — Failure mode severity**
Record: **Kernel OOM / memory exhaustion DoS** — **HIGH** severity
(system-wide impact possible). Not data corruption or privilege
escalation, but a reproducible resource exhaustion attack from userspace
ioctl.
**Step 8.4 — Risk vs benefit**
Record:
- **Benefit:** HIGH — closes long-standing (since 2018) user-controlled
kernel allocation hole
- **Risk:** LOW — ~35-line change, reviewed by maintainer, applies
cleanly, no UAPI changes
- **Ratio:** Strong benefit, low risk
---
## Phase 9: Final Synthesis
**Step 9.1 — Evidence summary**
**FOR backport:**
- Real security issue: user-controlled `kzalloc()` size in ioctl
- DoS / OOM impact on systems with AMD GPU compute
- Bug present in this 6.18.44 tree since 2018
- Small, surgical, maintainer-reviewed fix
- Applies cleanly
- Same class of fix already accepted in this tree (`db9530a9873a7`)
- `amdgpu_bo_get_metadata()` already supports size-only query with
`buffer=NULL`
**AGAINST backport:**
- Requires render-group access (not arbitrary unprivileged user) —
reduces universality but not severity for multi-tenant GPU systems
- Minor `dma_buf` leak on `ENOMEM` in the fix itself (rare)
- No external bug report or syzbot confirmation
**Unresolved:** Lore discussion and stable-list nomination could not be
retrieved.
**Step 9.2 — Stable rules checklist**
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — logic is clear;
Reviewed-by maintainer; no Tested-by |
| 2. Fixes real bug affecting users? | **PASS** — user-controlled kernel
allocation DoS |
| 3. Important issue? | **PASS** — HIGH (OOM DoS from ioctl) |
| 4. Small and contained? | **PASS** — 3 files, ~35 lines |
| 5. No new features/APIs? | **PASS** — same ioctl, hardened allocation
|
| 6. Can apply to local tree? | **PASS** — clean `git apply --check` |
**Step 9.3 — Exception category**
Record: Security hardening of existing ioctl (not device ID, quirk, DT,
build, or docs exception — standard security bug fix).
**Step 9.4 — Decision rationale**
This commit fixes a long-standing vulnerability where any render-group
user can force arbitrarily large kernel allocations via
`AMDKFD_IOC_GET_DMABUF_INFO`. The buggy code exists in the local 6.18.44
tree, the fix is small and maintainer-reviewed, it applies cleanly, and
the same subsystem has already accepted analogous ioctl validation fixes
for stable. The fix bounds kernel allocation to actual BO metadata size
(driver-controlled, typically small), eliminating the OOM attack vector.
---
## Verification
- [Phase 1] Parsed commit `f54ce9e8cbd3` message: security issue, user-
controlled allocation, Reviewed-by Alex Deucher
- [Phase 2] Full diff reviewed: 3 files, `kzalloc` moved from user size
to `*metadata_size`
- [Phase 2] Read `amdgpu_bo_get_metadata()`: supports `buffer=NULL` +
`metadata_size` out-param (`amdgpu_object.c:1227-1233`)
- [Phase 3] `git blame` lines 1527-1531 → `1dde0ea95b782` (2018-11-20)
- [Phase 3] `git log -S kfd_ioctl_get_dmabuf_info` → introduced in
`1dde0ea95b782`
- [Phase 3] `git log --oneline -20 -- kfd_chardev.c` → related stable
fix `db9530a9873a7` present
- [Phase 3] `grep amdgpu_amdkfd_get_dmabuf_info` → single caller in
`kfd_chardev.c`
- [Phase 3] `git apply --check` → patch applies cleanly
- [Phase 4] `b4 dig -c f54ce9e8cbd3` → no lore match
- [Phase 4] lore.kernel.org manual fetch → blocked by Anubis (UNVERIFIED
for list discussion)
- [Phase 5] Read `kfd_devcgroup_check_permission()` → render-node cgroup
check (`kfd_priv.h:1564-1576`)
- [Phase 5] Confirmed ioctl registration at `kfd_chardev.c:3232-3233`
- [Phase 6] `git describe HEAD` → v6.18.44; `make kernelversion` →
6.18.44
- [Phase 6] `git merge-base --is-ancestor f54ce9e8cbd3 HEAD` → commit
NOT in tree
- [Phase 6] Read current `kfd_chardev.c:1527-1530` → vulnerable code
present
- [Phase 8] Assessed failure mode: OOM DoS, HIGH severity for GPU multi-
tenant scenarios
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c | 23 ++++++++++++++++++----
drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | 2 +-
drivers/gpu/drm/amd/amdkfd/kfd_chardev.c | 10 ++--------
3 files changed, 22 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
index 1ec26be82f30e..5e8d0d6b55ab6 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
@@ -528,7 +528,7 @@ uint32_t amdgpu_amdkfd_get_max_engine_clock_in_mhz(struct amdgpu_device *adev)
int amdgpu_amdkfd_get_dmabuf_info(struct amdgpu_device *adev, int dma_buf_fd,
struct amdgpu_device **dmabuf_adev,
- uint64_t *bo_size, void *metadata_buffer,
+ uint64_t *bo_size, void **metadata_buffer,
size_t buffer_size, uint32_t *metadata_size,
uint32_t *flags, int8_t *xcp_id)
{
@@ -563,9 +563,24 @@ int amdgpu_amdkfd_get_dmabuf_info(struct amdgpu_device *adev, int dma_buf_fd,
*dmabuf_adev = adev;
if (bo_size)
*bo_size = amdgpu_bo_size(bo);
- if (metadata_buffer)
- r = amdgpu_bo_get_metadata(bo, metadata_buffer, buffer_size,
- metadata_size, &metadata_flags);
+ if (metadata_buffer) {
+ /* first get metadata_size by buffer = NULL */
+ r = amdgpu_bo_get_metadata(bo, NULL, 0,
+ metadata_size, NULL);
+
+ /* user buf_size is bigger than bo metadata_size
+ * allocate a buf at kernel space and copy */
+ if (*metadata_size <= buffer_size) {
+ *metadata_buffer = kzalloc(*metadata_size, GFP_KERNEL);
+
+ if (!*metadata_buffer)
+ return -ENOMEM;
+
+ r = amdgpu_bo_get_metadata(bo, *metadata_buffer, *metadata_size,
+ NULL, &metadata_flags);
+ } else
+ r = -EINVAL;
+ }
if (flags) {
*flags = (bo->preferred_domains & AMDGPU_GEM_DOMAIN_VRAM) ?
KFD_IOC_ALLOC_MEM_FLAGS_VRAM
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
index 9e120c934cc17..c59b5d9cd36b6 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
@@ -255,7 +255,7 @@ uint64_t amdgpu_amdkfd_get_gpu_clock_counter(struct amdgpu_device *adev);
uint32_t amdgpu_amdkfd_get_max_engine_clock_in_mhz(struct amdgpu_device *adev);
int amdgpu_amdkfd_get_dmabuf_info(struct amdgpu_device *adev, int dma_buf_fd,
struct amdgpu_device **dmabuf_adev,
- uint64_t *bo_size, void *metadata_buffer,
+ uint64_t *bo_size, void **metadata_buffer,
size_t buffer_size, uint32_t *metadata_size,
uint32_t *flags, int8_t *xcp_id);
int amdgpu_amdkfd_get_pcie_bandwidth_mbytes(struct amdgpu_device *adev, bool is_min);
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c b/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
index d3190c3bb1aee..d220cf60375ba 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
@@ -1524,16 +1524,10 @@ static int kfd_ioctl_get_dmabuf_info(struct file *filep,
if (!dev)
return -EINVAL;
- if (args->metadata_ptr) {
- metadata_buffer = kzalloc(args->metadata_size, GFP_KERNEL);
- if (!metadata_buffer)
- return -ENOMEM;
- }
-
/* Get dmabuf info from KGD */
r = amdgpu_amdkfd_get_dmabuf_info(dev->adev, args->dmabuf_fd,
&dmabuf_adev, &args->size,
- metadata_buffer, args->metadata_size,
+ &metadata_buffer, args->metadata_size,
&args->metadata_size, &flags, &xcp_id);
if (r)
goto exit;
@@ -1545,7 +1539,7 @@ static int kfd_ioctl_get_dmabuf_info(struct file *filep,
args->flags = flags;
/* Copy metadata buffer to user mode */
- if (metadata_buffer) {
+ if (metadata_buffer && args->metadata_ptr) {
r = copy_to_user((void __user *)args->metadata_ptr,
metadata_buffer, args->metadata_size);
if (r != 0)
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Initialize dsc_caps to 0
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (12 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Let driver decide buffer size at AMDKFD_IOC_GET_DMABUF_INFO ioctl Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] drm/bridge: tc358768: Set pre_enable_prev_first for reverse order Sasha Levin
` (52 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: Ivan Lipski, Harry Wentland, Alex Deucher, Sasha Levin,
sunpeng.li, christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Ivan Lipski <ivan.lipski@amd.com>
[ Upstream commit d18ecfee5187e3b2dbff7e67dda8b2f54ff5231c ]
[Why&How]
If we don't do that we make DSC decisions based on random
inputs, which might result in disallowing DSC when the
monitor and HW support it.
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Ivan Lipski <ivan.lipski@amd.com>
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The background searches finished and matched the earlier analysis:
- **Fix not in this tree:** `git log` for `Initialize dsc_caps` /
`dsc_caps = {0}` returned nothing — the patch isn’t in v6.18.44 yet,
but the bug is still there (`struct dsc_dec_dpcd_caps dsc_caps;` at
line 7168).
- **b4 dig:** No result, since the commit isn’t present locally to look
up.
**Verdict stands: YES** for backport to this 6.18.y tree — one-line
zero-init fix for uninitialized DSC caps used during mode setup on
AMDGPU.
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index 4f53297786623..8445b13549c17 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -7165,7 +7165,7 @@ create_stream_for_sink(struct drm_connector *connector,
int preferred_refresh = 0;
enum color_transfer_func tf = TRANSFER_FUNC_UNKNOWN;
#if defined(CONFIG_DRM_AMD_DC_FP)
- struct dsc_dec_dpcd_caps dsc_caps;
+ struct dsc_dec_dpcd_caps dsc_caps = {0};
#endif
struct dc_link *link = NULL;
struct dc_sink *sink = NULL;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.1] drm/bridge: tc358768: Set pre_enable_prev_first for reverse order
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (13 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Initialize dsc_caps to 0 Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm/xe: Fix null pointer dereference in devcoredump cleanup Sasha Levin
` (51 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: Parth Pancholi, João Paulo Gonçalves, Francesco Dolcini,
Tomi Valkeinen, Sasha Levin, andrzej.hajda, neil.armstrong, rfoss,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-kernel
From: Parth Pancholi <parth.pancholi@toradex.com>
[ Upstream commit 6b2bb5438bcfd7bad868665cd2aed1caf9ba3f2b ]
Enable the pre_enable_prev_first flag on the tc358768 bridge to reverse
the pre-enable order, calling bridge pre_enable before panel prepare.
This ensures the bridge is ready before sending panel init commands in
the case of panels sending init commands in panel prepare function.
Signed-off-by: Parth Pancholi <parth.pancholi@toradex.com>
Tested-by: João Paulo Gonçalves <joao.goncalves@toradex.com> # Toradex Verdin AM62
Reviewed-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Link: https://patch.msgid.link/20260311-tc358768-v2-2-e75a99131bd5@ideasonboard.com
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/bridge: tc358768: Set
pre_enable_prev_first for reverse order`
**Local tree:** `v6.18.43-1-gc7f0dac02d232` (kernel 6.18.43)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/bridge: tc358768]` `[Set]` — bridge initialization
ordering fix for the Toshiba TC358768 DSI-to-RGB bridge.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Parth Pancholi, Tomi Valkeinen (ignore pipeline
SOB)
- **Tested-by:** João Paulo Gonçalves (Toradex Verdin AM62)
- **Reviewed-by:** Francesco Dolcini (Toradex)
- **Link:** https://patch.msgid.link/20260311-tc358768-v2-2-
e75a99131bd5@ideasonboard.com
- No Fixes:, Reported-by:, Cc: stable@vger.kernel.org
- Notable: hardware-tested on real Toradex platform; reviewed by vendor
engineer
### Step 1.3: Body analysis
**Record:**
- **Bug:** Default bridge `pre_enable` order runs panel `prepare` before
the tc358768 bridge is initialized.
- **Symptom:** Panels that send DSI init commands in `panel->prepare()`
fail because the bridge/host is not ready.
- **Root cause:** Missing `pre_enable_prev_first` flag to request
upstream bridge init first.
- **Version info:** Part of v2 7-patch series “Long command support”;
this patch is standalone (patch 2/7).
### Step 1.4: Hidden bug fix?
**Record:** Yes — despite “Set” wording, this is a functional display-
init bug fix, not cleanup. Same class as `prepare_prev_first` panel
fixes already in this stable tree.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/bridge/tc358768.c` (+2 lines)
- **Function:** `tc358768_dsi_host_attach()`
- **Scope:** Single-file, surgical one-liner
### Step 2.2: Code flow change
**Record:**
- **Before:** Panel bridge created via `drm_panel_bridge_add_typed()`
with default ordering (`pre_enable_prev_first` only if panel sets
`prepare_prev_first`).
- **After:** Panel bridge unconditionally gets
`bridge->pre_enable_prev_first = true`, forcing tc358768
`atomic_pre_enable` before `drm_panel_prepare()`.
- **Path:** Display modeset / atomic commit enable sequence.
### Step 2.3: Bug mechanism
**Record:** **Logic / correctness fix — DSI initialization ordering.**
- `panel_bridge_atomic_pre_enable()` calls `drm_panel_prepare()`.
- `tc358768_bridge_atomic_pre_enable()` initializes PLL, hardware, DSI
TX path.
- Without the flag, panel init commands can be sent before the bridge is
ready → display fails to initialize.
- Setting `pre_enable_prev_first` on the downstream panel bridge
triggers `drm_atomic_bridge_chain_pre_enable()` to call the previous
(tc358768) bridge first.
### Step 2.4: Fix quality
**Record:**
- Obviously correct; matches sibling drivers (`tc358762`, `tc358764`,
`tc358775`, `dw-mipi-dsi`).
- Minimal, no API changes.
- Regression risk: very low — only affects enable ordering for
tc358768+panel chains.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `tc358768_dsi_host_attach()` panel-bridge block dates to
initial driver import in this tree (`^5d324e5159d9e`). Driver copyright
2020 (Peter Ujfalusi). Bug present since driver lacked this flag.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag.
### Step 3.3: Related file history
**Record:**
- `pre_enable_prev_first` infrastructure present in
`include/drm/drm_bridge.h` and `drivers/gpu/drm/drm_bridge.c`.
- Revert `c12df0f5ca410` (“Revert drm/atomic-helper: Re-order bridge
chain pre-enable”) by Tomi Valkeinen — global ordering change caused
regressions; per-bridge flags are the correct targeted approach.
- This tree already has stable backports for the same bug class:
- `09fe52c728e09` — `drm/panel: sony-td4353-jdi: Enable
prepare_prev_first`
- `31b2d7be7540c` — `drm/panel: sharp-ls043t1le01: make use of
prepare_prev_first`
### Step 3.4: Author context
**Record:** Parth Pancholi (Toradex), Tomi Valkeinen (Ideas On Board,
DRM bridge maintainer). Tomi also authored the global ordering revert.
### Step 3.5: Dependencies
**Record:** Patch 2/7 of “Long command support” series, but
**standalone** — no dependency on patches 1, 3–7. Only adds one flag
assignment.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- Lore/patch URL from commit message blocked by bot protection.
- Retrieved from freedesktop dri-devel archive:
https://lists.freedesktop.org/archives/dri-
devel/2025-October/531685.html
- v1 (Oct 2025) and v2 (Mar 2026) versions; committed version matches v2
with Tested-by/Reviewed-by.
- Part of series: https://patchew.org/linux/20260311-tc358768-v2-0-
e75a99131bd5@ideasonboard.com/
### Step 4.2: Reviewers
**Record:** CC'd to dri-devel, DRM maintainers (from lore metadata).
Reviewed-by Francesco Dolcini; Tested-by on Toradex Verdin AM62.
### Step 4.3: Bug report
**Record:** No syzbot/bugzilla. Hardware validation on Toradex Verdin
AM62. Failure mode: display does not initialize when panel sends DSI
commands in `prepare()`.
### Step 4.4: Series context
**Record:** 7-patch series for long DSI command support. This patch is
independent; other patches add features (long command TX, LP mode, etc.)
not required here.
### Step 4.5: Stable list
**Record:** No explicit stable nomination found in retrieved thread. Not
a negative signal per instructions.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `tc358768_dsi_host_attach()`,
`tc358768_bridge_atomic_pre_enable()`,
`panel_bridge_atomic_pre_enable()`,
`drm_atomic_bridge_chain_pre_enable()`.
### Step 5.2: Callers
**Record:**
- `tc358768_dsi_host_attach()` — DSI host attach during driver probe.
- Enable chain: atomic commit → `drm_atomic_bridge_chain_pre_enable()` →
bridge `pre_enable` callbacks.
- Reachable on every display modeset for tc358768-based systems.
### Step 5.3: Callees
**Record:** `drm_panel_bridge_add_typed()`, `drm_panel_prepare()` (via
panel bridge), tc358768 HW init in `atomic_pre_enable`.
### Step 5.4: Reachability
**Record:** Triggered on display enable for any system using
`CONFIG_DRM_TOSHIBA_TC358768` with a downstream panel. Common
embedded/industrial use (Toradex AM62).
### Step 5.5: Similar patterns
**Record:** Multiple bridges set `pre_enable_prev_first` (`tc358762`,
`tc358764`, `tc358775`, `dw-mipi-dsi`, `ti-sn65dsi83`). Many panels set
`prepare_prev_first`. Same bug class already backported to this tree for
individual panels.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Buggy code exists?
**Record:** **YES.** `drivers/gpu/drm/bridge/tc358768.c` lines 446–451
lack `pre_enable_prev_first`. Driver built via
`CONFIG_DRM_TOSHIBA_TC358768`.
### Step 6.2: Backport complications
**Record:** **Clean apply** — single line insertion after
`drm_panel_bridge_add_typed()` success path. No conflicts expected.
### Step 6.3: Related fixes already present?
**Record:** Same bug class fixed in this tree for specific panels
(`prepare_prev_first` on sony-td4353-jdi, sharp-ls043t1le01). This
tc358768 fix is the bridge-side equivalent and is **not** yet applied.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem
**Record:** `drivers/gpu/drm/bridge` — DRM display bridges.
**Criticality: PERIPHERAL** (driver-specific), but affects production
embedded platforms.
### Step 7.2: Activity
**Record:** Active DRM bridge subsystem; recent bridge-chain ordering
work and targeted per-bridge flag fixes.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of TC358768-based boards (e.g., Toradex Verdin AM62)
with panels that initialize over DSI during `prepare()`. Config-
specific: `CONFIG_DRM_TOSHIBA_TC358768`.
### Step 8.2: Trigger conditions
**Record:** Display modeset/enable. Common operation (every boot /
resume). Not a security issue; not unprivileged attack surface.
### Step 8.3: Failure severity
**Record:** **Display fails to initialize** (blank/non-functional
display). **Severity: MEDIUM-HIGH** for affected hardware — system runs
but primary output is broken. Not kernel crash/oops/corruption.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for affected embedded users; restores display on
tested hardware.
- **Risk:** VERY LOW — one-line flag set, established pattern, reviewed
and tested.
- **Ratio:** Strong benefit, minimal risk.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real, reproducible hardware bug (Toradex tested)
- One-line, obviously correct fix following established kernel pattern
- Same bug class already backported to **this** 6.18.y tree (panel
`prepare_prev_first` fixes)
- Infrastructure (`pre_enable_prev_first`) present in tree
- Reviewed and tested
- Standalone — no series dependencies
- Global bridge reorder was reverted; per-bridge flags are the intended
fix mechanism
**AGAINST backport:**
- Not a crash, security, or data-corruption bug
- Affects specific hardware configuration only
- Part of a larger feature series (though this hunk is independent)
**Unresolved:** b4 dig on commit hash did not match this patch (tree
HEAD is unrelated). Lore primary URL blocked; used freedesktop archive
instead.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — one line, Tested-by +
Reviewed-by
2. Fixes a real bug? **PASS** — display init ordering on real hardware
3. Important issue? **PASS** — non-functional display on production
embedded platform (MEDIUM-HIGH; same class as already-accepted stable
panel fixes)
4. Small and contained? **PASS** — 1 line, 1 file
5. No new features/APIs? **PASS** — uses existing
`pre_enable_prev_first`
6. Can apply to local tree? **PASS** — driver and API present, clean
apply
### Step 9.3: Exception categories
**Record:** Hardware workaround / bridge initialization quirk — same
category as existing `prepare_prev_first` stable backports in this tree.
### Step 9.4: Decision rationale
This fix addresses the same DSI host-before-panel-init ordering problem
that stable maintainers already accepted in this 6.18.y tree for
individual panel drivers. The tc358768 change applies the fix at the
bridge level for all attached panels, is minimal and tested, and carries
negligible regression risk. For users of TC358768 hardware on stable
kernels, display initialization is broken without it.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from provided commit message
- **[Phase 2]** Diff: +1 functional line in `tc358768_dsi_host_attach()`
after `drm_panel_bridge_add_typed()`
- **[Phase 3]** `git describe HEAD`: v6.18.43; `make kernelversion`:
6.18.43
- **[Phase 3]** `git blame -L 446,451
drivers/gpu/drm/bridge/tc358768.c`: buggy code present, no
`pre_enable_prev_first`
- **[Phase 3]** `grep pre_enable_prev_first`: infrastructure in
`drm_bridge.h`, `drm_bridge.c`; siblings set flag
- **[Phase 3]** `git show c12df0f5ca410`: global bridge reorder
reverted; per-bridge flags preferred
- **[Phase 3]** `git show 09fe52c728e09`, `31b2d7be7540c`: same bug
class already backported to this tree by Greg KH
- **[Phase 4]** WebFetch lore URL: blocked (Anubis)
- **[Phase 4]** Retrieved patch from
https://lists.freedesktop.org/archives/dri-
devel/2025-October/531685.html
- **[Phase 4]** Patchew series context: patch 2/7, standalone
- **[Phase 4]** b4 dig -c HEAD: did not find this patch (matched
unrelated series)
- **[Phase 5]** Read `panel_bridge_atomic_pre_enable()`: calls
`drm_panel_prepare()`
- **[Phase 5]** Read `drm_atomic_bridge_chain_pre_enable()`:
`pre_enable_prev_first` reverses order
- **[Phase 5]** Read `tc358768_bridge_atomic_pre_enable()`: HW/DSI init
- **[Phase 6]** `grep pre_enable_prev_first
drivers/gpu/drm/bridge/tc358768.c`: no match — fix not present
- **[Phase 6]** `grep tc358768 Makefile`: `CONFIG_DRM_TOSHIBA_TC358768`
exists
- **[Phase 8]** Failure mode: display init failure, not kernel crash
**YES**The background `git log -S "tc358768"` search finished. It didn’t
turn up a clean “add tc358768 driver” commit — only merge commits like
`5d324e5159d9e` — which fits this tree’s shallow/squashed history. The
driver is still present in 6.18.43 (`drivers/gpu/drm/bridge/tc358768.c`,
copyright 2020), and the missing `pre_enable_prev_first` line is the
real issue.
**Backport verdict for this 6.18.y tree: YES** — same DSI init-ordering
bug class already accepted here via panel `prepare_prev_first` fixes;
this is a one-line, tested bridge-side fix with negligible risk.
drivers/gpu/drm/bridge/tc358768.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/bridge/tc358768.c b/drivers/gpu/drm/bridge/tc358768.c
index fbdc44e162293..b7a9d3fca07ea 100644
--- a/drivers/gpu/drm/bridge/tc358768.c
+++ b/drivers/gpu/drm/bridge/tc358768.c
@@ -448,6 +448,8 @@ static int tc358768_dsi_host_attach(struct mipi_dsi_host *host,
DRM_MODE_CONNECTOR_DSI);
if (IS_ERR(bridge))
return PTR_ERR(bridge);
+
+ bridge->pre_enable_prev_first = true;
}
priv->output.dev = dev;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/xe: Fix null pointer dereference in devcoredump cleanup
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (14 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] drm/bridge: tc358768: Set pre_enable_prev_first for reverse order Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 14:54 ` sashiko-bot
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/imagination: Populate FW common context ID before passing to the FW Sasha Levin
` (50 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: Zhanjun Dong, Vinay Belgaumkar, Sasha Levin, matthew.brost,
thomas.hellstrom, rodrigo.vivi, airlied, simona, intel-xe,
dri-devel, linux-kernel
From: Zhanjun Dong <zhanjun.dong@intel.com>
[ Upstream commit 12ef528d78adc8ea4e7e3db594f3bcac327e79fa ]
In xe_devcoredump_snapshot_free(), ss->gt may be NULL when the snapshot
was never fully populated (e.g., when cleanup is triggered without a
prior capture). Guard the xe_guc_capture_put_matched_nodes() call with
IS_ERR_OR_NULL() to prevent a null dereference.
In xe_devcoredump_free(), the deferred work is only queued when a
coredump is captured, so guard cancel_work_sync() with a check on
coredump->captured.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Link: https://patch.msgid.link/20260326181017.2060209-1-zhanjun.dong@intel.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The follow-up check completed: `git log` found no commits matching the
fix (`IS_ERR_OR_NULL(ss->gt)` or "devcoredump cleanup"), so it isn’t in
this tree yet. That matches the earlier read of `xe_devcoredump.c` — the
unconditional dereference and `cancel_work_sync()` are still there.
Backport recommendation remains **YES** for v6.18.43.
drivers/gpu/drm/xe/xe_devcoredump.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 203e3038cc817..26a294f79e79f 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -150,7 +150,8 @@ static void xe_devcoredump_snapshot_free(struct xe_devcoredump_snapshot *ss)
xe_guc_ct_snapshot_free(ss->guc.ct);
ss->guc.ct = NULL;
- xe_guc_capture_put_matched_nodes(&ss->gt->uc.guc);
+ if (!IS_ERR_OR_NULL(ss->gt))
+ xe_guc_capture_put_matched_nodes(&ss->gt->uc.guc);
ss->matched_node = NULL;
xe_guc_exec_queue_snapshot_free(ss->ge);
@@ -255,7 +256,8 @@ static void xe_devcoredump_free(void *data)
if (!data || !coredump_to_xe(coredump))
return;
- cancel_work_sync(&coredump->snapshot.work);
+ if (coredump->captured)
+ cancel_work_sync(&coredump->snapshot.work);
mutex_lock(&coredump->lock);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/imagination: Populate FW common context ID before passing to the FW
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (15 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm/xe: Fix null pointer dereference in devcoredump cleanup Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm: renesas: rzg2l_mipi_dsi: Fix deassert/assert of CMN_RSTB signal Sasha Levin
` (49 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: Brajesh Gupta, Matt Coster, Sasha Levin, alessio.belle,
luigi.santivetti, maarten.lankhorst, mripard, tzimmermann,
airlied, simona, imagination, dri-devel, linux-kernel
From: Brajesh Gupta <brajesh.gupta@imgtec.com>
[ Upstream commit de1e8a590f4ed48b6b7902fc3aafc878262f8278 ]
Initialise the context ID for the FW common context correctly by moving
the context allocation earlier.
Signed-off-by: Brajesh Gupta <brajesh.gupta@imgtec.com>
Reviewed-by: Matt Coster <matt.coster@imgtec.com>
Link: https://patch.msgid.link/20260519-b4-context_reset-v2-1-931018a7131d@imgtec.com
Signed-off-by: Matt Coster <matt.coster@imgtec.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/imagination — Populate FW common context
ID
**Local tree:** v6.18.44 (`make kernelversion` → 6.18.44)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/imagination]` `[Populate]` — Initialise/populate the
firmware common context’s `server_common_context_id` before firmware
structures are built and copied to the GPU.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Brajesh Gupta `<brajesh.gupta@imgtec.com>` (author)
- **Reviewed-by:** Matt Coster `<matt.coster@imgtec.com>`
- **Link:** https://patch.msgid.link/20260519-b4-context_reset-v2-1-
931018a7131d@imgtec.com (suggests patch 1 of a “context_reset” v2
series)
- **Signed-off-by:** Matt Coster (maintainer SOB)
- No Fixes:, Reported-by:, Tested-by:, Cc: stable, syzbot, or Acked-by
tags
### Step 1.3: Body analysis
**Record:**
- **Bug:** `ctx->ctx_id` is not allocated before firmware common-context
structures are initialised.
- **Symptom:** `server_common_context_id` written into the FW context
image is 0 (uninitialised) instead of the real kernel-assigned ID.
- **Root cause:** `xa_alloc(&pvr_dev->ctx_ids, …)` happens after
`pvr_context_create_queues()` / `pvr_fw_object_create()`, but
`init_fw_context()` in the queue path already does
`cctx_fw->server_common_context_id = ctx->ctx_id`.
- **Fix approach:** Move `ctx_id` allocation earlier; add
`err_free_ctx_id` cleanup; simplify the `ctx_handles` allocation
failure path.
### Step 1.4: Hidden bug fix?
**Record:** Yes — despite “Populate” wording, this is a real
initialization-order bug: wrong ID is baked into firmware context data
for every context created.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/imagination/pvr_context.c` only
- **Scope:** ~+10 / -8 lines (small, single-file)
- **Function modified:** `pvr_context_create()`
- **Classification:** Surgical initialization-order fix in one function
### Step 2.2: Code flow change
**Record:**
| Hunk | Before | After |
|------|--------|-------|
| Allocation order | `create_queues` → `init_fw_objs` →
`fw_object_create` → `xa_alloc(ctx_id)` | `xa_alloc(ctx_id)` →
`create_queues` → `init_fw_objs` → `fw_object_create` |
| `init_fw_context()` | `ctx->ctx_id == 0` (from `kzalloc`) |
`ctx->ctx_id` is the real xarray ID |
| `ctx_fw_data_init` memcpy | Copies FW image with
`server_common_context_id = 0` | Copies FW image with correct ID |
| Error path | `pvr_fw_object_create` failure → `err_free_ctx_data`
(skipped queue teardown) | → `err_destroy_queues` (correct) |
| New label | N/A | `err_free_ctx_id` with `xa_erase()` when creation
fails before userspace handle exists |
| `ctx_handles` failure | Special `pvr_context_put()` return | Normal
`goto err_destroy_fw_obj` |
### Step 2.3: Bug mechanism
**Record:** **Initialization / logic correctness bug.** Category:
uninitialized/wrong field passed to firmware.
Execution path (verified in tree):
1. `pvr_context_create()` → `kzalloc()` → `ctx->ctx_id = 0`
2. `pvr_context_create_queues()` → `pvr_queue_create()` →
`init_fw_context()` sets `cctx_fw->server_common_context_id =
ctx->ctx_id` (still 0) into `ctx->data`
3. `pvr_fw_object_create()` → `ctx_fw_data_init()` memcpy’s `ctx->data`
to device FW memory — wrong ID permanently stored
4. Only then `xa_alloc(&pvr_dev->ctx_ids, …)` assigns real ID (≥1 with
`XA_FLAGS_ALLOC1`)
### Step 2.4: Fix quality
**Record:** Obviously correct — allocate ID before use. Minimal reorder
plus proper `xa_erase` on early failure. Low regression risk; error-path
cleanup is improved (fw_object failure now tears down queues).
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- Buggy ordering from `d2d79d29bb98a` (Nov 2023, “Implement context
creation/destruction ioctls”)
- `init_fw_context()` writing `ctx->ctx_id` from `eaf01ee5ba28b` (Nov
2023, “Implement job submission and scheduling”)
- Both commits are ancestors of HEAD — bug present since job-submission
support landed
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag in commit message.
### Step 3.3: Related file history
**Record:** Recent `pvr_context.c` changes in this tree:
- `c45fafa69fe3f` — fix `pvr_vm_context_lookup()` error checking (minor
context around patch hunks)
- `c88fdbf3da26e` — fix double `drm_sched_entity_fini()`
- `b0ef514bc6bbd` — per-file context list
- Standalone fix; not marked as part of a multi-patch dependency in the
commit itself
### Step 3.4: Author context
**Record:** Brajesh Gupta has prior imagination fixes in-tree
(`c88fdbf3da26e`, `902fd1026ca42`). Reviewed by Imagination colleague
Matt Coster.
### Step 3.5: Dependencies
**Record:** No prerequisite commits required. Patch only reorders
existing calls in `pvr_context_create()`. Link suggests it’s patch 1 of
a context-reset series, but the ID bug exists independently in current
code.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:** `b4 dig -c HEAD` did not match this commit (not in tree).
Link points to `context_reset-v2-1`. Lore/patch.msgid.link blocked by
bot protection — **could not read thread content**.
### Step 4.2: Reviewers
**Record:** UNVERIFIED via b4 -w (commit not in tree). Commit lists
Reviewed-by: Matt Coster (Imagination).
### Step 4.3: Bug reports
**Record:** No Reported-by or bugzilla/syzbot links. No user crash
reports in commit message.
### Step 4.4: Related series
**Record:** Link name implies a context-reset v2 series.
`pvr_context_lookup_id()` exists in `pvr_context.h` but has **no
callers** in this tree yet — context-reset host handling appears not
merged. The ID bug still affects FW context creation today.
### Step 4.5: Stable list history
**Record:** UNVERIFIED — lore.kernel.org inaccessible.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `pvr_context_create()`, `pvr_context_create_queues()`,
`init_fw_context()` (in `pvr_queue.c`), `ctx_fw_data_init()`
### Step 5.2: Callers
**Record:** `pvr_context_create()` called from `pvr_drv.c` via
`DRM_IOCTL_PVR_CREATE_CONTEXT` — userspace-reachable when
`CONFIG_DRM_POWERVR` is enabled.
### Step 5.3: Callees
**Record:** `xa_alloc()` (with `XA_FLAGS_ALLOC1`, IDs start at 1),
`pvr_context_create_queues()` → `init_fw_context()`,
`pvr_fw_object_create()` → `ctx_fw_data_init()` memcpy.
### Step 5.4: Reachability
**Record:** Every GPU context creation from userspace hits this path.
Trigger: normal driver use on PowerVR hardware (ARM64/RISC-V).
### Step 5.5: Similar patterns
**Record:** `server_common_context_id` also appears in
`rogue_fwif_fwccb_cmd_context_reset_data` (FW→host notifications).
`pvr_context_lookup_id()` is the intended host lookup helper but is
unused in this tree so far.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE (6.18.44)
### Step 6.1: Buggy code present?
**Record:** **YES.** Current `pvr_context.c` lines 323–336 still
allocate `ctx_id` after queue/FW init:
```323:336:drivers/gpu/drm/imagination/pvr_context.c
err = pvr_context_create_queues(ctx, args, ctx->data);
// ...
err = pvr_fw_object_create(pvr_dev, ctx_size,
PVR_BO_FW_FLAGS_DEVICE_UNCACHED,
ctx_fw_data_init, ctx, &ctx->fw_obj);
// ...
err = xa_alloc(&pvr_dev->ctx_ids, &ctx->ctx_id, ctx,
xa_limit_32b, GFP_KERNEL);
```
`init_fw_context()` at line 1063 still reads `ctx->ctx_id` during queue
creation.
### Step 6.2: Backport complications
**Record:** Expected **clean apply** with at most trivial context drift
(`c45fafa` changed `pvr_vm_context_lookup` check from `IS_ERR` to
`!ctx->vm_ctx` — outside the reordered block).
### Step 6.3: Related fixes already present?
**Record:** No duplicate fix found. `git log --grep` for
subject/context-reset in imagination returned nothing relevant.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem / criticality
**Record:** `drivers/gpu/drm/imagination` — GPU DRM driver.
**IMPORTANT** for PowerVR users; **PERIPHERAL** globally (niche
hardware: ARM64/RISC-V, `CONFIG_DRM_POWERVR`).
### Step 7.2: Activity
**Record:** Actively maintained — multiple imagination fixes in recent
6.18 history.
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who is affected
**Record:** Users of Imagination PowerVR GPUs with the in-tree driver.
Config-dependent (`CONFIG_DRM_POWERVR`).
### Step 8.2: Trigger conditions
**Record:** Every successful `DRM_IOCTL_PVR_CREATE_CONTEXT` call. Common
during normal GPU use; requires DRM device access (typically equivalent
to GPU client privileges).
### Step 8.3: Failure mode / severity
**Record:**
- **Failure mode:** All FW common contexts get `server_common_context_id
= 0` while kernel tracks IDs ≥1. Firmware cannot correctly map FW
contexts back to host contexts. With multiple contexts, IDs collide at
0 in firmware.
- **Severity:** **HIGH** for correctness of FW-host communication;
**MEDIUM-HIGH** for user impact — can break context identification on
GPU faults/resets and potentially cause mis-targeted recovery, hangs,
or failed job recovery. Not a guaranteed boot-time crash, but a
systematic data error on a hot path.
### Step 8.4: Risk vs benefit
**Record:**
- **Benefit:** Correct firmware metadata for every context; enables
reliable FW-host context correlation; prerequisite for context-reset
handling.
- **Risk:** Very low — pure reorder + cleanup, no API changes.
- **Ratio:** Favorable for backport.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real, verifiable initialization-order bug present since 2023
- Buggy code confirmed in v6.18.44
- Every context creation passes wrong ID to firmware
- Small, obviously correct, single-file fix
- Reviewed by driver developer
- Improves error-path cleanup
- Userspace-reachable via standard DRM ioctl
**AGAINST backport:**
- No syzbot/user crash reports in commit message
- Driver is niche (limited hardware base)
- Context-reset consumer code not yet in tree (mitigates immediate crash
evidence, not the underlying wrong FW data)
- Lore review thread not accessible for stable nomination check
**Unresolved:** Full mailing-list review discussion; whether users have
filed external bug reports.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — reorder is self-evident;
Reviewed-by present; no Tested-by
2. Fixes a real bug affecting users? **PASS** — wrong FW context ID on
every context create
3. Important issue? **PASS** — GPU driver correctness / fault-recovery
integrity (HIGH correctness, MEDIUM-HIGH user impact)
4. Small and contained? **PASS** — one file, ~20 lines
5. No new features or APIs? **PASS**
6. Can apply to local tree? **PASS** — bug and code present; clean apply
expected
### Step 9.3: Exception categories
**Record:** None (not a quirk/DT/build/doc-only change).
### Step 9.4: Decision rationale
This commit fixes a longstanding ordering bug: `init_fw_context()`
stamps `server_common_context_id` from `ctx->ctx_id` before `xa_alloc()`
runs, so firmware always receives 0 (invalid with `XA_FLAGS_ALLOC1`)
instead of the real ID. That wrong value is permanently copied into the
FW object. For PowerVR users on 6.18.y, this is a real correctness fix
with minimal risk and clear technical merit under stable rules.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from user-provided commit
message
- **[Phase 2]** Diff analysis: reorder `xa_alloc(ctx_id)` before
`pvr_context_create_queues()`; new `err_free_ctx_id`; error-path fix
confirmed
- **[Phase 3]** `git describe HEAD` → v6.18.44; `make kernelversion` →
6.18.44
- **[Phase 3]** `git blame` on `pvr_context.c:323-340` → ordering from
`d2d79d29bb98a`/`eaf01ee5ba28b`
- **[Phase 3]** `git blame` on `pvr_queue.c:1063` →
`server_common_context_id = ctx->ctx_id` since `eaf01ee5ba28b`
- **[Phase 3]** `git merge-base --is-ancestor eaf01ee5ba28b HEAD` →
buggy code in tree
- **[Phase 3]** `git log --oneline -20 --
drivers/gpu/drm/imagination/pvr_context.c` → recent related fixes
listed
- **[Phase 4]** `b4 dig -c HEAD` → no match (commit not in tree)
- **[Phase 4]** WebFetch lore/patch.msgid.link → blocked (bot
protection); thread content UNVERIFIED
- **[Phase 4]** No matching `.mbx` in workspace for this patch
- **[Phase 5]** Read `pvr_context.c`, `pvr_queue.c` `init_fw_context()`
— confirmed write-before-alloc
- **[Phase 5]** `grep pvr_context_lookup_id` → only definition in
header, no callers
- **[Phase 5]** `grep server_common_context_id` → used in FW structures
and `init_fw_context()`
- **[Phase 5]** `pvr_drv.c` → `DRM_IOCTL_PVR_CREATE_CONTEXT` calls
`pvr_context_create()`
- **[Phase 6]** Read current `pvr_context.c:323-336` — buggy order
confirmed
- **[Phase 6]** `git merge-base --is-ancestor 4babef0708656 HEAD` →
imagination driver in tree
- **[Phase 6]** `XA_FLAGS_ALLOC1` in `pvr_context_device_init()` — IDs
start at 1, 0 is invalid
- **[Phase 7]** `Kconfig DRM_POWERVR` — ARM64/RISC-V only
- **[Phase 8]** Failure mode derived from verified code flow, not
speculation
**YES**The background searches finished:
- **Commit search** (`git log --grep='Populate FW common context'` /
`context ID`): no match in this tree — the patch isn’t applied here
yet, which matches the earlier finding that v6.18.44 still has the
buggy allocation order.
- **Author history** (`Brajesh Gupta` in
`drivers/gpu/drm/imagination/`): two prior commits — `c88fdbf3da26e`
(fix double `drm_sched_entity_fini()`) and `902fd1026ca42` (wait for
FW trace update completion).
Nothing in those results changes the analysis: this is a real
initialization-order bug in `pvr_context_create()`, the fix is small and
low-risk, and it should be backported to this 6.18.y tree.
**YES**
drivers/gpu/drm/imagination/pvr_context.c | 30 ++++++++++++-----------
1 file changed, 16 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/imagination/pvr_context.c b/drivers/gpu/drm/imagination/pvr_context.c
index d9066a4fefcf3..5befaed562ac6 100644
--- a/drivers/gpu/drm/imagination/pvr_context.c
+++ b/drivers/gpu/drm/imagination/pvr_context.c
@@ -320,10 +320,14 @@ int pvr_context_create(struct pvr_file *pvr_file, struct drm_pvr_ioctl_create_co
goto err_put_vm;
}
- err = pvr_context_create_queues(ctx, args, ctx->data);
+ err = xa_alloc(&pvr_dev->ctx_ids, &ctx->ctx_id, ctx, xa_limit_32b, GFP_KERNEL);
if (err)
goto err_free_ctx_data;
+ err = pvr_context_create_queues(ctx, args, ctx->data);
+ if (err)
+ goto err_free_ctx_id;
+
err = init_fw_objs(ctx, args, ctx->data);
if (err)
goto err_destroy_queues;
@@ -331,23 +335,12 @@ int pvr_context_create(struct pvr_file *pvr_file, struct drm_pvr_ioctl_create_co
err = pvr_fw_object_create(pvr_dev, ctx_size, PVR_BO_FW_FLAGS_DEVICE_UNCACHED,
ctx_fw_data_init, ctx, &ctx->fw_obj);
if (err)
- goto err_free_ctx_data;
+ goto err_destroy_queues;
- err = xa_alloc(&pvr_dev->ctx_ids, &ctx->ctx_id, ctx, xa_limit_32b, GFP_KERNEL);
+ err = xa_alloc(&pvr_file->ctx_handles, &args->handle, ctx, xa_limit_32b, GFP_KERNEL);
if (err)
goto err_destroy_fw_obj;
- err = xa_alloc(&pvr_file->ctx_handles, &args->handle, ctx, xa_limit_32b, GFP_KERNEL);
- if (err) {
- /*
- * It's possible that another thread could have taken a reference on the context at
- * this point as it is in the ctx_ids xarray. Therefore instead of directly
- * destroying the context, drop a reference instead.
- */
- pvr_context_put(ctx);
- return err;
- }
-
spin_lock(&pvr_dev->ctx_list_lock);
list_add_tail(&ctx->file_link, &pvr_file->contexts);
spin_unlock(&pvr_dev->ctx_list_lock);
@@ -360,6 +353,15 @@ int pvr_context_create(struct pvr_file *pvr_file, struct drm_pvr_ioctl_create_co
err_destroy_queues:
pvr_context_destroy_queues(ctx, true);
+err_free_ctx_id:
+ /*
+ * Ctx_id is not exposed to userspace and not visible yet within
+ * the kernel/FW, plus a matching context handle (exposed to userspace)
+ * hasn't been allocated yet, so it is safe to remove ctx_id
+ * from the ctx_ids xarray.
+ */
+ xa_erase(&pvr_dev->ctx_ids, ctx->ctx_id);
+
err_free_ctx_data:
kfree(ctx->data);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm: renesas: rzg2l_mipi_dsi: Fix deassert/assert of CMN_RSTB signal
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (16 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/imagination: Populate FW common context ID before passing to the FW Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/amdkfd: Properly acquire queue buffers in CRIU restore Sasha Levin
` (48 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: Biju Das, Tommaso Merciai, Sasha Levin, maarten.lankhorst,
mripard, tzimmermann, airlied, simona, dri-devel,
linux-renesas-soc, linux-kernel
From: Biju Das <biju.das.jz@bp.renesas.com>
[ Upstream commit 8065890f5cda3f8a503f3b9d326aab0e9cca39e7 ]
The RZ/G2L hardware manual (Rev. 1.50, May 2025), Section 34.4.2.1,
requires deasserting the CMN_RSTB signal after setting the Link registers.
Move the reset_control_deassert() call from rzg2l_mipi_dsi_dphy_init() to
rzg2l_mipi_dsi_startup(), placing it after the Link register writes. This
reset signal is optional for RZ/V2H SoCs, so add a NULL check. Drop the
unused ret variable from rzg2l_mipi_dsi_dphy_init().
The CMN_RSTB signal is not required for reading PHY registers in the
probe. Move reset_control_assert() from rzg2l_mipi_dsi_dphy_exit() to
rzg2l_mipi_dsi_stop(), placing it before the dphy_exit() call. Since this
reset signal is optional for RZ/V2H, the call is a no-op on that SoC.
Tested-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
Reviewed-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
Link: https://patch.msgid.link/20260330104450.128512-4-biju.das.jz@bp.renesas.com
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm: renesas: rzg2l_mipi_dsi: Fix
deassert/assert of CMN_RSTB signal`
**Local tree:** Linux **6.18.43** (`v6.18.43`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
- **Record:** `[drm: renesas: rzg2l_mipi_dsi]` **`Fix`** — correct
CMN_RSTB reset deassert/assert timing per RZ/G2L hardware manual.
### Step 1.2: Tags
- **Fixes:** — none
- **Reported-by:** — none
- **Tested-by:** Tommaso Merciai `<tommaso.merciai.xr@bp.renesas.com>`
- **Reviewed-by:** Tommaso Merciai `<tommaso.merciai.xr@bp.renesas.com>`
- **Link:** https://patch.msgid.link/20260330104450.128512-4-
biju.das.jz@bp.renesas.com
- **Cc: stable:** — not in the committed message (patches 1–2 of the
same series did include it)
- **Signed-off-by:** Biju Das (ignore pipeline SOB markers)
**Record:** Hardware-tested and reviewed by a Renesas engineer; part of
v3 series “Improvements on RZ/G2L MIPI DSI driver”. No syzbot/crash
tags.
### Step 1.3: Body analysis
- **Bug:** CMN_RSTB is deasserted in `rzg2l_mipi_dsi_dphy_init()` before
Link-layer registers are programmed in `rzg2l_mipi_dsi_startup()`.
RZ/G2L HW manual §34.4.2.1 requires deassert **after** Link register
writes.
- **Symptom:** Incorrect DSI hardware bring-up sequence; display may
fail or behave unreliably on RZ/G2L SoCs with the `rst` reset line.
- **Root cause:** Reset sequencing does not match hardware manual
ordering.
- **Shutdown side:** `reset_control_assert()` moved from `dphy_exit()`
to `stop()` (before PHY teardown), since CMN_RSTB is not needed for
PHY register access during exit.
**Record:** Hardware-init correctness bug on Renesas RZ/G2L MIPI DSI;
optional on RZ/V2H (`rstc` may be NULL).
### Step 1.4: Hidden bug fix?
- **Record:** No — this is an explicit hardware-sequence fix, not
disguised cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
- **Files:** `drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c` — 9
insertions, 9 deletions
- **Functions:** `rzg2l_mipi_dsi_dphy_init()`,
`rzg2l_mipi_dsi_dphy_exit()`, `rzg2l_mipi_dsi_startup()`,
`rzg2l_mipi_dsi_stop()`
- **Scope:** Single-file, surgical fix
### Step 2.2: Code flow changes
| Hunk | Before | After |
|------|--------|-------|
| `dphy_init()` | Deassert CMN_RSTB + 1 ms sleep after PHY timing writes
| PHY timing only; no reset |
| `dphy_exit()` | Assert CMN_RSTB after PHY power-down | PHY power-down
only |
| `startup()` | Link register writes, then return | Link writes, then
deassert CMN_RSTB + 1 ms sleep (with NULL check) |
| `stop()` | Call `dphy_exit()` only | Assert CMN_RSTB, then
`dphy_exit()` |
**Record:** Normal display enable/disable path (`atomic_pre_enable` →
`startup`; `atomic_post_disable` → `stop`).
### Step 2.3: Bug mechanism
- **Category:** Hardware initialization sequence / workaround
- **Mechanism:** CMN_RSTB released before Link-layer configuration
completes, violating required reset sequence.
### Step 2.4: Fix quality
- **Record:** Minimal, matches manual, uses existing `err_phy` path on
deassert failure, NULL-safe for RZ/V2H. Low regression risk.
---
## PHASE 3: GIT HISTORY
### Step 3.1: Blame
- Buggy reset code introduced in `a4871e6201c46` (May 2025, Thomas
Zimmermann) when driver was added.
- Delay tuning in `aa8ad3e0d1fe9` (already in 6.18.43).
**Record:** Bug present since driver introduction; long-standing on
RZ/G2L platforms.
### Step 3.2: Fixes: tag
- **Record:** N/A — no Fixes: tag in this commit.
### Step 3.3: Related commits
- `300a2d970a535` — Move `set_display_timing()` — **present in tree**
- `aa8ad3e0d1fe9` — Increase reset deassertion delay — **present in
tree**
- `8065890f5cda3` — This CMN_RSTB fix — **NOT present in tree**
- `79f42487ed60d` — Kernel panic on reboot fix — **present in tree**
**Record:** Patch 3/3 of a v3 series; prerequisites 1/3 and 2/3 already
backported to 6.18.43.
### Step 3.4: Author context
- Biju Das is active Renesas maintainer for rz-du/MIPI DSI.
- **Record:** Subsystem maintainer fix with hardware validation.
### Step 3.5: Dependencies
- **Record:** Standalone relative to master-only RZ/V2H CPG work.
Depends on patches 1–2 of the same series, which are already in this
tree. Cherry-pick applies cleanly (verified).
---
## PHASE 4: MAILING LIST RESEARCH
### Step 4.1: Discussion
- **b4 dig -c 8065890f5cda3:** https://patch.msgid.link/20260330104450.1
28512-4-biju.das.jz@bp.renesas.com
- **Series:** v1 → v2 → v3; committed version is v3 3/3 (latest).
- **Review:** Tommaso Merciai — “Looks good to me”; Reviewed-by +
Tested-by on RZ/G3E.
- **NAKs:** None found.
- **Stable:** Patches 1/3 and 2/3 submitted with `Cc:
stable@vger.kernel.org`; patch 3/3 did not include it in the email,
but cover letter describes HW-manual compliance series.
### Step 4.2: Reviewers
- CC'd: dri-devel, linux-renesas-soc, DRM maintainers (Lankhorst,
Ripard, Zimmermann, Airlie, Vetter), Laurent Pinchart.
- **Record:** Appropriate subsystem review chain.
### Step 4.3: Bug report
- **Record:** No external bugzilla/syzbot report. Validation is hardware
testing on RZ/G3E per lore thread.
### Step 4.4: Series context
- Cover letter (v3 0/3): manual requires PHY timing + Link register
writes **before** CMN_RSTB deassert; v2→v3 merged patches 2+3 “to
avoid breakage.”
- **Record:** Incomplete without this patch if delay fix (patch 2) is
already applied.
### Step 4.5: Stable list
- Patches 1–2 explicitly CC'd stable and were backported to 6.18.y.
- **Record:** Strong implicit stable intent for the full series.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
- `rzg2l_mipi_dsi_dphy_init`, `rzg2l_mipi_dsi_startup`,
`rzg2l_mipi_dsi_stop`, `rzg2l_mipi_dsi_dphy_exit`
### Step 5.2: Callers
- `rzg2l_mipi_dsi_startup()` ← `rzg2l_mipi_dsi_atomic_pre_enable()`
(display enable)
- `rzg2l_mipi_dsi_stop()` ← `rzg2l_mipi_dsi_atomic_enable()` error path
and `rzg2l_mipi_dsi_atomic_post_disable()` (display disable)
**Record:** Standard DRM atomic display enable/disable path on every
MIPI DSI panel attach.
### Step 5.3: Callees
- `reset_control_deassert/assert`, `rzg2l_mipi_dsi_link_write`,
`rzg2l_mipi_dsi_phy_write`, `fsleep(1000)`
### Step 5.4: Reachability
- Triggered whenever a connected MIPI DSI panel is enabled on
`renesas,rzg2l-mipi-dsi` hardware.
- **Record:** Reachable from normal display operations; not obscure
debug path.
### Step 5.5: Similar patterns
- Same manual section addressed by already-backported delay fix
(`aa8ad3e0d1fe9`).
- **Record:** This completes the reset-sequence work started in that
commit.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE
### Step 6.1: Buggy code present?
- **Yes.** Lines 271–275 (`reset_control_deassert` in `dphy_init`) and
line 289 (`reset_control_assert` in `dphy_exit`) confirmed in 6.18.43.
### Step 6.2: Backport difficulty
- **Clean apply.** `git cherry-pick --no-commit 8065890f5cda3` succeeded
with auto-merge only.
### Step 6.3: Related fixes already present?
- Patches 1/3 and 2/3 of series present; this fix is the missing third
piece.
- **Record:** Tree is in intermediate state — delay fixed but ordering
still wrong.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem
- **drivers/gpu/drm/renesas/rz-du** — Renesas embedded display (MIPI
DSI)
- **Criticality:** PERIPHERAL (platform-specific), but display is
primary output on affected boards.
### Step 7.2: Activity
- Active development: panic fix, runtime PM, reset timing, display
timing ordering all landed recently in 6.18.y.
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who is affected
- Users of Renesas RZ/G2L SoCs with MIPI DSI displays
(`renesas,rzg2l-mipi-dsi`).
- RZ/V2H unaffected (optional `rst` line; `reset_control_*` is NULL-
safe).
### Step 8.2: Trigger conditions
- Every display enable/disable on RZ/G2L with CMN_RSTB wired.
- **Likelihood:** Common on affected hardware.
### Step 8.3: Failure mode
- Incorrect DSI bring-up per hardware manual → display may not work or
may be unreliable.
- **Severity:** HIGH for affected users (no display); not a kernel
crash/oops.
### Step 8.4: Risk-benefit
- **Benefit:** Correct hardware init; completes already-partially-
backported series; tested on RZ/G3E.
- **Risk:** Very low — 18-line reorder, no API changes, NULL-safe.
- **Ratio:** Strong benefit, minimal risk for RZ/G2L users.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real hardware-init bug per official RZ/G2L manual
- Small, surgical, tested on hardware
- Prerequisites already in 6.18.43
- Applies cleanly
- Completes v3 series whose first two patches were already backported
- Reviewed by Renesas engineer with Tested-by on RZ/G3E
- Same driver already receives stable fixes (panic on reboot, delay,
timing order)
**AGAINST backport:**
- Platform-specific peripheral driver
- No crash/security/data-corruption report
- Patch 3/3 lacks explicit `Cc: stable` in commit message
**Unresolved:** Exact failure modes on all RZ/G2L boards without the fix
(manual violation vs. observed “display broken”).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — manual compliance + Tested-
by on RZ/G3E
2. Fixes real bug? **PASS** — incorrect reset sequencing
3. Important issue? **PASS** — display failure on affected embedded
platforms
4. Small and contained? **PASS** — 1 file, ~18 lines
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — cherry-picks cleanly;
prerequisites present
### Step 9.3: Exception category
- **Hardware workaround / init quirk** — correcting reset sequence per
SoC manual.
### Step 9.4: Decision rationale
This tree (6.18.43) already carries patches 1/3 and 2/3 of the same
hardware-manual compliance series but not the final ordering fix.
Without it, CMN_RSTB is still deasserted before Link register
programming, which the RZ/G2L manual explicitly forbids. The fix is
small, tested, low-risk, and completes work stable maintainers already
started for this driver.
---
## Verification
- [Phase 1] `git describe HEAD` → v6.18.43; parsed commit message and
tags
- [Phase 2] Read current `rzg2l_mipi_dsi.c`; confirmed reset calls at
lines 271–275 and 289
- [Phase 3] `git blame` → reset code from `a4871e6201c46`; `git log --
drivers/.../rzg2l_mipi_dsi.c` → series history
- [Phase 3] `git merge-base --is-ancestor` → patches 1/3 and 2/3
present; 8065890f5cda3 absent
- [Phase 4] `b4 dig -c 8065890f5cda3` → lore URL found
- [Phase 4] `b4 dig -a` → v1/v2/v3 series; v3 is latest
- [Phase 4] `b4 dig -w` → DRM/Renesas maintainers CC'd
- [Phase 4] `/tmp/cmn_rstb_thread.mbox` → Reviewed-by, Tested-by on
RZ/G3E; no NAKs; cover letter describes manual requirements
- [Phase 5] `grep rzg2l_mipi_dsi_startup/stop` → called from
atomic_pre_enable/post_disable
- [Phase 5] `drivers/reset/core.c` →
`reset_control_assert/deassert(NULL)` returns 0 (no-op)
- [Phase 6] Buggy code confirmed in 6.18.43 tree
- [Phase 6] `git cherry-pick --no-commit 8065890f5cda3` → exit 0, auto-
merge only
- [Phase 8] Driver supports `renesas,rzg2l-mipi-dsi` compatible string
in local tree
**YES**
drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c b/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c
index 04a24ff9dde15..1c6f29c285b65 100644
--- a/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c
+++ b/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c
@@ -228,7 +228,6 @@ static int rzg2l_mipi_dsi_dphy_init(struct rzg2l_mipi_dsi *dsi,
u32 dphytim1;
u32 dphytim2;
u32 dphytim3;
- int ret;
/* All DSI global operation timings are set with recommended setting */
for (i = 0; i < ARRAY_SIZE(rzg2l_mipi_dsi_global_timings); ++i) {
@@ -268,12 +267,6 @@ static int rzg2l_mipi_dsi_dphy_init(struct rzg2l_mipi_dsi *dsi,
rzg2l_mipi_dsi_phy_write(dsi, DSIDPHYTIM2, dphytim2);
rzg2l_mipi_dsi_phy_write(dsi, DSIDPHYTIM3, dphytim3);
- ret = reset_control_deassert(dsi->rstc);
- if (ret < 0)
- return ret;
-
- fsleep(1000);
-
return 0;
}
@@ -285,8 +278,6 @@ static void rzg2l_mipi_dsi_dphy_exit(struct rzg2l_mipi_dsi *dsi)
dphyctrl0 &= ~(DSIDPHYCTRL0_EN_LDO1200 | DSIDPHYCTRL0_EN_BGR);
rzg2l_mipi_dsi_phy_write(dsi, DSIDPHYCTRL0, dphyctrl0);
-
- reset_control_assert(dsi->rstc);
}
static int rzg2l_dphy_conf_clks(struct rzg2l_mipi_dsi *dsi, unsigned long mode_freq,
@@ -393,6 +384,14 @@ static int rzg2l_mipi_dsi_startup(struct rzg2l_mipi_dsi *dsi,
dsisetr |= FIELD_PREP(DSISETR_MRPSZ, RZG2L_DCS_BUF_SIZE);
rzg2l_mipi_dsi_link_write(dsi, DSISETR, dsisetr);
+ if (dsi->rstc) {
+ ret = reset_control_deassert(dsi->rstc);
+ if (ret < 0)
+ goto err_phy;
+
+ fsleep(1000);
+ }
+
return 0;
err_phy:
@@ -404,6 +403,7 @@ static int rzg2l_mipi_dsi_startup(struct rzg2l_mipi_dsi *dsi,
static void rzg2l_mipi_dsi_stop(struct rzg2l_mipi_dsi *dsi)
{
+ reset_control_assert(dsi->rstc);
dsi->info->dphy_exit(dsi);
pm_runtime_put(dsi->dev);
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/amdkfd: Properly acquire queue buffers in CRIU restore
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (17 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm: renesas: rzg2l_mipi_dsi: Fix deassert/assert of CMN_RSTB signal Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 14:56 ` sashiko-bot
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: flush pending RCU callbacks on module unload Sasha Levin
` (47 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: David Francis, Kent Russell, Alex Deucher, Sasha Levin,
Felix.Kuehling, christian.koenig, airlied, simona, amd-gfx,
dri-devel, linux-kernel
From: David Francis <David.Francis@amd.com>
[ Upstream commit 20a5e7ffdfecddc34c60a6b4483f42acf3d8731d ]
When kfd_queue_acquire_buffers() was split off from
set_queue_properties_from_user(), set_queue_properties_from_criu()
was missed. Thus, set_queue_properties_from_criu() is not
filling out the buffer fields of queue_properties, which
can come up when subsequent code expects them to be non-null.
Add the proper call to kfd_queue_acquire_buffers(), and also
use the right cast types in set_queue_properties_from_criu()
(which were missed at the same time)
Signed-off-by: David Francis <David.Francis@amd.com>
Reviewed-by: Kent Russell <kent.russell@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit 88ed96abbbe27b70193544fbc1ee06448c274714)
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The background check finished: neither `git log --grep="CRIU restore
queue buffers"` nor a search for the fix’s debug string (`"failed to
acquire user queue buffers for CRIU"`) turned up anything on HEAD. That
confirms the fix isn’t already in v6.18.44 under another commit.
The earlier analysis stands: this is a real NULL-deref regression in the
KFD CRIU restore path, and it should be backported.
**YES**
.../gpu/drm/amd/amdkfd/kfd_process_queue_manager.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
index e96488f6b02d2..912c4ebd30405 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
@@ -974,8 +974,8 @@ static void set_queue_properties_from_criu(struct queue_properties *qp,
qp->priority = q_data->priority;
qp->queue_address = q_data->q_address;
qp->queue_size = q_data->q_size;
- qp->read_ptr = (uint32_t *) q_data->read_ptr_addr;
- qp->write_ptr = (uint32_t *) q_data->write_ptr_addr;
+ qp->read_ptr = (void __user *)q_data->read_ptr_addr;
+ qp->write_ptr = (void __user *)q_data->write_ptr_addr;
qp->eop_ring_buffer_address = q_data->eop_ring_buffer_address;
qp->eop_ring_buffer_size = q_data->eop_ring_buffer_size;
qp->ctx_save_restore_area_address = q_data->ctx_save_restore_area_address;
@@ -1064,10 +1064,18 @@ int kfd_criu_restore_queue(struct kfd_process *p,
memset(&qp, 0, sizeof(qp));
set_queue_properties_from_criu(&qp, q_data, NUM_XCC(pdd->dev->adev->gfx.xcc_mask));
+ ret = kfd_queue_acquire_buffers(pdd, &qp);
+ if (ret) {
+ pr_debug("failed to acquire user queue buffers for CRIU\n");
+ goto exit;
+ }
+
print_queue_properties(&qp);
ret = pqm_create_queue(&p->pqm, pdd->dev, &qp, &queue_id, q_data, mqd, ctl_stack, NULL);
if (ret) {
+ kfd_queue_unref_bo_vas(pdd, &qp);
+ kfd_queue_release_buffers(pdd, &qp);
pr_err("Failed to create new queue err:%d\n", ret);
goto exit;
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: flush pending RCU callbacks on module unload
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (18 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/amdkfd: Properly acquire queue buffers in CRIU restore Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add CSW PNB601LS1-2 and LGD LP116WHA-SPB1 Sasha Levin
` (46 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: Perry Yuan, Yifan Zhang, Christian König, Alex Deucher,
Sasha Levin, airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Perry Yuan <perry.yuan@amd.com>
[ Upstream commit 67a654b41cfa73c3b83402c4a01b2689cad5b9bc ]
Call rcu_barrier() in module exit to wait for outstanding call_rcu() callbacks
before freeing module text, preventing late callback execution in freed memory.
BUG: unable to handle page fault for address: ffffffffc1d59c40
PGD 6a12067 P4D 6a12067 PUD 6a14067 PMD 13698b067 PTE 0
Oops: 0010 [#1] SMP NOPTI
RIP: 0010:0xffffffffc1d59c40
Code: Unable to access opcode bytes at RIP 0xffffffffc1d59c16.
RSP: 0018:ffffc900198c0f28 EFLAGS: 00010286
RAX: ffffffffc1d59c40 RBX: ffff897c7d6b61c0 RCX: ffff88826aff4590
RDX: ffff8884d8b35490 RSI: ffffc900198c0f30 RDI: ffff88812af67290
RBP: 000000000000000a (DONE segment entries) R08: 0000000000000000 R09: 0000000000000100
R10: 0000000000000000 R11: ffffffff82a06100 R12: ffff88811a4e3700
R13: 0000000000000000 R14: ffff897c7d6b6270 R15: 0000000000000000
FS: 0000000000000000(0000) GS:ffff897c7d680000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: ffffffffc1d59c16 CR3: 00000104a980a001 CR4: 0000000002770ee0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000fffe07f0 DR7: 0000000000000400
PKRU: 55555554
Call Trace:
<IRQ>
? rcu_do_batch+0x163/0x450
? rcu_core+0x177/0x1c0
? __do_softirq+0xc1/0x280
? asm_call_irq_on_stack+0xf/0x20
</IRQ>
? do_softirq_own_stack+0x37/0x50
? irq_exit_rcu+0xc4/0x100
? sysvec_apic_timer_interrupt+0x36/0x80
? asm_sysvec_apic_timer_interrupt+0x12/0x20
? cpuidle_enter_state+0xd4/0x360
? cpuidle_enter+0x29/0x40
? cpuidle_idle_call+0x108/0x1a0
? do_idle+0x77/0xf0
? cpu_startup_entry+0x19/0x20
? secondary_startup_64_no_verify+0xbf/0xcb
Signed-off-by: Perry Yuan <perry.yuan@amd.com>
Reviewed-by: Yifan Zhang <yifan1.zhang@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit feaa5039f6c12acc9aa934c2d45dcd251a12c69f)
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The background check finished: `feaa5039f6c12` is on mainline but not in
`stable/linux-6.18.y` (about 1.37M commits ahead of the stable branch
tip). A grep for "flush pending RCU" on the stable branch returned
nothing, so this fix still needs to be backported.
That matches the earlier analysis: the bug is present in v6.18.44, the
patch should apply cleanly at the end of `amdgpu_exit()`, and the
backport recommendation remains **YES**.
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
index 99f22633abf53..20e614db485cf 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
@@ -3217,6 +3217,14 @@ static void __exit amdgpu_exit(void)
amdgpu_userq_fence_slab_fini();
mmu_notifier_synchronize();
amdgpu_xcp_drv_release();
+
+ /*
+ * Flush outstanding call_rcu() callbacks before the
+ * module text is freed. Otherwise a grace period elapsing after
+ * unload invokes a callback in already-freed module memory and
+ * faults in rcu_do_batch().
+ */
+ rcu_barrier();
}
module_init(amdgpu_init);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/panel-edp: Add CSW PNB601LS1-2 and LGD LP116WHA-SPB1
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (19 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: flush pending RCU callbacks on module unload Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Fix updating clock limits from power states Sasha Levin
` (45 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: Terry Hsiao, Douglas Anderson, Sasha Levin, neil.armstrong,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-kernel
From: Terry Hsiao <terry_hsiao@compal.corp-partner.google.com>
[ Upstream commit e88b5cc6d6e5b1ba257f00e5c186ba137e6e8bc3 ]
The raw EDIDs for each panel:
CSW
- PNB601LS1-2
00 ff ff ff ff ff ff 00 0e 77 0a 11 00 00 00 00
30 23 01 04 a5 1a 0e 78 03 a1 35 9b 5e 58 91 25
1c 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 09 1e 56 dc 50 00 28 30 30 20
36 00 00 90 10 00 00 1a 06 14 56 dc 50 00 28 30
30 20 36 00 00 90 10 00 00 1a 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 0c 3d ff 0c 3c 7d 0e 0b 17 7d 00 00 00 00 e8
LGD
- LP116WHA-SPB1
00 ff ff ff ff ff ff 00 30 e4 fe 07 01 01 00 00
00 24 01 04 a5 1a 0e 78 03 72 e5 9c 5e 5b 94 27
19 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 d5 21 56 a0 50 00 b2 30 30 20
f8 0c 00 90 10 00 00 1a 8e 16 56 a0 50 00 b2 30
30 20 f8 0c 00 90 10 00 00 1a 00 00 00 fd 00 28
3c 39 39 09 01 0a 20 20 20 20 20 20 00 00 00 02
00 0f 3d ff 0f 3c 7d 0d 0a 15 7d 00 00 00 01 da
70 20 79 02 00 25 00 09 57 52 01 57 52 01 28 3c
80 81 00 15 74 1a 00 00 03 01 28 3c 00 00 4a 5a
4a 5a 3c 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 ef 90
Signed-off-by: Terry Hsiao <terry_hsiao@compal.corp-partner.google.com>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://patch.msgid.link/20260324061444.242917-1-terry_hsiao@compal.corp-partner.google.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The background searches finished and match the earlier analysis:
- **Git history:** No commit for `PNB601LS1-2` or `LP116WHA-SPB1` in
this tree. Related CSW entries (`MNB601LS1-3`, `MNB601LS1-4`) are
present, so the missing panels are a gap, not a duplicate fix.
- **b4 dig:** Returned nothing — the commit isn’t in this checkout, so
the lore thread couldn’t be resolved that way.
That doesn’t change the verdict: for **6.18.43**, this is a small,
reviewed panel-ID addition that applies cleanly and is appropriate for
stable.
**YES**
drivers/gpu/drm/panel/panel-edp.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c
index d1e68c464e308..be827729c4fb7 100644
--- a/drivers/gpu/drm/panel/panel-edp.c
+++ b/drivers/gpu/drm/panel/panel-edp.c
@@ -2029,6 +2029,7 @@ static const struct edp_panel_entry edp_panels[] = {
EDP_PANEL_ENTRY('C', 'S', 'W', 0x1100, &delay_200_500_e80_d50, "MNB601LS1-1"),
EDP_PANEL_ENTRY('C', 'S', 'W', 0x1103, &delay_200_500_e80_d50, "MNB601LS1-3"),
EDP_PANEL_ENTRY('C', 'S', 'W', 0x1104, &delay_200_500_e50_d100, "MNB601LS1-4"),
+ EDP_PANEL_ENTRY('C', 'S', 'W', 0x110a, &delay_200_500_e50, "PNB601LS1-2"),
EDP_PANEL_ENTRY('C', 'S', 'W', 0x143f, &delay_200_500_e50, "MNE007QS3-6"),
EDP_PANEL_ENTRY('C', 'S', 'W', 0x1448, &delay_200_500_e50, "MNE007QS3-7"),
EDP_PANEL_ENTRY('C', 'S', 'W', 0x1457, &delay_80_500_e80_p2e200, "MNE007QS3-8"),
@@ -2070,6 +2071,7 @@ static const struct edp_panel_entry edp_panels[] = {
EDP_PANEL_ENTRY('L', 'G', 'D', 0x05af, &delay_200_500_e200_d200, "Unknown"),
EDP_PANEL_ENTRY('L', 'G', 'D', 0x05f1, &delay_200_500_e200_d200, "Unknown"),
EDP_PANEL_ENTRY('L', 'G', 'D', 0x0778, &delay_200_500_e200_d200, "134WT1"),
+ EDP_PANEL_ENTRY('L', 'G', 'D', 0x07fe, &delay_200_500_e200_d200, "LP116WHA-SPB1"),
EDP_PANEL_ENTRY('S', 'H', 'P', 0x1511, &delay_200_500_e50, "LQ140M1JW48"),
EDP_PANEL_ENTRY('S', 'H', 'P', 0x1523, &delay_80_500_e50, "LQ140M1JW46"),
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Fix updating clock limits from power states
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (20 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add CSW PNB601LS1-2 and LGD LP116WHA-SPB1 Sasha Levin
@ 2026-08-31 13:23 ` Sasha Levin
2026-08-31 14:58 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/gma500: return errors from Oaktrail HDMI I2C reads Sasha Levin
` (44 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:23 UTC (permalink / raw)
To: patches, stable
Cc: Jeremy Klarenbeek, Alex Deucher, Timur Kristóf, Sasha Levin,
kenneth.feng, christian.koenig, airlied, simona, amd-gfx,
dri-devel, linux-kernel
From: Jeremy Klarenbeek <jeremy.klarenbeek99@gmail.com>
[ Upstream commit e6c5d36756e7d4d260e2365fc4d01226f1973152 ]
VBIOS can contain conflicting values between:
- the maximum allowed clocks and voltages on AC or DC
- the clocks and voltages in power states on AC or DC
Update maximum clock (and voltage) limits for both AC/DC
and take the highest value from the VBIOS limits and
the performance/battery power states. Previously this
was only done for AC, but is also needed for DC.
This commit fixes the behaviour on some laptop GPUs,
where the VBIOS limit was set to the lowest possible
clock frequency, so the GPU was stuck on the lowest
possible power level on battery.
Some affected GPUs are:
FirePro W4170M (Dell Precision M2800)
Radeon HD 8790M (Dell Latitude E6540)
and possibly other laptop GPUs.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Co-developed-by: Timur Kristóf <timur.kristof@gmail.com>
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
Signed-off-by: Jeremy Klarenbeek <jeremy.klarenbeek99@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The background git searches finished and match the earlier analysis:
- **History search:** The AC-only `max_clock_voltage_on_ac` assignment
traces back through the SI DPM code (pickaxe hit `837d542a09cd5`, the
pm header relocation). No prior fix for DC clock limits was found.
- **Author search:** Jeremy Klarenbeek has no commits in this 6.18.44
tree.
- **Fix commit search:** `git log --grep="updating clock limits"`
returned nothing — the patch is not in this tree yet. The only "power
states" hit in `si_dpm.c` was an unrelated debug-level change.
- **Hardware search:** No existing commits mention the FirePro W4170M or
Radeon HD 8790M by name.
That supports the **YES** backport recommendation: the bug is present
and unfixed in 6.18.44, and this would be a new, standalone fix.The
hardware-related git search completed: there are no commits in this
6.18.44 tree that mention the FirePro W4170M, Radeon HD 8790M, or author
Jeremy Klarenbeek in connection with this clock-limits issue. That
confirms this would be a new fix rather than something already present
under a different commit.
drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c | 29 ++++++++++++++++++----
1 file changed, 24 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c b/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
index 0385b24e7e4a2..ea97276358c0a 100644
--- a/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
+++ b/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
@@ -7238,6 +7238,7 @@ static void si_parse_pplib_clock_info(struct amdgpu_device *adev,
struct evergreen_power_info *eg_pi = evergreen_get_pi(adev);
struct si_power_info *si_pi = si_get_pi(adev);
struct si_ps *ps = si_get_ps(rps);
+ struct amdgpu_clock_and_voltage_limits *limits;
u16 leakage_voltage;
struct rv7xx_pl *pl = &ps->performance_levels[index];
int ret;
@@ -7297,12 +7298,30 @@ static void si_parse_pplib_clock_info(struct amdgpu_device *adev,
si_pi->mvdd_bootup_value = mvdd;
}
+ /*
+ * Update maximum allowed clock limits.
+ * VBIOS can contain conflicting values between:
+ * - the maximum allowed clocks and voltages on AC or DC
+ * - the clocks and voltages in power states on AC or DC
+ */
if ((rps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK) ==
- ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
- adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.sclk = pl->sclk;
- adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.mclk = pl->mclk;
- adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.vddc = pl->vddc;
- adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.vddci = pl->vddci;
+ ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE)
+ limits = &adev->pm.dpm.dyn_state.max_clock_voltage_on_ac;
+ else if ((rps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK) ==
+ ATOM_PPLIB_CLASSIFICATION_UI_BATTERY)
+ limits = &adev->pm.dpm.dyn_state.max_clock_voltage_on_dc;
+ else
+ limits = NULL;
+
+ if (limits) {
+ if (pl->sclk > limits->sclk)
+ limits->sclk = pl->sclk;
+ if (pl->mclk > limits->mclk)
+ limits->mclk = pl->mclk;
+ if (pl->vddc > limits->vddc)
+ limits->vddc = pl->vddc;
+ if (pl->vddci > limits->vddci)
+ limits->vddci = pl->vddci;
}
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.10] drm/gma500: return errors from Oaktrail HDMI I2C reads
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (21 preceding siblings ...)
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Fix updating clock limits from power states Sasha Levin
@ 2026-08-31 13:24 ` Sasha Levin
2026-08-31 15:04 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] drm/imagination: Don't timeout job if its fence has been signaled Sasha Levin
` (43 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:24 UTC (permalink / raw)
To: patches, stable
Cc: Pengpeng Hou, Patrik Jakobsson, Sasha Levin, maarten.lankhorst,
mripard, tzimmermann, airlied, simona, dri-devel, linux-kernel
From: Pengpeng Hou <pengpeng@iscas.ac.cn>
[ Upstream commit 9b5ce5c496efd20c1c662cedba88465d39ec1f93 ]
xfer_read() waits for the HDMI I2C transaction to reach
I2C_TRANSACTION_DONE, but it ignores both timeout and signal returns from
wait_for_completion_interruptible_timeout(). If the interrupt never
advances the transaction state, the loop can wait forever.
Return -ETIMEDOUT when the completion wait expires, propagate interrupted
waits, and make the I2C master_xfer callback return the first transfer
error instead of reporting a successful message count.
Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
Signed-off-by: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
Link: https://patch.msgid.link/20260625003240.6923-1-pengpeng@iscas.ac.cn
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/gma500: return errors from Oaktrail
HDMI I2C reads`
**Local tree:** `v6.18.44` (`VERSION = 6`, `PATCHLEVEL = 18`, `SUBLEVEL
= 44`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: PARSE THE SUBJECT LINE
**Record:** `[drm/gma500]` `[return]` — propagate errors from Oaktrail
HDMI I2C read transfers instead of ignoring them.
### Step 1.2: PARSE ALL COMMIT MESSAGE TAGS
**Record:**
- **Fixes:** — none
- **Reported-by:** — none
- **Tested-by:** — none
- **Reviewed-by:** — none
- **Acked-by:** — none
- **Cc: stable@vger.kernel.org** — none (expected for manual review)
- **Link:**
`https://patch.msgid.link/20260625003240.6923-1-pengpeng@iscas.ac.cn`
- **Signed-off-by:** Pengpeng Hou `<pengpeng@iscas.ac.cn>`, Patrik
Jakobsson `<patrik.r.jakobsson@gmail.com>` (subsystem maintainer)
- **Notable:** No syzbot/fuzzer report; maintainer sign-off is a
positive quality signal.
### Step 1.3: ANALYZE THE COMMIT BODY TEXT
**Record:**
- **Bug:** `xfer_read()` calls
`wait_for_completion_interruptible_timeout()` in a loop but ignores
its return value.
- **Symptom:** On timeout (`ret == 0`) or signal (`ret < 0`), the loop
continues while `i2c_dev->status != I2C_TRANSACTION_DONE`, so the
thread never exits if the interrupt never advances state.
- **Failure mode:** Unbounded wait (10-second timeout iterations
forever); caller also gets a successful message count instead of an
error.
- **Root cause:** Missing error handling on completion wait;
`oaktrail_hdmi_i2c_access()` ignores `xfer_read()` return value.
### Step 1.4: DETECT HIDDEN BUG FIXES
**Record:** Not disguised — this is an explicit hang/error-propagation
fix. The `master_xfer` callback change (return first error instead of
message count) is standard I2C error semantics.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: INVENTORY THE CHANGES
**Record:**
- **File:** `drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c` (+11 net lines,
~20 lines touched)
- **Functions:** `xfer_read()`, `oaktrail_hdmi_i2c_access()`
- **Scope:** Single-file surgical fix
### Step 2.2: UNDERSTAND THE CODE FLOW CHANGE
**Hunk 1 — `xfer_read()` (lines 109–113 today):**
```109:113:drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c
while (i2c_dev->status != I2C_TRANSACTION_DONE)
wait_for_completion_interruptible_timeout(&i2c_dev->complete,
10 *
HZ);
return 0;
```
- **Before:** Loop ignores wait return; always returns 0.
- **After:** On `ret < 0` propagate signal (`-ERESTARTSYS`); on `ret ==
0` return `-ETIMEDOUT`; only return 0 when transaction completes.
**Hunk 2 — `oaktrail_hdmi_i2c_access()` (lines 139–154 today):**
- **Before:** Ignores `xfer_read()`/`xfer_write()` return; always
returns `i` (message count).
- **After:** Captures `ret`, breaks on error, returns error to I2C core;
only returns `i` on success.
### Step 2.3: IDENTIFY THE BUG MECHANISM
**Record:**
- **Category:** Logic/correctness — infinite wait loop + incorrect
success reporting.
- **Mechanism:** `wait_for_completion_interruptible_timeout()` returns 0
on timeout and negative on signal (documented in
`kernel/sched/completion.c` lines 237–238). The old loop treated both
as "keep waiting." The `i2c_lock` mutex remains held for the duration,
blocking all other transfers on adapter 3.
### Step 2.4: ASSESS THE FIX QUALITY
**Record:**
- Fix is minimal and matches standard kernel completion-wait patterns.
- Correct I2C `master_xfer` semantics (negative errno on failure).
- **Regression risk:** Very low. Only changes error/timeout paths;
success path unchanged.
- Mutex is still released on error via the existing unlock at the end of
`oaktrail_hdmi_i2c_access()`.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: BLAME THE CHANGED LINES
**Record:** All changed lines blame to `5d324e5159d9e` (Nov 28, 2025
merge) in this shallow checkout. File copyright header shows original
authorship by Li Peng / Intel, 2010 — the buggy wait loop has been
present since initial implementation. Shallow clone limits deeper
history verification.
### Step 3.2: FOLLOW THE FIXES: TAG
**Record:** N/A — no `Fixes:` tag in commit message.
### Step 3.3: CHECK FILE HISTORY FOR RELATED CHANGES
**Record:** Recent related stable backports in this tree:
- `6d835a99474cd` — `drm/gma500/oaktrail_hdmi: fix i2c adapter leak on
setup`
- `ab9256936b58e` — `drm/gma500/oaktrail_lvds: fix hang on init failure`
- `4e003e2fb6d3f` — `drm/gma500/oaktrail_lvds: fix i2c adapter leaks on
init`
Same driver, same maintainer (Patrik Jakobsson), same class of I2C/hang
fixes already accepted into 6.18.y.
### Step 3.4: CHECK THE AUTHOR'S OTHER COMMITS
**Record:** Pengpeng Hou not found in shallow history for this file.
Patrik Jakobsson is the gma500 maintainer (signed off on related
oaktrail stable fixes above).
### Step 3.5: CHECK FOR DEPENDENT/PREREQUISITE COMMITS
**Record:** Standalone fix. No series markers, no structural
dependencies. Diff matches current file content in this tree.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: FIND THE ORIGINAL PATCH DISCUSSION
**Record:** `b4 dig -c <commit>` not possible — commit not in this tree.
Lore.kernel.org and patch.msgid.link blocked by Anubis bot protection.
**UNVERIFIED:** Full review thread content, stable nominations in
review.
### Step 4.2: CHECK WHO REVIEWED THE PATCH
**Record:** **UNVERIFIED** (lore inaccessible). Patrik Jakobsson
(maintainer) Signed-off-by in commit message.
### Step 4.3: SEARCH FOR THE BUG REPORT
**Record:** No Reported-by, no syzbot link. Proactive code-quality/hang
fix from author.
### Step 4.4: CHECK FOR RELATED PATCHES AND SERIES
**Record:** Part of ongoing gma500 oaktrail I2C robustness work (same
timeframe as Johan Hovold's oaktrail I2C leak/hang fixes). Standalone;
no multi-patch dependency.
### Step 4.5: CHECK STABLE MAILING LIST HISTORY
**Record:** **UNVERIFIED** (lore inaccessible). Related oaktrail fixes
were explicitly `Cc: stable@vger.kernel.org` and landed in this 6.18.y
tree.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: IDENTIFY KEY FUNCTIONS IN THE DIFF
**Record:** `xfer_read()`, `oaktrail_hdmi_i2c_access()`, indirectly
`oaktrail_hdmi_i2c_handler()` (IRQ completes the wait).
### Step 5.2: TRACE CALLERS
**Record:**
- `oaktrail_hdmi_i2c_access` is the `master_xfer` callback for I2C
adapter `.nr = 3` (`oaktrail_hdmi_i2c_adapter`).
- Registered in `oaktrail_hdmi_i2c_init()` called from `oaktrail_hdmi.c`
during HDMI setup.
- Kernel caller of adapter 3: only `oaktrail_hdmi_get_modes()` via
`i2c_get_adapter(3)`, but **`drm_get_edid()` is commented out** — it
uses hardcoded `raw_edid` instead.
- Userspace can access the registered adapter via i2c-dev
(`/dev/i2c-3`).
- LVDS uses `dev_priv->ops->i2c_bus = 1` (from `oaktrail_device.c`), not
adapter 3.
### Step 5.3: TRACE CALLEES
**Record:** `wait_for_completion_interruptible_timeout()`,
`reinit_completion()`, HDMI register MMIO, `mutex_lock/unlock`,
`hdmi_i2c_irq_enable/disable`.
### Step 5.4: FOLLOW THE CALL CHAIN
**Record:**
- Init path: `oaktrail_hdmi setup` → `oaktrail_hdmi_i2c_init()` →
registers adapter 3 (always on Oaktrail HDMI hardware).
- Read path: `i2c_transfer()` on adapter 3 →
`oaktrail_hdmi_i2c_access()` → `xfer_read()` → wait loop.
- **Reachability today:** Kernel EDID-over-HDMI-I2C path is disabled
(FIXME). Reachable from userspace i2c tools or if `drm_get_edid()` is
enabled later.
- Mutex held during hang blocks all I2C on adapter 3.
### Step 5.5: SEARCH FOR SIMILAR PATTERNS
**Record:** Same driver family recently fixed analogous hang/leak issues
(`ab9256936b58e` — "deregistration hangs indefinitely"). This patch
addresses the same class of problem in the HDMI I2C path.
---
## PHASE 6: CROSS-REFERENCING AGAINST THE LOCAL TREE
### Step 6.1: DOES THE BUGGY CODE EXIST IN THIS TREE?
**Record:** **YES.** Buggy code confirmed at lines 109–113 and 139–154
of `drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c`. Fix commit is **not**
present in this tree.
### Step 6.2: CHECK FOR BACKPORT COMPLICATIONS
**Record:** Expected **clean apply** — provided diff matches current
file content line-for-line. No conflicting recent changes to this file
in 6.18.y history.
### Step 6.3: CHECK IF RELATED FIXES ARE ALREADY HERE
**Record:** Related oaktrail I2C leak/hang fixes are present; this
specific HDMI I2C error-propagation fix is **not**.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: IDENTIFY THE SUBSYSTEM AND ITS CRITICALITY
**Record:** `drivers/gpu/drm/gma500` — DRM driver for Intel
GMA500/600/3600/3650 (Poulsbo, Moorestown/Oak Trail, Cedar Trail).
**Criticality: PERIPHERAL** — config-gated (`CONFIG_DRM_GMA500`),
x86-only, legacy embedded hardware.
### Step 7.2: ASSESS SUBSYSTEM ACTIVITY
**Record:** Active in 6.18.y — multiple oaktrail I2C fixes landed May
2026. Maintainers are actively hardening this code path.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: DETERMINE WHO IS AFFECTED
**Record:** Users with `CONFIG_DRM_GMA500` on Oak Trail / GMA600
hardware with HDMI I2C controller. Small but real population (legacy
netbooks/tablets).
### Step 8.2: DETERMINE THE TRIGGER CONDITIONS
**Record:**
- **Trigger:** I2C read on adapter 3 when HDMI I2C interrupt never sets
`I2C_TRANSACTION_DONE` (hardware fault, missing monitor, IRQ failure).
- **Likelihood:** Low in default kernel config (EDID read via this
adapter disabled), higher if userspace uses i2c-3 or if
`drm_get_edid()` is enabled.
- **Unprivileged trigger:** Userspace i2c access could trigger; not a
typical attack surface.
### Step 8.3: DETERMINE THE FAILURE MODE SEVERITY
**Record:**
- **Failure mode:** Infinite wait loop (10s timeout iterations) with
`i2c_lock` held; thread hang; I2C adapter permanently blocked.
- **Severity: HIGH** when triggered (system hang for that context), but
**LOW probability** in current default code path.
### Step 8.4: CALCULATE RISK-BENEFIT RATIO
**Record:**
- **Benefit:** Prevents unbounded hang; correct error propagation to I2C
core. Essential if HDMI EDID reading is ever enabled.
- **Risk:** Very low — ~20 lines, error-path only, no API changes.
- **Ratio:** Favorable. Same driver already receives similar stable
fixes.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: COMPILE THE EVIDENCE
**FOR backport:**
- Real bug: infinite wait on I2C timeout/signal, mutex held
- Small, obviously correct, maintainer-signed
- Buggy code present in 6.18.44 tree; fix not yet applied
- Same gma500/oaktrail I2C hang/leak fixes already in this stable tree
- Registered I2C adapter that can hang on read is a driver correctness
issue
- No new APIs or features
**AGAINST backport:**
- Very niche hardware (`CONFIG_DRM_GMA500`, legacy Oaktrail)
- Kernel EDID read via this adapter currently disabled (`drm_get_edid`
commented out in `oaktrail_hdmi_get_modes`)
- No user/fuzzer reports
- Default boot path may not exercise `xfer_read()` today
**UNRESOLVED:**
- Full lore review thread (bot-blocked)
- Exact upstream commit hash (not in shallow tree)
### Step 9.2: STABLE RULES CHECKLIST
1. Obviously correct and tested? **PASS** — standard completion-wait
pattern; maintainer SOB; no Tested-by.
2. Fixes a real bug affecting users? **PASS** — real hang in I2C driver
code; limited but real hardware population.
3. Important issue? **PASS** — hang with mutex held (HIGH severity when
triggered).
4. Small and contained? **PASS** — one file, ~20 lines.
5. No new features or APIs? **PASS**.
6. Can apply to local tree? **PASS** — code matches; clean apply
expected.
### Step 9.3: EXCEPTION CATEGORIES
**Record:** N/A — not a device ID, quirk, DT, build, or docs fix.
Standard driver bug fix.
### Step 9.4: DECISION RATIONALE
This is a legitimate hang fix in production driver infrastructure. The
HDMI I2C adapter is registered on every affected system; even though the
kernel EDID path is currently stubbed out, the I2C read implementation
is live code that hangs indefinitely on hardware/IRQ failure. The fix is
minimal, low-risk, and consistent with other oaktrail I2C fixes already
backported to this 6.18.y tree. The niche hardware and currently-
disabled EDID path reduce urgency but do not negate the technical merit.
---
## Verification
- **[Phase 1]** `git describe HEAD` → `v6.18.44-2-g1b9e1abadee04`;
Makefile → 6.18.44
- **[Phase 1]** Parsed commit message tags from user-provided content
- **[Phase 2]** Read `drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c` —
confirmed buggy wait loop at lines 109–113
- **[Phase 2]** Read `kernel/sched/completion.c` lines 237–238 —
confirmed return semantics (0=timeout, <0=signal, >0=completed)
- **[Phase 3]** `git blame -L 93,155` — buggy code present in current
tree
- **[Phase 3]** `git log --oneline -20 -- drivers/gpu/drm/gma500/` —
found related stable backports (`6d835a99474cd`, `ab9256936b58e`,
`4e003e2fb6d3f`)
- **[Phase 3]** `git log --grep="return errors from Oaktrail"` → empty;
fix not in tree
- **[Phase 3]** `git rev-parse --is-shallow-repository` → `true` (limits
history depth)
- **[Phase 4]** `b4 dig` — commit not in tree; cannot run `-c`
- **[Phase 4]** Lore/patch.msgid.link fetch — blocked by Anubis
(**UNVERIFIED** review thread)
- **[Phase 5]** `grep` oaktrail_hdmi.c — `drm_get_edid()` commented out
at line 581; adapter 3 registered at init
- **[Phase 5]** `grep i2c_bus` in gma500 — LVDS uses bus 1, not 3
- **[Phase 6]** Confirmed buggy code exists; fix absent
- **[Phase 6]** Diff matches current file content (manual comparison)
- **[Phase 7]** Read `drivers/gpu/drm/gma500/Kconfig` —
`CONFIG_DRM_GMA500` details
- **[Phase 8]** Assessed hang severity and niche hardware scope
**YES**
drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c | 21 ++++++++++++++++-----
1 file changed, 16 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c b/drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c
index 6daa6669ed237..4f1d095fc5a81 100644
--- a/drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c
+++ b/drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c
@@ -95,6 +95,7 @@ static int xfer_read(struct i2c_adapter *adap, struct i2c_msg *pmsg)
struct oaktrail_hdmi_dev *hdmi_dev = i2c_get_adapdata(adap);
struct hdmi_i2c_dev *i2c_dev = hdmi_dev->i2c_dev;
u32 temp;
+ int ret;
i2c_dev->status = I2C_STAT_INIT;
i2c_dev->msg = pmsg;
@@ -106,9 +107,14 @@ static int xfer_read(struct i2c_adapter *adap, struct i2c_msg *pmsg)
HDMI_WRITE(HDMI_HI2CHCR, temp);
HDMI_READ(HDMI_HI2CHCR);
- while (i2c_dev->status != I2C_TRANSACTION_DONE)
- wait_for_completion_interruptible_timeout(&i2c_dev->complete,
+ while (i2c_dev->status != I2C_TRANSACTION_DONE) {
+ ret = wait_for_completion_interruptible_timeout(&i2c_dev->complete,
10 * HZ);
+ if (ret < 0)
+ return ret;
+ if (!ret)
+ return -ETIMEDOUT;
+ }
return 0;
}
@@ -127,7 +133,7 @@ static int oaktrail_hdmi_i2c_access(struct i2c_adapter *adap,
{
struct oaktrail_hdmi_dev *hdmi_dev = i2c_get_adapdata(adap);
struct hdmi_i2c_dev *i2c_dev = hdmi_dev->i2c_dev;
- int i;
+ int i, ret = 0;
mutex_lock(&i2c_dev->i2c_lock);
@@ -139,9 +145,11 @@ static int oaktrail_hdmi_i2c_access(struct i2c_adapter *adap,
for (i = 0; i < num; i++) {
if (pmsg->len && pmsg->buf) {
if (pmsg->flags & I2C_M_RD)
- xfer_read(adap, pmsg);
+ ret = xfer_read(adap, pmsg);
else
- xfer_write(adap, pmsg);
+ ret = xfer_write(adap, pmsg);
+ if (ret)
+ break;
}
pmsg++; /* next message */
}
@@ -151,6 +159,9 @@ static int oaktrail_hdmi_i2c_access(struct i2c_adapter *adap,
mutex_unlock(&i2c_dev->i2c_lock);
+ if (ret)
+ return ret;
+
return i;
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/imagination: Don't timeout job if its fence has been signaled
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (22 preceding siblings ...)
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/gma500: return errors from Oaktrail HDMI I2C reads Sasha Levin
@ 2026-08-31 13:24 ` Sasha Levin
2026-08-31 15:13 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.15] host1x: bus: Fix missing ops null check in error teardown Sasha Levin
` (42 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:24 UTC (permalink / raw)
To: patches, stable
Cc: Brajesh Gupta, Matt Coster, Sasha Levin, alessio.belle,
luigi.santivetti, maarten.lankhorst, mripard, tzimmermann,
airlied, simona, imagination, dri-devel, linux-kernel
From: Brajesh Gupta <brajesh.gupta@imgtec.com>
[ Upstream commit ee7cb742531432ec1bb29b996e3363aacd860054 ]
Verify the job’s fence in the timeout handler; if the firmware has since
signaled completion, then report NO HANG.
Signed-off-by: Brajesh Gupta <brajesh.gupta@imgtec.com>
Reviewed-by: Matt Coster <matt.coster@imgtec.com>
Link: https://patch.msgid.link/20260519-b4-context_reset-v2-2-931018a7131d@imgtec.com
Signed-off-by: Matt Coster <matt.coster@imgtec.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/imagination: Don't timeout job if its
fence has been signaled
**Local tree:** `v6.18.43` (`6.18.43`, Makefile VERSION=6 PATCHLEVEL=18
SUBLEVEL=43)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: PARSE THE SUBJECT LINE
**Record:** `[drm/imagination]` `[Don't]` (preventive fix) — Don't treat
a completed job as a GPU hang when its fence has already been signaled.
### Step 1.2: PARSE ALL COMMIT MESSAGE TAGS
**Record:**
- **Signed-off-by:** Brajesh Gupta \<brajesh.gupta@imgtec.com\> (author)
- **Reviewed-by:** Matt Coster \<matt.coster@imgtec.com\> (IMG reviewer)
- **Link:** https://patch.msgid.link/20260519-b4-context_reset-v2-2-
931018a7131d@imgtec.com (patch 2 of a `context_reset` v2 series)
- **Signed-off-by:** Matt Coster \<matt.coster@imgtec.com\>
- No Fixes:, Reported-by:, Tested-by:, Acked-by:, or Cc: stable tags
- Notable: Reviewed-by from driver vendor; no syzbot/user bug report
tags
### Step 1.3: ANALYZE THE COMMIT BODY TEXT
**Record:**
- **Bug description:** The timeout handler does not verify whether the
job's fence was already signaled before treating the event as a hang.
- **Symptom/failure mode:** Spurious "Job timeout" handling and
unnecessary scheduler reset even though the firmware already completed
the job.
- **Version information:** None stated.
- **Root cause:** Race between job completion (fence signaled) and the
drm_sched timeout worker running before the free-job worker cleans up
the completed job.
### Step 1.4: DETECT HIDDEN BUG FIXES
**Record:** Yes — despite the subject not using "fix", this is a real
bug fix. It prevents false-positive GPU hang recovery, matching the
established pattern used by panfrost, etnaviv, v3d, and xe drivers.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: INVENTORY THE CHANGES
**Record:**
- **Files:** `drivers/gpu/drm/imagination/pvr_queue.c` (+5 lines,
comment update)
- **Functions modified:** `pvr_queue_timedout_job()`
- **Scope:** Single-file surgical fix in timeout error path
### Step 2.2: UNDERSTAND THE CODE FLOW CHANGE
**Record:**
- **Hunk 1 (early return):** BEFORE: timeout handler always proceeds to
`dev_err`, `drm_sched_stop()`, fence reassignment, and scheduler
restart. AFTER: if `s_job->s_fence->parent` is already signaled,
return `DRM_GPU_SCHED_STAT_NO_HANG` immediately and skip all reset
logic.
- **Hunk 2 (comment):** Documents the new possible return value.
### Step 2.3: IDENTIFY THE BUG MECHANISM
**Record:**
- **Bug category:** Race condition / logic correctness in timeout
handler
- **Mechanism:** `pvr_queue_run_job()` returns `job->done_fence` as the
sched fence parent. When the GPU completes the job, that fence is
signaled. If the drm_sched timeout fires before the free-job worker
runs, the old code incorrectly enters full hang-recovery:
`drm_sched_stop()`, queue list manipulation, parent-fence
reassignment, and potentially `atomic_set(&queue->ctx->faulty, 1)` for
other pending jobs. The fix detects completion and returns
`DRM_GPU_SCHED_STAT_NO_HANG`, which causes
`drm_sched_job_reinsert_on_false_timeout()` in the scheduler core to
properly reinsert the job for cleanup.
### Step 2.4: ASSESS THE FIX QUALITY
**Record:**
- **Fix quality:** Obviously correct; identical pattern to panfrost
(`dma_fence_is_signaled` → `DRM_GPU_SCHED_STAT_NO_HANG`).
- **Regression risk:** Very low. Only affects the spurious-timeout path;
real hangs still proceed to reset. Must not call `drm_sched_stop()`
when returning `NO_HANG` — the fix correctly returns before that call,
per scheduler documentation.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: BLAME THE CHANGED LINES
**Record:** `pvr_queue_timedout_job()` introduced in `eaf01ee5ba28b`
(Sarah Walker, 2023-11-22, "drm/imagination: Implement job submission
and scheduling"). The missing fence check has been present since driver
inception. Confirmed ancestor of HEAD.
### Step 3.2: FOLLOW THE FIXES: TAG
**Record:** N/A — no Fixes: tag in commit message.
### Step 3.3: CHECK FILE HISTORY FOR RELATED CHANGES
**Record:** Recent `pvr_queue.c` changes include fence/dependency fixes
(`943fa73ea0efa`, `68c3de7f707e8`, `df1a1ed5e1bdd`) but none address
this timeout race. The `DRM_GPU_SCHED_STAT_NO_HANG` infrastructure was
added earlier (`0b1217bfdfddf`) and adopted by panfrost, xe, etnaviv,
v3d — imagination was never updated. Standalone fix, not part of an
applied series in this tree.
### Step 3.4: CHECK THE AUTHOR'S OTHER COMMITS
**Record:** Brajesh Gupta has two imagination commits in this tree:
`c88fdbf3da26e` (double `drm_sched_entity_fini` fix) and `902fd1026ca42`
(FW trace wait). Regular IMG contributor, not subsystem maintainer.
### Step 3.5: CHECK FOR DEPENDENT/PREREQUISITE COMMITS
**Record:** Link suggests patch 2 of `context_reset-v2` series, but the
diff is self-contained — no new structures, APIs, or prior-patch
symbols. Uses only existing `dma_fence_is_signaled()` and
`DRM_GPU_SCHED_STAT_NO_HANG`. Can apply standalone.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: FIND THE ORIGINAL PATCH DISCUSSION
**Record:** `b4 dig -c` failed (commit not in this tree). `b4 shazam`
did not find the message. WebFetch of lore.kernel.org and
patch.msgid.link blocked by Anubis bot protection. Link tag indicates
submission as patch 2 of `context_reset-v2` series to dri-devel, with
Reviewed-by from IMG engineer.
### Step 4.2: CHECK WHO REVIEWED THE PATCH
**Record:** Reviewed-by: Matt Coster (IMG). Full recipient list
unavailable due to lore access failure.
### Step 4.3: SEARCH FOR THE BUG REPORT
**Record:** No Reported-by or bugzilla/syzbot links. Bug mechanism is
well-established from identical panfrost/etnaviv fixes with explicit
comments about "timeout fired before free-job worker."
### Step 4.4: CHECK FOR RELATED PATCHES AND SERIES
**Record:** Part of `context_reset-v2` series (patch 2 per message-id).
This specific change is independent — only adds an early-return guard in
`pvr_queue_timedout_job()`.
### Step 4.5: CHECK STABLE MAILING LIST HISTORY
**Record:** Could not search lore stable list (bot protection). No
stable nomination found in commit tags.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: IDENTIFY KEY FUNCTIONS IN THE DIFF
**Record:** `pvr_queue_timedout_job()` (modified), called via
`pvr_queue_sched_ops.timedout_job`.
### Step 5.2: TRACE CALLERS
**Record:** `pvr_queue_timedout_job` → registered in
`pvr_queue_sched_ops` → called from `drm_sched_job_timedout()` work item
when scheduler timeout fires on a pending job. Triggered during normal
GPU rendering under load or slow interrupt handling.
### Step 5.3: TRACE CALLEES
**Record:** Without fix: `dev_err`, `mutex_lock`, `list_del_init`,
`drm_sched_stop`, fence reassignment loop, `drm_sched_start`. With fix:
only `dma_fence_is_signaled()` then early return.
### Step 5.4: FOLLOW THE CALL CHAIN
**Record:** Userspace Mesa/OpenGL/Vulkan → DRM ioctl job submission →
`pvr_queue_job_init/push` → drm_sched → `pvr_queue_run_job` → firmware →
fence signal → (race) timeout worker. Reachable from normal graphics
workloads on PowerVR/IMG hardware.
### Step 5.5: SEARCH FOR SIMILAR PATTERNS
**Record:** Identical pattern in:
- `panfrost_job_timedout()` — checks `job->done_fence`, returns
`NO_HANG` with comment "timeout has fired before free-job worker"
- `etnaviv_sched_timedout_job()` — same comment and pattern
- `v3d`, `xe` — also use `DRM_GPU_SCHED_STAT_NO_HANG`
---
## PHASE 6: CROSS-REFERENCING AGAINST THE LOCAL TREE
### Step 6.1: DOES THE BUGGY CODE EXIST IN THIS TREE?
**Record:** YES. `pvr_queue_timedout_job()` at line 824 in
`drivers/gpu/drm/imagination/pvr_queue.c` lacks the fence check and
proceeds directly to `dev_err("Job timeout")` and reset logic. Driver
present since `eaf01ee5ba28b` (Nov 2023).
### Step 6.2: CHECK FOR BACKPORT COMPLICATIONS
**Record:** Expected clean apply — 5 lines added at function entry,
comment update. No conflicting recent changes to this function.
`DRM_GPU_SCHED_STAT_NO_HANG` and
`drm_sched_job_reinsert_on_false_timeout()` exist in this tree's
scheduler.
### Step 6.3: CHECK IF RELATED FIXES ARE ALREADY HERE
**Record:** No equivalent fix present. `git log --grep` found no "Don't
timeout job" commit. Panfrost/etnaviv/v3d/xe already have this pattern;
imagination does not.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: IDENTIFY THE SUBSYSTEM AND ITS CRITICALITY
**Record:** `drivers/gpu/drm/imagination/` — DRM GPU driver
(CONFIG_DRM_POWERVR). **IMPORTANT** for users with Imagination
PowerVR/IMG GPUs on ARM64/RISC-V; not universal but critical for those
platforms.
### Step 7.2: ASSESS SUBSYSTEM ACTIVITY
**Record:** Actively developed — recent commits include fence dependency
fixes, paired-job handling, and `drm_sched_entity_fini` double-call fix.
Mature enough for real hardware deployments.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: DETERMINE WHO IS AFFECTED
**Record:** Users with `CONFIG_DRM_POWERVR` on ARM64 or RISC-V systems
with Imagination GPUs. Driver-specific but affects all GPU workloads on
that hardware.
### Step 8.2: DETERMINE THE TRIGGER CONDITIONS
**Record:** Job completes and fence is signaled, but drm_sched timeout
fires before the free-job worker processes it. Can occur under IRQ
latency, system load, or near-timeout job durations. Triggerable during
normal rendering; no special privileges needed beyond GPU access.
### Step 8.3: DETERMINE THE FAILURE MODE SEVERITY
**Record:** Without fix: spurious hang recovery — unnecessary
`drm_sched_stop()`/`drm_sched_start()`, erroneous "Job timeout" log,
potential `atomic_set(&queue->ctx->faulty, 1)` marking context
permanently unusable (blocks all future job submission via
`pvr_queue_job_init` returning `-EIO`). **Severity: HIGH** — can break
GPU rendering until process/driver restart.
### Step 8.4: CALCULATE RISK-BENEFIT RATIO
**Record:**
- **Benefit:** HIGH for affected hardware — prevents spurious GPU resets
and permanent context faulting
- **Risk:** VERY LOW — 5-line early return, proven pattern across
multiple DRM drivers
- **Ratio:** Strongly favors backport
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: COMPILE THE EVIDENCE
**FOR backporting:**
- Fixes a real race causing spurious GPU hang recovery
- Can permanently fault a GPU context (`ctx->faulty`), breaking all
subsequent rendering
- Small, surgical, obviously correct fix
- Identical pattern already in panfrost, etnaviv, v3d, xe in this tree
- Bug present since imagination driver's initial scheduling code (2023)
- Reviewed-by from IMG engineer
- `DRM_GPU_SCHED_STAT_NO_HANG` infrastructure already in 6.18.43
- Applies cleanly to this tree
**AGAINST backporting:**
- Limited to Imagination GPU users (smaller population)
- No explicit user bug report or syzbot finding in commit message
- Part of a larger series (though this patch is standalone)
**UNRESOLVED:**
- Full lore review thread inaccessible (Anubis bot protection)
- Whether patch 1 of `context_reset-v2` series is also needed for stable
(this patch appears independent)
### Step 9.2: STABLE RULES CHECKLIST
1. Obviously correct and tested? **PASS** — matches proven
panfrost/etnaviv pattern; Reviewed-by present
2. Fixes a real bug affecting users? **PASS** — spurious timeout on
completed jobs
3. Important issue? **PASS** — spurious GPU reset, context permanent
fault, rendering failure (HIGH)
4. Small and contained? **PASS** — 5 lines, 1 file, 1 function
5. No new features or APIs? **PASS** — uses existing
`DRM_GPU_SCHED_STAT_NO_HANG`
6. Can apply to the local tree? **PASS** — buggy code present,
infrastructure exists, clean apply expected
### Step 9.3: EXCEPTION CATEGORIES
**Record:** None (not device ID, quirk, DT, build fix, or docs).
Standard driver bug fix.
### Step 9.4: DECISION RATIONALE
This commit fixes a well-understood race in the drm_sched timeout path
that the imagination driver has had since its introduction. Without the
fix, a completed job can trigger full hang-recovery logic including
scheduler stop/start and potentially marking the GPU context as
permanently faulty — a serious, user-visible failure for anyone running
graphics on PowerVR/IMG hardware. The fix is minimal, follows an
established pattern already present in four other DRM drivers in this
tree, and applies cleanly to the 6.18.43 checkout where the buggy code
is confirmed present.
---
## Verification
- [Phase 1] Parsed subject, tags, body; identified preventive timeout
fix
- [Phase 1] No Fixes:/Reported-by:/syzbot tags; Reviewed-by: Matt Coster
present
- [Phase 2] Diff: +5 lines in `pvr_queue_timedout_job()`, early
`dma_fence_is_signaled` check
- [Phase 2] Read `drm_sched_job_timedout()` — `NO_HANG` triggers
`drm_sched_job_reinsert_on_false_timeout()`
- [Phase 2] Read scheduler doc: must NOT call `drm_sched_stop()` when
returning `NO_HANG`
- [Phase 3] `git blame`: `pvr_queue_timedout_job` from `eaf01ee5ba28b`
(2023-11-22)
- [Phase 3] `git merge-base --is-ancestor`: driver commit is ancestor of
HEAD
- [Phase 3] `git log -20 -- pvr_queue.c`: no prior timeout-fence fix
- [Phase 3] Author commits: `c88fdbf3da26e`, `902fd1026ca42` in
imagination driver
- [Phase 4] `b4 dig -c`: failed (commit not in tree)
- [Phase 4] `b4 shazam`: message not found on lore
- [Phase 4] WebFetch lore.kernel.org: blocked by Anubis
- [Phase 4] WebFetch patch.msgid.link: blocked by Anubis
- [Phase 5] `pvr_queue_timedout_job` registered at
`pvr_queue_sched_ops.timedout_job` line 895
- [Phase 5] `pvr_queue_run_job` returns `dma_fence_get(job->done_fence)`
as sched parent
- [Phase 5] panfrost/etnaviv: identical `dma_fence_is_signaled` →
`NO_HANG` pattern confirmed
- [Phase 6] `git describe HEAD`: v6.18.43
- [Phase 6] Buggy code confirmed at lines 824-872 without fence check
- [Phase 6] `DRM_GPU_SCHED_STAT_NO_HANG` exists in
`include/drm/gpu_scheduler.h`
- [Phase 6] `drm_sched_job_reinsert_on_false_timeout` exists in
`sched_main.c`
- [Phase 7] CONFIG_DRM_POWERVR depends on ARM64 or RISC-V 64-bit
- [Phase 8] `pvr_context.h`: `faulty` flag makes context permanently
unusable
- [Phase 8] `pvr_queue_job_init` line 1108: returns `-EIO` if
`ctx->faulty` is set
- [Phase 8] Without fix: `pvr_queue_start` sets `ctx->faulty` for
unfinished pending jobs during reset
**YES**Those background lookups are done and line up with the earlier
analysis:
- **Commit search / b4 dig:** The patch isn’t in this `v6.18.43` tree
yet, so `git log --grep` and `b4 dig -c` couldn’t resolve it by hash.
- **Related history:** `pvr_queue_timedout_job()` dates to the original
imagination scheduling commit (`eaf01ee5ba28b`, Nov 2023); recent
nearby fixes are fence/dependency work, not this timeout race.
- **Prior art:** `DRM_GPU_SCHED_STAT_NO_HANG` is already used the same
way in panfrost, xe, etnaviv, and v3d in this tree; imagination is the
outlier.
- **Author context:** Brajesh Gupta has two other imagination fixes here
(`drm_sched_entity_fini` double-call, FW trace wait).
That reinforces the earlier call: small, standalone fix for a real
spurious-timeout bug on PowerVR/IMG hardware.
**YES**
drivers/gpu/drm/imagination/pvr_queue.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/imagination/pvr_queue.c b/drivers/gpu/drm/imagination/pvr_queue.c
index bb5835ede6660..7497bca2e7e83 100644
--- a/drivers/gpu/drm/imagination/pvr_queue.c
+++ b/drivers/gpu/drm/imagination/pvr_queue.c
@@ -818,7 +818,9 @@ static void pvr_queue_start(struct pvr_queue *queue)
* the scheduler, and re-assign parent fences in the middle.
*
* Return:
- * * DRM_GPU_SCHED_STAT_RESET.
+ * *%DRM_GPU_SCHED_STAT_NO_HANG if the job fence has already been
+ * signaled, or
+ * *%DRM_GPU_SCHED_STAT_RESET otherwise.
*/
static enum drm_gpu_sched_stat
pvr_queue_timedout_job(struct drm_sched_job *s_job)
@@ -829,6 +831,9 @@ pvr_queue_timedout_job(struct drm_sched_job *s_job)
struct pvr_job *job;
u32 job_count = 0;
+ if (dma_fence_is_signaled(s_job->s_fence->parent))
+ return DRM_GPU_SCHED_STAT_NO_HANG;
+
dev_err(sched->dev, "Job timeout\n");
/* Before we stop the scheduler, make sure the queue is out of any list, so
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.15] host1x: bus: Fix missing ops null check in error teardown
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (23 preceding siblings ...)
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] drm/imagination: Don't timeout job if its fence has been signaled Sasha Levin
@ 2026-08-31 13:24 ` Sasha Levin
2026-08-31 15:13 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Don't schedule thermal work when queue isn't initialized Sasha Levin
` (41 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:24 UTC (permalink / raw)
To: patches, stable
Cc: shayderrr, Thierry Reding, Sasha Levin, thierry.reding,
mperttunen, airlied, simona, dri-devel, linux-tegra, linux-kernel
From: shayderrr <darknessshayder@gmail.com>
[ Upstream commit 71d25f668bc5c0f36ea843462e12307dea45aaa3 ]
In host1x_device_init(), the error teardown paths do not check
client->ops before dereferencing it, unlike the forward init paths
which correctly guard with 'client->ops &&'. This can result in a
NULL pointer dereference if client->ops is NULL.
Fix by adding the missing client->ops check in both the teardown
and teardown_late labels.
Signed-off-by: shayderrr <darknessshayder@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patch.msgid.link/20260517170456.84927-1-darknessshayder@gmail.com
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:** `[host1x: bus]` `[Fix]` — Add missing `client->ops` NULL
checks in `host1x_device_init()` error teardown paths.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** shayderrr \<darknessshayder@gmail.com\> (author)
- **Signed-off-by:** Thierry Reding \<treding@nvidia.com\> (host1x/Tegra
maintainer)
- **Link:** https://patch.msgid.link/20260517170456.84927-1-
darknessshayder@gmail.com
- No Fixes:, Reported-by:, Tested-by:, Reviewed-by:, Acked-by:, or Cc:
stable tags
- Notable: maintainer sign-off is a strong quality signal; no
syzbot/user bug report
### Step 1.3: Body Analysis
**Record:**
- **Bug:** `host1x_device_init()` teardown (`teardown`, `teardown_late`)
dereferences `client->ops` without a NULL guard; forward init paths
already use `client->ops &&`.
- **Symptom:** NULL pointer dereference during error recovery when
initialization fails.
- **Root cause:** Oversight when teardown was added (2017) and when
`teardown_late` was added (2021); `host1x_device_exit()` and other
paths in the same file already guard correctly.
### Step 1.4: Hidden Bug Fix?
**Record:** No — this is an explicit NULL-deref fix on an error path,
not disguised cleanup.
---
## Phase 2: Diff Analysis
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/host1x/bus.c` (+2 / -2 lines)
- **Function:** `host1x_device_init()`
- **Scope:** Single-file, surgical (2-line change)
### Step 2.2: Code Flow Change
**Record:**
- **Hunk 1 (`teardown`):** `if (client->ops->exit)` → `if (client->ops
&& client->ops->exit)`
- **Hunk 2 (`teardown_late`):** `if (client->ops->late_exit)` → `if
(client->ops && client->ops->late_exit)`
- **Before:** Error teardown could dereference NULL `client->ops`.
- **After:** Clients without `ops` are skipped, matching forward init
and `host1x_device_exit()`.
### Step 2.3: Bug Mechanism
**Record:** **Category:** NULL pointer dereference (memory safety).
**Mechanism:** On `early_init`/`init` failure, reverse iteration calls
`client->ops->exit` / `client->ops->late_exit` even when `client->ops`
is NULL — a client skipped in the forward path can still be visited in
teardown.
### Step 2.4: Fix Quality
**Record:** Obviously correct; mirrors existing patterns at lines
196–207, 257–271, and 815–836 in the same file. Minimal regression risk.
---
## Phase 3: Git History Investigation
### Step 3.1: Blame
**Record:**
- `teardown` without NULL check: introduced in `8f7da1578e90b` (Thierry
Reding, 2017-11-08) — "gpu: host1x: Cleanup on initialization failure"
- `teardown_late` without NULL check: introduced in `933deb8c7b8e3f`
(Thierry Reding, 2021-03-26) — "gpu: host1x: Add early init and late
exit callbacks"
- Forward paths have had `client->ops &&` since original
`host1x_device_init()` (2013)
### Step 3.2: Fixes: Tag
**Record:** N/A — no Fixes: tag.
### Step 3.3: Related File History
**Record:** Recent host1x stable-style fixes in this tree include UAF
(`5f4de3c717d34`), reference leak (`c4d6442ac3ed0`), and syncpt race
(`79197c6007f2a`). Standalone fix; not part of a series.
### Step 3.4: Author Context
**Record:** shayderrr is a contributor; Thierry Reding (maintainer)
signed off. Author is not the subsystem maintainer but patch was
accepted by one.
### Step 3.5: Dependencies
**Record:** No prerequisites. Applies to code present since 2017/2021.
Self-contained.
---
## Phase 4: Mailing List and External Research
### Step 4.1–4.5
**Record:**
- `b4 dig` by commit hash and subject: no match (commit not in this
checkout)
- Lore/patch.msgid.link: blocked by Anubis bot protection — could not
read thread
- **UNVERIFIED:** Reviewer feedback, stable nominations, series
revisions
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key Functions
**Record:** `host1x_device_init()` — only function modified.
### Step 5.2: Callers
**Record:** `host1x_device_init()` is called from:
- `drivers/gpu/drm/tegra/drm.c` (Tegra DRM probe)
- `drivers/crypto/tegra/tegra-se-main.c` (Tegra SE)
- `drivers/staging/media/tegra-video/video.c` (staging Tegra video)
All are device-probe initialization paths on Tegra (or COMPILE_TEST).
### Step 5.3: Callees
**Record:** `client->ops->exit`, `client->ops->late_exit`,
`mutex_lock/unlock`, list iteration macros.
### Step 5.4: Reachability
**Record:**
1. Tegra clients register via `host1x_client_register()` /
`__host1x_client_register()`.
2. `host1x_device_init()` runs when the composite host1x device driver
probes.
3. If any client's `init`/`early_init` fails, teardown runs.
4. Forward path skips clients with `client->ops == NULL`; teardown does
not — inconsistent and unsafe.
5. In-tree drivers set `ops` before register, but the API explicitly
allows NULL `ops` (forward guards prove intent). A client with NULL
`ops` on `device->clients` plus a later init failure triggers the
bug.
**Userspace trigger:** Indirect — probe failure during boot/driver load
on Tegra systems with `CONFIG_TEGRA_HOST1X` and dependent drivers.
### Step 5.5: Similar Patterns
**Record:** Same `client->ops &&` pattern used in
`host1x_device_exit()`, `host1x_client_suspend()`, and
`host1x_client_resume()` in the same file. Teardown paths are the
outlier.
---
## Phase 6: Cross-Reference Against Local Tree
### Step 6.1: Buggy Code Present?
**Record:** **Yes.** Local tree is **v6.18.44** (Makefile: 6.18.44).
Buggy code at lines 224 and 232 in `drivers/gpu/host1x/bus.c` — fix not
yet applied.
### Step 6.2: Backport Complications
**Record:** **Clean apply expected** — two identical one-line changes.
No conflicting recent churn in this function.
### Step 6.3: Related Fixes Already Present?
**Record:** No existing fix for this issue in this tree.
---
## Phase 7: Subsystem and Maintainer Context
### Step 7.1: Subsystem
**Record:** `drivers/gpu/host1x/` — Tegra display/multimedia bus
infrastructure. **Criticality:** IMPORTANT for Tegra/embedded;
PERIPHERAL globally (requires `CONFIG_TEGRA_HOST1X`, `ARCH_TEGRA` or
`COMPILE_TEST`).
### Step 7.2: Activity
**Record:** Actively maintained; multiple bugfix commits in recent
history on this subsystem.
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who Is Affected
**Record:** Tegra platform users with host1x clients (DRM, crypto,
staging video). Not universal x86/ARM server impact.
### Step 8.2: Trigger Conditions
**Record:**
- `host1x_device_init()` called during probe
- A client `init`/`early_init` fails
- Teardown visits a client with `client->ops == NULL` (skipped during
forward init)
- **Likelihood:** Low-to-medium on error paths; requires init failure
plus NULL-ops client on the list
### Step 8.3: Failure Mode Severity
**Record:** Kernel oops (NULL dereference) during error recovery instead
of clean `-errno` return. **Severity: HIGH** for affected path (turns
recoverable probe failure into crash).
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** Prevents crash on init-failure teardown; makes error
recovery robust
- **Risk:** Very low — 2-line change matching established pattern
- **Ratio:** Favorable for Tegra stable users
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence Summary
**FOR backport:**
- Real NULL-deref bug on error path
- Trivial, obviously correct 2-line fix
- Matches existing code in same function/file
- Maintainer (Thierry Reding) signed off
- Bug present since 2017/2021; affects this v6.18.44 tree
- Error-path crash is worse than the original init failure
**AGAINST backport:**
- Platform-specific (Tegra only)
- Requires init failure (uncommon)
- No user/syzbot report documented
- In-tree drivers appear to always set `ops` before register (trigger
may be rare in practice)
**UNRESOLVED:**
- Mailing list review thread (Anubis blocked)
- No confirmed in-tree reproduction with current drivers
The unresolved items do not outweigh the clear correctness fix: forward
paths already treat NULL `ops` as valid; teardown must match.
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — mirrors existing guards;
maintainer SOB; no logic change beyond NULL safety
2. Fixes a real bug? **PASS** — NULL deref on error teardown
3. Important issue? **PASS** — kernel oops on probe error recovery (HIGH
for affected users)
4. Small and contained? **PASS** — 2 lines, 1 file
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — buggy code confirmed in v6.18.44
### Step 9.3: Exception Categories
**Record:** None (standard bug fix).
### Step 9.4: Decision Rationale
This is a conservative, surgical fix for an inconsistent NULL check that
can kernel-oops during `host1x_device_init()` error recovery on Tegra
systems. The fix aligns teardown with forward init and
`host1x_device_exit()`, carries negligible regression risk, and the
buggy code is present in this v6.18.44 tree.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user query
- **[Phase 2]** Confirmed diff: 2 lines in `host1x_device_init()`
teardown paths
- **[Phase 3]** `git describe HEAD`: v6.18.44; Makefile confirms 6.18.44
- **[Phase 3]** `git blame -L 222,236`: teardown from 2017
(`8f7da1578e90b`), teardown_late from 2021 (`933deb8c7b8e3f`)
- **[Phase 3]** `git show 8f7da1578e90bf`: original teardown added
without NULL check while forward path had one
- **[Phase 3]** `git log -p -S 'if (client->ops->exit)'`: confirmed 2017
introduction of unguarded teardown
- **[Phase 3]** `git log --oneline -15 -- drivers/gpu/host1x/bus.c`:
recent related fixes; no duplicate fix
- **[Phase 4]** `b4 dig`: no results (commit not in tree)
- **[Phase 4]** WebFetch lore/patch.msgid.link: blocked by Anubis —
**UNVERIFIED** review discussion
- **[Phase 5]** `grep host1x_device_init`: callers in tegra drm, tegra-
se, tegra-video
- **[Phase 5]** Read `host1x_device_init()`, `host1x_device_exit()`,
suspend/resume: confirmed `client->ops &&` pattern elsewhere
- **[Phase 5]** Read tegra driver probes (dc.c, gr3d.c, sor.c, tegra-
se): ops set before register
- **[Phase 6]** Read current `bus.c` lines 224, 232: buggy code present
(no NULL check)
- **[Phase 6]** Kconfig: `CONFIG_TEGRA_HOST1X` depends on `ARCH_TEGRA ||
COMPILE_TEST`
- **[Phase 8]** Failure mode: NULL deref → oops on init-failure teardown
**YES**The backport analysis is done.
**Commit:** `host1x: bus: Fix missing ops null check in error teardown`
**Tree:** v6.18.44 — the bug is still present (unguarded `client->ops`
derefs at lines 224 and 232 in `drivers/gpu/host1x/bus.c`).
**Summary:** On Tegra, if `host1x_device_init()` fails partway through,
the teardown paths can NULL-deref `client->ops` while forward init and
`host1x_device_exit()` already guard against that. The fix is two lines,
matches existing patterns, and is signed off by host1x maintainer
Thierry Reding.
**Verdict: YES** — backport to this tree.
A background `git log --grep` search timed out; it wasn’t needed for the
decision since the buggy code and history were already confirmed
directly.
drivers/gpu/host1x/bus.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/host1x/bus.c b/drivers/gpu/host1x/bus.c
index 3313ead8bfcc2..06aa7fcd367e1 100644
--- a/drivers/gpu/host1x/bus.c
+++ b/drivers/gpu/host1x/bus.c
@@ -221,7 +221,7 @@ int host1x_device_init(struct host1x_device *device)
teardown:
list_for_each_entry_continue_reverse(client, &device->clients, list)
- if (client->ops->exit)
+ if (client->ops && client->ops->exit)
client->ops->exit(client);
/* reset client to end of list for late teardown */
@@ -229,7 +229,7 @@ int host1x_device_init(struct host1x_device *device)
teardown_late:
list_for_each_entry_continue_reverse(client, &device->clients, list)
- if (client->ops->late_exit)
+ if (client->ops && client->ops->late_exit)
client->ops->late_exit(client);
mutex_unlock(&device->clients_lock);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Don't schedule thermal work when queue isn't initialized
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (24 preceding siblings ...)
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.15] host1x: bus: Fix missing ops null check in error teardown Sasha Levin
@ 2026-08-31 13:24 ` Sasha Levin
2026-08-31 15:16 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] fbcon: don't suspend/resume when vc is graphics mode Sasha Levin
` (40 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:24 UTC (permalink / raw)
To: patches, stable
Cc: Timur Kristóf, Alex Deucher, Sasha Levin, kenneth.feng,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Timur Kristóf <timur.kristof@gmail.com>
[ Upstream commit f8922d5a946699fc2bdc7660e6778bd6726bf8b8 ]
When DPM is turned off with the amdgpu.dpm=0 module parameter,
the thermal work queue isn't initialized so we shouldn't
schedule any work on it.
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit bd018d36171a695952c6d391471c279c9e05c8b2)
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amd/pm/si: Don't schedule thermal work
when queue isn't initialized`
**Local tree:** `v6.18.44` (Makefile: 6.18.44)
**Upstream commit:** `bd018d36171a695952c6d391471c279c9e05c8b2` — **not
present** in this checkout.
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/amd/pm/si]` `[Don't schedule]` — prevent scheduling
thermal work on an uninitialized workqueue when DPM is disabled.
### Step 1.2: Tags
**Record:**
- `Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>` (author)
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` (AMD DRM
maintainer)
- No `Fixes:`, `Reported-by:`, `Cc: stable@vger.kernel.org`, `Link:`,
`Tested-by:`, or `Reviewed-by:` tags
- Notable: maintainer sign-off; no syzbot/user crash report in message
### Step 1.3: Body analysis
**Record:**
- **Bug:** With `amdgpu.dpm=0`, thermal `struct work_struct` is never
initialized via `INIT_WORK()`, but thermal IRQ handling can still call
`schedule_work()` on it.
- **Symptom:** Undefined behavior / kernel crash when a thermal
interrupt fires under `dpm=0`.
- **Root cause (author):** Thermal IRQ IDs are registered before the
`amdgpu_dpm == 0` early-return in `si_dpm_sw_init()`, but
`INIT_WORK()` is skipped on that path.
### Step 1.4: Hidden bug fix?
**Record:** No — this is an explicit bug fix, not disguised cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c` (+1/-1, net 0
lines)
- **Function:** `si_dpm_process_interrupt()`
- **Scope:** Single-file, single-line surgical fix
### Step 2.2: Code flow change
**Record:**
- **Before:** Any thermal IRQ (src_id 230/231) →
`schedule_work(&adev->pm.dpm.thermal.work)` unconditionally.
- **After:** Same path, but only if `amdgpu_dpm` is non-zero.
- **Path affected:** Interrupt handler path (can run in interrupt
context; work is deferred).
### Step 2.3: Bug mechanism
**Record:** **Memory safety / logic correctness** — use of uninitialized
workqueue.
In `si_dpm_sw_init()`:
```7783:7808:drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
ret = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, 230,
&adev->pm.dpm.thermal.irq);
// ...
ret = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, 231,
&adev->pm.dpm.thermal.irq);
// ...
if (amdgpu_dpm == 0)
return 0;
// ...
INIT_WORK(&adev->pm.dpm.thermal.work,
amdgpu_dpm_thermal_work_handler);
```
With `amdgpu.dpm=0`, IRQ handlers are registered but `INIT_WORK()` is
skipped. A thermal interrupt reaching `si_dpm_process_interrupt()` calls
`schedule_work()` on a zeroed but uninitialized work struct (device
allocated via `devm_drm_dev_alloc()`). The work function pointer is
NULL; queueing or executing such work can WARN or oops.
### Step 2.4: Fix quality
**Record:**
- **Quality:** High — mirrors existing `amdgpu_dpm` guards in the same
file (`si_dpm_hw_init`, `si_dpm_sw_init`).
- **Regression risk:** Very low — only suppresses work scheduling in the
exact case where work was never initialized.
- **Note:** `kv_dpm.c` has the same pattern unfixed; this commit only
addresses SI.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `si_dpm_process_interrupt()` and the unguarded
`schedule_work()` line blame to `^5d324e5159d9e` (predates reachable
history in this tree). Bug is long-standing, not a recent regression.
### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: Related file history
**Record:** Recent `si_dpm.c` changes are unrelated powertune/HAINAN
fixes. No duplicate fix for this issue in this tree. Commit
`bd018d36171a` is **not** an ancestor of HEAD.
### Step 3.4: Author context
**Record:** Timur Kristóf is an active `drm/amd/pm` contributor
(multiple recent SI/CI/SMU7 fixes). Alex Deucher committed the fix.
### Step 3.5: Dependencies
**Record:** Standalone one-hunk change. `amdgpu_dpm` is already declared
in `amdgpu.h` (included by `si_dpm.c`). No prerequisite commits
required. Listed as patch 1/3 on the mailing list, but this hunk is
self-contained for SI.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- `b4 dig -c bd018d36171a`: https://patch.msgid.link/20260712173928.2597
01-1-timur.kristof@gmail.com
- `b4 dig -a`: v1 only; `[PATCH 1/3]` (series has 2 more patches, likely
KV/CI siblings)
- Lore/patch.msgid.link content blocked by bot protection — **could not
read thread replies, stable nominations, or NAKs**
### Step 4.2: Reviewers
**Record:** `b4 dig -w` CC'd `amd-gfx@lists.freedesktop.org`, Alex
Deucher, Natalie Vock, Mario Limonciello (AMD), Tvrtko Ursulin.
### Step 4.3: Bug report
**Record:** N/A — no external bug report linked.
### Step 4.4: Related patches
**Record:** Part of a 3-patch series; patches 2/3 and 3/3 not verified
in this tree. This commit does not depend on them.
### Step 4.5: Stable list
**Record:** UNVERIFIED — could not search lore stable archive due to bot
protection.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `si_dpm_process_interrupt()`, `si_dpm_sw_init()`,
`amdgpu_dpm_thermal_work_handler()`
### Step 5.2: Callers
**Record:** `si_dpm_process_interrupt` is the `.process` callback in
`si_dpm_irq_funcs`, wired via `si_dpm_set_irq_funcs()`. Invoked by the
amdgpu IRQ layer on thermal IH events (src_id 230/231).
### Step 5.3: Callees
**Record:** `schedule_work()` → workqueue; handler
`amdgpu_dpm_thermal_work_handler()` (which itself checks
`adev->pm.dpm_enabled`, but that does not help if work was never
initialized).
### Step 5.4: Reachability
**Record:**
- Requires `CONFIG_DRM_AMDGPU_SI` + `amdgpu.si_support=1` (SI support is
experimental, off by default)
- Requires `amdgpu.dpm=0` module parameter
- Requires thermal IRQ delivery (src_id 230 or 231)
- Not directly userspace-triggerable, but hardware thermal events under
load are realistic
### Step 5.5: Similar patterns
**Record:** Identical unguarded pattern in `kv_dpm_process_interrupt()`
at line 3189–3190 of `kv_dpm.c` — same `amdgpu_dpm == 0` early-return /
`INIT_WORK` split in `kv_dpm_sw_init()`.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE (6.18.44)
### Step 6.1: Buggy code present?
**Record:** **YES.** Lines 7674–7675 still have the unguarded
`schedule_work()`:
```7674:7675:drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
if (queue_thermal)
schedule_work(&adev->pm.dpm.thermal.work);
```
### Step 6.2: Backport complications
**Record:** Clean apply expected — single-line change, no structural
conflicts. File has had minor unrelated churn but this hunk is
untouched.
### Step 6.3: Fix already present?
**Record:** **NO.** `git merge-base --is-ancestor bd018d36171a HEAD`
fails; grep shows no `queue_thermal && amdgpu_dpm` in tree.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/amd/pm` — **IMPORTANT** (GPU driver / power
management). Affects SI ASIC users on amdgpu, not core kernel.
### Step 7.2: Activity
**Record:** Actively maintained; recent SI powertune and display-timing
fixes in this tree.
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who is affected
**Record:** Users of Southern Islands GPUs with experimental amdgpu SI
support enabled and `amdgpu.dpm=0`. Narrow but real population
(debugging, workarounds).
### Step 8.2: Trigger conditions
**Record:** `amdgpu.dpm=0` at module load + thermal IRQ from GPU.
Uncommon parameter combo, but thermal events are normal under GPU load.
### Step 8.3: Failure severity
**Record:** Kernel WARN/oops from scheduling or executing uninitialized
work — **HIGH** (system crash). Not data corruption or security
escalation.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Prevents crash on a valid module-parameter configuration
- **Risk:** Minimal (one boolean guard matching existing conventions)
- **Ratio:** Favorable for stable
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real bug with clear mechanism (uninitialized work + `schedule_work()`)
- Can cause kernel crash
- One-line, obviously correct fix
- AMDGPU maintainer sign-off
- Buggy code confirmed in v6.18.44; fix not yet applied
- Matches existing `amdgpu_dpm` guards in same file
**AGAINST backport:**
- Narrow trigger: experimental SI support + `dpm=0` + thermal IRQ
- `CONFIG_DRM_AMDGPU_SI` off by default
- No user/syzbot report in commit message
- Sibling `kv_dpm.c` has same bug (out of scope for this commit)
**Unresolved:**
- Full mailing-list review thread (bot-blocked)
- Whether patches 2/3 fix KV/CI separately
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — logic is clear; maintainer
SOB; no Tested-by
2. Fixes a real bug? **PASS** — uninitialized work scheduling
3. Important issue? **PASS** — kernel crash (HIGH, narrow audience)
4. Small and contained? **PASS** — 1 line, 1 file
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — code exists, clean apply expected
### Step 9.3: Exception categories
**Record:** N/A — standard bug fix, not device-ID/quirk/DT/build/doc
exception.
### Step 9.4: Decision rationale
This is a small, surgical crash fix for a valid `amdgpu.dpm=0`
configuration on SI hardware. The audience is narrow (legacy SI +
experimental amdgpu support), but stable trees routinely take such
driver crash fixes when the change is minimal and clearly correct. The
bug exists in this 6.18.44 tree and the fix applies cleanly.
---
## Verification
- [Phase 1] Parsed commit `bd018d36171a`: subject, body, SOBs from Timur
Kristóf and Alex Deucher; no Fixes/Reported-by/Link tags
- [Phase 2] Diff: 1-line guard `queue_thermal && amdgpu_dpm` before
`schedule_work()` in `si_dpm_process_interrupt()`
- [Phase 2] Read `si_dpm_sw_init()`: IRQ registered at 7783–7788, early
return at 7801–7802 skips `INIT_WORK()` at 7808
- [Phase 2] Read `amdgpu_drv.c`: `amdgpu_dpm` module param at lines 162,
382 (`module_param_named(dpm, ...)`)
- [Phase 3] `git blame -L 7674,7675`: lines present since pre-history
(`^5d324e5159d9e`)
- [Phase 3] `git merge-base --is-ancestor bd018d36171a HEAD`: commit
**NOT** in tree
- [Phase 3] `git log --oneline -20 -- si_dpm.c`: no duplicate fix
- [Phase 3] `git log --author="Timur Kristóf" -10 --
drivers/gpu/drm/amd/pm/`: author active in subsystem
- [Phase 4] `b4 dig -c bd018d36171a`: found v1 at https://patch.msgid.li
nk/20260712173928.259701-1-timur.kristof@gmail.com
- [Phase 4] `b4 dig -a`: patch 1/3 in series
- [Phase 4] `b4 dig -w`: CC'd amd-gfx, Alex Deucher, Mario Limonciello
- [Phase 4] UNVERIFIED: lore/patch.msgid.link thread content (bot
protection)
- [Phase 5] `si_dpm_process_interrupt` wired via
`si_dpm_irq_funcs.process` at line 8155
- [Phase 5] `kv_dpm.c` has identical unguarded pattern at 3189–3190
- [Phase 5] `amdgpu_dpm_thermal_work_handler()` checks `dpm_enabled` but
does not prevent uninitialized-work bug
- [Phase 6] `git describe HEAD`: v6.18.44-2-g1b9e1abadee04; Makefile
6.18.44
- [Phase 6] Buggy code confirmed at si_dpm.c:7674–7675 in working tree
- [Phase 6] `si_dpm.c` includes `amdgpu.h` with `extern int amdgpu_dpm`
— fix compiles
- [Phase 7] `CONFIG_DRM_AMDGPU_SI` in Kconfig: experimental SI support,
off by default
- [Phase 8] Failure mode: crash from uninitialized `schedule_work()` —
severity HIGH, trigger narrow
**YES****Result:** The fix commit `bd018d36171a` is **not** in this tree
(`v6.18.44`), and the bug is still present in `si_dpm.c`.
**Verdict:** **YES** — backport recommended.
With `amdgpu.dpm=0`, thermal IRQ handlers are registered but
`INIT_WORK()` is skipped, so a thermal interrupt can call
`schedule_work()` on an uninitialized work struct and crash the kernel.
The one-line guard (`queue_thermal && amdgpu_dpm`) matches existing
checks in the same file and should apply cleanly to 6.18.y.
drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c b/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
index ea97276358c0a..39928eb71d669 100644
--- a/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
+++ b/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
@@ -7690,7 +7690,7 @@ static int si_dpm_process_interrupt(struct amdgpu_device *adev,
break;
}
- if (queue_thermal)
+ if (queue_thermal && amdgpu_dpm)
schedule_work(&adev->pm.dpm.thermal.work);
return 0;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] fbcon: don't suspend/resume when vc is graphics mode
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (25 preceding siblings ...)
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Don't schedule thermal work when queue isn't initialized Sasha Levin
@ 2026-08-31 13:24 ` Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] drm/mediatek: dsi: Add compatible for mt8167-dsi Sasha Levin
` (39 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:24 UTC (permalink / raw)
To: patches, stable
Cc: Lu Yao, Helge Deller, Sasha Levin, tzimmermann, simona, dri-devel,
linux-fbdev, linux-kernel
From: Lu Yao <yaolu@kylinos.cn>
[ Upstream commit 70d9d5f5fcd940f627bd403aaa6f65de724eef6b ]
Don't need to do suspend/resume for fbcon in graphic mode.
Doing this may cause error, eg:
At the beginning, starting the Xorg with single screen and then an
external screen was plugged in. After logging out in Xorg, fbdev
info may using screen which is connected later on for info always
using first connected connector in list in func 'drm_setup_crtcs_fb'.
Then, S3 executed, fbcon found that the information did not match
and do atomic to switch fb. However, Xorg will not re-bind the crtc
fb but continues doing ioctl. At this time, the fb is incorrect.
With some modifications by Helge Deller.
Signed-off-by: Lu Yao <yaolu@kylinos.cn>
Signed-off-by: Helge Deller <deller@gmx.de>
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:** `[fbcon]` `[don't]` (preventive) — skip suspend/resume fbcon
work when the virtual console is in graphics mode (`KD_GRAPHICS`).
### Step 1.2: Commit Tags
**Record:** Tags present:
- `Signed-off-by: Lu Yao <yaolu@kylinos.cn>` (author)
- `Signed-off-by: Helge Deller <deller@gmx.de>` (fbdev maintainer)
Notable absences (expected for manual review):
- No `Fixes:` tag
- No `Reported-by:` tag
- No `Cc: stable@vger.kernel.org`
- No `Link:` to bug report or syzbot
- No `Tested-by:` / `Reviewed-by:` / `Acked-by:`
### Step 1.3: Commit Body Analysis
**Record:**
- **Bug:** `fbcon_suspended()` / `fbcon_resumed()` run fbcon
cursor/screen update logic even when the VC is in graphics mode (Xorg
owns the display).
- **Symptom:** After multi-monitor hotplug + Xorg logout + S3
suspend/resume, fbdev metadata can point at the wrong connector; fbcon
resume triggers an atomic framebuffer switch while Xorg keeps using
the old framebuffer, leaving the display in a broken state.
- **Root cause (author):** fbcon should not touch the framebuffer in
graphics mode; resume path can call into `update_screen()` →
`fbcon_switch()` → `fb_set_var()`, provoking DRM atomic
reconfiguration.
- **Version info:** None stated.
### Step 1.4: Hidden Bug Fix Detection
**Record:** Yes — despite the short message, this is a real
suspend/resume correctness fix, not cosmetic cleanup. It aligns
`fbcon_suspended()` / `fbcon_resumed()` with the `KD_TEXT` guards
already used in `fbcon_modechanged()`, `fbcon_init()`, and other fbcon
paths.
---
## Phase 2: Diff Analysis
### Step 2.1: Change Inventory
**Record:**
- **File:** `drivers/video/fbdev/core/fbcon.c` (+3 net lines)
- **Functions:** `fbcon_suspended()`, `fbcon_resumed()`
- **Scope:** Single-file, surgical fix
### Step 2.2: Code Flow Change
**Record:**
| Hunk | Before | After |
|------|--------|-------|
| `fbcon_suspended()` | Always calls `fbcon_cursor(vc, false)` | Only if
`vc->vc_mode == KD_TEXT && con_is_visible(vc)` |
| `fbcon_resumed()` | Always calls `update_screen(vc)` | Only if
`vc->vc_mode == KD_TEXT && con_is_visible(vc)` |
Affected path: system suspend/resume via `fb_set_suspend()` →
`fbcon_suspended()` / `fbcon_resumed()`, commonly reached from DRM fbdev
(`drm_fb_helper_set_suspend()` → `drm_fbdev_client_suspend/resume`).
### Step 2.3: Bug Mechanism
**Record:** **Logic / correctness fix** in suspend/resume path.
- `update_screen(vc)` expands to `redraw_screen(vc, 0)`
(`include/linux/vt_kern.h`).
- `redraw_screen()` always calls `vc->vc_sw->con_switch(vc)` — for fbcon
that is `fbcon_switch()`, which calls `fb_set_var()` and can reprogram
the DRM framebuffer.
- `redraw_screen()` only skips the final `do_update_region()` when
`vc->vc_mode == KD_GRAPHICS`; it still runs `con_switch` /
`fb_set_var` in graphics mode.
- `fbcon_modechanged()` already bails out on `vc->vc_mode != KD_TEXT`;
`fbcon_suspended/resumed` did not — that inconsistency is the bug.
For `fbcon_suspended()`, `fbcon_cursor()` already returns early when
`!fbcon_is_active()`, and `fbcon_is_active()` requires `KD_TEXT`. The
suspend-side change is mostly consistency plus a `con_is_visible()`
guard; the resume-side `update_screen()` guard is the substantive fix.
### Step 2.4: Fix Quality
**Record:**
- **Quality:** High — matches existing pattern at lines 642, 1124, 2074,
2686 in the same file.
- **Regression risk:** Very low — fbcon should not manipulate the
framebuffer while X/compositor holds graphics mode.
- **Red flags:** None.
---
## Phase 3: Git History Investigation
### Step 3.1: Blame / Introduction
**Record:**
- `fbcon_suspended()` / `fbcon_resumed()` core logic dates to the
original fbcon import (`1da177e4c3f4`, 2005).
- Wrapper path via `fb_set_suspend()` consolidated in `50c5056356340`
(2019, "fbdev: directly call fbcon_suspended/resumed").
- Buggy unconditional `update_screen()` in `fbcon_resumed()` has been
present for many years; it only becomes problematic with modern DRM
atomic fbdev emulation and multi-connector setups.
### Step 3.2: Fixes: Tag
**Record:** N/A — no `Fixes:` tag in the commit message.
### Step 3.3: Related File History
**Record:** Recent `fbcon.c` changes in this tree are unrelated fbcon
bug fixes (NULL deref, OOB read, type fixes). No prior fix for this
graphics-mode suspend/resume issue found. Standalone patch, not part of
a series.
### Step 3.4: Author Context
**Record:**
- Lu Yao (Kylin OS) — platform vendor reporting a real multi-monitor +
S3 scenario.
- Helge Deller — active fbdev maintainer with recent fbcon fixes in this
tree (e.g. `d78bd6cc68276 fbcon: Fix null-ptr-deref in soft_cursor`).
### Step 3.5: Dependencies
**Record:** No dependencies. Uses `KD_TEXT`, `con_is_visible()`, and
existing helpers already in 6.18.44. Applies standalone.
---
## Phase 4: Mailing List and External Research
### Step 4.1–4.5: Lore / b4 dig
**Record:**
- `b4 dig -c <commit>` could not be run — this commit is not in the
checked-out tree (candidate only, no commit hash).
- Direct lore.kernel.org fetch returned 403 (bot protection).
- No matching `.mbx` file found in the workspace.
- **UNVERIFIED:** Full mailing-list review thread, reviewer stable
nominations, and patch series evolution.
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key Functions
**Record:** `fbcon_suspended()`, `fbcon_resumed()`, callers
`fb_set_suspend()`, `fbcon_switch()`, `redraw_screen()`.
### Step 5.2: Callers
**Record:** `fb_set_suspend()` called from:
- `drm_fb_helper_set_suspend()` / `drm_fbdev_client_suspend/resume()`
(DRM fbdev path — relevant to the reported bug)
- Legacy fbdev drivers (i915 intelfb, nvidia, aty, etc.)
- `fbsysfs.c` sysfs interface
Suspend/resume is a common system-wide path on laptops/desktops.
### Step 5.3: Callees
**Record:** `fbcon_cursor()`, `update_screen()` → `redraw_screen()` →
`hide_cursor()`, `con_switch()` (`fbcon_switch()`), `fb_set_var()`,
potential `fb_set_par()`.
### Step 5.4: Reachability
**Record:** Reachable on every S3/hibernate cycle while DRM fbdev
emulation is active. Trigger requires graphics mode (typical when
Xorg/Wayland compositor is running, or after logout with VC still in
graphics mode). Userspace does not need special privileges beyond normal
suspend.
### Step 5.5: Similar Patterns
**Record:** Same `con_is_visible(vc) && vc->vc_mode == KD_TEXT` guard
used elsewhere in `fbcon.c` (lines 642, 1124, 2074).
`fbcon_modechanged()` uses `vc->vc_mode != KD_TEXT` early return (line
2686).
---
## Phase 6: Cross-Reference Against Local Tree (v6.18.44)
### Step 6.1: Buggy Code Present?
**Record:** **Yes.** Current tree at
`drivers/video/fbdev/core/fbcon.c:2651-2674` still has unconditional
`fbcon_cursor()` and `update_screen()` with no `KD_TEXT` check. Fix is
not yet applied (`git log -S "Update screen when in text mode only"`
returned empty).
### Step 6.2: Backport Complications
**Record:** **Clean apply expected** — 3-line logical change in a stable
area of `fbcon.c`, no structural conflicts with recent local changes.
### Step 6.3: Related Fixes Already Present?
**Record:** No equivalent fix found in this tree.
---
## Phase 7: Subsystem Context
### Step 7.1: Subsystem / Criticality
**Record:** `drivers/video/fbdev/core/` — framebuffer console over DRM
fbdev emulation. **IMPORTANT** for desktop/laptop users relying on fbdev
+ suspend/resume; not universal core-kernel, but widely used on
Intel/AMD DRM systems with fbdev client enabled.
### Step 7.2: Activity
**Record:** fbcon remains actively maintained in 6.18.y (multiple fbcon
fixes in recent history on this branch).
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who Is Affected
**Record:** Users of DRM fbdev emulation with:
- Graphics mode active (`KD_GRAPHICS`, typical under Xorg)
- Multi-connector hotplug scenarios
- System suspend (S3) / resume
Config-dependent on `CONFIG_DRM_FBDEV_CLIENT` / fbdev emulation, but
that is common on desktop distros.
### Step 8.2: Trigger Conditions
**Record:** Specific but realistic: external monitor hotplug while X
running, logout, then S3. Not every boot, but reproducible on real
hardware per commit message. Unprivileged users can trigger via normal
suspend.
### Step 8.3: Failure Mode Severity
**Record:** Wrong framebuffer bound after resume; display corruption /
broken Xorg ioctl path. Not a kernel oops, but a **HIGH** functional
failure on resume — system may need reboot to recover display.
Suspend/resume breakage is a common stable backport category.
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** Prevents fbcon from disturbing DRM framebuffer state
during S3 when graphics mode is active.
- **Risk:** Very low — only skips work that should never run in graphics
mode.
- **Ratio:** Strong benefit, minimal risk.
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence Summary
**FOR backport:**
- Real, described hardware scenario (multi-monitor + S3 + Xorg/fbdev)
- Maintainer sign-off (Helge Deller)
- Tiny, obviously correct fix matching existing fbcon guards
- Bug mechanism verified in code: `update_screen()` → `fbcon_switch()` →
`fb_set_var()` runs even in `KD_GRAPHICS`
- Buggy code present since early fbcon, still unfixed in v6.18.44
- Suspend/resume display breakage is user-visible and painful
**AGAINST backport:**
- No syzbot/KASAN report or `Reported-by:` from upstream
- Failure mode is display corruption, not kernel crash/panic
- Suspend-side change is partially redundant (`fbcon_cursor` already
inactive in graphics mode)
- Mailing-list review unverified
**Unresolved:**
- Full lore review thread not accessible
- No independent `Tested-by:` confirmation
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — logic matches established
fbcon patterns; maintainer SOB; scenario described (no independent
test tag).
2. Fixes a real bug affecting users? **PASS** — concrete multi-monitor
S3 scenario.
3. Important issue? **PASS** — suspend/resume display corruption on
common laptop/desktop setup (**HIGH** severity).
4. Small and contained? **PASS** — 3 net lines, one file, two functions.
5. No new features or APIs? **PASS**.
6. Can apply to local tree? **PASS** — buggy code present, no
prerequisites.
### Step 9.3: Exception Categories
**Record:** None (not a device ID, quirk, DT, build, or docs fix).
Qualifies on straight bug-fix merits.
### Step 9.4: Decision Rationale
For **v6.18.44**, this commit closes a long-standing gap where fbcon
resume can invoke `fb_set_var()` through `update_screen()` while the VC
is in graphics mode. That is exactly the wrong time for fbcon to
reprogram the DRM framebuffer. The fix is minimal, consistent with the
rest of `fbcon.c`, endorsed by the fbdev maintainer, and addresses a
real suspend/resume regression path on DRM+fbdev systems. The missing
lore verification does not outweigh the clear code-path analysis.
---
## Verification
- **[Phase 1]** Parsed commit message and tags manually from user-
provided text.
- **[Phase 2]** Read diff and current `fbcon.c` at lines 2651–2710;
confirmed `update_screen` → `redraw_screen` → `con_switch` path in
`vt.c:929-987`.
- **[Phase 2]** Confirmed `fbcon_switch()` calls `fb_set_var()` at
`fbcon.c:2134`.
- **[Phase 2]** Confirmed `fbcon_is_active()` requires `KD_TEXT` at
`fbcon.c:287-292`.
- **[Phase 3]** `git describe HEAD` → `v6.18.44`; `make kernelversion` →
`6.18.44`.
- **[Phase 3]** `git blame` on `fbcon_suspended/resumed` — original code
from 2005, structure unchanged.
- **[Phase 3]** `git show 50c5056356340` — `fb_set_suspend` → fbcon path
since 2019.
- **[Phase 3]** `git log -S "Update screen when in text mode only"` —
fix not in tree.
- **[Phase 4]** `b4 dig` — cannot run without commit hash (candidate not
merged).
- **[Phase 4]** lore.kernel.org fetch — 403 Forbidden; **UNVERIFIED**
mailing-list discussion.
- **[Phase 5]** `grep fb_set_suspend` — callers include
`drm_fbdev_client.c:65-86`, `drm_fb_helper.c:729-737`.
- **[Phase 5]** Read `drm_fbdev_client_suspend/resume` and
`fb_set_suspend` in `fbmem.c:650-661`.
- **[Phase 5]** Confirmed `KD_TEXT` + `con_is_visible` pattern at
`fbcon.c:642,1124,2074`.
- **[Phase 6]** Buggy unconditional code confirmed present at
`fbcon.c:2660-2673`.
- **[Phase 6]** No duplicate fix found via `git log --grep` / `-S`
searches.
- **[Phase 8]** Failure mode assessed as display corruption after S3,
not kernel crash.
**YES**The background searches finished and match what we already
concluded:
- **Commit lookup:** The fix (`fbcon: don't suspend/resume when vc is
graphics mode`) is **not in v6.18.44** yet. A pickaxe search for
`vc->vc_mode == KD_TEXT` in `fbcon.c` only turned up older, unrelated
commits.
- **Author / b4 dig:** `git log --author="Lu Yao"` didn’t find this
patch in the tree (only unrelated commits). `b4 dig` couldn’t be run
without a merged commit hash.
That supports the earlier **YES** for backport: the bug is still present
in this tree, and the patch is a small, standalone guard around
`fbcon_suspended()` / `fbcon_resumed()` when the VC is in graphics
mode.The author-email search (`git log --author="yaolu"`) also didn’t
find the fbcon patch in this tree — only unrelated amdgpu, btrfs, and
x86 commits. That further confirms it’s a candidate not yet merged into
v6.18.44, consistent with the **YES** backport recommendation.
drivers/video/fbdev/core/fbcon.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c
index 35210f2bb7b2b..532522c2aed05 100644
--- a/drivers/video/fbdev/core/fbcon.c
+++ b/drivers/video/fbdev/core/fbcon.c
@@ -2657,8 +2657,9 @@ void fbcon_suspended(struct fb_info *info)
return;
vc = vc_cons[par->currcon].d;
- /* Clear cursor, restore saved data */
- fbcon_cursor(vc, false);
+ /* Clear cursor, restore saved data when in text mode */
+ if ((vc->vc_mode == KD_TEXT) && con_is_visible(vc))
+ fbcon_cursor(vc, false);
}
void fbcon_resumed(struct fb_info *info)
@@ -2670,7 +2671,9 @@ void fbcon_resumed(struct fb_info *info)
return;
vc = vc_cons[par->currcon].d;
- update_screen(vc);
+ /* Update screen when in text mode only */
+ if ((vc->vc_mode == KD_TEXT) && con_is_visible(vc))
+ update_screen(vc);
}
static void fbcon_modechanged(struct fb_info *info)
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/mediatek: dsi: Add compatible for mt8167-dsi
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (26 preceding siblings ...)
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] fbcon: don't suspend/resume when vc is graphics mode Sasha Levin
@ 2026-08-31 13:24 ` Sasha Levin
2026-08-31 15:22 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] drm/amd/display: Fix 8K Mode Not Parsed by EDID Sasha Levin
` (38 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:24 UTC (permalink / raw)
To: patches, stable
Cc: Luca Leonardo Scorcia, AngeloGioacchino Del Regno, CK Hu,
Chun-Kuang Hu, Sasha Levin, p.zabel, airlied, simona,
matthias.bgg, dri-devel, linux-mediatek, linux-kernel,
linux-arm-kernel
From: Luca Leonardo Scorcia <l.scorcia@gmail.com>
[ Upstream commit 6428eaf0c1f39815b08d57054895c1934d5782f3 ]
The mt8167 DSI controller is fully compatible with the one found in
mt2701. Unfortunately the device tree has a dedicated compatible for
mt8167 since 2022 and it cannot be changed with a fallback nor removed at
this point. The only way to get the device to work is to add the
compatible to the driver.
Signed-off-by: Luca Leonardo Scorcia <l.scorcia@gmail.com>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Reviewed-by: CK Hu <ck.hu@mediatek.com>
Link: https://patchwork.kernel.org/project/dri-devel/patch/20260505214541.333657-3-l.scorcia@gmail.com/
Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/mediatek: dsi: Add compatible for
mt8167-dsi
**Local tree:** `v6.18.43` (Makefile: 6.18.43)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: PARSE THE SUBJECT LINE
**Record:** `[drm/mediatek: dsi]` `[Add]` — Add `mediatek,mt8167-dsi`
compatible string to the existing MediaTek DSI platform driver so MT8167
boards can bind.
### Step 1.2: PARSE ALL COMMIT MESSAGE TAGS
**Record:**
- **Signed-off-by:** Luca Leonardo Scorcia `<l.scorcia@gmail.com>`
(author)
- **Reviewed-by:** AngeloGioacchino Del Regno
`<angelogioacchino.delregno@collabora.com>`
- **Reviewed-by:** CK Hu `<ck.hu@mediatek.com>` (MediaTek maintainer)
- **Link:** https://patchwork.kernel.org/project/dri-
devel/patch/20260505214541.333657-3-l.scorcia@gmail.com/
- **Signed-off-by:** Chun-Kuang Hu `<chunkuang.hu@kernel.org>` (applied
to mediatek-drm-next)
- No Fixes:, Reported-by:, Cc: stable, or syzbot tags
- Notable: two subsystem Reviewed-by tags, including MediaTek maintainer
### Step 1.3: ANALYZE THE COMMIT BODY TEXT
**Record:**
- **Bug:** MT8167 DSI hardware is register-compatible with MT2701, but
the DSI platform driver’s `of_match` table lacks
`mediatek,mt8167-dsi`.
- **Symptom:** DSI platform device does not probe; display pipeline
cannot complete on MT8167 boards whose DT uses `mediatek,mt8167-dsi`.
- **Root cause:** DT binding has listed `mediatek,mt8167-dsi` since
2022; that compatible cannot be removed or replaced with a fallback;
driver was never updated to match.
- **Version info:** Binding present since 2022; fix is May 2026.
### Step 1.4: DETECT HIDDEN BUG FIXES
**Record:** Not disguised as cleanup. This is explicit hardware-
enablement: a missing `of_device_id` entry leaves DSI non-functional on
affected hardware. Functionally a driver/DT mismatch bug, not a new
feature API.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: INVENTORY THE CHANGES
**Record:**
- **Files:** `drivers/gpu/drm/mediatek/mtk_dsi.c` (+1 line)
- **Functions/areas:** `mtk_dsi_of_match[]` static table
- **Scope:** Single-file, one-line surgical change
### Step 2.2: UNDERSTAND THE CODE FLOW CHANGE
**Record:**
- **Before:** `mtk_dsi_probe()` only runs for `mt2701-dsi`,
`mt8173-dsi`, `mt8183-dsi`, `mt8186-dsi`, `mt8188-dsi` compatibles.
- **After:** Also runs for `mediatek,mt8167-dsi`, using
`mt2701_dsi_driver_data` (same register offsets as MT2701).
- **Path affected:** Platform probe → `of_device_get_match_data()` → DSI
host/bridge registration → DRM component bind.
### Step 2.3: IDENTIFY THE BUG MECHANISM
**Record:**
- **Category:** Logic/correctness — missing hardware identification
entry (compatible-string quirk).
- **Mechanism:** `mtk_drm_drv.c` already recognizes
`mediatek,mt8167-dsi` in `mtk_ddp_comp_dt_ids[]` and adds a component
match, but `mtk_dsi_driver` never probes the device without a matching
`of_match` entry. DRM bind stalls or fails for the DSI component.
### Step 2.4: ASSESS THE FIX QUALITY
**Record:**
- Obviously correct: reuses existing `mt2701_dsi_driver_data`; author
and reviewers confirm hardware identity.
- Minimal, no unrelated changes.
- Regression risk: very low — only adds a new match entry pointing at
proven driver data.
- No API, structure, or locking changes.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: BLAME THE CHANGED LINES
**Record:** In this checkout, `git blame` on `mtk_dsi_of_match[]`
attributes all lines to a single squashed base commit (`a112b91dd6349`);
per-file history is not useful for dating the omission. The omission is
the absence of `mt8167-dsi` while other MT8167 compatibles exist
elsewhere in the same driver tree.
### Step 3.2: FOLLOW THE FIXES: TAG
**Record:** N/A — no `Fixes:` tag in the commit message.
### Step 3.3: CHECK FILE HISTORY FOR RELATED CHANGES
**Record:**
- Patch is **v4, 2/2** of series “Add support for mt8167 display
blocks”.
- **v4, 1/2:** `arm64: dts: mediatek: mt8167: Add DRM nodes` (adds DSI
and other display nodes to `mt8167.dtsi`).
- This driver patch is standalone: it only needs a DT node with
`mediatek,mt8167-dsi`, which the binding has documented since 2022 and
which `mtk_drm_drv.c` already handles.
### Step 3.4: CHECK THE AUTHOR'S OTHER COMMITS
**Record:** Luca Leonardo Scorcia is an active MT8167 display
contributor. Maintainer Chun-Kuang Hu applied the patch to `mediatek-
drm-next`. Git history in this tree is too squashed to enumerate author
commits locally.
### Step 3.5: CHECK FOR DEPENDENT/PREREQUISITE COMMITS
**Record:**
- No kernel-code prerequisites beyond existing `mt2701_dsi_driver_data`
and `mtk_dsi` driver (both present in 6.18.43).
- DTS patch 1/2 is **not** required for the driver fix to apply cleanly;
it is required for in-tree `mt8167.dtsi` to expose a DSI node.
Vendor/out-of-tree DTS may already use `mediatek,mt8167-dsi`.
- **Can apply standalone:** PASS for the driver change.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: FIND THE ORIGINAL PATCH DISCUSSION
**Record:**
- `b4 dig -c <sha>` failed (commit not in this repo).
- Patchwork: https://patchwork.kernel.org/project/dri-
devel/patch/20260505214541.333657-3-l.scorcia@gmail.com/
- Series: v4, 2/2; v4, 1/2 adds DRM DT nodes.
- Reviewed-by from AngeloGioacchino Del Regno and CK Hu on list.
- Chun-Kuang Hu: “Applied to mediatek-drm-next”.
- No stable nomination or NAK found in thread.
- lore.kernel.org fetch blocked (bot protection).
### Step 4.2: CHECK WHO REVIEWED THE PATCH
**Record:** CC list included `linux-mediatek`, `dri-devel`,
`devicetree`, `chunkuang.hu@kernel.org`, `ck.hu@mediatek.com`, and other
DRM/DT maintainers. MediaTek maintainer reviewed and applied.
### Step 4.3: SEARCH FOR THE BUG REPORT
**Record:** No formal bug report or syzbot link. Impact inferred from
incomplete driver/DT binding alignment and partial MT8167 DRM support
already in-tree.
### Step 4.4: CHECK FOR RELATED PATCHES AND SERIES
**Record:** Companion patch adds DSI node to `mt8167.dtsi`. In **this**
tree, `mt8167.dtsi` has mmsys/SMI nodes but **no DSI node**;
`mt8167-pumpkin.dts` also has no display nodes. Driver fix still matters
for downstream/vendor DTS and for when patch 1/2 lands.
### Step 4.5: CHECK STABLE MAILING LIST HISTORY
**Record:** Not searched (lore blocked). No stable discussion found on
Patchwork.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: IDENTIFY KEY FUNCTIONS IN THE DIFF
**Record:** `mtk_dsi_of_match[]`, `mtk_dsi_probe()`, `mtk_dsi_driver`
(platform driver registration via `mtk_drm_init()`).
### Step 5.2: TRACE CALLERS
**Record:**
- `mtk_dsi_driver` registered in `mtk_drm_init()` →
`platform_register_drivers()`.
- `mtk_drm_probe()` iterates MMSYS children, matches
`mediatek,mt8167-dsi` via `mtk_ddp_comp_dt_ids[]`, calls
`drm_of_component_match_add()` for DSI nodes.
- Without `mtk_dsi` probe, component bind cannot succeed.
### Step 5.3: TRACE CALLEES
**Record:** `mtk_dsi_probe()` uses `of_device_get_match_data()`,
clock/PHY/IRQ setup, `mipi_dsi_host_register()`, DRM bridge setup — all
standard, unchanged by this patch.
### Step 5.4: FOLLOW THE CALL CHAIN
**Record:** Boot → DT populates DSI platform device → `mtk_dsi_probe()`
(needs `of_match`) → component bind in `mtk_drm_bind()` → display
pipeline. Reachable on any MT8167 board with a DSI DT node; not a
syscall path, but normal embedded boot/display init.
### Step 5.5: SEARCH FOR SIMILAR PATTERNS
**Record:** `mtk_drm_drv.c` already lists many `mediatek,mt8167-*`
compatibles (mmsys, ovl, rdma, **dsi**, etc.) while `mtk_dsi.c` lacked
the DSI entry — clear inconsistency, same pattern as other SoC-specific
compat strings in `mtk_dsi_of_match[]`.
---
## PHASE 6: CROSS-REFERENCING AGAINST THE LOCAL TREE (6.18.43)
### Step 6.1: DOES THE BUGGY CODE EXIST IN THIS TREE?
**Record:** **YES.**
- `mtk_dsi.c` lines 1303–1309: `mtk_dsi_of_match[]` has no `mt8167-dsi`.
- `mtk_drm_drv.c` line 813: `mediatek,mt8167-dsi` **is** in
`mtk_ddp_comp_dt_ids[]`.
- `Documentation/devicetree/bindings/display/mediatek/mediatek,dsi.yaml`
line 28: `mt8167-dsi` documented.
- `mt2701_dsi_driver_data` exists at line 1271.
- Partial MT8167 DRM support is already in 6.18.43; DSI driver match is
the missing piece.
### Step 6.2: CHECK FOR BACKPORT COMPLICATIONS
**Record:** **Clean apply** — single line insertion after the
`mt2701-dsi` entry. No structural conflicts observed; table layout
matches the upstream diff context.
### Step 6.3: CHECK IF RELATED FIXES ARE ALREADY HERE
**Record:** No existing commit in this tree adds `mt8167-dsi` to
`mtk_dsi.c`. `git log --grep="mt8167-dsi"` returned nothing.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: IDENTIFY THE SUBSYSTEM AND ITS CRITICALITY
**Record:** `drivers/gpu/drm/mediatek` — **IMPORTANT** (embedded/display
on MediaTek SoCs; not core kernel, but user-visible on affected
hardware).
### Step 7.2: ASSESS SUBSYSTEM ACTIVITY
**Record:** MT8167 display support is actively being completed (v4
series, May 2026). 6.18.43 already carries substantial MT8167 DRM driver
data, indicating the platform is in scope for this stable series.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: DETERMINE WHO IS AFFECTED
**Record:** Users of MT8167-based devices with DSI panels (tablets,
embedded boards such as Pumpkin, vendor trees using
`mediatek,mt8167-dsi`). Config-dependent on `CONFIG_DRM_MEDIATEK` and
MT8167 DT support.
### Step 8.2: DETERMINE THE TRIGGER CONDITIONS
**Record:** Boot on MT8167 hardware with a DSI node using `compatible =
"mediatek,mt8167-dsi"`. Common on intended display bring-up; not
userspace-triggered. Likelihood: **certain** on any such board without
this fix.
### Step 8.3: DETERMINE THE FAILURE MODE SEVERITY
**Record:** DSI driver does not probe → display does not work (no
framebuffer/DRM output). **Severity: MEDIUM** — hardware broken for
display use, but not a crash, security issue, or data corruption.
### Step 8.4: CALCULATE RISK-BENEFIT RATIO
**Record:**
- **Benefit:** Enables DSI display on MT8167; fixes inconsistency with
binding and `mtk_drm_drv.c`.
- **Risk:** One line, existing driver data, maintainer-reviewed — **very
low**.
- **Ratio:** Favorable for stable; fits the “compatible / device ID
addition to existing driver” exception.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: COMPILE THE EVIDENCE
**FOR backport:**
- Fixes real broken display on MT8167 when DT uses `mediatek,mt8167-dsi`
- One-line, obviously correct; reviewed by MediaTek maintainer
- Reuses `mt2701_dsi_driver_data` — no new APIs or logic
- Binding and `mtk_drm_drv.c` already expect this compatible in 6.18.43
- Classic stable exception: compatible-string addition to existing
driver
- Very low regression risk
**AGAINST backport:**
- Could be framed as “new hardware enablement” rather than crash fix
- In-tree `mt8167.dtsi` in 6.18.43 still lacks DSI nodes (patch 1/2 not
merged)
- No syzbot/user crash reports
- Display failure is functional, not a kernel oops
**UNRESOLVED:**
- Exact mainline commit SHA not in this repo (`b4 dig` failed)
- lore.kernel.org thread not readable (403)
- When `mt8167-dsi` first entered the DT binding in mainline history
(squashed git in this checkout)
Neither unresolved item changes the technical conclusion for 6.18.43.
### Step 9.2: STABLE RULES CHECKLIST
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — maintainer Reviewed-by;
maps to known-good MT2701 data |
| 2. Fixes a real bug affecting users? | **PASS** — DSI cannot probe
without this entry |
| 3. Important issue? | **PASS (MEDIUM)** — display non-functional on
affected hardware |
| 4. Small and contained? | **PASS** — 1 line, 1 file |
| 5. No new features/APIs? | **PASS** — compatible quirk only; exception
applies |
| 6. Can apply to local tree? | **PASS** — clean one-line apply;
prerequisites present |
### Step 9.3: EXCEPTION CATEGORIES
**Record:** **Hardware quirk / device compatible addition** — adding
`mediatek,mt8167-dsi` to an existing driver’s `of_match` table, reusing
established `mt2701_dsi_driver_data`. Explicitly allowed for stable.
### Step 9.4: DECISION RATIONALE
For **6.18.43**, MT8167 DRM support is already partially merged:
`mtk_drm_drv.c` recognizes `mediatek,mt8167-dsi` and builds an MT8167
display pipeline, but `mtk_dsi.c` omits the compatible. That is a clear
driver bug/oversight, not greenfield feature work. The fix is one line,
low risk, maintainer-reviewed, and aligns driver behavior with the DT
binding that has documented `mt8167-dsi` since 2022. Stable trees
routinely take such compatible-string additions for existing drivers.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from user-provided commit
message and Patchwork
- **[Phase 2]** Confirmed diff: +1 line in `mtk_dsi_of_match[]` pointing
to `mt2701_dsi_driver_data`
- **[Phase 3]** `git describe HEAD` → `v6.18.43`; `git blame` on
`mtk_dsi.c:1303-1310` and `mtk_drm_drv.c:813-814`
- **[Phase 3]** `git log --grep="mt8167-dsi"` → no results in this tree
- **[Phase 4]** Patchwork fetch: v4 2/2 series, Reviewed-by, applied to
mediatek-drm-next
- **[Phase 4]** `b4 dig -c 2257966bbaa9a` → commit not found in repo
- **[Phase 4]** lore.kernel.org → 403 Forbidden
- **[Phase 5]** Read `mtk_dsi_probe()`, `mtk_drm_probe()`,
`mtk_drm_init()` registration path
- **[Phase 5]** `grep mt8167` in `drivers/gpu/drm/mediatek/` → extensive
MT8167 support in `mtk_drm_drv.c`, HDMI in `mtk_hdmi.c`
- **[Phase 6]** `grep mt8167-dsi` → present in `mtk_drm_drv.c` and
binding; **absent** in `mtk_dsi.c`
- **[Phase 6]** Read `mt8167.dtsi`, `mt8167-pumpkin.dts` → no DSI node
in-tree yet
- **[Phase 6]** Confirmed `mt2701_dsi_driver_data` exists at
`mtk_dsi.c:1271-1275`
- **[Phase 7]** Identified subsystem as DRM/MediaTek display driver
- **[Phase 8]** Assessed failure as non-probing DSI / no display (MEDIUM
severity)
**YES**
drivers/gpu/drm/mediatek/mtk_dsi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/mediatek/mtk_dsi.c b/drivers/gpu/drm/mediatek/mtk_dsi.c
index acee2227275b7..6845bb8043254 100644
--- a/drivers/gpu/drm/mediatek/mtk_dsi.c
+++ b/drivers/gpu/drm/mediatek/mtk_dsi.c
@@ -1302,6 +1302,7 @@ static const struct mtk_dsi_driver_data mt8188_dsi_driver_data = {
static const struct of_device_id mtk_dsi_of_match[] = {
{ .compatible = "mediatek,mt2701-dsi", .data = &mt2701_dsi_driver_data },
+ { .compatible = "mediatek,mt8167-dsi", .data = &mt2701_dsi_driver_data },
{ .compatible = "mediatek,mt8173-dsi", .data = &mt8173_dsi_driver_data },
{ .compatible = "mediatek,mt8183-dsi", .data = &mt8183_dsi_driver_data },
{ .compatible = "mediatek,mt8186-dsi", .data = &mt8186_dsi_driver_data },
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amd/display: Fix 8K Mode Not Parsed by EDID
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (27 preceding siblings ...)
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] drm/mediatek: dsi: Add compatible for mt8167-dsi Sasha Levin
@ 2026-08-31 13:24 ` Sasha Levin
2026-08-31 15:25 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/display: Fix CRC open failure during active rendering Sasha Levin
` (37 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:24 UTC (permalink / raw)
To: patches, stable
Cc: Fangzhi Zuo, Sun peng (Leo) Li, George Zhang, Alex Deucher,
Sasha Levin, harry.wentland, christian.koenig, airlied, simona,
amd-gfx, dri-devel, linux-kernel
From: Fangzhi Zuo <Jerry.Zuo@amd.com>
[ Upstream commit 9b3aa1dec7c364b0d7b171dcc00ab1092e362aef ]
[why]
The 8K120/8K240 timings live in DisplayID extension blocks 2 and 3
of this EDID. The EDID is a 4-block (512-byte) HDMI 2.1 EDID
that uses HF-EEODB.
drm core reads and parses this correctly, but amdgpu rebuilds its own copy.
Only 2 of 4 blocks were copied into sink->dc_edid, that leads to
drm_edid_connector_add_modes() never sees blocks 2 and 3.
[how]
Directly populate edid_blob_ptr with a blob whose length is the full,
and HF-EEODB-aware size.
Reviewed-by: Sun peng (Leo) Li <sunpeng.li@amd.com>
Signed-off-by: Fangzhi Zuo <Jerry.Zuo@amd.com>
Signed-off-by: George Zhang <george.zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit 11a90eaf5c808ba800249dda0d481c35d0888589)
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The branch check finished: commit `11a90eaf5c808` (“Fix 8K Mode Not
Parsed by EDID”) is on `linux-next/master` only, not in the local
`v6.18.44` tree. That matches the earlier finding — the fix is in
mainline development and still needs to be backported to 6.18.y if
selected.
The backport recommendation remains **YES** for this tree.
.../amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 20 ++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
index d0f770dd0a956..c2de763d621d3 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
@@ -1031,11 +1031,25 @@ enum dc_edid_status dm_helpers_read_local_edid(
continue;
edid = drm_edid_raw(drm_edid); // FIXME: Get rid of drm_edid_raw()
- if (!edid ||
- edid->extensions >= sizeof(sink->dc_edid.raw_edid) / EDID_LENGTH)
+ /*
+ * Use the length of the EDID property blob populated by
+ * drm_edid_connector_update() above. It reflects the true number
+ * of EDID blocks, including any HDMI Forum EDID Extension Override
+ * Data Block (HF-EEODB) count, which the raw byte 0x7e extension
+ * count can hide (e.g. HDMI 8K sinks).
+ */
+ if (!edid || !connector->edid_blob_ptr ||
+ connector->edid_blob_ptr->length > sizeof(sink->dc_edid.raw_edid))
return EDID_BAD_INPUT;
- sink->dc_edid.length = EDID_LENGTH * (edid->extensions + 1);
+ /*
+ * FIXME: amdgpu_dm today does not consider the HF-EEODB, which
+ * may contain additional mode info for sinks. This is a
+ * workaround until dc_edid is refactored out from DC into
+ * amdgpu_dm's ownership, allowing amdgpu_dm to use drm_edid
+ * directly
+ */
+ sink->dc_edid.length = connector->edid_blob_ptr->length;
memmove(sink->dc_edid.raw_edid, (uint8_t *)edid, sink->dc_edid.length);
/* We don't need the original edid anymore */
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.10] drm/amd/display: Fix CRC open failure during active rendering
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (28 preceding siblings ...)
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] drm/amd/display: Fix 8K Mode Not Parsed by EDID Sasha Levin
@ 2026-08-31 13:24 ` Sasha Levin
2026-08-31 15:24 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.15] drm/gud: Add RCade Display Adapter VID/PID pair Sasha Levin
` (36 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:24 UTC (permalink / raw)
To: patches, stable
Cc: Tom Chung, Ray Wu, James Lin, Daniel Wheeler, Alex Deucher,
Sasha Levin, harry.wentland, sunpeng.li, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Tom Chung <chiahsuan.chung@amd.com>
[ Upstream commit 5eb2fdafeb6f4a442643b77a21a4c9e70586a146 ]
[Why]
Opening the CRC data file during active rendering can fail with -EINVAL.
The wait for commit->hw_done returns remaining jiffies on success, but
the CRC path was treating that as an error.
[How]
Handle wait_for_completion_interruptible_timeout() correctly:
positive return as success, 0 as timeout, and negative as error.
Reviewed-by: Ray Wu <ray.wu@amd.com>
Signed-off-by: Tom Chung <chiahsuan.chung@amd.com>
Signed-off-by: James Lin <pinglei.lin@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The 6.18.y backport check found no “CRC open failure” commit in
`v6.18..HEAD`. The fix exists only as candidate `6ad40a4a964c0` on the
`autosel` branch and is not in 6.18.43 HEAD — the buggy `if (ret)` code
is still there. Verdict remains **YES**.
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
index e20aa74380665..596a97092e0dd 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
@@ -584,8 +584,13 @@ int amdgpu_dm_crtc_set_crc_source(struct drm_crtc *crtc, const char *src_name)
*/
ret = wait_for_completion_interruptible_timeout(
&commit->hw_done, 10 * HZ);
- if (ret)
+ if (ret < 0)
+ goto cleanup;
+
+ if (ret == 0) {
+ ret = -ETIMEDOUT;
goto cleanup;
+ }
}
enable = amdgpu_dm_is_valid_crc_source(source);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.15] drm/gud: Add RCade Display Adapter VID/PID pair
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (29 preceding siblings ...)
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/display: Fix CRC open failure during active rendering Sasha Levin
@ 2026-08-31 13:24 ` Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] drm/amdgpu: cap ATOM command table nesting depth Sasha Levin
` (35 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:24 UTC (permalink / raw)
To: patches, stable
Cc: Sophie D, Thomas Zimmermann, Sasha Levin, rubenru09,
maarten.lankhorst, mripard, airlied, simona, dri-devel,
linux-kernel
From: Sophie D <patches@scd31.com>
[ Upstream commit ac5ac0acf11df04295eb1811066097b7022d6c7f ]
The RCade Display Adapter is a hardware device that allows driving an
Arcade CRT display via the GUD protocol. Currently it spoofs an
existing GUD VID/PID pair. However, now that it has its own pair
assigned, it makes sense to add this to the list of pairs that GUD
supports natively.
More information can be found in the project repositories:
https://gitlab.scd31.com/stephen/stm32-usb-vga-adapter-hardware
https://gitlab.scd31.com/stephen/stm32-usb-vga-rcade-adapter
Link: https://pid.codes/1209/4FB3/
Signed-off-by: Sophie D <patches@scd31.com>
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patch.msgid.link/20260509025405.4143956-1-patches@scd31.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The background searches finished:
- **`git log --all --grep='RCade Display'`** found the commit at
`3eeabc569d3db` (upstream `ac5ac0acf11d`). It is **not** on the
current 6.18.43 HEAD, which matches the missing `0x1209:0x4fb3` entry
in `gud_id_table`.
- **`git log -S'0x4fb3'`** only turned up unrelated matches in other
subsystems; nothing in `drivers/gpu/drm/gud/`.
That confirms the earlier analysis: this is a one-line USB device ID
addition to an existing driver, and it is not yet in this stable tree.
The backport recommendation remains **YES**.
drivers/gpu/drm/gud/gud_drv.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/gud/gud_drv.c b/drivers/gpu/drm/gud/gud_drv.c
index a2000991ecbe4..4f0906f677b2a 100644
--- a/drivers/gpu/drm/gud/gud_drv.c
+++ b/drivers/gpu/drm/gud/gud_drv.c
@@ -684,6 +684,7 @@ static int gud_resume(struct usb_interface *intf)
static const struct usb_device_id gud_id_table[] = {
{ USB_DEVICE_INTERFACE_CLASS(0x1d50, 0x614d, USB_CLASS_VENDOR_SPEC) },
{ USB_DEVICE_INTERFACE_CLASS(0x16d0, 0x10a9, USB_CLASS_VENDOR_SPEC) },
+ { USB_DEVICE_INTERFACE_CLASS(0x1209, 0x4fb3, USB_CLASS_VENDOR_SPEC) },
{ }
};
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu: cap ATOM command table nesting depth
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (30 preceding siblings ...)
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.15] drm/gud: Add RCade Display Adapter VID/PID pair Sasha Levin
@ 2026-08-31 13:25 ` Sasha Levin
2026-08-31 15:24 ` sashiko-bot
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.6] drm/nouveau/gsp: add SEC2 to GA100 chip table Sasha Levin
` (34 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:25 UTC (permalink / raw)
To: patches, stable
Cc: Candice Li, Tao Zhou, Alex Deucher, Sasha Levin, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Candice Li <candice.li@amd.com>
[ Upstream commit 27ef1795bc4e47cae838e0a3ced531c549f9b23d ]
Cap nesting at 32 levels with execute_depth and
return -ELOOP when exceeded.
Signed-off-by: Candice Li <candice.li@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amdgpu: cap ATOM command table nesting
depth`
**Local tree:** `v6.18.44` (Makefile: 6.18.44)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/amdgpu]` `[cap]` — Limit ATOM BIOS command-table
recursion depth to prevent unbounded `ATOM_OP_CALLTABLE` nesting.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Candice Li `<candice.li@amd.com>` (author)
- **Reviewed-by:** Tao Zhou `<tao.zhou1@amd.com>` (AMD reviewer)
- **Signed-off-by:** Alex Deucher `<alexander.deucher@amd.com>` (amdgpu
maintainer)
- **No** Fixes:, Reported-by:, Tested-by:, Link:, or Cc: stable tags
- **Notable:** Patch is labeled `[PATCH 2/4]` on amd-gfx (May 2026
security-hardening series); this hunk is self-contained in
`atom.c`/`atom.h`
### Step 1.3: Body analysis
**Record:**
- **Bug:** Unbounded recursion via `ATOM_OP_CALLTABLE` →
`amdgpu_atom_execute_table_locked()` can exhaust the kernel stack.
- **Symptom:** Kernel stack overflow (oops/panic) when VBIOS command
tables nest deeply or cycle.
- **Fix:** Track `execute_depth` in `atom_context`, cap at 32, return
`-ELOOP` when exceeded.
- **Root cause:** `atom_op_calltable()` recursively calls
`amdgpu_atom_execute_table_locked()` with no depth limit; present
since amdgpu’s initial atom interpreter (2015).
### Step 1.4: Hidden bug fix?
**Record:** Yes — despite “cap” wording, this is a defensive bug fix
preventing kernel stack overflow, not a feature or refactor.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- `drivers/gpu/drm/amd/amdgpu/atom.c`: +11 lines
- `drivers/gpu/drm/amd/amdgpu/atom.h`: +3 lines
- **Total:** 14 lines added, 0 removed
- **Functions:** `amdgpu_atom_execute_table_locked()`; `struct
atom_context` extended
- **Scope:** Single-subsystem, surgical, two-file fix
### Step 2.2: Code flow change
**Record:**
- **Hunk 1 (define):** Adds `ATOM_EXECUTE_MAX_DEPTH 32` with comment
explaining stack-overflow prevention.
- **Hunk 2 (entry):** Before table execution, checks `ctx->execute_depth
>= 32`, logs `DRM_ERROR`, returns `-ELOOP`; otherwise increments
depth.
- **Hunk 3 (exit):** On all normal/error exits through `free:`,
decrements `execute_depth`.
- **Hunk 4 (struct):** Adds `unsigned int execute_depth` to
`atom_context`.
- **Before:** Unlimited recursive `calltable` op → stack growth until
overflow.
- **After:** Depth-limited recursion; excess nesting returns error that
propagates via existing `ctx->abort` handling.
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Memory safety / kernel crash prevention (unbounded stack
recursion)
- **Mechanism:** `atom_op_calltable()` at line 642 calls
`amdgpu_atom_execute_table_locked()` recursively. A malicious,
corrupt, or cyclic VBIOS can nest arbitrarily deep. Each frame
allocates locals and may call further atom ops on the stack. No prior
limit existed (`debug_depth` is debug-print-only).
### Step 2.4: Fix quality
**Record:**
- **Quality:** High — standard recursion-depth counter pattern;
increment on entry, decrement on all `free:` paths.
- **Regression risk:** Very low. Real VBIOS tables do not nest anywhere
near 32 levels. On limit hit, `-ELOOP` → `ctx->abort = true` →
controlled `-EINVAL` exit (existing path), not panic.
- **Note:** `execute_depth` is not reset in
`amdgpu_atom_execute_table()`, but mutex serialization and balanced
inc/dec within each execution keep it at 0 between top-level calls.
`atom_context` is `kzalloc()`’d, so field starts at 0.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- `atom_op_calltable()` introduced in `d38ceaf99ed01` (“drm/amdgpu: add
core driver (v4)”, 2015-04-20).
- Recursive call to `amdgpu_atom_execute_table_locked()` added in
`4630d5031cd87` (“drm/amdgpu: check PS, WS index”, 2024-01-11).
- Unbounded recursion bug present throughout amdgpu’s lifetime in this
tree.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag in commit message.
### Step 3.3: Related file history
**Record:** Recent `atom.c` fixes in this tree include:
- `cc9a8e238e42c` — kcalloc NULL check for WS buffer (OOM path)
- `e5f7e4e0a445f` — vbios NULL offset workaround
- `7bfd16d0ec374` — `last_jump_jiffies` initialization
- No prior nesting-depth or recursion-limit fix found.
### Step 3.4: Author context
**Record:** Candice Li is an active AMD amdgpu contributor. Alex Deucher
(maintainer) signed off. Part of a 4-patch May 2026 hardening series
(RAS bounds, atom depth cap, PSP fw validation).
### Step 3.5: Dependencies
**Record:** Standalone — patch 2/4 needs no other series members. No new
APIs, no prerequisite commits. `git apply --check` confirms clean apply
to this tree.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- **URL:** https://lists.freedesktop.org/archives/amd-
gfx/2026-May/144646.html
- **Series:** Patches 1/4 (RAS CPER bounds), 2/4 (this commit), 4/4 (PSP
fw_pri_buf validation); patches are independent.
- **Review feedback:** No NAKs or stable nominations found in fetched
thread; patch is minimal with maintainer sign-off.
- **b4 dig:** Failed to match commit `27ef1795bc4e` on lore (amd-gfx
list, not lore.kernel.org).
### Step 4.2: Reviewers
**Record:** Reviewed-by Tao Zhou (AMD); Signed-off-by Alex Deucher
(amdgpu maintainer). Submitted to amd-gfx@lists.freedesktop.org.
### Step 4.3: Bug reports
**Record:** No Reported-by:, syzbot, or bugzilla links. Issue identified
proactively as part of security hardening (comment explicitly cites
stack overflow).
### Step 4.4: Related patches
**Record:** Sibling patches address separate bounds-check issues
(userspace RAS ioctl, PSP firmware copy size). Not required for this
fix.
### Step 4.5: Stable list
**Record:** lore.kernel.org/stable search blocked (bot protection). No
stable-list discussion verified.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `amdgpu_atom_execute_table_locked()`, `atom_op_calltable()`,
`amdgpu_atom_execute_table()`.
### Step 5.2: Callers
**Record:** `amdgpu_atom_execute_table()` is widely used across amdgpu:
- Display: `atombios_encoders.c`, `atombios_crtc.c`, `atombios_dp.c`,
`command_table.c`
- PM: `ppatomctrl.c`, `ppatomfwctrl.c`, `smu_v11_0.c`, `smu_v12_0.c`
- Init: `amdgpu_atombios.c`, `amdgpu_atomfirmware.c`, `atom.c`
(`ATOM_CMD_INIT`)
- Called during GPU probe, mode set, power management, and display
hotplug — common operational paths.
### Step 5.3: Callees
**Record:** Recursive path: `atom_op_calltable()` →
`amdgpu_atom_execute_table_locked()`. Uses `kcalloc()` for workspace
(heap), but each stack frame still carries locals and interpreter state.
### Step 5.4: Reachability
**Record:** Triggered when amdgpu parses/executes VBIOS ATOM command
tables during normal driver operation (probe, display, PM). VBIOS
content comes from GPU ROM; can also be attacker-influenced via VFIO GPU
passthrough (guest-supplied VBIOS) or root-level VBIOS flashing. Not a
direct unprivileged-syscall path, but runs in kernel context on widely
used hardware.
### Step 5.5: Similar patterns
**Record:** No equivalent `execute_depth` / `ATOM_EXECUTE_MAX_DEPTH` in
radeon or other drm atom interpreters in this tree. `debug_depth` in
`atom.c` is unrelated (SDEBUG formatting only).
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE (v6.18.44)
### Step 6.1: Buggy code present?
**Record:** **Yes.** `atom_op_calltable()` at lines 632–646 recursively
calls `amdgpu_atom_execute_table_locked()` with no depth check.
`execute_depth` / `ATOM_EXECUTE_MAX_DEPTH` absent (`grep` returns no
matches).
### Step 6.2: Backport complications
**Record:** **Clean apply expected.** `git apply --check` succeeded with
no conflicts. File structure matches patch context.
### Step 6.3: Related fixes already present?
**Record:** **No.** `git log -S "execute_depth"` on amdgpu returns
empty. Fix not already in tree.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** **drivers/gpu/drm/amd/amdgpu** — IMPORTANT. Affects all
amdgpu GPU users on probe, display, and PM paths.
### Step 7.2: Subsystem activity
**Record:** Actively maintained; recent atom.c fixes (2024–2025) show
ongoing hardening of the interpreter.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** All systems with `CONFIG_DRM_AMDGPU` and amdgpu-loaded AMD
GPUs. Config-specific but affects a large user base (desktops, servers,
laptops, cloud GPUs).
### Step 8.2: Trigger conditions
**Record:** VBIOS ATOM command table with `calltable` nesting >32 (or
infinite cycle). Uncommon with legitimate AMD VBIOS, but possible with
corrupt ROM, malicious passthrough VBIOS, or pathological tables.
Requires GPU present and atom table execution.
### Step 8.3: Failure mode severity
**Record:** **CRITICAL** without fix — kernel stack overflow →
oops/panic, potential security implications. **MEDIUM** with fix —
controlled error return, display/PM operation may fail but system stays
up.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH — prevents kernel crash from unbounded recursion in
widely-used code path.
- **Risk:** VERY LOW — 14-line defensive bound, maintainer-reviewed, no
API changes.
- **Ratio:** Strongly favors backport.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Fixes real unbounded-recursion bug present since amdgpu inception
- Prevents kernel stack overflow (crash-class issue)
- Small (14 lines), obviously correct, maintainer-signed
- Applies cleanly to v6.18.44
- Standalone — no series dependencies
- Graceful degradation on limit hit (existing abort path)
**AGAINST backport:**
- No user/syzbot report in commit message
- Trigger requires pathological VBIOS (uncommon on bare metal)
- Not directly reachable from unprivileged userspace without GPU
passthrough or root
**Unresolved:** Whether any legitimate production VBIOS exceeds 32
nesting levels (unverified; considered very unlikely given AMD’s own
32-level cap choice).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — standard depth counter;
Reviewed-by + maintainer SOB; logic verifiable by inspection.
2. Fixes a real bug? **PASS** — unbounded recursion can overflow kernel
stack.
3. Important issue? **PASS** — kernel crash / potential security impact
(CRITICAL severity).
4. Small and contained? **PASS** — 14 lines, 2 files.
5. No new features/APIs? **PASS** — internal defensive bound only.
6. Can apply to local tree? **PASS** — buggy code present, patch applies
cleanly.
### Step 9.3: Exception categories
**Record:** N/A (not device ID, quirk, DT, build, or docs). Qualifies as
a critical bug-fix.
### Step 9.4: Decision rationale
For **v6.18.44**, the vulnerable unbounded-recursion code is present and
the fix is absent. The patch is minimal, self-contained, maintainer-
approved, and prevents a kernel stack overflow in a core amdgpu code
path used during normal GPU operation. Trigger rarity does not outweigh
crash severity for stable trees.
---
## Verification
- [Phase 1] Parsed subject, tags, body; identified as stack-overflow
prevention fix
- [Phase 1] Confirmed patch is `[PATCH 2/4]` but self-contained
- [Phase 2] Diff analysis: +14 lines in `atom.c`/`atom.h`; depth check
at entry, decrement at `free:`
- [Phase 2] Verified `atom_op_calltable()` recursive call at line 642
- [Phase 2] Verified `debug_depth` is debug-only (lines 95, 1259, 1282),
not a safety limit
- [Phase 3] `git blame`: `atom_op_calltable` from 2015 (`d38ceaf99ed01`)
- [Phase 3] `git log -S "execute_depth"`: empty — fix not in tree
- [Phase 3] `git log --oneline -20 -- atom.c`: recent hardening commits,
no depth cap
- [Phase 3] `git apply --check`: patch applies cleanly
- [Phase 4] WebFetch amd-gfx/144646.html: original submission found
- [Phase 4] WebFetch amd-gfx/144645.html: patch 1/4 is independent RAS
fix
- [Phase 4] `b4 dig -c 27ef1795bc4e`: no lore match (amd-gfx list)
- [Phase 4] lore.kernel.org/stable: blocked by bot protection —
UNVERIFIED
- [Phase 5] `grep amdgpu_atom_execute_table`: 30+ call sites across
display/PM/init
- [Phase 5] Traced recursion: `atom_op_calltable` →
`amdgpu_atom_execute_table_locked`
- [Phase 5] Verified `-ELOOP` propagates via `ctx->abort = true` (lines
643–645)
- [Phase 6] `git describe HEAD`: v6.18.44
- [Phase 6] `grep execute_depth|ATOM_EXECUTE_MAX_DEPTH`: no matches —
bug present, fix absent
- [Phase 6] `amdgpu_atom_parse` uses `kzalloc` (line 1527) —
`execute_depth` starts at 0
- [Phase 6] `mutex_lock` in `amdgpu_atom_execute_table` (line 1295) —
serializes execution
- [Phase 8] Failure mode: stack overflow without fix = CRITICAL; with
fix = controlled error
**YES**The background checks finished and match the earlier analysis:
- **Related-commit search** — No amdgpu fix for ATOM nesting depth or
`ATOM_EXECUTE` in this tree; only unrelated “stack overflow” hits
elsewhere.
- **Fix-already-present check** — `execute_depth` /
`ATOM_EXECUTE_MAX_DEPTH` never appear in amdgpu history here; the
vulnerable recursive `atom_op_calltable()` path is still present on
**v6.18.44**.
That supports the **YES** backport verdict: the bug exists locally, the
fix is missing, and the patch should apply cleanly.
drivers/gpu/drm/amd/amdgpu/atom.c | 11 +++++++++++
drivers/gpu/drm/amd/amdgpu/atom.h | 3 +++
2 files changed, 14 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/atom.c b/drivers/gpu/drm/amd/amdgpu/atom.c
index 7a063e44d4298..639649ef6dd03 100644
--- a/drivers/gpu/drm/amd/amdgpu/atom.c
+++ b/drivers/gpu/drm/amd/amdgpu/atom.c
@@ -59,6 +59,9 @@
#define ATOM_CMD_TIMEOUT_SEC 20
+/* Limit ATOM command table recursion (calltable) to avoid kernel stack overflow. */
+#define ATOM_EXECUTE_MAX_DEPTH 32
+
typedef struct {
struct atom_context *ctx;
uint32_t *ps, *ws;
@@ -1229,6 +1232,13 @@ static int amdgpu_atom_execute_table_locked(struct atom_context *ctx, int index,
if (!base)
return -EINVAL;
+ if (ctx->execute_depth >= ATOM_EXECUTE_MAX_DEPTH) {
+ DRM_ERROR("atombios command table nesting exceeded limit (%u)\n",
+ ATOM_EXECUTE_MAX_DEPTH);
+ return -ELOOP;
+ }
+ ctx->execute_depth++;
+
len = CU16(base + ATOM_CT_SIZE_PTR);
ws = CU8(base + ATOM_CT_WS_PTR);
ps = CU8(base + ATOM_CT_PS_PTR) & ATOM_CT_PS_MASK;
@@ -1285,6 +1295,7 @@ static int amdgpu_atom_execute_table_locked(struct atom_context *ctx, int index,
free:
if (ws)
kfree(ectx.ws);
+ ctx->execute_depth--;
return ret;
}
diff --git a/drivers/gpu/drm/amd/amdgpu/atom.h b/drivers/gpu/drm/amd/amdgpu/atom.h
index 825ff28731f52..bb3d9eb7eb6b5 100644
--- a/drivers/gpu/drm/amd/amdgpu/atom.h
+++ b/drivers/gpu/drm/amd/amdgpu/atom.h
@@ -153,6 +153,9 @@ struct atom_context {
uint8_t vbios_ver_str[STRLEN_NORMAL];
uint8_t date[STRLEN_NORMAL];
uint8_t build_num[STRLEN_NORMAL];
+
+ /* Nesting depth for ATOM_OP_CALLTABLE */
+ unsigned int execute_depth;
};
extern int amdgpu_atom_debug;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/nouveau/gsp: add SEC2 to GA100 chip table
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (31 preceding siblings ...)
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] drm/amdgpu: cap ATOM command table nesting depth Sasha Levin
@ 2026-08-31 13:25 ` Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] drm/amd/ras: reset CPER ring on corrupt entry size Sasha Levin
` (33 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:25 UTC (permalink / raw)
To: patches, stable
Cc: Timur Tabi, Danilo Krummrich, Sasha Levin, lyude,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, nouveau, linux-kernel
From: Timur Tabi <ttabi@nvidia.com>
[ Upstream commit 604d0efb17cc0dd197e089134736ac2698d5fca7 ]
The booter-load and booter-unload firmware run on the SEC2 falcon.
During tu102_gsp_oneinit(), the booter constructor needs device->sec2
to access the SEC2 falcon.
Without the .sec2 entry, device->sec2 is NULL and this dereference
crashes during GSP-RM boot.
Signed-off-by: Timur Tabi <ttabi@nvidia.com>
Link: https://patch.msgid.link/20260430223838.2530778-3-ttabi@nvidia.com
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/nouveau/gsp: add SEC2 to GA100 chip
table`
**Local tree:** `v6.18.44` (stable/linux-6.18.y)
**Commit under review:** `604d0efb17cc0` (on `origin/master`, not yet in
this tree)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/nouveau/gsp]` `[add]` — Add missing SEC2 engine entry
to the GA100 (`nv170`) chipset table so GSP-RM boot can access the SEC2
falcon.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Timur Tabi `<ttabi@nvidia.com>` (author)
- **Signed-off-by:** Danilo Krummrich `<dakr@kernel.org>` (DRM
maintainer committer)
- **Link:**
https://patch.msgid.link/20260430223838.2530778-3-ttabi@nvidia.com
- No `Fixes:`, `Reported-by:`, `Cc: stable@vger.kernel.org`, or `Tested-
by:`
Notable: part of **PATCH v2 02/10** in series “drm/nouveau: fix GA100
issues”. Absence of stable tag is expected for manual review.
### Step 1.3: Body analysis
**Record:**
- **Bug:** `device->sec2` is NULL on GA100 because `nv170_chipset` lacks
a `.sec2` entry.
- **Symptom:** NULL pointer dereference during GSP-RM boot in
`tu102_gsp_oneinit()`.
- **Mechanism:** Booter-load/unload firmware runs on the SEC2 falcon;
booter constructor needs `device->sec2->falcon`.
- **Root cause:** Oversight when GSP was wired into the GA100 chip table
without the matching SEC2 entry.
### Step 1.4: Hidden bug fix?
**Record:** No — this is an explicit crash fix (NULL deref), not
disguised cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **Files:** `drivers/gpu/drm/nouveau/nvkm/engine/device/base.c` (+1
line)
- **Function/structure:** `nv170_chipset` static chip table
- **Scope:** Single-file, surgical one-liner
### Step 2.2: Code flow change
**Record:**
- **Before:** GA100 chip table has `.gsp = ga100_gsp_new` but no
`.sec2`; `device->sec2` stays NULL after device construction.
- **After:** `.sec2 = { 0x00000001, tu102_sec2_new }` is added; SEC2 is
instantiated like other Turing/Ampere GSP-RM platforms.
- **Path affected:** Device probe → subdev construction → GSP `oneinit`
→ booter constructor.
### Step 2.3: Bug mechanism
**Record:** **Category:** NULL pointer dereference
**Mechanism:** `tu102_gsp_oneinit()` unconditionally dereferences
`device->sec2->falcon`:
```307:313:drivers/gpu/drm/nouveau/nvkm/subdev/gsp/tu102.c
ret = gsp->func->booter.ctor(gsp, "booter-load",
gsp->fws.booter.load,
&device->sec2->falcon,
&gsp->booter.load);
if (ret)
return ret;
ret = gsp->func->booter.ctor(gsp, "booter-unload",
gsp->fws.booter.unload,
&device->sec2->falcon,
&gsp->booter.unload);
```
`ga100_gsp` uses this same `oneinit` handler:
```53:54:drivers/gpu/drm/nouveau/nvkm/subdev/gsp/ga100.c
.dtor = r535_gsp_dtor,
.oneinit = tu102_gsp_oneinit,
```
### Step 2.4: Fix quality
**Record:** Obviously correct — mirrors every other GSP-RM-capable
Turing chipset (e.g. `nv164_chipset` at line 2508 uses
`tu102_sec2_new`). Minimal risk; no API or behavioral change beyond
enabling a subdev that was always required.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- `nv170_chipset` introduced in `3b050680c8415` (Jan 2021, “recognise
GA10[024]”).
- `.gsp = ga100_gsp_new` added in `015ef6187f69e` (Sep 2023, “prepare
for GSP-RM”) — **this is when the bug was introduced**.
- `.sec2` never added to `nv170_chipset` until `604d0efb17cc0`.
### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag. Bug introduced by `015ef6187f69e`,
which is present in this stable tree.
### Step 3.3: Related file history
**Record:** Related GA100 work on master (not in 6.18.44):
`20e0c197802c5` (add GA100 GSP support), `0094a7a95d52b` (WPR
placement), `f0de0f89cc1e0` (require GSP-RM), `61de054a772a1` (formally
support GA100). This SEC2 commit is patch 2/10 of v2 series but is
**standalone** for the NULL-deref it fixes.
### Step 3.4: Author context
**Record:** Timur Tabi (NVIDIA) authored the GA100 fix series. Reviewed
on list by Lyude Paul (nouveau maintainer). Committed by Danilo
Krummrich (DRM maintainer).
### Step 3.5: Dependencies
**Record:** No hard dependencies. `tu102_sec2_new` exists in this tree
since `8d2c1e337604f` (2019). Patch applies cleanly (`git apply --check`
passes). Self-contained.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:** `b4 dig -c 604d0efb17cc0` found thread: [PATCH v2 02/10] at
https://patch.msgid.link/20260430223838.2530778-3-ttabi@nvidia.com.
Series: v1 (6 patches, Apr 7) → v2 (10 patches, Apr 30).
### Step 4.2: Reviewers
**Record:** `b4 dig -w` — CC'd: Lyude Paul, Danilo Krummrich, David
Airlie, nouveau@lists.freedesktop.org. **Reviewed-by: Lyude Paul** found
in mbox for the series.
### Step 4.3: Bug report
**Record:** No external bug report or syzbot link. Bug identified by
code analysis during GA100 bring-up.
### Step 4.4: Related patches
**Record:** Part of “fix GA100 issues” series. Other patches improve WPR
placement, FRTS handling, and formal GA100 enablement. This commit fixes
a crash independent of those follow-ups.
### Step 4.5: Stable list discussion
**Record:** No explicit `Cc: stable` nomination found in saved mbox. Not
a negative signal.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `nv170_chipset` (chip table), `tu102_sec2_new`,
`tu102_gsp_oneinit`, `ga100_gsp_new`.
### Step 5.2: Callers
**Record:** Chip table entries drive `NVKM_LAYOUT_ONCE` macros in
`nvkm_device_ctor()` (`base.c` ~3412). `tu102_gsp_oneinit` called via
`nvkm_gsp_oneinit` during `nvkm_device_init()` subdev init loop.
### Step 5.3: Callees
**Record:** `tu102_sec2_new` → `r535_sec2_new` when GSP-RM is active
(`nvkm_gsp_rm(device->gsp)`). Booter constructor uses SEC2 falcon
registers.
### Step 5.4: Reachability
**Record:** Triggered on GA100 probe when:
1. `NvEnableUnsupportedChipsets=1` (required in 6.18.44 — case `0x170`
only in unsupported path at line 3362–3364)
2. GSP-RM firmware loads (default `NvGspRm=true` in `tu102_gsp_load_rm`)
Driver load / module init path — reachable by root loading `nouveau` on
A100 hardware.
### Step 5.5: Similar patterns
**Record:** All TU10x chipsets (`nv164`–`nv168`) and GA102+ have `.sec2`
entries. GA100 is the sole GSP-enabled chipset missing it.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE (6.18.44)
### Step 6.1: Buggy code present?
**Record:** **YES.** `nv170_chipset` at lines 2512–2532 has `.gsp` but
no `.sec2`. Commit `604d0efb17cc0` is on master but not in `v6.18.44`.
### Step 6.2: Backport complications
**Record:** **Clean apply** — verified with `git apply --check`. No
conflicts expected.
### Step 6.3: Related fixes already present?
**Record:** No alternate fix for this issue in 6.18.44. Grep shows no
`.sec2` in `nv170_chipset`.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/nouveau` — **IMPORTANT** (GPU driver,
affects GA100/A100 users).
### Step 7.2: Activity
**Record:** GSP subsystem actively maintained; multiple GSP fixes in
6.18.y history.
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who is affected
**Record:** GA100 (NVIDIA A100) users running nouveau with GSP-RM.
Narrow hardware population but high-value datacenter GPUs. In 6.18.44,
requires `NvEnableUnsupportedChipsets=1`.
### Step 8.2: Trigger conditions
**Record:** GA100 hardware + nouveau module load + GSP-RM path. GSP-RM
is default-on (`nvkm_boolopt(..., "NvGspRm", true)`). Trigger is
deterministic on affected config, not a race.
### Step 8.3: Failure mode severity
**Record:** **CRITICAL** — kernel oops / NULL pointer dereference during
driver initialization. GPU completely non-functional; potential system
instability.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for GA100 users — prevents guaranteed crash on GSP-
RM boot
- **Risk:** VERY LOW — one line, matches established pattern, no new
APIs
- **Ratio:** Strongly favorable
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real, reproducible NULL pointer dereference
- Kernel crash on driver init (CRITICAL severity)
- One-line, obviously correct fix
- Bug introduced in-tree by `015ef6187f69e` (Sep 2023) and present since
- Applies cleanly to 6.18.44
- Reviewed by nouveau maintainer (Lyude Paul)
- Matches how all sibling GSP-RM chipsets are configured
**AGAINST backport:**
- GA100 still requires `NvEnableUnsupportedChipsets` in 6.18.44 (limited
exposure)
- Full GA100 support series not yet in stable (other patches may also be
needed for complete GA100 functionality, but not for this specific
crash fix)
**Unresolved:** No user crash reports or syzbot reproduction found (bug
found during development).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — mirrors TU10x pattern;
reviewed on list
2. Fixes a real bug? **PASS** — NULL deref with clear code path
3. Important issue? **PASS** — kernel oops on GPU probe/init
4. Small and contained? **PASS** — 1 line, 1 file
5. No new features/APIs? **PASS** — enables existing subdev constructor
already used elsewhere
6. Can apply to local tree? **PASS** — clean apply verified
### Step 9.3: Exception categories
**Record:** Hardware enablement fix for existing driver — analogous to
missing chip-table entry quirk. Not a new driver.
### Step 9.4: Decision rationale
When GSP-RM support was added to the GA100 chip table in September 2023,
the matching SEC2 entry was omitted. Because `ga100_gsp` uses
`tu102_gsp_oneinit()`, which unconditionally accesses
`device->sec2->falcon`, any attempt to boot GSP-RM on GA100 in this tree
crashes. The fix is a single missing table entry — the same
`tu102_sec2_new` used by all Turing GSP-RM platforms — and it applies
cleanly to v6.18.44.
Even though GA100 remains behind `NvEnableUnsupportedChipsets` in this
stable release, users who enable it for A100 testing will hit this crash
deterministically. The fix is minimal, low-risk, and prevents a serious
initialization failure.
---
## Verification
- [Phase 1] Parsed subject, tags, body; identified NULL-deref crash
during GSP-RM boot
- [Phase 2] Read diff (+1 line to `nv170_chipset`); traced
`tu102_gsp_oneinit()` NULL deref at lines 307–313
- [Phase 3] `git describe HEAD` → v6.18.44; `git blame` → GSP added to
GA100 in `015ef6187f69e`, sec2 never added
- [Phase 3] `git show 015ef6187f69e` confirmed GSP added without SEC2;
bug commit is in this tree
- [Phase 3] `git log v6.18.44..origin/master` → commit `604d0efb17cc0`
on master, not in stable
- [Phase 4] `b4 dig -c 604d0efb17cc0` → lore URL found; v2 02/10 of
10-patch series
- [Phase 4] `b4 dig -a` → v1 and v2 series revisions listed
- [Phase 4] `b4 dig -w` → Lyude Paul, Danilo Krummrich, Airlie CC'd
- [Phase 4] mbox grep → Reviewed-by: Lyude Paul; no stable nomination
- [Phase 5] Confirmed `ga100_gsp.oneinit = tu102_gsp_oneinit` in
`ga100.c`
- [Phase 5] Confirmed `tu102_sec2_new` exists and handles GSP-RM via
`r535_sec2_new`
- [Phase 5] Confirmed GA100 only enabled with
`NvEnableUnsupportedChipsets` at `base.c:3362`
- [Phase 6] Confirmed `nv170_chipset` lacks `.sec2` in current tree
(lines 2512–2532)
- [Phase 6] `git apply --check` on commit patch → applies cleanly
- [Phase 8] Failure mode: NULL deref → kernel oops, severity CRITICAL
**YES****Verdict: YES** — backport to this tree (v6.18.44).
The background checks confirmed `604d0efb17cc0` ("add SEC2 to GA100 chip
table") is on `origin/master` but not in stable/linux-6.18.y. In the
current tree, `nv170_chipset` has GSP support but no `.sec2` entry, so
`tu102_gsp_oneinit()` will NULL-deref `device->sec2` during GSP-RM boot
on GA100.
The fix is a one-line addition (`.sec2 = { 0x00000001, tu102_sec2_new
}`) that matches other Turing GSP-RM chipsets and applies cleanly.
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
index a965914f1c2fb..0dab8b6cbf9f3 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
@@ -2529,6 +2529,7 @@ nv170_chipset = {
.vfn = { 0x00000001, ga100_vfn_new },
.ce = { 0x000003ff, ga100_ce_new },
.fifo = { 0x00000001, ga100_fifo_new },
+ .sec2 = { 0x00000001, tu102_sec2_new },
};
static const struct nvkm_device_chip
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amd/ras: reset CPER ring on corrupt entry size
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (32 preceding siblings ...)
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.6] drm/nouveau/gsp: add SEC2 to GA100 chip table Sasha Levin
@ 2026-08-31 13:25 ` Sasha Levin
2026-08-31 15:40 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] fbdev: pm2fb: unwind WC setup on probe failure Sasha Levin
` (32 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:25 UTC (permalink / raw)
To: patches, stable
Cc: Xiang Liu, Stanley.Yang, Tao Zhou, Alex Deucher, Sasha Levin,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Xiang Liu <xiang.liu@amd.com>
[ Upstream commit 4d695e66d7027a0c78302e47ac76293675fbbb4d ]
When CPER ring overflow handling advances the read pointer, it trusts the
parsed entry size from the current ring contents. Corrupt CPER data can
produce an entry size that does not advance rptr after dword conversion
and pointer masking.
In that case the recovery loop keeps testing the same location while
holding the CPER ring mutex. This can hang the worker that is writing the
next CPER record.
Detect a no-progress rptr update and reset the CPER ring to an empty
state instead. This drops the corrupt contents and lets the writer leave
the recovery path without spinning.
Signed-off-by: Xiang Liu <xiang.liu@amd.com>
Reviewed-by: Stanley.Yang <Stanley.Yang@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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: `[drm/amd/ras] [reset] reset CPER ring on corrupt entry size` —
subsystem is AMDGPU RAS/CPER; action is a defensive recovery/reset in
response to corrupt data.
**Step 1.2 — Tags**
Record:
- `Signed-off-by: Xiang Liu <xiang.liu@amd.com>` (author)
- `Reviewed-by: Stanley.Yang <Stanley.Yang@amd.com>`
- `Reviewed-by: Tao Zhou <tao.zhou1@amd.com>`
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` (maintainer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`, or
`Tested-by:` tags
- Notable: AMD subsystem reviewers and maintainer sign-off; no syzbot or
user bug report
**Step 1.3 — Body analysis**
Record:
- **Bug:** On CPER ring overflow, the recovery loop advances `rptr`
using parsed entry sizes from ring contents. Corrupt CPER data can
yield an entry size that does not advance `rptr` after dword
conversion and masking.
- **Symptom:** Recovery loop spins forever at the same location while
holding `cper.ring_lock`, hanging the worker writing the next CPER
record.
- **Fix:** Detect no-progress `rptr` updates and reset the ring to empty
rather than spinning.
- **Root cause:** Trusting corrupt in-ring metadata during overflow
recovery.
**Step 1.4 — Hidden bug fix?**
Record: Yes. Despite “reset” wording, this is a hang/deadlock-class bug
fix in error-recovery code, not a feature addition.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- File: `drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c` (+12 net lines)
- Function modified: `amdgpu_cper_ring_write()`
- Scope: single-file, surgical fix in overflow recovery path
**Step 2.2 — Code flow per hunk**
Record:
- **Before:** `rptr += (ent_sz >> 2); rptr &= ring->ptr_mask;` always
runs; if `ent_sz` is 0, <4, or a multiple of ring circumference,
`rptr` may not move.
- **After:** Compute `next_rptr` only when `ent_sz >= sizeof(u32)`; if
`next_rptr == rptr`, reset ring (`rptr = wptr`, update `count_dw`,
`goto out_unlock`); otherwise advance normally.
- **Path affected:** CPER ring overflow recovery inside
`amdgpu_cper_ring_write()`, while `ring_lock` is held.
**Step 2.3 — Bug mechanism**
Record:
- Category: logic/correctness bug → infinite loop with mutex held (soft
hang)
- Mechanism: corrupt `record_length` or garbage between headers can make
`(rptr + (ent_sz >> 2)) & ptr_mask == rptr`; old code never exits the
`do { ... } while (!amdgpu_cper_is_hdr(...))` loop
**Step 2.4 — Fix quality**
Record:
- Fix is minimal and obviously correct: no-progress detection is
standard for ring-buffer parsers
- Recovery (drop corrupt contents, reset pointers) is preferable to
infinite spin
- Low regression risk: only triggers on already-corrupt overflow state
- Trade-off: loses corrupt CPER records, but that is acceptable vs.
permanent hang
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record: Overflow recovery loop introduced in `a6d9d192903ea`
(“drm/amdgpu: add data write function for CPER ring”, 2025-01-22).
Present in this tree at lines 507–515. First appeared in tag `v6.15`.
**Step 3.2 — Fixes: tag**
Record: Not applicable — no `Fixes:` tag in commit message.
**Step 3.3 — Related file history**
Record: Related prior fix `d6f9bbce18762` (“Fix computation for remain
size of CPER ring”) already in this tree; it fixed a *different*
infinite-loop cause in the same function. `8e0d1edb5c167` added missing
lock protection and was nominated for stable (`Cc:
stable@vger.kernel.org`). CPER subsystem landed starting `92d5d2a09de16`
in v6.15.
**Step 3.4 — Author context**
Record: Xiang Liu authored multiple CPER fixes including `d6f9bbce18762`
(same infinite-loop class). Reviews from AMD RAS engineers and
maintainer Alex Deucher.
**Step 3.5 — Dependencies**
Record: Standalone fix; no series markers, no prerequisite commits
referenced. Assumes existing `amdgpu_cper_ring_write()` overflow path —
present in this tree.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record: `b4 dig -c d5e59c24d907d` failed (commit not in local history).
`b4 shazam` found no matching message-id. lore.kernel.org search blocked
by bot protection. **UNVERIFIED:** full review-thread content.
**Step 4.2 — Reviewers**
Record: **UNVERIFIED** via `b4 dig -w` (commit hash unavailable
locally). Commit message lists Stanley.Yang, Tao Zhou, Alex Deucher.
**Step 4.3 — Bug report**
Record: Not applicable — no `Reported-by:` or `Link:` tags.
**Step 4.4 — Related patches**
Record: Complements `d6f9bbce18762` (already in tree) which fixed
another overflow infinite-loop cause. This patch addresses corrupt-
entry-size no-progress separately.
**Step 4.5 — Stable list history**
Record: **UNVERIFIED** — lore stable search inaccessible. Prior CPER
lock fix `8e0d1edb5c167` was explicitly CC'd to stable.
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `amdgpu_cper_ring_write()` (modified); uses
`amdgpu_cper_ring_get_ent_sz()`, `amdgpu_cper_is_hdr()`.
**Step 5.2 — Callers**
Record: `amdgpu_cper_ring_write()` called from:
- `amdgpu_cper_generate_ue_record()` — uncorrectable GPU errors
- `amdgpu_cper_generate_bp_threshold_record()` — bad-page threshold
(also from `amdgpu_ras_eeprom.c`)
- `amdgpu_cper_generate_ce_records()` — corrected errors
- `amdgpu_virt.c` — SR-IOV guest CPER dump path
All are RAS/error-reporting paths on ACA-enabled or SR-IOV CPER-enabled
devices.
**Step 5.3 — Callees**
Record: `mutex_lock/unlock(&ring->adev->cper.ring_lock)`,
`amdgpu_cper_ring_get_ent_sz()`, `memcpy()`, pointer masking.
**Step 5.4 — Reachability**
Record: Triggered when CPER ring overflows during error-record writes.
Call chain: ACA bank update (`aca_banks_update` →
`aca_banks_generate_cper` → `amdgpu_cper_generate_*` →
`amdgpu_cper_ring_write`). Reachable during real GPU RAS events — the
same conditions that fill the CPER ring. Not a syscall path, but
triggered by hardware error handling that must not hang.
**Step 5.5 — Similar patterns**
Record: Prior fix `d6f9bbce18762` explicitly described “unbreakable
while cycle when CPER ring overflow” in the same function — same bug
class, different root cause.
---
## Phase 6: Cross-Reference Against Local Tree
**Step 6.1 — Buggy code present?**
Record: **Yes.** Local tree is `v6.18.44` (Makefile: 6.18.44). Buggy
code at `amdgpu_cper.c:510-511` (`rptr += (ent_sz >> 2)` without no-
progress check). CPER code is an ancestor of HEAD; first CPER commits
tagged `v6.15`.
**Step 6.2 — Backport complications**
Record: Expected **clean apply with possible minor fuzz** — the
`amdgpu_cper_ring_write()` hunk matches this tree exactly; upstream diff
context in `amdgpu_cper_ring_get_ent_sz()` differs slightly (local uses
inline `chdr` check vs. `amdgpu_cper_is_hdr()` in upstream diff), but
the fix hunk is independent.
**Step 6.3 — Related fixes already present?**
Record: `d6f9bbce18762` (different overflow loop fix) and
`8e0d1edb5c167` (lock fix) are in tree. This specific corrupt-entry-size
hang is **not** yet fixed.
---
## Phase 7: Subsystem and Maintainer Context
**Step 7.1 — Subsystem criticality**
Record: `drivers/gpu/drm/amd/amdgpu` — IMPORTANT (AMD GPU RAS/CPER error
reporting). Not universal like mm/net, but critical for affected AMD GPU
users with ACA/RAS enabled.
**Step 7.2 — Activity**
Record: CPER code is actively developed (20 commits on `amdgpu_cper.c`);
subsystem is new (v6.15+) and still receiving bug fixes.
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: AMD GPU systems with CPER enabled (`amdgpu_aca_is_enabled()` or
`amdgpu_sriov_ras_cper_en()`). Config/driver-specific, but includes
production RAS workloads and SR-IOV hosts.
**Step 8.2 — Trigger conditions**
Record: CPER ring overflow **and** corrupt/non-advancing entry size in
ring buffer. Plausible when the ring already contains damaged data from
hardware errors or partial overwrites. Not everyday, but realistic in
the exact failure mode CPER exists to handle.
**Step 8.3 — Failure mode severity**
Record: **CRITICAL** — infinite loop with `cper.ring_lock` held; CPER
writer thread/worker hangs permanently; subsequent CPER records cannot
be written; RAS error logging stalls during hardware fault scenarios.
**Step 8.4 — Risk/benefit**
Record:
- **Benefit:** HIGH — prevents permanent hang in RAS error path during
overflow recovery
- **Risk:** LOW — ~15 lines, defensive reset only on detected no-
progress, reviewed by AMD maintainers
- **Ratio:** Strong benefit, minimal risk
---
## Phase 9: Final Synthesis
**Step 9.1 — Evidence compile**
FOR backport:
- Real infinite-loop hang with mutex held
- Affects RAS error reporting on AMD GPUs with CPER
- Small, surgical, obviously correct fix
- Buggy code present since v6.15, present in this v6.18.44 tree
- Prior related infinite-loop fix already backported-worthy and in tree
- AMD reviewer + maintainer sign-off
AGAINST backport:
- No syzbot/user bug report (weaker impact evidence, but mechanism is
clear)
- Only affects CPER-enabled AMD GPUs (narrower audience)
- Lore review thread not verified
UNRESOLVED:
- Full mailing-list review discussion
- Whether any reviewer explicitly nominated for stable
**Step 9.2 — Stable rules checklist**
1. Obviously correct and tested? **PASS** — logic is clear; reviewed by
AMD engineers; no Tested-by
2. Fixes a real bug? **PASS** — infinite loop on corrupt overflow
recovery
3. Important issue? **PASS** — worker hang during RAS error handling
(CRITICAL)
4. Small and contained? **PASS** — one file, ~15 lines
5. No new features/APIs? **PASS** — defensive recovery only
6. Can apply to local tree? **PASS** — target code exists; fix hunk
matches
**Step 9.3 — Exception categories**
Record: Not a device-ID/quirk/DT/docs/build fix. Qualifies as a critical
bug fix on its own merits.
**Step 9.4 — Decision rationale**
For this **v6.18.44** tree, the AMDGPU CPER ring overflow recovery code
exists and contains the described infinite-loop bug. The fix prevents a
permanent hang in RAS error logging when corrupt ring data prevents
`rptr` advancement — exactly the scenario CPER is meant to survive. The
patch is small, self-contained, and follows the same pattern as the
already-merged `d6f9bbce18762` overflow-loop fix.
---
## Verification
- [Phase 1] Parsed commit message and tags from user-provided diff
- [Phase 2] Analyzed diff: `amdgpu_cper_ring_write()` overflow loop
change
- [Phase 3] `git describe HEAD` → `v6.18.44`; Makefile confirms 6.18.44
- [Phase 3] `git blame -L 507,516` → buggy loop from `a6d9d192903ea`
(2025-01-22)
- [Phase 3] `git tag --contains 92d5d2a09de16` → CPER introduced in
`v6.15`
- [Phase 3] `git show d6f9bbce18762` → related prior infinite-loop fix
in same function, already in tree
- [Phase 3] `git log --oneline -20 -- amdgpu_cper.c` → CPER subsystem
history reviewed
- [Phase 4] `b4 dig -c d5e59c24d907d` → no match (commit not in local
repo)
- [Phase 4] `b4 shazam -s 'reset CPER ring on corrupt entry size'` →
message-id not known
- [Phase 4] lore.kernel.org fetch → blocked by Anubis bot protection
- [Phase 4] Workspace `*.mbx` grep → no matching thread found
- [Phase 5] `grep amdgpu_cper_ring_write` → 4 call sites in
`amdgpu_cper.c`, `amdgpu_virt.c`
- [Phase 5] Traced `aca_banks_update` → `aca_banks_generate_cper` →
`amdgpu_cper_generate_*` → `amdgpu_cper_ring_write`
- [Phase 6] Read `amdgpu_cper.c:466-521` → buggy code confirmed present,
fix absent
- [Phase 6] `git merge-base --is-ancestor 4d614ce8ffd75 HEAD` → CPER
ring code is in this tree
- [Phase 6] Patch apply via `git apply --check` → failed on upstream
context mismatch in unrelated hunk; target `amdgpu_cper_ring_write()`
hunk verified identical by direct file read
- [Phase 7] `amdgpu_cper_init()` requires `amdgpu_aca_is_enabled()` or
`amdgpu_sriov_ras_cper_en()` — verified in source
- [Phase 8] Confirmed mutex held across infinite loop (`mutex_lock` at
line 481, loop at 507-515, `mutex_unlock` at 520)
**YES**The background search finished: the fix commit **is not in this
tree** (`v6.18.44`). `git log --grep='reset CPER ring'` and
`--grep='corrupt entry size'` found nothing; Xiang Liu’s other CPER
commits (including `d6f9bbce18762`, a related overflow infinite-loop
fix) are present, but not this one.
The buggy overflow-recovery loop is still in `amdgpu_cper.c` at lines
510–511. This patch should be backported here: it prevents an infinite
spin with `cper.ring_lock` held when corrupt CPER ring data doesn’t
advance `rptr` during overflow recovery — a hang in the RAS error-
reporting path on ACA/SR-IOV CPER-enabled AMD GPUs.
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c | 20 ++++++++++++++++----
1 file changed, 16 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c
index 425a3e5643608..2694facb06c73 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c
@@ -465,7 +465,7 @@ static u32 amdgpu_cper_ring_get_ent_sz(struct amdgpu_ring *ring, u64 pos)
void amdgpu_cper_ring_write(struct amdgpu_ring *ring, void *src, int count)
{
- u64 pos, wptr_old, rptr;
+ u64 pos, wptr_old, rptr, next_rptr;
int rec_cnt_dw = count >> 2;
u32 chunk, ent_sz;
u8 *s = (u8 *)src;
@@ -506,9 +506,19 @@ void amdgpu_cper_ring_write(struct amdgpu_ring *ring, void *src, int count)
do {
ent_sz = amdgpu_cper_ring_get_ent_sz(ring, pos);
-
- rptr += (ent_sz >> 2);
- rptr &= ring->ptr_mask;
+ next_rptr = rptr;
+ if (ent_sz >= sizeof(u32))
+ next_rptr = (rptr + (ent_sz >> 2)) & ring->ptr_mask;
+
+ if (next_rptr == rptr) {
+ /* Corrupt entry size, reset the ring to avoid an infinite loop. */
+ rptr = ring->wptr;
+ *ring->rptr_cpu_addr = rptr;
+ ring->count_dw = (ring->ring_size - 4) >> 2;
+ goto out_unlock;
+ }
+
+ rptr = next_rptr;
*ring->rptr_cpu_addr = rptr;
pos = rptr;
@@ -517,6 +527,8 @@ void amdgpu_cper_ring_write(struct amdgpu_ring *ring, void *src, int count)
if (ring->count_dw >= rec_cnt_dw)
ring->count_dw -= rec_cnt_dw;
+
+out_unlock:
mutex_unlock(&ring->adev->cper.ring_lock);
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-5.10] fbdev: pm2fb: unwind WC setup on probe failure
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (33 preceding siblings ...)
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] drm/amd/ras: reset CPER ring on corrupt entry size Sasha Levin
@ 2026-08-31 13:26 ` Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: Use system unbound workqueue for soft IH ring Sasha Levin
` (31 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:26 UTC (permalink / raw)
To: patches, stable
Cc: Haoxiang Li, Helge Deller, Sasha Levin, linux-fbdev, dri-devel,
linux-kernel
From: Haoxiang Li <haoxiang_li2024@163.com>
[ Upstream commit 16eb19f0c90af03bda6ba66586d7bb0e9cf85b43 ]
Add arch_phys_wc_del() on error path to keep the
write-combining setup balanced when later probe
steps fail.
Signed-off-by: Haoxiang Li <haoxiang_li2024@163.com>
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `fbdev: pm2fb: unwind WC setup on probe
failure`
**Local tree:** `v6.18.44` (`stable/linux-6.18.y`, `HEAD` detached)
**Candidate commit:** `16eb19f0c90af03bda6ba66586d7bb0e9cf85b43`
(mainline only; **not** in this tree)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[fbdev: pm2fb]` `[unwind]` — Add missing write-combining
teardown when `pm2fb_probe()` fails after WC setup.
### Step 1.2: Tags
**Record:**
- `Signed-off-by: Haoxiang Li <haoxiang_li2024@163.com>` (author)
- `Signed-off-by: Helge Deller <deller@gmx.de>` (fbdev maintainer,
applied the patch)
- No `Fixes:`, `Reported-by:`, `Tested-by:`, `Reviewed-by:`, `Cc:
stable@vger.kernel.org`, or `Link:` tags
- Notable: maintainer ack via application; no user/fuzzer reports
### Step 1.3: Body analysis
**Record:**
- **Bug:** `arch_phys_wc_add()` is called during probe, but later probe
failures skip `arch_phys_wc_del()`.
- **Symptom:** Leaked MTRR/WC mapping on x86 systems where
`arch_phys_wc_add()` actually allocates an MTRR (PAT disabled, MTRR
enabled, `nomtrr` unset).
- **Root cause:** Missing symmetric cleanup on `err_exit_pixmap` and
downstream error labels (`err_exit_both`, `err_exit_all`).
- **Version info:** None in the message.
### Step 1.4: Hidden bug fix?
**Record:** Yes. Although titled “unwind WC setup,” this is a probe
error-path **resource leak** fix, not cosmetic cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **Files:** `drivers/video/fbdev/pm2fb.c` (+1 / −0)
- **Functions:** `pm2fb_probe()` error path only
- **Scope:** Single-file, surgical one-liner
### Step 2.2: Code flow change
**Record:**
- **Before:** After `arch_phys_wc_add()` at lines 1655–1657, failures at
pixmap alloc (`err_exit_pixmap`), cmap alloc (`err_exit_both`), or
`register_framebuffer()` (`err_exit_all`) skipped WC teardown.
- **After:** `err_exit_pixmap` calls
`arch_phys_wc_del(default_par->wc_cookie)` before unmapping smem —
matching `pm2fb_remove()` at line 1738.
- **Affected paths:** Error paths only (not the success path).
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Error-path resource leak
- **Mechanism:** `arch_phys_wc_add()` may consume an MTRR slot on PAT-
less x86; without `arch_phys_wc_del()`, that slot stays allocated
after failed probe. On PAT-enabled or non-x86 systems,
`arch_phys_wc_add()` is effectively a no-op and `arch_phys_wc_del(0)`
is also a no-op.
### Step 2.4: Fix quality
**Record:**
- Obviously correct; mirrors `pm2fb_remove()` and the pattern in
`tdfxfb.c` (line 1556).
- Minimal, no API changes.
- **Regression risk:** Very low — `arch_phys_wc_del()` is documented to
be safe for handle `0` and error returns.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- `arch_phys_wc_add()` introduced in `f8f05cdc767fa` (Apr 2015, “use
arch_phys_wc_add() and ioremap_wc()”).
- `f8f05cdc767fa` **is** an ancestor of this tree (`merge-base` exit 0).
- Error-path labels date to 2005–2008; WC cleanup on error was never
added when MTRR code was converted in 2015.
### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag. Bug introduced by `f8f05cdc767fa`,
which is present in 6.18.y.
### Step 3.3: Related file history
**Record:**
- `a943710407120` — identical fix for `uvesafb_probe()` error path,
**already in 6.18.y**
- `ed359a464846b` — `pm2fb` missing `pci_disable_device()` on probe
error path, **already in 6.18.y**
- `tdfxfb.c` already has `arch_phys_wc_del()` on probe error path (line
1556)
- Standalone patch; not part of a series
### Step 3.4: Author context
**Record:** Haoxiang Li submits probe error-path leak fixes across
subsystems; Helge Deller (fbdev maintainer) applied this patch.
### Step 3.5: Dependencies
**Record:** None. Requires only
`arch_phys_wc_add()`/`arch_phys_wc_del()` and `wc_cookie` in `struct
pm2fb_par`, all present since `f8f05cdc767fa`. Applies cleanly.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- `b4 dig -c 16eb19f0c90af`: https://patch.msgid.link/20260621071935.380
2673-1-haoxiang_li2024@163.com
- Single-patch submission; Helge Deller replied “applied. Thanks!”
- No series revisions (`-a` not needed; single patch)
- No stable nomination in thread
- No NAKs or concerns
### Step 4.2: Reviewers
**Record:** `b4 dig -w`: To/Cc — Haoxiang Li, Helge Deller, `linux-
fbdev@vger.kernel.org`, `linux-kernel@vger.kernel.org`
### Step 4.3: Bug reports
**Record:** N/A — no `Reported-by:` or `Link:` tags; no syzbot/fuzzer
involvement.
### Step 4.4: Related patches
**Record:** Direct analogue: `a943710407120` (uvesafb, same maintainer,
same pattern).
### Step 4.5: Stable list history
**Record:** Lore fetch blocked by bot protection; no stable-list
discussion found via `b4`. Precedent established in-tree via uvesafb
backport.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `pm2fb_probe()`, `arch_phys_wc_add()`, `arch_phys_wc_del()`
### Step 5.2: Callers
**Record:** `pm2fb_probe()` registered as `.probe` in `pm2fb_driver`
(PCI core during device enumeration/module load). Not a hot path; runs
once per device attach attempt.
### Step 5.3: Callees
**Record:** On failure after WC setup: `kfree()`, `fb_dealloc_cmap()`,
`iounmap()`, `release_mem_region()`, `framebuffer_release()`,
`pci_disable_device()`. WC teardown was the missing piece.
### Step 5.4: Reachability
**Record:** Trigger requires `CONFIG_FB_PM2` built/loaded, Permedia2
hardware present, probe progressing past smem ioremap + WC add, then
failing at:
1. `kmalloc(PM2_PIXMAP_SIZE)` → `-ENOMEM`
2. `fb_alloc_cmap()` failure
3. `register_framebuffer()` failure
Reachable from module load / PCI hotplug; no userspace syscall needed
beyond normal device binding.
### Step 5.5: Similar patterns
**Record:**
- `tdfxfb.c`: has probe-error `arch_phys_wc_del()` ✓
- `uvesafb.c`: fixed in `a943710407120` (in this tree) ✓
- `s3fb.c`, `i740fb.c`: WC add after success point or missing probe-
error del (latent issues elsewhere; out of scope)
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE
### Step 6.1: Buggy code present?
**Record:** **Yes.** Lines 1655–1657 call `arch_phys_wc_add()`; lines
1713–1715 (`err_exit_pixmap`) lack `arch_phys_wc_del()`. Bug present
since `f8f05cdc767fa` (2015).
### Step 6.2: Backport complications
**Record:** Clean apply expected — one line at `err_exit_pixmap`,
identical context to mainline diff.
### Step 6.3: Related fixes already present?
**Record:**
- `a943710407120` (uvesafb WC probe-error fix) — **present**
- `ed359a464846b` (pm2fb `pci_disable_device` probe fix) — **present**
- `16eb19f0c90af` (this fix) — **absent** (`merge-base --is-ancestor`
exit 1)
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/video/fbdev/pm2fb.c` — legacy framebuffer driver
(`CONFIG_FB_PM2`, tristate). **PERIPHERAL** — affects users of 1990s-era
Permedia2 hardware (PCI/SPARC).
### Step 7.2: Activity
**Record:** Low churn; occasional maintenance fixes from Helge Deller’s
fbdev tree.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users with Permedia2 hardware, `CONFIG_FB_PM2` enabled,
probe failing after WC setup. Narrow population.
### Step 8.2: Trigger conditions
**Record:**
- **Real leak only on:** x86, PAT disabled, MTRR enabled, `nomtrr=0`
- **Failure modes:** ENOMEM or framebuffer registration failure after WC
add
- **Likelihood:** Low (legacy hardware + rare probe failure)
- **Unprivileged trigger:** Indirectly via module load / device
presence; not a typical attack vector
### Step 8.3: Failure severity
**Record:** Leaked MTRR slot (finite resource, typically ~8–10 entries).
Can degrade performance or block other drivers needing MTRR on PAT-less
systems. **Not** a crash, deadlock, or data corruption. **Severity:
LOW–MEDIUM** (resource leak, not security).
### Step 8.4: Risk–benefit
**Record:**
- **Benefit:** Correct probe teardown; consistency with uvesafb/tdfxfb;
prevents MTRR exhaustion on affected configs
- **Risk:** Negligible — one line, symmetric with remove path, no-op on
modern PAT-enabled systems
- **Ratio:** Low benefit magnitude, but also near-zero risk; established
fbdev stable pattern
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real, verifiable resource leak since 2015 WC conversion
- One-line, obviously correct fix
- Identical pattern already backported in this tree (`a943710407120`
uvesafb)
- Same maintainer (Helge Deller) applied both uvesafb and pm2fb fixes
- Buggy code confirmed present in 6.18.y; fix not yet applied
- Matches `tdfxfb` probe-error pattern already in tree
**AGAINST backport:**
- Very obscure hardware (Permedia2)
- No user reports, syzbot, or security angle
- Effective only on PAT-less x86 with MTRR (rare on 6.18 deployments)
- Impact is resource leak, not crash/corruption
- “Important issue” bar is borderline for severity
**Unresolved:** None material to the decision.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — mirrors remove path;
maintainer applied; no objections
2. Fixes a real bug? **PASS** — MTRR leak on probe failure (on affected
configs)
3. Important issue? **PASS (borderline)** — resource leak, not
crash/security; but same class already accepted for uvesafb in this
tree
4. Small and contained? **PASS** — 1 line, 1 file
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — prerequisite code present; clean
apply
### Step 9.3: Exception categories
**Record:** None (not device ID, quirk, DT, build, or docs). Standard
probe error-path resource cleanup.
### Step 9.4: Decision rationale
For **linux-6.18.y**, this is a legitimate probe error-path resource
leak fix. Severity is low and the hardware is legacy, but the patch is
trivial, zero-risk, and the **same tree already carries the identical
uvesafb fix** (`a943710407120`). Backporting maintains consistency in
fbdev probe teardown and closes a gap that has existed since the 2015
`arch_phys_wc_add()` conversion.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body; no Reported-by/syzbot
- **[Phase 2]** Diff: +1 line `arch_phys_wc_del()` at `err_exit_pixmap`
in `pm2fb_probe()`
- **[Phase 3]** `git describe HEAD` → `v6.18.44`; `git blame` → WC add
from `f8f05cdc767fa` (2015)
- **[Phase 3]** `git merge-base --is-ancestor f8f05cdc767fa HEAD` → exit
0 (bug source in tree)
- **[Phase 3]** `git merge-base --is-ancestor 16eb19f0c90af HEAD` → exit
1 (fix not in tree)
- **[Phase 3]** `git log stable/linux-6.18.y..master -- pm2fb.c` → only
`16eb19f` and unrelated pci_device_id change
- **[Phase 3]** Related: `a943710407120` (uvesafb), `ed359a464846b`
(pm2fb pci_disable) in tree
- **[Phase 4]** `b4 dig -c 16eb19f` → lore URL found; maintainer
“applied”
- **[Phase 4]** `b4 dig -w` → fbdev maintainers CC’d
- **[Phase 5]** Read `arch_phys_wc_add/del` in
`arch/x86/kernel/cpu/mtrr/mtrr.c` and stubs in `include/linux/io.h`
- **[Phase 5]** Compared `tdfxfb.c:1556` (has probe-error del) and
`pm2fb.c:1738` (remove-path del)
- **[Phase 6]** Confirmed missing `arch_phys_wc_del` at lines 1713–1715
in current tree
- **[Phase 6]** `git show a943710407120` — identical uvesafb probe-error
fix already in 6.18.y
- **[Phase 8]** Assessed impact: MTRR leak on PAT-less x86 only;
LOW–MEDIUM severity
**YES**The background lookups finished and matched what the analysis
used:
- **pm2fb history:** The commit isn’t in this `v6.18.44` tree yet;
recent `pm2fb.c` history shows maintenance fixes like the
`pci_disable_device()` probe cleanup.
- **Candidate hash:** Mainline commit is `16eb19f0c90af` (“fbdev: pm2fb:
unwind WC setup on probe failure”).
- **Stable precedent:** `6.18.y` already has the same pattern for
uvesafb (`a943710407120`); this pm2fb fix is not in stable yet.
**Verdict for 6.18.y: YES** — one-line probe error-path MTRR/WC cleanup,
same class of fix already accepted in this tree.
drivers/video/fbdev/pm2fb.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/video/fbdev/pm2fb.c b/drivers/video/fbdev/pm2fb.c
index f34429829b7d7..82408503c2812 100644
--- a/drivers/video/fbdev/pm2fb.c
+++ b/drivers/video/fbdev/pm2fb.c
@@ -1711,6 +1711,7 @@ static int pm2fb_probe(struct pci_dev *pdev, const struct pci_device_id *id)
err_exit_both:
kfree(info->pixmap.addr);
err_exit_pixmap:
+ arch_phys_wc_del(default_par->wc_cookie);
iounmap(info->screen_base);
release_mem_region(pm2fb_fix.smem_start, pm2fb_fix.smem_len);
err_exit_mmio:
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: Use system unbound workqueue for soft IH ring
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (34 preceding siblings ...)
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] fbdev: pm2fb: unwind WC setup on probe failure Sasha Levin
@ 2026-08-31 13:26 ` Sasha Levin
2026-08-31 15:53 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/amdgpu/userq: pin mqd and fw object bo to avoid eviction Sasha Levin
` (30 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:26 UTC (permalink / raw)
To: patches, stable
Cc: Timur Kristóf, Tvrtko Ursulin, Alex Deucher, Sasha Levin,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Timur Kristóf <timur.kristof@gmail.com>
[ Upstream commit ba2977dcce72127986fbad76c4c67f134e2f69ae ]
Allow the kernel to dispatch the soft IH work on other CPUs.
Otherwise it can happen that the soft IH ring fills up
before it actually starts processing anything, which
can easily happen with retry page faults, in which case
the CP repeatedly spams the CPU with a lot of interrupts.
This significantly improves retry page fault handling on
GPUs that don't have the filter CAM and must rely on
software based filtering.
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit 3cdff3c8b93c2834977224d9c2b201fc334dd184)
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/amdgpu: Use system unbound workqueue for
soft IH ring
**Local tree:** `v6.18.44` (Makefile: 6.18.44)
**Fix commit:** `3cdff3c8b93c` (on `linux-next/master`, **not** an
ancestor of current HEAD — bug still present locally)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Parse subject line
**Record:** `[drm/amdgpu]` — no explicit verb; implied **fix/improve** —
**Use system unbound workqueue for soft IH ring**
### Step 1.2: Parse commit message tags
**Record:**
- **Reviewed-by:** Tvrtko Ursulin \<tvrtko.ursulin@igalia.com\>
- **Signed-off-by:** Timur Kristóf, Alex Deucher
- **No** Fixes:, Reported-by:, Tested-by:, Acked-by:, Link:, Cc:
stable@vger.kernel.org
- Notable: Reviewed-by from Igalia amdgpu contributor; no syzbot/user
bug report
### Step 1.3: Analyze commit body
**Record:**
- **Bug:** Soft IH ring can fill before its work item runs; CP floods
the CPU with interrupts during retry page faults.
- **Symptom:** Soft IH ring overflow / interrupt storm; degraded or
broken retry page fault handling on GPUs without hardware filter CAM
(software filtering only).
- **Root cause (author):** `schedule_work()` dispatches on a CPU-bound
workqueue; work stays pinned on the IRQ CPU and cannot run while that
CPU is saturated with interrupts.
- **Fix:** `queue_work(system_unbound_wq, ...)` allows processing on
another CPU.
- **Version info:** None in message.
### Step 1.4: Detect hidden bug fixes
**Record:** **Yes — functional bug fix disguised as scheduling
improvement.** Ring fill-up before processing means dropped interrupt
vectors and failed page-fault handling, not merely slower performance.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory changes
**Record:**
- **Files:** `drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c` (+1 / −1)
- **Function:** `amdgpu_irq_delegate()`
- **Scope:** Single-file, single-line surgical fix
### Step 2.2: Code flow change
**Record:**
- **Before:** `schedule_work(&adev->irq.ih_soft_work)` → queues on
`system_wq` (CPU-bound).
- **After:** `queue_work(system_unbound_wq, &adev->irq.ih_soft_work)` →
can run on any CPU.
- **Path:** Called from `amdgpu_irq_delegate()` after writing an IV to
the soft IH ring; triggered during retry page faults on GPUs using
software filtering (gmc_v9/v10/v11/v12).
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Logic / scheduling deadlock (interrupt storm + work
starvation).
- **Mechanism:** IRQ handler delegates to soft IH ring and schedules
bound work on the same CPU. Under retry page-fault storms, IRQs keep
arriving before work runs; `amdgpu_ih_ring_write()` can reach `wptr ==
rptr` and stop advancing the write pointer — IVs are written but not
committed/processed.
### Step 2.4: Fix quality
**Record:**
- **Quality:** Obviously correct; mirrors existing amdgpu usage of
`system_unbound_wq` in `amdgpu_reset.c`, `amdgpu_device.c`,
`aldebaran.c`.
- **Regression risk:** Very low. `queue_work()` deduplicates already-
queued work; same `work_struct` and handler unchanged.
- **No API, lock-order, or structural changes.**
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame changed lines
**Record:**
- `amdgpu_irq_delegate()` introduced in `26f32a377eedd` (Oct 2020,
Christian König) — soft IH infrastructure.
- `schedule_work()` line dates to that same commit; present in this tree
since 6.18 base.
- Bug has existed since soft IH ring was added (~5.10+ era).
### Step 3.2: Follow Fixes: tag
**Record:** N/A — no Fixes: tag.
### Step 3.3: Related file history
**Record:**
- Related: `bf80d34b6c58a` "Increase soft IH ring size" (symptom
mitigation, not root cause).
- `318e431b306e9` "Enable IH retry CAM on GFX9" — hardware path; this
fix targets GPUs **without** retry CAM.
- Part of series `[PATCH 3/3]` but **standalone** — patches 1/3 and 2/3
touch different concerns (ih6.1 version, HW register access).
### Step 3.4: Author context
**Record:** Timur Kristóf — active amdgpu contributor; Alex Deucher
merged. Tvrtko Ursulin reviewed.
### Step 3.5: Dependencies
**Record:** **No dependencies.** One-line change; `system_unbound_wq` is
a core kernel symbol. Applies cleanly to current `amdgpu_irq.c`.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- **b4 dig URL:** https://patch.msgid.link/20260513170849.27061-4-
timur.kristof@gmail.com
- **Series:** v1 only (May 13, 2026); committed version matches
submission.
- **Review:** Reviewed-by: Tvrtko Ursulin in thread.
- **No** stable@vger nomination, NAKs, or objections found in mbox.
### Step 4.2: Reviewers
**Record:** CC'd: amd-gfx, Alex Deucher, Christian König, Marek Olšák,
Natalie Vock, Melissa Wen, amir.shetaia@amd.com.
### Step 4.3: Bug report
**Record:** No external bug report or syzbot link. Issue identified by
developer from retry page-fault behavior.
### Step 4.4: Related patches
**Record:** Same series includes patch 2/3 "Don't perturb HW registers
when accessing soft IH ring" — separate fix, not required for this one.
### Step 4.5: Stable list history
**Record:** Not searched separately; no stable nomination in patch
thread. Not a negative signal per instructions.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `amdgpu_irq_delegate()`, `amdgpu_irq_handle_ih_soft()`,
`amdgpu_ih_ring_write()`, `amdgpu_ih_process()`
### Step 5.2: Callers of `amdgpu_irq_delegate()`
**Record:** Called from retry-fault paths in:
- `gmc_v9_0.c` (lines 589, 611)
- `gmc_v10_0.c` (line 128)
- `gmc_v11_0.c` (line 127)
- `gmc_v12_0.c` (line 120)
Triggered when `entry->ih == &adev->irq.ih` during retry page faults.
### Step 5.3: Callees
**Record:** `amdgpu_ih_ring_write()` writes IV to soft ring; work
handler calls `amdgpu_ih_process()` → `amdgpu_irq_dispatch()` → GMC
fault handler → `amdgpu_vm_handle_fault()`.
### Step 5.4: Reachability
**Record:**
- **Call chain:** HW IRQ → `amdgpu_irq_handler` → IH processing → GMC
fault handler → `amdgpu_irq_delegate` → work scheduling.
- **Reachable:** Yes — normal GPU compute/HMM/SVM page-fault path on
Navi/Vega/GFX9+ without hardware retry CAM.
- Only `vega20_ih.c` sets `retry_cam_enabled = true`; all other soft-IH
GPUs use software filtering path.
### Step 5.5: Similar patterns
**Record:** amdgpu already uses `queue_work(system_unbound_wq, ...)` for
reset/XGMI work to avoid CPU pinning — same rationale.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE
### Step 6.1: Buggy code in tree?
**Record:** **Yes.** `amdgpu_irq.c:515` still has
`schedule_work(&adev->irq.ih_soft_work)`. Soft IH infrastructure present
since 2020; retry page-fault delegation paths present in
gmc_v9/v10/v11/v12.
### Step 6.2: Backport complications
**Record:** **Clean apply expected** — identical one-line substitution
at same location. No structural divergence in this function vs. linux-
next.
### Step 6.3: Related fixes already present?
**Record:** `bf80d34b6c58a` (increase soft IH ring size) is present —
mitigates but does not fix scheduling starvation. This fix is **not**
yet in 6.18.44.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** **drivers/gpu/drm/amd/amdgpu** — IMPORTANT. Affects AMD GPU
users on compute and graphics workloads with recoverable page faults.
### Step 7.2: Subsystem activity
**Record:** Actively developed; interrupt and page-fault paths receive
frequent fixes in this tree.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** AMD GPU users on ASICs with soft IH ring and **without**
hardware retry CAM (most Navi, Vega10, GFX9, etc. — everything except
Vega20 in this tree). Config: `CONFIG_DRM_AMDGPU`.
### Step 8.2: Trigger conditions
**Record:**
- **When:** Retry page-fault storms (GPU compute, HMM, large sparse
mappings).
- **Likelihood:** Can occur under normal heavy GPU workloads, not exotic
edge case.
- **Unprivileged trigger:** Indirectly yes — userspace GPU workloads
trigger page faults.
### Step 8.3: Failure mode severity
**Record:**
- Soft IH ring overflow → dropped interrupt vectors → page faults not
handled.
- Interrupt storm → CPU saturation, possible soft lockup.
- GPU hang / application failure on affected workloads.
- **Severity: HIGH** (functional breakage + system responsiveness
impact; not proven kernel panic but can cause hangs).
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for affected AMD GPU users — restores correct retry
page-fault handling.
- **Risk:** VERY LOW — one-line, established pattern, reviewed.
- **Ratio:** Strong benefit, minimal risk.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Fixes real scheduling starvation bug causing soft IH ring overflow.
- Affects common AMD GPUs (Navi, Vega10, GFX9, etc.) on retry page
faults.
- Can cause interrupt storms and broken page-fault recovery.
- One-line, obviously correct, reviewed.
- Bug present since 2020; code exists in 6.18.44.
- Standalone, no dependencies.
**AGAINST backport:**
- No user bug report or syzbot confirmation (developer-found).
- Patch 3/3 of a series (but functionally independent).
- Framed as "improves" handling — but mechanism is ring overflow /
dropped IVs.
**Unresolved:** No quantitative data on how often users hit this in
production.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — reviewed, logical fix,
established amdgpu pattern.
2. Fixes real bug affecting users? **PASS** — ring overflow and
interrupt storm on retry page faults.
3. Important issue? **PASS** — HIGH: GPU hangs, CPU saturation, dropped
fault handling.
4. Small and contained? **PASS** — 1 line, 1 file.
5. No new features/APIs? **PASS**.
6. Can apply to local tree? **PASS** — buggy code present; clean apply.
### Step 9.3: Exception categories
**Record:** None (not device ID, quirk, DT, build, or docs). Standard
bug fix.
### Step 9.4: Decision rationale
For **6.18.y**, the soft IH ring and retry page-fault delegation code
are present and still use CPU-bound `schedule_work()`. Under retry page-
fault load on GPUs without hardware filter CAM, the soft IH work cannot
run on the IRQ-saturated CPU, the ring fills, IVs are dropped, and the
system can be flooded with interrupts. Switching to `system_unbound_wq`
is a minimal, reviewed fix already used elsewhere in amdgpu. This meets
stable criteria: real bug, important user impact, tiny contained change,
no new APIs.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body; no Fixes:/Reported-
by:/syzbot.
- **[Phase 2]** Diff: 1-line change in `amdgpu_irq_delegate()`; read
`amdgpu_ih_ring_write()` overflow behavior (lines 162–169).
- **[Phase 3]** `git describe HEAD` → v6.18.44; `git blame` →
`26f32a377eedd` (2020); `git merge-base --is-ancestor` → fix NOT in
HEAD.
- **[Phase 3]** Related commits: `bf80d34b6c58a`, `318e431b306e9`,
`26f32a377eedd`.
- **[Phase 4]** `b4 dig -c 3cdff3c` → lore URL; `b4 dig -a` → v1 series;
`b4 dig -w` → maintainers CC'd; mbox → Reviewed-by Tvrtko Ursulin, no
stable/NAK.
- **[Phase 5]** `grep amdgpu_irq_delegate` → 4 GMC files; `grep
retry_cam_enabled` → only `vega20_ih.c` sets true.
- **[Phase 5]** Read `gmc_v9_0.c:583–621`, `gmc_v10_0.c:115–137`,
`amdgpu_ih.c:150–169`, `amdgpu_irq.c:510–516`.
- **[Phase 5]** `grep system_unbound_wq` in amdgpu → prior usage in
reset/device code.
- **[Phase 6]** Confirmed `schedule_work` at `amdgpu_irq.c:515` in
current tree.
- **[Phase 6]** Fix commit only on `linux-next/master`, not ancestor of
HEAD.
- **[Phase 8]** Assessed severity from ring-overflow + interrupt-storm
mechanism in code.
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
index 8d7f97eed5a90..ccc378233bc5a 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
@@ -512,7 +512,7 @@ void amdgpu_irq_delegate(struct amdgpu_device *adev,
unsigned int num_dw)
{
amdgpu_ih_ring_write(adev, &adev->irq.ih_soft, entry->iv_entry, num_dw);
- schedule_work(&adev->irq.ih_soft_work);
+ queue_work(system_unbound_wq, &adev->irq.ih_soft_work);
}
/**
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu/userq: pin mqd and fw object bo to avoid eviction
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (35 preceding siblings ...)
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: Use system unbound workqueue for soft IH ring Sasha Levin
@ 2026-08-31 13:26 ` Sasha Levin
2026-08-31 15:50 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] fbdev: Wrap user-invoked calls to fb_set_var() in helper Sasha Levin
` (29 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:26 UTC (permalink / raw)
To: patches, stable
Cc: Sunil Khatri, Christian König, Alex Deucher, Sasha Levin,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Sunil Khatri <sunil.khatri@amd.com>
[ Upstream commit a3bbf32a336939a1d21b9561f8e53333b684b7ef ]
mqd and fw objects are queue core objects which should remain
valid and never be unmapped and evicted for user queues to work
properly.
During eviction if these buffers are evicted the hw continue to
use the invalid addresses and caused page faults and system hung.
Signed-off-by: Sunil Khatri <sunil.khatri@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amdgpu/userq: pin mqd and fw object bo
to avoid eviction`
**Local tree:** Linux **6.18.43** (`git describe HEAD` →
`v6.18.43-1-gc7f0dac02d232`, `make kernelversion` → `6.18.43`)
**Upstream commit:** `a3bbf32a336939a1d21b9561f8e53333b684b7ef` (not
present in this tree)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Parse the subject line
**Record:** `[drm/amdgpu/userq]` — implicit **fix** (prevent eviction) —
**pin MQD and firmware-object BOs so they are not evicted while user
queues are active**.
### Step 1.2: Parse all commit message tags
**Record:**
- **Fixes:** — none (expected for manual review)
- **Reported-by:** — none
- **Tested-by:** — none
- **Reviewed-by:** Christian König `<christian.koenig@amd.com>`
- **Acked-by:** — none
- **Link:** — none
- **Cc: stable@vger.kernel.org:** — none (not a negative signal)
- **Signed-off-by:** Sunil Khatri (author), Alex Deucher (maintainer
merge)
- **Notable:** Reviewed-by from AMDGPU subsystem maintainer; no
syzbot/reporter tags
### Step 1.3: Analyze commit body
**Record:**
- **Bug:** MQD and firmware context objects are core user-queue state;
they must stay mapped and valid for the lifetime of an active queue.
- **Symptom:** Under eviction (memory pressure), these BOs can be
evicted while hardware still references their GPU addresses → GPU page
faults → **system hang**.
- **Root cause (author):** Objects were created as kernel BOs in GTT but
were not pinned, unlike other queue-critical objects.
- **Version info:** None in the message.
### Step 1.4: Detect hidden bug fixes
**Record:** Not disguised as cleanup — this is an explicit stability
fix. Pinning prevents TTM eviction of BOs the GPU firmware still uses.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory the changes
**Record:**
- **File:** `drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c` (+10 / −3)
- **Functions modified:** `amdgpu_userq_create_object()`,
`amdgpu_userq_destroy_object()`
- **Scope:** Single-file surgical fix
### Step 2.2: Code flow change (per hunk)
**Record:**
- **Hunk 1 (`create_object`):** Before → reserve BO, alloc GART, kmap.
After → **pin BO first**, then GART/kmap; error paths goto `unpin_bo`
before `unresv`.
- **Hunk 2 (`destroy_object`):** Before → kunmap + unref. After → kunmap
+ **unpin** + unref.
- **Paths affected:** Queue object creation/destruction for MQD and
firmware context objects.
### Step 2.3: Bug mechanism
**Record:** **Memory safety / resource lifetime bug.** MQD
(`queue->mqd`) and firmware context (`queue->fw_obj`) BOs created via
`amdgpu_userq_create_object()` were evictable. Doorbell objects in the
same file were already pinned (`amdgpu_bo_pin(...,
AMDGPU_GEM_DOMAIN_DOORBELL)` at line 331). MQD/fw objects were an
oversight.
### Step 2.4: Fix quality
**Record:**
- **Obviously correct:** Mirrors existing doorbell pinning pattern in
the same file.
- **Minimal:** 10 lines, proper error-path cleanup (`unpin_bo` label).
- **Regression risk:** Low — pinning is standard for BOs hardware must
keep resident; unpin on destroy balances pin on create.
- **Reviewer note:** Christian König suggested eviction-fence
association as a future improvement but gave **Reviewed-by** for
pinning as an immediate fix.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame changed lines
**Record:** `amdgpu_userq_create_object()` / `destroy_object()` present
in `7b923c78b50d2` (v6.18.43 tag) **without** pinning. `amdgpu_userq.c`
also exists in `v6.17` and `v6.18` tags. Bug predates the fix commit.
### Step 3.2: Follow Fixes: tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: File history for related changes
**Record:** Patch is **v2 2/2** in series with `drm/amdgpu/userq: use
drm_exec in amdgpu_userq_fence_read_wptr` (patch 1/2, different file:
`amdgpu_userq_fence.c`). **This patch is standalone** — no dependency on
patch 1/2.
### Step 3.4: Author's other commits
**Record:** Sunil Khatri is an active AMDGPU userq contributor (multiple
userq fixes in drm tree). Alex Deucher merged; Christian König reviewed.
### Step 3.5: Prerequisites
**Record:** No prerequisites. `amdgpu_bo_pin()` / `amdgpu_bo_unpin()`
exist in this tree (`amdgpu_object.c`). `git show a3bbf32... | git apply
--check` succeeds on current checkout.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original patch discussion
**Record:**
- **b4 dig -c a3bbf32a336939a1d21b9561f8e53333b684b7ef:**
https://patch.msgid.link/20260508103910.2442183-2-sunil.khatri@amd.com
- **b4 dig -a:** v1 single patch, v2 two-patch series; committed version
matches v2 2/2
- **Reviewer feedback:** Christian König: "We should probably use the
eviction fence instead of pinning, but that can come in a later patch
set." → **Reviewed-by for now.** Author agreed pinning is acceptable
interim fix.
### Step 4.2: Reviewers
**Record:** **b4 dig -w:** To/CC: Sunil Khatri, Alex Deucher, Christian
König, amd-gfx@lists.freedesktop.org — appropriate maintainer coverage.
### Step 4.3: Bug report
**Record:** No external bug report or syzbot link. Hang described in
commit message and patch submission; no stack trace provided.
### Step 4.4: Related patches
**Record:** Patch 1/2 (drm_exec locking in fence read) is independent.
Not required for this fix.
### Step 4.5: Stable mailing list
**Record:** Not searched on lore stable (Anubis blocked direct lore
fetch). No explicit stable nomination found in accessible amd-gfx
thread.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `amdgpu_userq_create_object()`,
`amdgpu_userq_destroy_object()`
### Step 5.2: Callers
**Record:** `mes_userqueue.c`:
- `mes_userq_create_ctx_space()` → `amdgpu_userq_create_object(uq_mgr,
&queue->fw_obj, ...)` (fw context)
- MQD setup → `amdgpu_userq_create_object(uq_mgr, &queue->mqd, ...)`
(line 266)
- Destroy paths call `amdgpu_userq_destroy_object()` for both objects
### Step 5.3: Callees
**Record:** `amdgpu_bo_create`, `amdgpu_bo_reserve`,
**`amdgpu_bo_pin`**, `amdgpu_ttm_alloc_gart`, `amdgpu_bo_kmap`,
`amdgpu_bo_kunmap`, **`amdgpu_bo_unpin`**, `amdgpu_bo_unref`
### Step 5.4: Call chain / reachability
**Record:**
`userspace DRM_IOCTL_AMDGPU_USERQ (CREATE)` → `amdgpu_userq_ioctl()` →
`amdgpu_userq_create()` → MES userq setup →
`amdgpu_userq_create_object()` for MQD/fw_obj.
**Reachable from userspace** by processes with DRM render access on
supported AMDGPU hardware (GFX11+ with MES userq support). Trigger
requires active user queues plus memory eviction pressure.
### Step 5.5: Similar patterns
**Record:** Doorbell pinning already done in
`amdgpu_userq_get_doorbell_index()` (line 331). Fix aligns MQD/fw_obj
with that established pattern.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Does buggy code exist?
**Record:** **YES.** At `7b923c78b50d2` and current HEAD,
`amdgpu_userq_create_object()` has no `amdgpu_bo_pin()`; only doorbell
path pins. Fix commit `a3bbf32` is **not** an ancestor of HEAD (`merge-
base --is-ancestor` returned 1).
### Step 6.2: Backport complications
**Record:** **Clean apply** — `git apply --check` passes with no
conflicts. Line numbers differ slightly from upstream diff (487 vs 243)
but context matches.
### Step 6.3: Related fixes already present?
**Record:** No equivalent pinning for MQD/fw_obj found. Doorbell pinning
present; this fix completes the pattern.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** **drivers/gpu/drm/amd/amdgpu** — IMPORTANT (AMD GPU users;
not universal core kernel, but affects all userq users on supported
hardware).
### Step 7.2: Subsystem activity
**Record:** Userq subsystem actively developed in 6.18.y (multiple
userq-related stable fixes in drm-fixes stream). Feature is present and
enabled via existing IOCTL path.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of **AMDGPU user mode queues** on hardware where
`userq_funcs` is registered (GFX11/GFX12, SDMA v6/v7, etc.). Config:
`CONFIG_DRM_AMDGPU` with userq-capable ASIC.
### Step 8.2: Trigger conditions
**Record:** Create user queues via `DRM_AMDGPU_USERQ`, then
**VRAM/memory pressure triggers TTM eviction** while queues are active.
Not every boot — requires memory pressure plus active userq workloads.
Triggerable by unprivileged render-capable processes.
### Step 8.3: Failure mode severity
**Record:** GPU page faults from stale MQD/fw addresses → **system
hang**. Severity: **CRITICAL**.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for userq users — prevents GPU hangs under memory
pressure
- **Risk:** LOW — 10-line change, established pin/unpin API, reviewed by
maintainer
- **Ratio:** Strong benefit, minimal risk
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence compile
**FOR backport:**
- Fixes real system hang (page faults → hang) under eviction
- Small, surgical, reviewed by Christian König, merged by Alex Deucher
- Mirrors existing doorbell pinning in same file
- Applies cleanly to 6.18.43
- Buggy code confirmed present in this tree
- Standalone — no series dependency
**AGAINST backport:**
- Userq is a relatively new feature (not all stable users enable it)
- Pinning is acknowledged as interim; eviction-fence integration
preferred long-term
- No syzbot/reporter — harder to quantify frequency
- Affects driver-specific path, not core kernel
**Unresolved:** Exact reproduction rate in production; no public CVE or
bugzilla reference.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — pattern matches doorbell
pinning; reviewed by maintainer
2. Fixes real bug affecting users? **PASS** — hang under eviction with
active user queues
3. Important issue? **PASS** — CRITICAL (system hang)
4. Small and contained? **PASS** — 1 file, +10/−3
5. No new features/APIs? **PASS** — lifecycle fix only
6. Can apply to local tree? **PASS** — clean apply verified
### Step 9.3: Exception categories
**Record:** None (not device ID, quirk, DT, build, or docs). Standard
bug fix.
### Step 9.4: Decision rationale
For **Linux 6.18.y**, the userq infrastructure is present and the bug is
real: MQD and firmware context BOs can be evicted while hardware still
references them, causing hangs. The fix is minimal, maintainer-reviewed,
follows an existing pattern in the same file, and applies cleanly. While
userq affects a subset of AMDGPU users, a system hang under memory
pressure meets stable criteria for important fixes.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from provided commit message
and `git show a3bbf32`
- **[Phase 1]** Reviewed-by: Christian König; Signed-off-by: Sunil
Khatri, Alex Deucher
- **[Phase 2]** Diff: +10/−3 in `amdgpu_userq.c`;
`create_object`/`destroy_object` modified
- **[Phase 2]** Confirmed doorbell already pinned at line 331 in local
tree
- **[Phase 3]** `git describe` / `make kernelversion`: 6.18.43
- **[Phase 3]** `git merge-base --is-ancestor a3bbf32 7b923c78b50d2`:
NOT in tree (exit 1)
- **[Phase 3]** `git show 7b923c78b50d2:...amdgpu_userq.c`:
create_object lacks pin
- **[Phase 3]** `git apply --check` on upstream patch: clean apply
- **[Phase 3]** `git show v6.18:...amdgpu_userq.c | grep amdgpu_bo_pin`:
only doorbell pin
- **[Phase 3]** `git show v6.17:...amdgpu_userq.c`: file exists (982
lines)
- **[Phase 4]** `b4 dig -c a3bbf32`: lore URL found
- **[Phase 4]** `b4 dig -a`: v1/v2 series; v2 2/2 is committed version
- **[Phase 4]** `b4 dig -w`: Alex Deucher, Christian König CC'd
- **[Phase 4]** spinics.net msg143086: König Reviewed-by; eviction-fence
noted as future work
- **[Phase 5]** Grep callers: `mes_userqueue.c` uses create_object for
`fw_obj` and `mqd`
- **[Phase 5]** IOCTL path: `DRM_IOCTL_AMDGPU_USERQ` in `amdgpu_drv.c`
- **[Phase 6]** Buggy code at HEAD lines 243–303: no pin in
create_object
- **[Phase 6]** Eviction path: `amdgpu_eviction_fence.c` →
`amdgpu_userq_evict()` exists but does not pin MQD/fw BOs
- **[Phase 8]** Failure mode: page faults + system hang per commit
message
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
index 7e3175f82a20d..0f4281c9aea2f 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
@@ -270,16 +270,20 @@ int amdgpu_userq_create_object(struct amdgpu_userq_mgr *uq_mgr,
goto free_obj;
}
+ r = amdgpu_bo_pin(userq_obj->obj, AMDGPU_GEM_DOMAIN_GTT);
+ if (r)
+ goto unresv;
+
r = amdgpu_ttm_alloc_gart(&(userq_obj->obj)->tbo);
if (r) {
drm_file_err(uq_mgr->file, "Failed to alloc GART for userqueue object (%d)", r);
- goto unresv;
+ goto unpin_bo;
}
r = amdgpu_bo_kmap(userq_obj->obj, &userq_obj->cpu_ptr);
if (r) {
drm_file_err(uq_mgr->file, "Failed to map BO for userqueue (%d)", r);
- goto unresv;
+ goto unpin_bo;
}
userq_obj->gpu_addr = amdgpu_bo_gpu_offset(userq_obj->obj);
@@ -287,11 +291,13 @@ int amdgpu_userq_create_object(struct amdgpu_userq_mgr *uq_mgr,
memset(userq_obj->cpu_ptr, 0, size);
return 0;
+unpin_bo:
+ amdgpu_bo_unpin(userq_obj->obj);
unresv:
amdgpu_bo_unreserve(userq_obj->obj);
-
free_obj:
amdgpu_bo_unref(&userq_obj->obj);
+
return r;
}
@@ -299,6 +305,7 @@ void amdgpu_userq_destroy_object(struct amdgpu_userq_mgr *uq_mgr,
struct amdgpu_userq_obj *userq_obj)
{
amdgpu_bo_kunmap(userq_obj->obj);
+ amdgpu_bo_unpin(userq_obj->obj);
amdgpu_bo_unref(&userq_obj->obj);
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] fbdev: Wrap user-invoked calls to fb_set_var() in helper
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (36 preceding siblings ...)
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/amdgpu/userq: pin mqd and fw object bo to avoid eviction Sasha Levin
@ 2026-08-31 13:26 ` Sasha Levin
2026-08-31 15:54 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.1] drm/gem: Consider GEM object reclaimable if shrinking fails Sasha Levin
` (28 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:26 UTC (permalink / raw)
To: patches, stable
Cc: Thomas Zimmermann, Helge Deller, Sasha Levin, simona, maddy,
linux-fbdev, dri-devel, linux-kernel, linuxppc-dev
From: Thomas Zimmermann <tzimmermann@suse.de>
[ Upstream commit 6f611e5e5f3327cf2e2daabe6ee5acac58cc784e ]
Handle fbcon during display updates in fb_set_var_from_user(). Check
with fbcon if the mode change is possible, update hardware state and
finally update fbcon. Update all callers.
Only the FBIOPUT_VSCREENINFO ioctl currently does all steps. Other
mode-changes callers in sysfs and driver code are missing fbcon-related
steps.
With the new helper, ps3fb and sh_mobile_lcdcfb no longer maintain
fbcon state themselves.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `fbdev: Wrap user-invoked calls to
fb_set_var() in helper`
**Local tree:** `v6.18.44` (6.18.y stable)
**Commit under review:** `6f611e5e5f3327cf2e2daabe6ee5acac58cc784e` (not
in HEAD; present as git object, applies cleanly)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[fbdev]` `[wrap/consolidate]` — Introduce
`fb_set_var_from_user()` helper and route all user-invoked mode-change
paths through it.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Thomas Zimmermann `<tzimmermann@suse.de>` (author)
- **Signed-off-by:** Helge Deller `<deller@gmx.de>` (fbdev maintainer)
- No `Fixes:`, `Reported-by:`, `Cc: stable@vger.kernel.org`, `Link:`,
`Reviewed-by:`, `Tested-by:`, or `Acked-by:` tags
Notable: maintainer sign-off; absence of stable tag is expected for
manual review.
### Step 1.3: Body analysis
**Record:**
- **Bug described:** Only `FBIOPUT_VSCREENINFO` ioctl performs the full
fbcon sequence (`fbcon_modechange_possible` → `fb_set_var` →
`fbcon_update_vcs`). Sysfs mode-change paths and driver ioctl/reconfig
paths skip the `fbcon_modechange_possible` check.
- **Symptom/failure mode:** Incomplete fbcon synchronization on mode
changes; missing validation that resolution is not smaller than
console font size.
- **Version info:** None in message.
- **Root cause:** Inconsistent fbcon handling across user-facing entry
points after the ioctl-only fix from 2022.
### Step 1.4: Hidden bug fix detection
**Record:** Yes — despite refactor-style wording, this completes a real
correctness/safety gap. The original `fbcon_modechange_possible()`
commit (`e64242caef18b`, 2022) explicitly warned that undersized
resolutions cause character rendering to access memory outside the
graphics region. That check was ioctl-only; sysfs and driver paths
remained vulnerable.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Change inventory
**Record:**
| File | Change |
|------|--------|
| `fb_chrdev.c` | −5/+1 |
| `fbcon.c` | −2 (remove exports) |
| `fbmem.c` | +13 (new helper) |
| `fbsysfs.c` | −3/+1 |
| `ps3fb.c` | −4/+1 |
| `sh_mobile_lcdcfb.c` | −4/+1 |
| `include/linux/fb.h` | +2 |
**Functions modified:** `do_fb_ioctl()`, `activate()`,
`fb_set_var_from_user()` (new), `ps3fb_ioctl()`,
`sh_mobile_fb_reconfig()`
**Scope:** Small, multi-file but tightly focused consolidation.
### Step 2.2: Code flow per hunk
**Record:**
1. **`fb_chrdev.c` / `FBIOPUT_VSCREENINFO`:** Three-step inline sequence
→ single `fb_set_var_from_user()` call. Behavior unchanged.
2. **`fbmem.c`:** New helper encapsulates the three-step sequence.
3. **`fbsysfs.c` / `activate()`:** Before: `fb_set_var` +
`fbcon_update_vcs` (no validation). After: `fb_set_var_from_user`
(adds `fbcon_modechange_possible`).
4. **`ps3fb.c`:** Same — gains validation via helper; drops direct
`fbcon.h` usage.
5. **`sh_mobile_lcdcfb.c`:** Before: `fb_set_var` then separate
`fbcon_update_vcs`. After: single helper call with validation.
6. **`fbcon.c`:** Removes `EXPORT_SYMBOL` / `EXPORT_SYMBOL_GPL` from
`fbcon_update_vcs` and `fbcon_modechange_possible`.
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Memory safety / logic correctness (OOB access prevention
+ fbcon state consistency).
- **Mechanism:** `fbcon_modechange_possible()` rejects resolutions where
font width/height exceeds effective `xres`/`yres` (with rotation).
Sysfs (`store_mode`, `store_rotate`, `store_virtual`, `store_bpp` via
`activate()`) and ps3fb/sh_mobile paths bypassed this check.
Undersized modes could proceed to `fb_set_var` and fbcon rendering,
risking out-of-bounds framebuffer access — the same failure mode
documented in `e64242caef18b`.
### Step 2.4: Fix quality
**Record:**
- Fix is obviously correct: extracts ioctl’s already-proven three-step
pattern.
- Minimal, no unrelated changes.
- **Regression risk:** Low for in-tree code. Removing exports of
`fbcon_update_vcs` / `fbcon_modechange_possible` could affect out-of-
tree GPL modules; in-tree users (`ps3fb`, `sh_mobile_lcdcfb`) are
updated in the same patch. ps3fb/sh_mobile may now reject mode changes
that previously succeeded but were unsafe — intentional behavior
change.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- `fb_chrdev.c:88-92`: Added in `588b35634a5aa` (Thomas Zimmermann,
2023) with full three-step sequence.
- `fbsysfs.c:23-25`: `fb_set_var` since 2005; `fbcon_update_vcs` added
in `d88ca7e1a27eb` (2020, syzbot OOB fix); never gained
`fbcon_modechange_possible`.
- **Bug introduced:** Gap since `e64242caef18b` (Jun 2022) when
validation was ioctl-only.
### Step 3.2: Fixes tag
**Record:** N/A — no `Fixes:` tag. Related fix `e64242caef18b` is in
this tree (`git merge-base --is-ancestor` confirms).
### Step 3.3: Related file history
**Record:**
- `e64242caef18b` — ioctl-only font-size validation (Cc: stable # v5.4+)
- `d88ca7e1a27eb` — syzbot OOB in `vc_do_resize`, pulled
`fbcon_update_vcs` out of `fb_set_var`
- Recent stable-relevant fbcon fixes in tree: OOB/null-ptr fixes
(`076b1aa65f77a`, `6617df8c24631`)
- **Standalone:** Patch 1/4 of “Internalize fbcon” series; does not
require patches 2–4 to function.
### Step 3.4: Author context
**Record:** Thomas Zimmermann is active fbdev/fbcon maintainer. Helge
Deller (co-author of original `fbcon_modechange_possible`) signed off.
### Step 3.5: Dependencies
**Record:** No prerequisite commits required.
`fbcon_modechange_possible` and `fbcon_update_vcs` exist in tree. `git
apply --check` passes cleanly on 6.18.44.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- **b4 dig URL:**
https://patch.msgid.link/20260527151551.258659-2-tzimmermann@suse.de
- **Series revisions:** v1 (2026-05-20), v2 (2026-05-22), v3
(2026-05-27) — committed version is v3.
- **WebFetch of lore:** Blocked by Anubis bot protection; could not read
full thread.
- **From search snippets:** AI review noted ps3fb gains
`fbcon_modechange_possible` check as intentional behavioral change.
### Step 4.2: Reviewers
**Record:** CC list includes Helge Deller, Geert Uytterhoeven, Simona
Vetter, airlied, linux-fbdev, dri-devel, linuxppc-dev — appropriate
subsystem coverage.
### Step 4.3: Bug reports
**Record:** No direct bug report in this commit. Underlying issue
matches `e64242caef18b` rationale (OOB framebuffer access). Related
syzbot fix `d88ca7e1a27eb` addressed a different fbcon/OOB path.
### Step 4.4: Series context
**Record:** Part of 4-patch “fbdev: Internalize fbcon” series. Patches
2–4 handle `fb_blank_from_user` and unexporting fbcon symbols more
broadly. This patch is self-contained for the `fb_set_var` path.
### Step 4.5: Stable list history
**Record:** UNVERIFIED — could not search lore stable list due to fetch
blocking. Original `e64242caef18b` was explicitly nominated `Cc:
stable@vger.kernel.org # v5.4+`.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `fb_set_var_from_user()` (new), `activate()`,
`do_fb_ioctl()`, `ps3fb_ioctl()`, `sh_mobile_fb_reconfig()`.
### Step 5.2: Callers
**Record:**
- `activate()` ← `store_mode`, `store_bpp`, `store_rotate`,
`store_virtual` (sysfs, root-writable framebuffer attributes)
- `do_fb_ioctl()` ← `FBIOPUT_VSCREENINFO` (userspace ioctl on
`/dev/fb*`)
- `ps3fb_ioctl()` ← `PS3FB_IOCTL_SETMODE` (PS3 platform)
- `sh_mobile_fb_reconfig()` ← `sh_mobile_lcdc_release()` on display
hotplug/reconfig (SH Mobile embedded)
### Step 5.3: Callees
**Record:** `fbcon_modechange_possible()` → `fb_set_var()` →
`fbcon_update_vcs()`. Requires `console_lock()` + `lock_fb_info()` at
all call sites (already present).
### Step 5.4: Reachability
**Record:**
- Sysfs paths: reachable by privileged users (root) on any system with
framebuffer sysfs nodes.
- Ioctl: reachable by users with framebuffer device access.
- ps3fb/sh_mobile: platform-specific but real hardware paths.
- **Userspace triggerable:** Yes (sysfs/ioctl, privileged).
### Step 5.5: Similar patterns
**Record:** ioctl path in `fb_chrdev.c` already had the correct three-
step pattern since 2022/2023. Sysfs and drivers were the inconsistent
outliers.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE (6.18.44)
### Step 6.1: Buggy code present?
**Record:** **Yes.** Current tree at `fbsysfs.c:23-25` calls
`fb_set_var` + `fbcon_update_vcs` without `fbcon_modechange_possible`.
Same gap in `ps3fb.c:833-835` and `sh_mobile_lcdcfb.c:1768-1772`. Commit
`6f611e5` is **NOT** in HEAD.
### Step 6.2: Backport complications
**Record:** `git apply --check` on commit patch: **clean apply**. No
structural conflicts observed.
### Step 6.3: Related fixes already present?
**Record:** `e64242caef18b` (ioctl-only validation) is in tree. No
`fb_set_var_from_user` or equivalent consolidation. Gap remains open.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/video/fbdev` / `fbcon` — **IMPORTANT** (framebuffer
console on servers, embedded, legacy platforms; less universal than
mm/net but affects console stability).
### Step 7.2: Activity
**Record:** Actively maintained — recent fixes include UAF, null-ptr-
deref, and OOB fixes in fbdev/fbcon on this branch.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of fbdev with active fbcon text console who change
modes via sysfs or affected drivers (not only ioctl). Embedded (SH
Mobile), PS3, and general framebuffer sysfs users.
### Step 8.2: Trigger conditions
**Record:** Set framebuffer mode/rotation/virtual resolution via sysfs
to a value smaller than current console font dimensions while fbcon is
active in text mode. Requires privileged access. Not everyday, but
realistic for admin tooling and embedded hotplug scenarios.
### Step 8.3: Failure mode severity
**Record:** Out-of-bounds framebuffer memory access during console
character rendering → potential kernel oops, memory corruption.
**Severity: HIGH** (same class as the 2022 ioctl fix that went to
stable).
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH — closes a known validation gap left by incomplete
application of `e64242caef18b`.
- **Risk:** LOW — ~37 lines, behavior matches existing ioctl path;
applies cleanly.
- **Ratio:** Strong benefit, low risk.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Fixes real OOB/corruption-class bug (documented in `e64242caef18b`)
- Completes ioctl-only fix from 2022 across sysfs and driver paths
- Small, surgical, applies cleanly to 6.18.44
- Maintainer sign-off (Helge Deller)
- Same bug class previously deemed stable-worthy (`Cc: stable` on
original)
- Privileged userspace can trigger via sysfs
**AGAINST backport:**
- Adds new exported helper `fb_set_var_from_user` (kernel-internal, not
userspace API)
- Removes exports of `fbcon_update_vcs` / `fbcon_modechange_possible`
(minor ABI concern for OOT modules)
- Part of larger “internalize fbcon” series (but functionally
standalone)
- No syzbot/user bug report for this specific gap
**Unresolved:** Full lore review thread content (fetch blocked).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — logic mirrors proven ioctl
path; maintainer SOB.
2. Fixes real bug affecting users? **PASS** — sysfs/driver paths lack
font-size validation.
3. Important issue? **PASS** — OOB memory access / potential crash or
corruption (**HIGH**).
4. Small and contained? **PASS** — 7 files, ~37 lines net.
5. No new features/APIs? **PASS** (with nuance) — new kernel helper
export only; no userspace API; behavior fix not feature addition.
6. Can apply to local tree? **PASS** — `git apply --check` succeeds.
### Step 9.3: Exception categories
**Record:** None (not device ID, quirk, DT, build, or docs). Qualifies
as a correctness/memory-safety bug fix.
### Step 9.4: Problem summary for stable users
When the 2022 fix added `fbcon_modechange_possible()` to prevent console
font rendering past framebuffer bounds, it was wired only into the
`FBIOPUT_VSCREENINFO` ioctl. Sysfs mode/rotation/virtual-resolution
writes and ps3fb/sh_mobile driver paths still allowed undersized modes,
risking the same out-of-bounds access. This commit routes all user-
invoked `fb_set_var` paths through one helper that performs validation,
hardware update, and fbcon refresh — closing that gap on 6.18.y.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body; no Reported-by/syzbot/Fixes
tags.
- **[Phase 1]** Identified hidden bug fix via cross-reference to
`e64242caef18b` message.
- **[Phase 2]** Diff inventory: 7 files, functions listed; bug = missing
`fbcon_modechange_possible` on non-ioctl paths.
- **[Phase 3]** `git describe HEAD` → `v6.18.44`; `make kernelversion` →
`6.18.44`.
- **[Phase 3]** `git blame` on `fb_chrdev.c:86-92` and
`fbsysfs.c:16-26`.
- **[Phase 3]** `git show e64242caef18b` — original OOB rationale and
ioctl-only placement confirmed.
- **[Phase 3]** `git merge-base --is-ancestor e64242caef18b HEAD` → in
tree.
- **[Phase 3]** `git merge-base --is-ancestor 6f611e5 HEAD` → NOT in
tree.
- **[Phase 3]** `git log -S fbcon_modechange_possible` — introduced
`e64242caef18b`, ioctl placement `588b35634a5aa`.
- **[Phase 4]** `b4 dig -c 6f611e5` → lore URL found; v1/v2/v3 revisions
listed.
- **[Phase 4]** `b4 dig -w` → CC list with Deller, Geert, linux-fbdev,
dri-devel.
- **[Phase 4]** WebFetch lore URL → blocked (Anubis); thread content
UNVERIFIED.
- **[Phase 5]** `grep` callers: `activate()` used by `store_mode`,
`store_bpp`, `store_rotate`, `store_virtual`.
- **[Phase 5]** `grep` for `fbcon_update_vcs` /
`fbcon_modechange_possible` — only fbdev core + ps3fb + sh_mobile.
- **[Phase 6]** Read current `fbsysfs.c`, `fb_chrdev.c`, `ps3fb.c`,
`sh_mobile_lcdcfb.c` — buggy pattern confirmed.
- **[Phase 6]** `git show 6f611e5 | git apply --check` → clean apply.
- **[Phase 6]** `grep fb_set_var_from_user` → not in tree.
- **[Phase 8]** Failure mode from `e64242caef18b`: OOB graphics memory
access; severity HIGH.
**YES****Verdict for 6.18.44:** **YES** — backport this commit.
It closes a real gap left by the 2022 ioctl-only
`fbcon_modechange_possible()` fix: sysfs mode/rotation/virtual writes
and ps3fb/sh_mobile paths could still set resolutions smaller than the
console font, risking out-of-bounds framebuffer access. The patch is
small (~37 lines), applies cleanly, and mirrors the ioctl path’s
existing three-step sequence.
**Commit:** `6f611e5e5f3327cf2e2daabe6ee5acac58cc784e` (not yet in this
tree).
drivers/video/fbdev/core/fb_chrdev.c | 6 +-----
drivers/video/fbdev/core/fbcon.c | 2 --
drivers/video/fbdev/core/fbmem.c | 13 +++++++++++++
drivers/video/fbdev/core/fbsysfs.c | 4 +---
drivers/video/fbdev/ps3fb.c | 5 +----
drivers/video/fbdev/sh_mobile_lcdcfb.c | 5 +----
include/linux/fb.h | 2 ++
7 files changed, 19 insertions(+), 18 deletions(-)
diff --git a/drivers/video/fbdev/core/fb_chrdev.c b/drivers/video/fbdev/core/fb_chrdev.c
index 4ebd16b7e3b8d..54f926fb411bd 100644
--- a/drivers/video/fbdev/core/fb_chrdev.c
+++ b/drivers/video/fbdev/core/fb_chrdev.c
@@ -85,11 +85,7 @@ static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
var.activate &= ~FB_ACTIVATE_KD_TEXT;
console_lock();
lock_fb_info(info);
- ret = fbcon_modechange_possible(info, &var);
- if (!ret)
- ret = fb_set_var(info, &var);
- if (!ret)
- fbcon_update_vcs(info, var.activate & FB_ACTIVATE_ALL);
+ ret = fb_set_var_from_user(info, &var);
unlock_fb_info(info);
console_unlock();
if (!ret && copy_to_user(argp, &var, sizeof(var)))
diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c
index df1ecbf3f5d02..35210f2bb7b2b 100644
--- a/drivers/video/fbdev/core/fbcon.c
+++ b/drivers/video/fbdev/core/fbcon.c
@@ -2754,7 +2754,6 @@ void fbcon_update_vcs(struct fb_info *info, bool all)
else
fbcon_modechanged(info);
}
-EXPORT_SYMBOL(fbcon_update_vcs);
/* let fbcon check if it supports a new screen resolution */
int fbcon_modechange_possible(struct fb_info *info, struct fb_var_screeninfo *var)
@@ -2782,7 +2781,6 @@ int fbcon_modechange_possible(struct fb_info *info, struct fb_var_screeninfo *va
return 0;
}
-EXPORT_SYMBOL_GPL(fbcon_modechange_possible);
int fbcon_mode_deleted(struct fb_info *info,
struct fb_videomode *mode)
diff --git a/drivers/video/fbdev/core/fbmem.c b/drivers/video/fbdev/core/fbmem.c
index 30a2c0d47e5c8..1533d43a0a0c9 100644
--- a/drivers/video/fbdev/core/fbmem.c
+++ b/drivers/video/fbdev/core/fbmem.c
@@ -346,6 +346,19 @@ fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
}
EXPORT_SYMBOL(fb_set_var);
+int fb_set_var_from_user(struct fb_info *info, struct fb_var_screeninfo *var)
+{
+ int ret = fbcon_modechange_possible(info, var);
+
+ if (!ret)
+ ret = fb_set_var(info, var);
+ if (!ret)
+ fbcon_update_vcs(info, var->activate & FB_ACTIVATE_ALL);
+
+ return ret;
+}
+EXPORT_SYMBOL(fb_set_var_from_user);
+
static void fb_lcd_notify_blank(struct fb_info *info)
{
int power;
diff --git a/drivers/video/fbdev/core/fbsysfs.c b/drivers/video/fbdev/core/fbsysfs.c
index fe8bd33e64ab1..d363f94207c3e 100644
--- a/drivers/video/fbdev/core/fbsysfs.c
+++ b/drivers/video/fbdev/core/fbsysfs.c
@@ -20,9 +20,7 @@ static int activate(struct fb_info *fb_info, struct fb_var_screeninfo *var)
var->activate |= FB_ACTIVATE_FORCE;
console_lock();
lock_fb_info(fb_info);
- err = fb_set_var(fb_info, var);
- if (!err)
- fbcon_update_vcs(fb_info, var->activate & FB_ACTIVATE_ALL);
+ err = fb_set_var_from_user(fb_info, var);
unlock_fb_info(fb_info);
console_unlock();
if (err)
diff --git a/drivers/video/fbdev/ps3fb.c b/drivers/video/fbdev/ps3fb.c
index dbcda307f6a67..1376d19b19aeb 100644
--- a/drivers/video/fbdev/ps3fb.c
+++ b/drivers/video/fbdev/ps3fb.c
@@ -29,7 +29,6 @@
#include <linux/freezer.h>
#include <linux/uaccess.h>
#include <linux/fb.h>
-#include <linux/fbcon.h>
#include <linux/init.h>
#include <asm/cell-regs.h>
@@ -830,9 +829,7 @@ static int ps3fb_ioctl(struct fb_info *info, unsigned int cmd,
/* Force, in case only special bits changed */
var.activate |= FB_ACTIVATE_FORCE;
par->new_mode_id = val;
- retval = fb_set_var(info, &var);
- if (!retval)
- fbcon_update_vcs(info, var.activate & FB_ACTIVATE_ALL);
+ retval = fb_set_var_from_user(info, &var);
console_unlock();
}
break;
diff --git a/drivers/video/fbdev/sh_mobile_lcdcfb.c b/drivers/video/fbdev/sh_mobile_lcdcfb.c
index dd950e4ab5ceb..6038f217ab427 100644
--- a/drivers/video/fbdev/sh_mobile_lcdcfb.c
+++ b/drivers/video/fbdev/sh_mobile_lcdcfb.c
@@ -15,7 +15,6 @@
#include <linux/ctype.h>
#include <linux/dma-mapping.h>
#include <linux/delay.h>
-#include <linux/fbcon.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/ioctl.h>
@@ -1765,11 +1764,9 @@ static void sh_mobile_fb_reconfig(struct fb_info *info)
var.height = ch->display.height;
var.activate = FB_ACTIVATE_NOW;
- if (fb_set_var(info, &var) < 0)
+ if (fb_set_var_from_user(info, &var) < 0)
/* Couldn't reconfigure, hopefully, can continue as before */
return;
-
- fbcon_update_vcs(info, true);
}
/*
diff --git a/include/linux/fb.h b/include/linux/fb.h
index da2fdabd18cb3..f622f5f520cf0 100644
--- a/include/linux/fb.h
+++ b/include/linux/fb.h
@@ -541,6 +541,8 @@ extern int fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var);
extern int fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var);
extern int fb_blank(struct fb_info *info, int blank);
+int fb_set_var_from_user(struct fb_info *info, struct fb_var_screeninfo *var);
+
/*
* Helpers for framebuffers in I/O memory
*/
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.1] drm/gem: Consider GEM object reclaimable if shrinking fails
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (37 preceding siblings ...)
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] fbdev: Wrap user-invoked calls to fb_set_var() in helper Sasha Levin
@ 2026-08-31 13:26 ` Sasha Levin
2026-08-31 15:59 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/amdgpu: check and drop invalid bad page records Sasha Levin
` (27 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:26 UTC (permalink / raw)
To: patches, stable
Cc: Boris Brezillon, Liviu Dudau, Steven Price, Sasha Levin,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-kernel
From: Boris Brezillon <boris.brezillon@collabora.com>
[ Upstream commit 71c8224a18825102ee1e5e70498f96f6c2d2a81d ]
If the object wasn't moved to a different LRU after the shrink callback
returns, it means the buffer is still reclaimable. Update the remaining
counter to reflect that.
v2:
- Collect R-b
v3:
- Collect R-b
v4:
- No changes
v5:
- No changes
v6:
- No changes
v7:
- No changes
Reviewed-by: Liviu Dudau <liviu.dudau@arm.com>
Reviewed-by: Steven Price <steven.price@arm.com>
Link: https://patch.msgid.link/20260401134854.2275433-2-boris.brezillon@collabora.com
Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The background `b4 dig` on the original `drm_gem_lru_scan` introduction
commit (`a4871e6201c46`) finished successfully. It matched the Thomas
Zimmermann May 2025 thread:
https://patch.msgid.link/20250520094203.30545-5-tzimmermann@suse.de
That lines up with the earlier finding that the helper and the missing
`*remaining` accounting have been in this tree since `drm_gem.c` landed;
the Boris Brezillon patch is a small, standalone fix on top of that.
For **Linux 6.18.43**, the backport recommendation remains **YES**.
drivers/gpu/drm/drm_gem.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/gpu/drm/drm_gem.c b/drivers/gpu/drm/drm_gem.c
index 5c4a113b08941..224ed96bd0d4a 100644
--- a/drivers/gpu/drm/drm_gem.c
+++ b/drivers/gpu/drm/drm_gem.c
@@ -1601,6 +1601,16 @@ drm_gem_lru_scan(struct drm_gem_lru *lru,
*/
WARN_ON(obj->lru == &still_in_lru);
WARN_ON(obj->lru == lru);
+ } else if (obj->lru == &still_in_lru) {
+ /*
+ * If the object wasn't moved and wasn't shrunk either,
+ * it's still remaining as reclaimable. Note that
+ * obj->lru is supposed to be checked with the LRU lock
+ * held for an accurate result, but we don't care about
+ * accuracy here. Worst thing that could happen is an
+ * extra scan.
+ */
+ *remaining += obj->size >> PAGE_SHIFT;
}
dma_resv_unlock(obj->resv);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu: check and drop invalid bad page records
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (38 preceding siblings ...)
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.1] drm/gem: Consider GEM object reclaimable if shrinking fails Sasha Levin
@ 2026-08-31 13:26 ` Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add BOE NT140WHM-N4T, BOE NT140WHM-T05, BOE NV140FHM-N40 Sasha Levin
` (26 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:26 UTC (permalink / raw)
To: patches, stable
Cc: YiPeng Chai, Tao Zhou, Alex Deucher, Sasha Levin,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: YiPeng Chai <YiPeng.Chai@amd.com>
[ Upstream commit 3999aa4a04a04167d70bfe4dc3ba239257e5b5df ]
Check and drop invalid bad page records.
Signed-off-by: YiPeng Chai <YiPeng.Chai@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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: `[drm/amdgpu]` `[check]` — validate and discard invalid RAS
EEPROM bad-page records before they are applied to VRAM reservation /
in-kernel bad-page tables.
**Step 1.2 — Tags**
Record:
- Signed-off-by: YiPeng Chai \<YiPeng.Chai@amd.com\> (author)
- Reviewed-by: Tao Zhou \<tao.zhou1@amd.com\> (AMD RAS reviewer; also
author of prior range-check work in this tree)
- Signed-off-by: Alex Deucher \<alexander.deucher@amd.com\> (amdgpu
maintainer)
- No Fixes:, Reported-by:, Link:, Cc: stable@vger.kernel.org, Tested-
by:, or Acked-by:
Notable: reviewed by subsystem expert; no public bug report in the
commit message.
**Step 1.3 — Body**
Record:
- Bug description: EEPROM / RAS bad-page records may contain
`retired_page` values outside usable VRAM.
- Symptom/failure mode: not spelled out in the message; code adds
`dev_warn()` and refuses to process out-of-range records.
- Version info: none in message.
- Root cause (from code): validation used `mc_vram_size` in some paths
(commit `2b17c240e8cd9`, already in 6.18.y), but reservation and
restore still lacked checks against `real_vram_size`, which can be
smaller than `mc_vram_size` when `amdgpu_vram_limit` is set
(`amdgpu_gmc_vram_location()` in `amdgpu_gmc.c`).
**Step 1.4 — Hidden bug fix?**
Record: **Yes.** Despite the terse message, this is a defensive
correctness fix: it prevents out-of-range PFNs from reaching
`amdgpu_ras_reserve_page()` → `amdgpu_vram_mgr_reserve_range()` and adds
a batch guard in `__amdgpu_ras_restore_bad_pages()` on EEPROM load.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- File: `drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c` (+22 lines net)
- Functions: new `__check_record_in_range()`; modified
`__amdgpu_ras_restore_bad_pages()`, `amdgpu_ras_reserve_page()`
- Scope: single-file, surgical
**Step 2.2 — Code flow**
Record:
- Hunk 1 (`__check_record_in_range`): before — no upfront validation of
EEPROM batch; after — if any `retired_page >= real_vram_size >>
page_shift`, warn and return false.
- Hunk 2 (`__amdgpu_ras_restore_bad_pages`): before — processes all
records; after — if batch check fails, return 0 immediately (drop
entire batch).
- Hunk 3 (`amdgpu_ras_reserve_page`): before — only critical-address
check, then buddy reservation; after — early return with warning for
PFN beyond `real_vram_size`.
**Step 2.3 — Bug mechanism**
Record:
- Category: **logic / bounds validation** (prevents invalid VRAM
reservations and inconsistent bad-page state).
- Mechanism: corrupt or stale EEPROM entries (or entries beyond
`real_vram_size` after VRAM limiting) could reach VRAM buddy allocator
reservation. Existing `amdgpu_ras_check_bad_page_unlock()` (6.18.y)
validates against `mc_vram_size`, not `real_vram_size`.
`amdgpu_ras_reserve_page()` had no upper-bound check at all and is
called directly from `umc_v12_0.c` on ECC error paths.
**Step 2.4 — Fix quality**
Record: Fix is minimal and obviously correct for bounds checking.
Regression risk is low. One nuance: if **any** record in a batch is out
of range, **all** records are dropped (conservative, not per-record
filtering). No deadlock or API change.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record:
- `amdgpu_ras_reserve_page()` introduced by YiPeng Chai (2024-03-29),
present since before 6.18.y.
- `__amdgpu_ras_restore_bad_pages()` core loop from 2025-02-24; related
fixes by Tao Zhou (July 2025).
- Target commit `3999aa4a04a04` dated 2026-05-12; **not** in current
tree (6.18.44).
**Step 3.2 — Fixes: tag**
Record: N/A — no Fixes: tag.
**Step 3.3 — Related commits**
Record:
- `2b17c240e8cd9` — "add range check for RAS bad page address" — **IN
6.18.y**; checks `mc_vram_size` in
`amdgpu_ras_check_bad_page_unlock()`.
- `0b7f78caeffa5` — "Move ras data alloc before bad page check" — **IN
6.18.y**; fixed NULL deref in sysfs bad-pages read when EEPROM had
only invalid entries.
- `0028b86b52f76` — "mark invalid records with U64_MAX" — **NOT in
6.18.y** (mainline only).
- `3fc96f60b61ce` — critical-address check in
`amdgpu_ras_reserve_page()` — **IN 6.18.y**.
- This commit is standalone (not part of a numbered series).
**Step 3.4 — Author context**
Record: YiPeng Chai is a regular amdgpu/RAS contributor (reserve_page
author, critical-address work). Tao Zhou reviewed and authored the prior
range-check commit.
**Step 3.5 — Dependencies**
Record: No prerequisites. Patch applies cleanly to 6.18.y (`git apply
--check` succeeded). Uses `adev->gmc.real_vram_size` and
`AMDGPU_GPU_PAGE_SHIFT`, both present in this tree.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record: `b4 dig -c 3999aa4a04a04` — **no lore match found**. Phase not
fully applicable.
**Step 4.2 — Reviewers**
Record: `b4 dig -w` not run (no thread found). Reviewed-by Tao Zhou and
Signed-off-by Alex Deucher verified from `git show`.
**Step 4.3 — Bug report**
Record: N/A — no Reported-by/Link tags; no public thread found.
**Step 4.4 — Related series**
Record: Related mainline-only work (`U64_MAX` invalid-record marking)
not in 6.18.y; this commit is independently useful without it.
**Step 4.5 — Stable list**
Record: Not searched (no lore thread to anchor a stable@ query). Related
NULL-deref fix (`0b7f78caeffa5`) was already backported to 6.18.y,
showing this problem class is stable-worthy.
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `__check_record_in_range()`, `__amdgpu_ras_restore_bad_pages()`,
`amdgpu_ras_reserve_page()`.
**Step 5.2 — Callers**
Record:
- `__amdgpu_ras_restore_bad_pages()` ← `amdgpu_ras_add_bad_pages()` ←
`amdgpu_ras_load_bad_pages()` (boot/RAS init EEPROM load) and runtime
UMC error paths.
- `amdgpu_ras_reserve_page()` ← `__amdgpu_ras_restore_bad_pages()` and
`umc_v12_0.c` ECC handler (line 609).
**Step 5.3 — Callees**
Record: `amdgpu_vram_mgr_reserve_range()`,
`amdgpu_vram_mgr_query_page_status()`, `dev_warn()`,
`amdgpu_ras_check_critical_address()`.
**Step 5.4 — Reachability**
Record: Triggered on boot when RAS EEPROM has records
(`amdgpu_ras_load_bad_pages()` during RAS init) and at runtime on UMC
ECC events. Requires `CONFIG_DRM_AMDGPU` + RAS-capable AMD hardware
(datacenter/workstation GPUs). Not a generic syscall path, but real
production hardware.
**Step 5.5 — Similar patterns**
Record: `2b17c240e8cd9` added `mc_vram_size` checks in
`amdgpu_ras_check_bad_page_unlock()`. This commit closes the
`real_vram_size` gap and protects the direct `amdgpu_ras_reserve_page()`
entry point. In 6.18.y, `__amdgpu_ras_restore_bad_pages()` still uses
`if (amdgpu_ras_check_bad_page_unlock(...))` as a boolean despite the
function returning `int` (-EINVAL/0/1), which can mishandle `-EINVAL`
(truthy) without adding a record — another reason upfront validation
helps.
---
## Phase 6: Cross-Reference Against Local Tree (6.18.44)
**Step 6.1 — Buggy code present?**
Record: **Yes.** Local tree is `v6.18.44` on `stable/linux-6.18.y`.
`__check_record_in_range()` and the `amdgpu_ras_reserve_page()` bounds
guard are absent. `amdgpu_ras_reserve_page()` at lines 5366–5383 has
only the critical-address check, no `real_vram_size` upper bound.
**Step 6.2 — Backport complications**
Record: **Clean apply** verified. No structural conflicts with 6.18.y
`amdgpu_ras.c`.
**Step 6.3 — Related fixes already present?**
Record: Partial coverage from `2b17c240e8cd9` (`mc_vram_size` in
`amdgpu_ras_check_bad_page_unlock`) and `0b7f78caeffa5` (NULL deref on
all-invalid EEPROM). This commit's `real_vram_size` checks and
`amdgpu_ras_reserve_page()` guard are **not** already present.
---
## Phase 7: Subsystem Context
**Step 7.1 — Subsystem / criticality**
Record: `drivers/gpu/drm/amd/amdgpu` — RAS (Reliability, Availability,
Serviceability) / VRAM error handling. **IMPORTANT** for AMD enterprise
GPU users; not core-kernel-wide.
**Step 7.2 — Activity**
Record: Active subsystem in 6.18.y (multiple RAS fixes in recent history
on `amdgpu_ras.c`).
---
## Phase 8: Impact and Risk
**Step 8.1 — Who is affected**
Record: Users of AMD GPUs with RAS page retirement enabled, especially
MI-series / CDNA / Instinct and other ECC-capable cards loading bad-page
records from EEPROM at boot or on UMC errors.
**Step 8.2 — Trigger conditions**
Record: Corrupt, migrated, or out-of-date EEPROM bad-page records; or
`real_vram_size < mc_vram_size` via `amdgpu_vram_limit`. Uncommon but
plausible on long-lived server GPUs. Not unprivileged-triggerable
directly; tied to hardware error state / EEPROM content.
**Step 8.3 — Failure mode severity**
Record: Without fix: attempted reservation of out-of-range VRAM
(`amdgpu_vram_mgr_reserve_range()` may fail silently in
`amdgpu_vram_mgr_do_reserve()`), inconsistent bad-page counts (related
NULL-deref class already hit stable), potential RAS tracking corruption.
Severity: **MEDIUM-HIGH** for affected hardware (reliability feature
breakage, possible oops in related paths already seen and fixed
separately).
**Step 8.4 — Risk/benefit**
Record:
- Benefit: **MEDIUM-HIGH** for RAS users — prevents invalid VRAM
reservations and drops clearly bad EEPROM batches.
- Risk: **LOW** — ~22 lines, warn-and-skip semantics, reviewed by AMD.
- Ratio: favorable for backport.
---
## Phase 9: Final Synthesis
**Step 9.1 — Evidence**
FOR:
- Real bounds-validation gap in 6.18.y (`real_vram_size` vs
`mc_vram_size`).
- `amdgpu_ras_reserve_page()` unguarded; called from runtime ECC path.
- EEPROM restore path lacks batch validation.
- Small, reviewed, applies cleanly.
- Same RAS/EEPROM invalid-record problem class already warranted stable
fixes (NULL deref in `0b7f78caeffa5`).
AGAINST:
- Sparse commit message (no explicit crash report).
- Niche hardware (RAS-enabled AMD GPUs only).
- Drops entire batch if any record is invalid (conservative).
- Partial overlap with `2b17c240e8cd9` (but does not fully subsume this
fix).
UNRESOLVED:
- No lore thread or user bug report found.
- Exact user-visible failure without this patch on 6.18.y not reproduced
here (inferred from code paths and related fixes).
**Step 9.2 — Stable rules checklist**
1. Obviously correct and tested? **PASS** — straightforward bounds
checks; Reviewed-by from AMD; no Tested-by.
2. Fixes a real bug? **PASS** — prevents out-of-range VRAM reservations
and invalid EEPROM restore.
3. Important issue? **PASS** — MEDIUM-HIGH for RAS/enterprise GPU
reliability; related crash class already backported.
4. Small and contained? **PASS** — single file, ~22 lines.
5. No new features/APIs? **PASS** — validation only.
6. Can apply to local tree? **PASS** — clean apply verified.
**Step 9.3 — Exception category**
Record: N/A (not device ID, quirk, DT, build, or docs).
**Step 9.4 — Decision rationale**
For the **6.18.y** tree checked out here, this commit closes a real
validation hole in amdgpu RAS bad-page handling. The tree already has
partial protection (`mc_vram_size` checks) and a related NULL-deref fix,
but still lacks `real_vram_size` validation and an
`amdgpu_ras_reserve_page()` guard. The fix is small, low-risk, and
targets production RAS hardware where EEPROM corruption or VRAM limiting
can produce out-of-range records.
---
## Verification
- [Phase 1] `git show 3999aa4a04a04` — parsed subject, tags, body
- [Phase 2] Diff from user query + `git show 3999aa4a04a04` — 22-line
change in `amdgpu_ras.c`
- [Phase 3] `git describe HEAD` → v6.18.44; `git merge-base --is-
ancestor 3999aa4a04a04 HEAD` → NOT IN TREE; `2b17c240e8cd9` → IN TREE
- [Phase 3] `git log --oneline -20 --
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c` — related RAS history
- [Phase 3] `git show 2b17c240e8cd9`, `0b7f78caeffa5`, `0028b86b52f76` —
related commits examined
- [Phase 3] `git blame` on restore loop and `amdgpu_ras_reserve_page`
- [Phase 4] `b4 dig -c 3999aa4a04a04` — no lore match
- [Phase 5] `Grep` callers of `amdgpu_ras_reserve_page`,
`__amdgpu_ras_restore_bad_pages`
- [Phase 5] Read `umc_v12_0.c:609`, `amdgpu_vram_mgr.c:298-327`,
`amdgpu_gmc.c:217-222`
- [Phase 6] `Grep` for `__check_record_in_range` — not in tree
- [Phase 6] `git show 3999aa4a04a04 --format= --
drivers/.../amdgpu_ras.c | git apply --check` — clean apply
- [Phase 6] Read current `amdgpu_ras_reserve_page()` at lines 5366–5383
— no range guard
- [Phase 8] Confirmed `real_vram_size` can be reduced below
`mc_vram_size` via `amdgpu_vram_limit` in `amdgpu_gmc_vram_location()`
**YES**The background git searches finished and matched what we already
had:
- **`3999aa4a04a04`** — `drm/amdgpu: check and drop invalid bad page
records` (the commit under review)
- **`2b17c240e8cd9`** — earlier related fix, `drm/amdgpu: add range
check for RAS bad page address`, already in **6.18.44**
That confirms the new commit is on master but not in this stable tree,
while only partial protection exists today. The backport recommendation
stands: **YES** for **6.18.y**.
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c | 27 +++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
index 9df691364a18c..4c1a65fffede7 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
@@ -2884,6 +2884,25 @@ static int amdgpu_ras_mca2pa(struct amdgpu_device *adev,
return -EINVAL;
}
+static bool __check_record_in_range(struct amdgpu_device *adev,
+ struct eeprom_table_record *bps, int count)
+{
+ int i;
+
+ for (i = 0; i < count; i++) {
+ if (bps[i].retired_page >=
+ (adev->gmc.real_vram_size >> AMDGPU_GPU_PAGE_SHIFT)) {
+ dev_warn(adev->dev,
+ "Recorded address out of range: 0x%llx, 0x%llx, 0x%x, 0x%x\n",
+ bps[i].address, bps[i].retired_page,
+ bps[i].mem_channel, bps[i].mcumc_id);
+ return false;
+ }
+ }
+
+ return true;
+}
+
static int __amdgpu_ras_restore_bad_pages(struct amdgpu_device *adev,
struct eeprom_table_record *bps, int count)
{
@@ -2891,6 +2910,9 @@ static int __amdgpu_ras_restore_bad_pages(struct amdgpu_device *adev,
struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
struct ras_err_handler_data *data = con->eh_data;
+ if (!__check_record_in_range(adev, bps, count))
+ return 0;
+
for (j = 0; j < count; j++) {
if (!data->space_left &&
amdgpu_ras_realloc_eh_data_space(adev, data, 256)) {
@@ -5370,6 +5392,11 @@ int amdgpu_ras_reserve_page(struct amdgpu_device *adev, uint64_t pfn)
uint64_t start = pfn << AMDGPU_GPU_PAGE_SHIFT;
int ret = 0;
+ if (pfn >= (adev->gmc.real_vram_size >> AMDGPU_GPU_PAGE_SHIFT)) {
+ dev_warn(adev->dev, "Ignoring out-of-range bad page 0x%llx", start);
+ return 0;
+ }
+
if (amdgpu_ras_check_critical_address(adev, start))
return 0;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/panel-edp: Add BOE NT140WHM-N4T, BOE NT140WHM-T05, BOE NV140FHM-N40
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (39 preceding siblings ...)
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/amdgpu: check and drop invalid bad page records Sasha Levin
@ 2026-08-31 13:26 ` Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Fix OOB memory exposure in get_wave_state() Sasha Levin
` (25 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:26 UTC (permalink / raw)
To: patches, stable
Cc: Terry Hsiao, Douglas Anderson, Sasha Levin, neil.armstrong,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-kernel
From: Terry Hsiao <terry_hsiao@compal.corp-partner.google.com>
[ Upstream commit a58ff7da4835e76a5ffc078ecfd2773de90e5d8c ]
The raw EDIDs for each panel:
BOE NT140WHM-N4T
00 ff ff ff ff ff ff 00 09 e5 0d 09 00 00 00 00
01 1e 01 04 95 1f 11 78 03 f8 45 96 57 54 92 28
23 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 a9 1d 56 d0 50 00 24 30 30 20
36 00 35 ae 10 00 00 1a c6 13 56 d0 50 00 24 30
30 20 36 00 35 ae 10 00 00 1a 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 0d 40 ff 0a 3c 7d 11 11 21 7d 00 00 00 00 65
BOE NT140WHM-T05
00 ff ff ff ff ff ff 00 09 e5 85 0b 00 00 00 00
01 21 01 04 95 1f 11 78 03 ea a5 93 5c 58 8f 29
1d 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 c7 1d 56 e2 50 00 1e 30 30 20
36 00 35 ae 10 00 00 1a da 13 56 e2 50 00 1e 30
30 20 36 00 35 ae 10 00 00 1a 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 0d 40 ff 0a 3c 7d 11 11 21 7d 00 00 00 00 4e
BOE NV140FHM-N40
00 ff ff ff ff ff ff 00 09 e5 6f 0c 00 00 00 00
19 21 01 04 a5 1f 11 78 03 21 35 97 59 57 8f 29
23 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 c2 37 80 cc 70 38 28 40 6c 30
aa 00 35 ae 10 00 00 1a 2c 25 80 cc 70 38 28 40
6c 30 aa 00 35 ae 10 00 00 1a 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 0d 36 ff 0a 3c 96 09 0a 19 96 00 00 00 01 57
70 20 79 02 00 25 01 09 8c 2d 02 8c 2d 02 28 3c
80 81 00 10 6f 1a 00 00 03 01 28 3c 00 00 53 4a
53 4a 3c 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 e4 90
Signed-off-by: Terry Hsiao <terry_hsiao@compal.corp-partner.google.com>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://patch.msgid.link/20260506170607.10813-3-terry_hsiao@compal.corp-partner.google.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/panel-edp BOE Panel Additions
**Local tree:** `v6.18.43-1-gc7f0dac02d232` (kernel 6.18.43)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject Line
**Record:** `[drm/panel-edp]` `[Add]` — Add three BOE eDP panel entries
(NT140WHM-N4T, NT140WHM-T05, NV140FHM-N40) with power-sequencing delay
profiles.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Terry Hsiao `<terry_hsiao@compal.corp-
partner.google.com>` (author)
- **Reviewed-by:** Douglas Anderson `<dianders@chromium.org>`
(drm/panel-edp maintainer)
- **Signed-off-by:** Douglas Anderson `<dianders@chromium.org>`
(maintainer merge)
- **Link:** `https://patch.msgid.link/20260506170607.10813-3-
terry_hsiao@compal.corp-partner.google.com`
- No Fixes:, Reported-by:, Tested-by:, Cc: stable@vger.kernel.org, or
syzbot tags
- Notable: Reviewed and merged by subsystem maintainer; no user bug
reports cited
### Step 1.3: Body Analysis
**Record:**
- **Bug description:** None stated. Commit provides raw EDID dumps for
three BOE 14" eDP panels and adds matching entries to the
`edp_panels[]` timing table.
- **Symptom/failure mode:** Without entries, panels fall back to
conservative (non-optimized) power-sequencing delays with a `WARN_ON`
(verified in `generic_edp_panel_probe()`).
- **Version info:** None in message.
- **Root cause:** Panels need panel-specific eDP power-sequencing
delays; the generic fallback is intentionally conservative and
suboptimal.
### Step 1.4: Hidden Bug Fix?
**Record:** No — this is explicit hardware enablement / timing quirk
data, not a disguised crash or leak fix. Wrong delays can still cause
flicker or suspend/resume issues on real hardware, but the commit does
not document a specific failure.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **Files:** `drivers/gpu/drm/panel/panel-edp.c` (+3 lines)
- **Functions modified:** None; only `edp_panels[]` static table
- **Scope:** Single-file, surgical hardware-quirk addition
### Step 2.2: Code Flow Change
**Record:**
| Hunk | Before | After |
|------|--------|-------|
| `0x090d` entry | Unknown BOE panel → conservative timings |
`NT140WHM-N4T` → `delay_200_500_e50` |
| `0x0b85` entry | Unknown BOE panel → conservative timings |
`NT140WHM-T05` → `delay_200_500_e50` |
| `0x0c6f` entry | Unknown BOE panel → conservative timings |
`NV140FHM-N40` → `delay_200_500_e50` |
Affected path: `generic_edp_panel_probe()` → `find_edp_panel()` →
`desc->delay` applied during `panel_edp_prepare()` /
`panel_edp_enable()`.
### Step 2.3: Bug Mechanism
**Record:** **Category (h): Hardware workaround / panel timing quirk.**
Panels are identified by EDID panel ID at probe; missing entries trigger
`panel_edp_set_conservative_timings()` (`unprepare=2000ms`,
`enable=200ms`) instead of optimized `delay_200_500_e50`
(`hpd_absent=200`, `unprepare=500`, `enable=50`).
### Step 2.4: Fix Quality
**Record:** Obviously correct — EDID product IDs in the commit message
match the hex IDs in the table (`0x090d`, `0x0b85`, `0x0c6f`). All three
reuse an existing, widely-used delay profile already used by dozens of
BOE entries in this tree. Minimal regression risk.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** Insertion points are in the BOE section of `edp_panels[]`,
last touched in this tree by `b173ba3365ff0` (NV140WUM-T08, Jan 2026)
and `5d324e5159d9e` (base 6.18 merge, Nov 2025). The table structure and
`find_edp_panel()` logic are mature.
### Step 3.2: Fixes: Tag
**Record:** N/A — no Fixes: tag.
### Step 3.3: Related Changes
**Record:** Part of Terry Hsiao's v1 4-patch series (`20260507_...mbx`),
patch 2/4. This patch is standalone — it only adds three table rows and
does not depend on patches 1, 3, or 4. Similar panel additions already
in this 6.18.y tree: `0bd968c04acfb`, `6ca4647a74155`, `b173ba3365ff0`.
### Step 3.4: Author Context
**Record:** Terry Hsiao (Compal/Google Chromebook partner). Douglas
Anderson reviewed and signed off — he is the drm/panel-edp maintainer
and author of much of this driver.
### Step 3.5: Dependencies
**Record:** None. `delay_200_500_e50` and `EDP_PANEL_ENTRY` macro both
exist in the local tree. Applies cleanly at sorted insertion points.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original Discussion
**Record:** Local mbox `20260507_terry_hsiao_drm_panel_edp_add_and_updat
e_multiple_auo_boe_cmn_and_ivo_panels.mbx` contains the v1 submission.
`b4 dig -c` could not be run (no upstream commit hash in this checkout).
Lore URL blocked by bot protection.
### Step 4.2: Reviewers
**Record:** Reviewed-by and Signed-off-by: Douglas Anderson
(maintainer). Author domain: `compal.corp-partner.google.com`
(Chromebook OEM).
### Step 4.3: Bug Reports
**Record:** None. No Reported-by, syzbot, or bugzilla links.
### Step 4.4: Series Context
**Record:** v1 2/4 of a 4-patch series adding AUO/BOE/CMN/IVO panels
plus one CMN correction. This commit is independently applicable.
### Step 4.5: Stable List Discussion
**Record:** No stable-specific discussion found in the local mbox. No
stable nomination in patch headers.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key Functions
**Record:** `find_edp_panel()`, `generic_edp_panel_probe()`,
`panel_edp_prepare_once()`, `panel_edp_enable()` — only the table data
feeding these is changed.
### Step 5.2: Callers
**Record:** `generic_edp_panel_probe()` called from `panel_edp_probe()`
during device probe. `panel_edp_prepare_once()` / `panel_edp_enable()`
called on every display power-on/resume via DRM panel ops — common
laptop/Chromebook path.
### Step 5.3: Callees
**Record:** Timing delays drive `msleep()` / `panel_edp_wait()` in
prepare/enable/disable paths; `regulator_enable()`, HPD polling.
### Step 5.4: Reachability
**Record:** Triggered at boot and on every suspend/resume for machines
using `panel-edp` with these BOE panels. Userspace cannot directly
trigger, but all display users are affected.
### Step 5.5: Similar Patterns
**Record:** Dozens of identical one-line `EDP_PANEL_ENTRY` additions in
this file; three recent ones already backported to 6.18.y in this
checkout.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE
### Step 6.1: Buggy Code Present?
**Record:** Yes. The three panel IDs (`0x090d`, `0x0b85`, `0x0c6f`) are
**not** in the local tree (grep returned no matches). Unknown panels
currently hit the conservative-timing fallback. The driver and full
`edp_panels[]` table exist.
### Step 6.2: Backport Complications
**Record:** **Clean apply expected.** Insertion points verified against
current file: after `div class="highlight">0x0849`, after `0x0b66`,
after `0x0c26` — all in correct sorted order.
### Step 6.3: Related Fixes Already Present?
**Record:** No — these three panel IDs are absent. Other patches from
the same series (AUO B140HAN07.7, CMN/IVO panels) are also not present.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem
**Record:** `drivers/gpu/drm/panel` — DRM panel driver. **Criticality:
IMPORTANT** (display on laptops/Chromebooks; not universal core kernel,
but affects all users of affected hardware).
### Step 7.2: Activity
**Record:** Actively maintained — three panel-edp additions backported
to this 6.18.y tree in recent months.
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who Is Affected
**Record:** Users of laptops/Chromebooks with BOE NT140WHM-N4T,
NT140WHM-T05, or NV140FHM-N40 eDP panels using the generic `panel-edp`
driver.
### Step 8.2: Trigger Conditions
**Record:** Every boot and resume when these panels are present. Common
on new Chromebook hardware from Compal/Google ecosystem.
### Step 8.3: Failure Mode Severity
**Record:** Without fix: `WARN_ON` + conservative timings. Display
likely still works (driver comment: "highly likely"), but with wrong
power-sequencing delays that can cause flicker, slow resume, or
intermittent display failures. **Severity: MEDIUM** (functional
degradation, not kernel crash or data corruption).
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** Correct power sequencing for three real panels;
eliminates WARN splat; matches established stable practice for this
driver in 6.18.y
- **Risk:** Very low — 3 lines, existing delay profile, maintainer-
reviewed
- **Ratio:** Favorable for stable
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence Summary
**FOR backport:**
- Stable exception category: hardware quirk / panel timing table entry
(analogous to device ID additions)
- Tiny, obviously correct, maintainer-reviewed
- Applies cleanly to 6.18.43
- Identical patch type already backported to this tree (`0bd968c04acfb`,
`6ca4647a74155`, `b173ba3365ff0`)
- Wrong eDP power sequencing can cause real suspend/resume/display
issues
- Standalone within a series
**AGAINST backport:**
- No documented crash, security issue, or user bug report
- Fallback conservative timings exist — not a hard failure
- Arguably "new hardware support" rather than fixing a regression
- Panels may be on very new Chromebooks not yet widespread on 6.18.y
**Unresolved:** No upstream commit hash in this checkout; lore thread
inaccessible; no Tested-by on specific hardware models named in commit.
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — EDID IDs verified;
maintainer reviewed; delay profile matches sibling BOE panels
2. Fixes real bug affecting users? **PASS** (borderline) — fixes
incorrect power sequencing for known hardware; fallback works but is
suboptimal
3. Important issue? **PASS (MEDIUM)** — display reliability / suspend-
resume, not crash/corruption
4. Small and contained? **PASS** — 3 lines, one file
5. No new features/APIs? **PASS** — table entries only, no API change
6. Can apply to local tree? **PASS** — driver and dependencies present;
clean apply
### Step 9.3: Exception Category
**Record:** Hardware quirk / panel timing workaround — the stable-rules
exception for quirks that fix real-world hardware behavior. Same
category as the panel-edp additions already in 6.18.y.
### Step 9.4: Decision Rationale
For 6.18.43, this commit adds three BOE panel timing entries to an
existing, actively-maintained driver. The pattern is routinely accepted
for stable in this tree. While not a crash fix, correct eDP power
sequencing is a hardware quirk fix with low risk and clear benefit for
affected laptop/Chromebook users. Precedent in this exact tree strongly
supports backporting.
---
## Verification
- [Phase 1] `git describe HEAD` → v6.18.43; parsed subject, tags, body
from user-provided commit
- [Phase 1] No Fixes:/Reported-by:/syzbot tags found
- [Phase 2] Diff: 3 `EDP_PANEL_ENTRY` lines in `panel-edp.c`
- [Phase 2] Read `generic_edp_panel_probe()` lines 759–832: unknown
panel → `WARN_ON` + conservative timings
- [Phase 2] Read `panel_edp_set_conservative_timings()` lines 740–754:
unprepare=2000, enable=200
- [Phase 2] Read `delay_200_500_e50` lines 1739–1743: hpd_absent=200,
unprepare=500, enable=50
- [Phase 2] Verified EDID bytes → panel IDs: 0x090d, 0x0b85, 0x0c6f
- [Phase 3] `git log --oneline -5 -- drivers/gpu/drm/panel/panel-edp.c`
→ recent panel additions present
- [Phase 3] `git show 0bd968c04acfb`, `b173ba3365ff0`, `6ca4647a74155` →
identical patch type already in 6.18.y
- [Phase 3] `git blame -L 1981,1983` → insertion context confirmed
- [Phase 4] Read local mbox/cover files; Reviewed-by: Douglas Anderson
confirmed
- [Phase 4] `b4 dig` failed (no commit hash); lore URL blocked by bot
protection
- [Phase 4] No stable nominations found in mbox
- [Phase 5] Grep `desc->delay` → delays used in prepare/enable/disable
paths
- [Phase 6] Grep for `0x090d|0x0b85|0x0c6f|NT140WHM-N4T` → **not
present** in local tree
- [Phase 6] Grep for `delay_200_500_e50` → present; `EDP_PANEL_ENTRY`
macro present
- [Phase 6] Verified insertion points at lines 1956, 1981, 1983 match
diff context
- [Phase 7] Three prior panel-edp backports confirmed in `git log
--grep`
- [Phase 8] Failure mode: conservative fallback, WARN_ON — severity
MEDIUM, not CRITICAL
**YES**
drivers/gpu/drm/panel/panel-edp.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c
index c1ea17a0040be..105074d8cf765 100644
--- a/drivers/gpu/drm/panel/panel-edp.c
+++ b/drivers/gpu/drm/panel/panel-edp.c
@@ -1959,6 +1959,7 @@ static const struct edp_panel_entry edp_panels[] = {
EDP_PANEL_ENTRY('B', 'O', 'E', 0x08b2, &delay_200_500_e200, "NT140WHM-N49"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0848, &delay_200_500_e200, "Unknown"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0849, &delay_200_500_e200, "Unknown"),
+ EDP_PANEL_ENTRY('B', 'O', 'E', 0x090d, &delay_200_500_e50, "NT140WHM-N4T"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x09c3, &delay_200_500_e50, "NT116WHM-N21,836X2"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x094b, &delay_200_500_e50, "NT116WHM-N21"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0951, &delay_200_500_e80, "NV116WHM-N47"),
@@ -1984,8 +1985,10 @@ static const struct edp_panel_entry edp_panels[] = {
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0b43, &delay_200_500_e200, "NV140FHM-T09"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0b56, &delay_200_500_e80, "NT140FHM-N47"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0b66, &delay_200_500_e80, "NE140WUM-N6G"),
+ EDP_PANEL_ENTRY('B', 'O', 'E', 0x0b85, &delay_200_500_e50, "NT140WHM-T05"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0c20, &delay_200_500_e80, "NT140FHM-N47"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0c26, &delay_200_500_p2e200, "NV140WUM-T08"),
+ EDP_PANEL_ENTRY('B', 'O', 'E', 0x0c6f, &delay_200_500_e50, "NV140FHM-N40"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0c93, &delay_200_500_e200, "Unknown"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0cb6, &delay_200_500_e200, "NT116WHM-N44"),
EDP_PANEL_ENTRY('B', 'O', 'E', 0x0cf6, &delay_200_500_e200, "NV140WUM-N64"),
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Fix OOB memory exposure in get_wave_state()
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (40 preceding siblings ...)
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add BOE NT140WHM-N4T, BOE NT140WHM-T05, BOE NV140FHM-N40 Sasha Levin
@ 2026-08-31 13:27 ` Sasha Levin
2026-08-31 16:12 ` sashiko-bot
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: fix buffer overflow during vBIOS update Sasha Levin
` (24 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:27 UTC (permalink / raw)
To: patches, stable
Cc: Sunday Clement, Alex Deucher, Sasha Levin, Felix.Kuehling,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Sunday Clement <Sunday.Clement@amd.com>
[ Upstream commit 7ef144458f48d5589e36f1b3d83e83db2e5c5ba5 ]
The get_wave_state() function for v9 trusts cp_hqd_cntl_stack_size and
cp_hqd_cntl_stack_offset values read directly from the MQD, which are
written by GPU microcode and fully attacker-controlled on the
CRIU-restore path (via AMDKFD_IOC_RESTORE_PROCESS with H3).
this leads to an unbounded copy_to_user() that can leak adjacent
GTT/kernel memory. If offset > size, integer underflow produces a ~4 GiB
read length, if size is set to 1 MiB against a 4 KiB allocation, we leak
1 MiB of adjacent kernel memory (other queues' MQDs, ring buffers, KASLR
pointers).
Fix by clamping both cp_hqd_cntl_stack_size to the actual allocated
buffer size (q->ctl_stack_size) and cp_hqd_cntl_stack_offset to the
clamped size before performing arithmetic and copy_to_user().
This ensures we never read beyond the allocated kernel BO regardless of
attacker-supplied MQD field values.
Signed-off-by: Sunday Clement <Sunday.Clement@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
Connection lost, reconnecting to https://agentn.us.api5.cursor.sh
(attempt 1)...
Retry attempt 1...
# Stable Backport Analysis: `drm/amdkfd: Fix OOB memory exposure in
get_wave_state()`
**Local tree:** Linux **6.18.43** (`v6.18.43-1-gc7f0dac02d232`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject Line
**Record:** `[drm/amdkfd]` `[Fix]` — Fix out-of-bounds kernel memory
exposure in `get_wave_state()` for GFX9 (v9 MQD manager).
### Step 1.2: Tags
**Record:**
| Tag | Value |
|-----|-------|
| Signed-off-by | Sunday Clement `<Sunday.Clement@amd.com>` (author) |
| Acked-by | Alex Deucher `<alexander.deucher@amd.com>` |
| Signed-off-by | Alex Deucher `<alexander.deucher@amd.com>` (committer)
|
| Fixes: | **Absent** (expected for candidate review) |
| Cc: stable | **Absent** (expected) |
| Reported-by: | **Absent** |
| Link: | **Absent** |
Notable: Acked-by from AMDGPU/KFD maintainer Alex Deucher is a strong
quality signal.
### Step 1.3: Body Analysis
**Record:**
- **Bug:** `get_wave_state()` in `kfd_mqd_manager_v9.c` trusts
`cp_hqd_cntl_stack_size` and `cp_hqd_cntl_stack_offset` from the MQD
without bounds checking.
- **Attack vector:** On the CRIU-restore path (`AMDKFD_IOC_CRIU_OP` /
`KFD_CRIU_OP_RESTORE`), the full MQD is copied from userspace via
`restore_mqd()` → `memcpy(m, mqd_src, sizeof(*m))`, making those
fields attacker-controlled.
- **Symptoms:** Unbounded `copy_to_user()` reads beyond the allocated
control-stack BO, leaking adjacent GTT/kernel memory (other MQDs, ring
buffers, KASLR pointers). If `offset > size`, unsigned subtraction
underflows to ~4 GiB copy length.
- **Root cause:** MQD fields used directly for pointer arithmetic and
copy size without clamping to `q->ctl_stack_size` (the actual
allocation size).
- **Version info:** Not specified; affects GFX9 v9 MQD path with CWSR
enabled.
### Step 1.4: Hidden Bug Fix Detection
**Record:** Not disguised — explicitly labeled as a security/memory-
safety fix. Clear OOB read → info-leak vulnerability.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Change Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c` (+7/−3
net, ~10 lines touched)
- **Function:** `get_wave_state()` (static, v9 MQD manager)
- **Scope:** Single-file, surgical fix
### Step 2.2: Code Flow Change
**Record:**
| Hunk | Before | After |
|------|--------|-------|
| Variable setup | Used raw MQD fields | Declares `cntl_stack_size`,
`cntl_stack_offset`; clamps to `q->ctl_stack_size` |
| Size calculation for copy | `*ctl_stack_used_size =
m->cp_hqd_cntl_stack_size - m->cp_hqd_cntl_stack_offset` (used directly
for copy) | Recalculated as `cntl_stack_size - cntl_stack_offset` after
clamping |
| `copy_to_user` of stack data | `ctl_stack +
m->cp_hqd_cntl_stack_offset`, length `*ctl_stack_used_size` | `ctl_stack
+ cntl_stack_offset`, length clamped `*ctl_stack_used_size` |
Header fields are still populated from unclamped MQD values before the
clamp (pre-existing behavior); the security-critical kernel read is what
gets fixed.
### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Buffer overflow / out-of-bounds read → kernel
information disclosure
- **Mechanism:** Attacker-supplied MQD
`cp_hqd_cntl_stack_size`/`cp_hqd_cntl_stack_offset` drive
`copy_to_user()` source pointer (`mqd_ctl_stack + offset`) and length
(`size - offset`) without validation against the BO allocated as
`ALIGN(q->ctl_stack_size, PAGE_SIZE)` at MQD creation time.
### Step 2.4: Fix Quality
**Record:**
- Fix is obviously correct: `min_t()` clamping to known allocation bound
is standard kernel practice.
- Minimal, no API changes, no new features.
- Low regression risk: only affects the data-copy path; worst case
slightly truncates data returned to userspace when MQD fields are
corrupt/malicious (correct behavior).
- Alex Deucher noted C89 mixed-declaration issue in v1 (variables after
statements); the candidate diff moves declarations to function top,
addressing that.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `git blame` on lines 336–370 attributes all lines to
`a112b91dd6349` (sunrpc backport marker commit) — this stable tree has
flattened/squashed history, so blame is not reliable for dating the
original code. The `get_wave_state()` function and vulnerable
`copy_to_user` pattern are **present in the current tree**.
### Step 3.2: Fixes: Tag
**Record:** No `Fixes:` tag present. N/A.
### Step 3.3: Related File History
**Record:** `git log --oneline --
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c` returns only one commit
in this tree (history squashed). Cannot trace intermediate fixes from
local git alone.
### Step 3.4: Author Context
**Record:** Sunday Clement (AMD). Alex Deucher Acked and committed. No
other Sunday Clement commits found in this tree's amdkfd history
(squashed tree).
### Step 3.5: Dependencies
**Record:**
- **Standalone fix** — no series dependency, no prerequisite commits
referenced.
- Requires existing code: `get_wave_state()` v9 copy path, CRIU restore,
`q->ctl_stack_size` in `queue_properties`. All verified present in
6.18.43 tree.
- **v9-specific:** v10+ `get_wave_state()` does not copy control stack
to userspace (only header metadata), so this bug is unique to the v9
path.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original Discussion
**Record:**
- `b4 dig` failed in this environment.
- Web search found thread: https://lists.freedesktop.org/archives/amd-
gfx/2026-May/144498.html
- Submitted May 13, 2026 by Sunday Clement; Alex Deucher replied same
day with **Acked-by** (after noting C89 declaration placement).
- Single-patch submission, not part of a series.
### Step 4.2: Reviewers
**Record:** Alex Deucher (AMDGPU maintainer) reviewed and Acked.
Appropriate subsystem maintainer involvement confirmed.
### Step 4.3: Bug Report
**Record:** No external bug report, syzbot, or CVE referenced. Security
impact described in commit message and review thread.
### Step 4.4: Related Patches
**Record:** No related patches in a series. v10+ not affected (no stack
copy). No other GFX versions need this exact fix.
### Step 4.5: Stable List Discussion
**Record:** No stable@vger.kernel.org nomination found in the thread.
Not a negative signal per instructions.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key Functions
**Record:** `get_wave_state()` (v9), called via
`get_wave_state_v9_4_3()` for multi-XCC GFX9.4.3+.
### Step 5.2: Callers
**Record:**
```
kfd_ioctl_get_queue_wave_state() [kfd_chardev.c:541]
→ pqm_get_wave_state()
[kfd_process_queue_manager.c:685]
→ dqm->ops.get_wave_state()
[kfd_device_queue_manager.c:2690]
→ mqd_mgr->get_wave_state() [kfd_mqd_manager_v9.c:336]
```
`AMDKFD_IOC_GET_QUEUE_WAVE_STATE` has ioctl flag `0` (no special
capability beyond KFD device access).
### Step 5.3: Callees
**Record:** `get_mqd()`, `copy_to_user()` — the vulnerable path copies
from `mqd_ctl_stack` (kernel BO at `mqd + PAGE_SIZE`).
### Step 5.4: Attack Chain (Reachability)
**Record:**
1. Attacker with `CAP_CHECKPOINT_RESTORE` calls `AMDKFD_IOC_CRIU_OP`
with `KFD_CRIU_OP_RESTORE` (`kfd_ioctl_criu`, flag
`KFD_IOC_FLAG_CHECKPOINT_RESTORE`).
2. `kfd_criu_restore_queue()` → `copy_from_user()` of MQD →
`pqm_create_queue()` → `restore_mqd()` → `memcpy(m, mqd_src,
sizeof(*m))` — **full MQD including malicious stack size/offset
fields**.
3. Attacker calls `AMDKFD_IOC_GET_QUEUE_WAVE_STATE` on the restored
queue (queue must be inactive, `cwsr_enabled`).
4. `get_wave_state()` performs OOB `copy_to_user()`, leaking kernel
memory.
Reachable from userspace ioctl path. Poisoning requires
`CHECKPOINT_RESTORE` capability; the leak ioctl itself does not.
### Step 5.5: Similar Patterns
**Record:** `checkpoint_mqd()` also uses `m->cp_hqd_cntl_stack_size` for
`memcpy` (line 388) — potentially a separate concern on restore, but not
addressed by this commit and not the `get_wave_state` leak path under
review. v10/v11/v12 `get_wave_state()` do not perform the vulnerable
stack copy.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE (6.18.43)
### Step 6.1: Buggy Code Exists?
**Record:** **YES.** Current tree at `kfd_mqd_manager_v9.c:350-366`:
```350:366:drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
*ctl_stack_used_size = m->cp_hqd_cntl_stack_size -
m->cp_hqd_cntl_stack_offset;
// ...
if (copy_to_user(ctl_stack + m->cp_hqd_cntl_stack_offset,
mqd_ctl_stack +
m->cp_hqd_cntl_stack_offset,
*ctl_stack_used_size))
```
CRIU restore infrastructure (`kfd_criu_restore_queue`, `restore_mqd`,
`AMDKFD_IOC_CRIU_OP`) all present. Control stack BO allocated at
`ALIGN(q->ctl_stack_size, PAGE_SIZE)` in `alloc_mqd()` (line 139).
### Step 6.2: Backport Complications
**Record:** **Clean apply expected.** Single hunk in one file. No
structural conflicts observed. Candidate diff uses top-of-function
variable declarations (addresses maintainer C89 feedback).
### Step 6.3: Related Fixes Already Present?
**Record:** `git log --grep="OOB"` and `--grep="get_wave_state"` in
amdkfd returned no results. Fix is **not** already in this tree.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem Criticality
**Record:** `drivers/gpu/drm/amd/amdkfd` — AMDGPU KFD (HSA compute).
**IMPORTANT** subsystem: affects AMD GPU compute users (ROCm, HPC, ML
workloads). Security-relevant ioctl path.
### Step 7.2: Subsystem Activity
**Record:** Active development (CRIU, MES, multi-XCC support visible in
tree). CRIU restore is a relatively newer code path where insufficient
validation is plausible.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who Is Affected
**Record:** Users of AMD GFX9 GPUs (Vega20, MI50, MI100, etc.) with:
- `CONFIG_HSA_AMD`/amdkfd enabled
- CWSR (`cwsr_enabled`) enabled
- CRIU checkpoint/restore used (containers, migration)
### Step 8.2: Trigger Conditions
**Record:**
- Requires `CAP_CHECKPOINT_RESTORE` to poison MQD via CRIU restore
- Then `AMDKFD_IOC_GET_QUEUE_WAVE_STATE` on inactive queue
- Not every boot path — specific to CRIU restore + wave state query
- Unprivileged direct trigger: **No** (needs CHECKPOINT_RESTORE for
poisoning step)
### Step 8.3: Failure Mode Severity
**Record:**
- **Failure mode:** Kernel memory information disclosure to userspace
(KASLR pointers, adjacent BO contents)
- **Secondary:** Integer underflow could attempt multi-GB copy
(potential crash/hang)
- **Severity: HIGH** (security — info leak, KASLR bypass aid)
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit: HIGH** — closes a real kernel memory leak on a security-
sensitive ioctl path
- **Risk: VERY LOW** — 7 lines, bounds clamping only, maintainer-Acked
- **Ratio:** Strongly favors backport
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence Summary
**FOR backport:**
- Real security bug: OOB kernel read → info leak (KASLR, adjacent BOs)
- Small, surgical, maintainer-Acked fix
- Buggy code and CRIU infrastructure exist in 6.18.43
- v9-specific `copy_to_user` of control stack is the vulnerable
operation
- Integer underflow can produce ~4 GiB copy attempt
- Defense-in-depth: kernel must not trust MQD fields without validation
**AGAINST backport:**
- Requires `CAP_CHECKPOINT_RESTORE` for the poisoning step (limits
attack surface to CRIU-capable contexts)
- Only affects GFX9 (v9 MQD manager), not GFX10+
- Header metadata still uses unclamped values (minor, not the security
issue)
**Unresolved:** Exact mainline commit SHA not available in this tree;
original introduction date of vulnerable code not determinable due to
squashed stable history.
### Step 9.2: Stable Rules Checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — `min_t()` clamping is
standard; Acked by maintainer |
| 2. Fixes real bug affecting users? | **PASS** — kernel memory info
leak via ioctl |
| 3. Important issue? | **PASS** — security (info disclosure, KASLR
leak) |
| 4. Small and contained? | **PASS** — 1 file, ~10 lines |
| 5. No new features/APIs? | **PASS** — validation only |
| 6. Can apply to local tree? | **PASS** — buggy code present, clean
apply expected |
### Step 9.3: Exception Categories
**Record:** None of the hardware-quirk/DT/device-ID exceptions apply.
This is a security bug fix.
### Step 9.4: Decision Rationale
For **Linux 6.18.43**, the vulnerable `get_wave_state()` code exists,
the CRIU restore attack path is present, and the fix is a minimal
bounds-check that closes a kernel memory information disclosure. This
meets all stable kernel criteria for a security fix. The
`CAP_CHECKPOINT_RESTORE` requirement limits who can trigger it, but
container/CRIU environments are exactly where stable kernels with AMDGPU
compute are deployed, and leaking KASLR/kernel pointers is a meaningful
security impact.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user query;
confirmed Acked-by Alex Deucher
- **[Phase 1]** No Fixes:/Reported-by:/Cc: stable tags (expected)
- **[Phase 2]** Read diff and current `kfd_mqd_manager_v9.c:336-370` —
vulnerable `copy_to_user` confirmed
- **[Phase 2]** Verified BO allocation size uses `q->ctl_stack_size` at
`kfd_mqd_manager_v9.c:139`
- **[Phase 3]** `git blame -L 336,370` — squashed history, unreliable
for dating
- **[Phase 3]** `git log --oneline -- kfd_mqd_manager_v9.c` — single
commit (squashed tree)
- **[Phase 3]** No Fixes: tag to follow
- **[Phase 4]** `b4 dig` — **failed** (tool unavailable)
- **[Phase 4]** WebFetch lore thread — Alex Deucher Acked-by confirmed
at https://lists.freedesktop.org/archives/amd-gfx/2026-May/144498.html
- **[Phase 4]** No stable list nomination found
- **[Phase 5]** Traced call chain: `kfd_ioctl_get_queue_wave_state` →
`pqm_get_wave_state` → `get_wave_state` (v9)
- **[Phase 5]** Verified CRIU restore path: `kfd_criu_restore_queue` →
`restore_mqd` → `memcpy(m, mqd_src, sizeof(*m))` at line 422
- **[Phase 5]** Verified v10 `get_wave_state` does NOT copy stack data
(only header) — bug v9-specific
- **[Phase 6]** `git describe HEAD` → v6.18.43; `Makefile` → 6.18.43
- **[Phase 6]** Buggy code present; fix not yet applied
- **[Phase 6]** CRIU ioctl `KFD_CRIU_OP_RESTORE` present with
`KFD_IOC_FLAG_CHECKPOINT_RESTORE`
- **[Phase 8]** Failure mode: kernel info leak, severity HIGH
**YES**
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
index f2dee320fada4..e3a33a92b1799 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
@@ -341,11 +341,15 @@ static int get_wave_state(struct mqd_manager *mm, void *mqd,
{
struct v9_mqd *m;
struct kfd_context_save_area_header header;
+ u32 cntl_stack_size;
+ u32 cntl_stack_offset;
/* Control stack is located one page after MQD. */
void *mqd_ctl_stack = (void *)((uintptr_t)mqd + PAGE_SIZE);
m = get_mqd(mqd);
+ cntl_stack_size = min_t(u32, m->cp_hqd_cntl_stack_size, q->ctl_stack_size);
+ cntl_stack_offset = min_t(u32, m->cp_hqd_cntl_stack_offset, cntl_stack_size);
*ctl_stack_used_size = m->cp_hqd_cntl_stack_size -
m->cp_hqd_cntl_stack_offset;
@@ -361,9 +365,10 @@ static int get_wave_state(struct mqd_manager *mm, void *mqd,
if (copy_to_user(ctl_stack, &header, sizeof(header.wave_state)))
return -EFAULT;
- if (copy_to_user(ctl_stack + m->cp_hqd_cntl_stack_offset,
- mqd_ctl_stack + m->cp_hqd_cntl_stack_offset,
- *ctl_stack_used_size))
+ *ctl_stack_used_size = cntl_stack_size - cntl_stack_offset;
+
+ if (copy_to_user(ctl_stack + cntl_stack_offset, mqd_ctl_stack + cntl_stack_offset,
+ *ctl_stack_used_size))
return -EFAULT;
return 0;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: fix buffer overflow during vBIOS update
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (41 preceding siblings ...)
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Fix OOB memory exposure in get_wave_state() Sasha Levin
@ 2026-08-31 13:27 ` Sasha Levin
2026-08-31 16:16 ` sashiko-bot
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: harden FRU PIA parsing with bounded helpers Sasha Levin
` (23 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:27 UTC (permalink / raw)
To: patches, stable
Cc: Shiwu Zhang, Alex Deucher, Sasha Levin, christian.koenig, airlied,
simona, amd-gfx, dri-devel, linux-kernel
From: Shiwu Zhang <shiwu.zhang@amd.com>
[ Upstream commit 6229898d46c0cbc238a6fe9f11c1ea12cf8bb9c5 ]
Clamp the buffer postion to write by setting the bin attribute
to the maximum buffer size so that VFS layer will block the
out-of-bounds accessing.
Signed-off-by: Shiwu Zhang <shiwu.zhang@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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:** `[drm/amdgpu]` `[fix]` — buffer overflow during vBIOS (IFWI)
update via `psp_vbflash` sysfs interface.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Shiwu Zhang `<shiwu.zhang@amd.com>` (author)
- **Reviewed-by:** Alex Deucher `<alexander.deucher@amd.com>` (amdgpu
maintainer)
- **Signed-off-by:** Alex Deucher (maintainer ack)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable`, or `Tested-by:`
tags
- Notable: maintainer review is a strong quality signal; no
syzbot/fuzzer report
### Step 1.3: Body Analysis
**Record:**
- **Bug:** `psp_vbflash` `bin_attribute` has `.size = 0`, so the
sysfs/VFS layer does not enforce write bounds;
`amdgpu_psp_vbflash_write()` can `memcpy()` past the 16 MiB
`kvmalloc()` buffer.
- **Symptom:** heap buffer overflow on write to
`/sys/class/drm/card*/device/psp_vbflash` with out-of-bounds
offset/length.
- **Fix:** set `.size = AMD_VBIOS_FILE_MAX_SIZE_B` (16 MiB) so
`sysfs_kf_bin_write()` clamps writes.
- **Root cause:** missing sysfs size limit; driver-side check only
tracks cumulative `vbflash_image_size`, not `pos + count`.
### Step 1.4: Hidden Bug Fix?
**Record:** No — explicitly labeled as a buffer overflow fix.
---
## Phase 2: Diff Analysis
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c` (+1/-1)
- **Function/struct:** `psp_vbflash_bin_attr`
- **Scope:** single-line surgical fix in one file
### Step 2.2: Code Flow Change
**Record:**
- **Before:** `.size = 0` → inode `i_size = 0` → `sysfs_kf_bin_write()`
skips bounds check (`if (size)` is false).
- **After:** `.size = AMD_VBIOS_FILE_MAX_SIZE_B` → sysfs rejects `pos >=
size` with `-EFBIG` and clamps `count` to `size - pos`.
- **Path:** sysfs write to `psp_vbflash` on IFWI-capable AMDGPU
(Navi3x+).
### Step 2.3: Bug Mechanism
**Record:** **Buffer overflow / out-of-bounds write (memory safety).**
Vulnerable write path in this tree:
```4210:4212:drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
mutex_lock(&adev->psp.mutex);
memcpy(adev->psp.vbflash_tmp_buf + pos, buffer, count);
adev->psp.vbflash_image_size += count;
```
Sysfs enforcement when `size == 0`:
```157:161:fs/sysfs/file.c
if (size) {
if (size <= pos)
return -EFBIG;
count = min_t(ssize_t, count, size - pos);
}
```
With `.size = 0`, a user in the device group can seek past 16 MiB and
overflow the kmalloc'd buffer.
### Step 2.4: Fix Quality
**Record:** Obviously correct — `.size` matches the allocation size
(`AMD_VBIOS_FILE_MAX_SIZE_B`). Minimal, no API change. Very low
regression risk.
---
## Phase 3: Git History Investigation
### Step 3.1: Blame
**Record:**
- `.size = 0` introduced in `521289d2a279b2` / `8424f2ccb3c0d`
(2022–2023).
- `psp_vbflash` interface present since `8424f2ccb3c0d` (May 2022).
- IFWI visibility gated by `sup_ifwi_up` since `e7347f1c73cd2` (Jul
2023); expanded in `b3dd2903b09c6`, `c09910b511de0` (2025).
### Step 3.2: Fixes: Tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: Related Changes
**Record:**
- Part of a 3-patch series (May 2026): (1) ww_mutex/GEM leaks, **(2)
this overflow fix**, (3) concurrent allocation mutex.
- Patch 2/3 is standalone; patch 3/3 addresses a separate race.
- Fix **not merged** in this tree (`.size = 0` still at line 4275).
### Step 3.4: Author Context
**Record:** Shiwu Zhang is an AMD amdgpu contributor; Alex Deucher
reviewed.
### Step 3.5: Dependencies
**Record:** None. One-line change; `AMD_VBIOS_FILE_MAX_SIZE_B` already
defined at line 47.
---
## Phase 4: Mailing List and External Research
### Step 4.1: Original Discussion
**Record:**
- **URL:** https://lists.freedesktop.org/archives/amd-
gfx/2026-May/144957.html
- **Series:** PATCH 2/3, May 20, 2026
- No stable nomination found in the thread snippet; no NAKs observed
- `b4 dig -c <hash>` not run — commit not in this checkout (no local
commitish)
### Step 4.2: Reviewers
**Record:** Alex Deucher reviewed (maintainer). Full recipient list via
`b4 dig -w` unavailable without commit hash.
### Step 4.3: Bug Report
**Record:** No external bug report or syzbot link; vulnerability
identified by driver author during review.
### Step 4.4: Related Patches
**Record:** Patches 1/3 and 3/3 are separate issues (leaks, concurrent
alloc). Not prerequisites for this fix.
### Step 4.5: Stable List
**Record:** Not searched separately; prior related commit
`fe56c6ee04570` was nominated with `Cc: stable@vger.kernel.org`.
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key Functions
**Record:** `amdgpu_psp_vbflash_write()`, `psp_vbflash_bin_attr`,
`amdgpu_bin_flash_attr_is_visible()`
### Step 5.2: Callers
**Record:** sysfs write path → `sysfs_kf_bin_write()` →
`amdgpu_psp_vbflash_write()`. Triggered by userspace writes to
`psp_vbflash`.
### Step 5.3: Callees
**Record:** `kvmalloc(AMD_VBIOS_FILE_MAX_SIZE_B)`, `memcpy()`,
`mutex_lock/unlock`
### Step 5.4: Reachability
**Record:**
- Exposed when `adev->psp.sup_ifwi_up` is true (PSP 13.0.0/7/10/12,
14.0.2/3 per `psp_early_init()`).
- Mode `0660` — root and device group (typically `render`/`video`).
- Reachable from userspace by privileged/group members on supported
dGPUs (Navi3x+ IFWI flashing per
`Documentation/gpu/amdgpu/flashing.rst`).
### Step 5.5: Similar Patterns
**Record:** Related bounds-checking work by Lijo Lazar on VBIOS parsing
(`atom.c`, Jun 2026) is a separate code path.
---
## Phase 6: Cross-Reference Against Local Tree (v6.18.44)
### Step 6.1: Buggy Code Present?
**Record:** **Yes.** `git describe HEAD` → `v6.18.44`. `.size = 0` at
line 4275; vulnerable `memcpy()` at line 4211. `vbflash` ancestor commit
`8424f2ccb3c0d` is in this tree.
### Step 6.2: Backport Complications
**Record:** Clean one-line apply expected. No structural conflicts
observed.
### Step 6.3: Fix Already Present?
**Record:** **No.** `git log --grep="buffer overflow"` on `amdgpu_psp.c`
returns nothing; `.size = 0` still present.
---
## Phase 7: Subsystem Context
### Step 7.1: Subsystem / Criticality
**Record:** `drivers/gpu/drm/amd/amdgpu` — **IMPORTANT** (GPU driver,
kernel memory safety on reachable sysfs path).
### Step 7.2: Activity
**Record:** Actively maintained; recent IFWI support commits in 2025.
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who Is Affected
**Record:** Users of AMDGPU with IFWI update support (Navi3x+ dGPUs with
supported PSP versions). Not universal, but real production hardware.
### Step 8.2: Trigger Conditions
**Record:** Write to `psp_vbflash` with `pos + count > 16 MiB` (e.g.,
`lseek` + `write`). Requires membership in device group or root — not
fully unprivileged, but still a kernel memory corruption primitive for
local attackers with GPU access.
### Step 8.3: Failure Mode
**Record:** Heap buffer overflow in kernel context → potential crash,
memory corruption, or local privilege escalation. **Severity: HIGH**
(security-relevant memory safety bug).
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** HIGH — closes exploitable overflow on documented flashing
interface
- **Risk:** VERY LOW — one-line, matches existing allocation bound,
reviewed by maintainer
- **Ratio:** Strongly favors backport
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence Summary
**FOR:**
- Real, verifiable buffer overflow (sysfs bypass + unbounded `memcpy`)
- Security-relevant memory safety fix
- One-line, maintainer-reviewed, obviously correct
- Buggy code present and unfixed in v6.18.44
- Feature is exposed on supported production hardware
**AGAINST:**
- Requires device-group membership (not arbitrary unprivileged user)
- Part of a 3-patch series (but this patch is self-contained)
- No fuzzer report or CVE (yet)
**Unresolved:** Whether patch 3/3 (concurrent alloc race) should also be
backported — separate issue.
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — mechanism verified in
`fs/sysfs/file.c`; maintainer reviewed
2. Fixes a real bug? **PASS** — heap overflow on sysfs write
3. Important issue? **PASS** — buffer overflow / potential local
escalation
4. Small and contained? **PASS** — 1 line, 1 file
5. No new features/APIs? **PASS** — bounds enforcement only
6. Can apply to local tree? **PASS** — buggy code present, clean apply
### Step 9.3: Exception Category
**Record:** Security/memory-safety fix (not device ID, quirk, or docs).
### Step 9.4: Decision Rationale
For **Linux 6.18.44**, the `psp_vbflash` sysfs interface allocates a 16
MiB buffer but advertises unlimited size to the VFS layer. A group-
privileged user can trigger a kernel heap overflow with an out-of-bounds
write. The fix correctly delegates bounds enforcement to sysfs by
setting `.size` to the allocation limit. It is minimal, maintainer-
reviewed, and the vulnerable code is present and unfixed in this tree.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body; no syzbot/Fixes tags
- **[Phase 2]** Read diff and `amdgpu_psp_vbflash_write()` /
`psp_vbflash_bin_attr` in tree
- **[Phase 2]** Verified `sysfs_kf_bin_write()` skips bounds when `size
== 0` (`fs/sysfs/file.c:157-161`)
- **[Phase 3]** `git describe HEAD` → `v6.18.44`; Makefile confirms
6.18.44
- **[Phase 3]** `git blame` on line 4275 → `.size = 0` since 2023
- **[Phase 3]** `git log -S "psp_vbflash_bin_attr"` → introduced
`8424f2ccb3c0d` (2022)
- **[Phase 3]** `git merge-base --is-ancestor 8424f2ccb3c0d HEAD` →
ancestor confirmed
- **[Phase 3]** `git log --grep="buffer overflow"` on `amdgpu_psp.c` →
no fix merged
- **[Phase 4]** WebFetch lore thread:
https://lists.freedesktop.org/archives/amd-gfx/2026-May/144957.html —
PATCH 2/3 confirmed
- **[Phase 4]** UNVERIFIED: `b4 dig -c` — commit not in local tree, no
commitish available
- **[Phase 4]** UNVERIFIED: `b4 dig -w` / `-a` — same reason
- **[Phase 5]** Read `amdgpu_bin_flash_attr_is_visible()` — `0660` when
`sup_ifwi_up`
- **[Phase 5]** Read `psp_early_init()` — `sup_ifwi_up` set for PSP
13.0.0/7/10/12, 14.0.2/3
- **[Phase 5]** Read `Documentation/gpu/amdgpu/flashing.rst` — documents
`psp_vbflash` userspace interface
- **[Phase 6]** Confirmed `.size = 0` at line 4275 (fix not applied)
- **[Phase 6]** Confirmed `AMD_VBIOS_FILE_MAX_SIZE_B` defined at line 47
- **[Phase 8]** Assessed severity as HIGH based on verified overflow
mechanism
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
index 9f3581ce492f3..346e9c9cde40c 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
@@ -4290,7 +4290,7 @@ static ssize_t amdgpu_psp_vbflash_read(struct file *filp, struct kobject *kobj,
*/
static const struct bin_attribute psp_vbflash_bin_attr = {
.attr = {.name = "psp_vbflash", .mode = 0660},
- .size = 0,
+ .size = AMD_VBIOS_FILE_MAX_SIZE_B,
.write = amdgpu_psp_vbflash_write,
.read = amdgpu_psp_vbflash_read,
};
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: harden FRU PIA parsing with bounded helpers
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (42 preceding siblings ...)
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: fix buffer overflow during vBIOS update Sasha Levin
@ 2026-08-31 13:27 ` Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Unwind debug trap enable on copy_to_user failure Sasha Levin
` (22 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:27 UTC (permalink / raw)
To: patches, stable
Cc: Stanley.Yang, Tao Zhou, Alex Deucher, Sasha Levin,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: "Stanley.Yang" <Stanley.Yang@amd.com>
[ Upstream commit c990c05eb6c74c98d1ff3acf67a19015312820b7 ]
Replace the open-coded TLV walk with fru_pia_advance()
and fru_pia_copy_field() helpers that bound every read
by the actual EEPROM data length, preventing out-of-bounds
reads on truncated or malformed FRU data.
Signed-off-by: Stanley.Yang <Stanley.Yang@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: PARSE THE SUBJECT LINE
**Record:** `[drm/amdgpu]` `[harden]` — Harden FRU (Field Replaceable
Unit) Product Info Area (PIA) parsing by replacing open-coded TLV
walking with bounded helper functions.
### Step 1.2: PARSE ALL COMMIT MESSAGE TAGS
**Record:**
- **Fixes:** — not present (expected for manual review)
- **Reported-by:** — none
- **Tested-by:** — none
- **Reviewed-by:** Tao Zhou \<tao.zhou1@amd.com\>
- **Acked-by:** — none
- **Link:** — none
- **Cc: stable@vger.kernel.org:** — absent (not a negative signal)
- **Signed-off-by:** Stanley.Yang \<Stanley.Yang@amd.com\>, Alex Deucher
\<alexander.deucher@amd.com\> (ignore pipeline SOBs)
Notable: reviewed by AMD developer; no fuzzer or user bug reports cited.
### Step 1.3: ANALYZE COMMIT BODY
**Record:**
- **Bug described:** Open-coded TLV walk in FRU PIA parsing does not
bound reads against actual EEPROM buffer length; truncated or
malformed FRU data can cause out-of-bounds reads.
- **Symptom/failure mode:** Out-of-bounds kernel memory reads when
parsing malformed/truncated FRU EEPROM TLV fields.
- **Version info:** none stated.
- **Root cause:** TLV cursor advancement (`addr += 1 + (pia[addr] &
0x3F)`) and `memcpy()` use field-length bytes without ensuring the
cursor and copy length stay within the allocated `pia` buffer (`len`).
### Step 1.4: DETECT HIDDEN BUG FIXES
**Record:** Not disguised — this is an explicit memory-safety hardening
fix. "Harden" and "preventing out-of-bounds reads" clearly describe a
buffer over-read bug fix, not cosmetic cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: INVENTORY THE CHANGES
**Record:**
- **Files:** `drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c` only (~37
lines added helpers, ~43 lines changed in parsing loop; net ~+37/-6 in
parsing region)
- **Functions added:** `fru_pia_advance()`, `fru_pia_copy_field()`
- **Functions modified:** `amdgpu_fru_get_product_info()`
- **Scope:** single-file, surgical fix within one parsing function
### Step 2.2: CODE FLOW CHANGE (per hunk)
**Record:**
1. **New helpers (before `amdgpu_fru_get_product_info`):**
- *Before:* no shared TLV walking helpers.
- *After:* `fru_pia_advance()` checks `*addr >= len` before reading
`pia[*addr]`; `fru_pia_copy_field()` validates header presence and
uses `min3(field_len, dst_size-1, len-addr-1)` for bounded
`memcpy()`.
2. **Manufacturer/product/serial/fru_id field extraction:**
- *Before:* `if (addr + 1 >= len) goto Out` then `memcpy(...,
min_t(sizeof(dst), pia[addr] & 0x3F))`; advances via `addr += 1 +
(pia[addr] & 0x3F)` often without prior bounds check.
- *After:* each field uses `fru_pia_copy_field()` (bounded copy) and
`fru_pia_advance()` (bounded advance); failure jumps to `Out`.
3. **Skip fields (Product Version, Asset Tag):**
- *Before:* unconditional `addr += 1 + (pia[addr] & 0x3F)` with no
bounds check (lines 251, 254, 262, 265 in current tree).
- *After:* `fru_pia_advance()` returns false on overrun, triggering
`goto Out`.
### Step 2.3: BUG MECHANISM
**Record:** **Category:** buffer over-read / out-of-bounds access.
**Specific mechanisms in current 6.18.44 code:**
1. **Unchecked TLV advance** — e.g. at lines 251–254:
```250:255:drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c
/* Go to the Product Version field. */
addr += 1 + (pia[addr] & 0x3F);
/* Go to the Product Serial Number field. */
addr += 1 + (pia[addr] & 0x3F);
```
If `addr` is near `len` or a prior field length is inflated,
`pia[addr]` reads past the kmalloc buffer.
2. **Unbounded memcpy** — e.g. at lines 227–229:
```227:229:drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c
memcpy(fru_info->manufacturer_name, pia + addr + 1,
min_t(size_t, sizeof(fru_info->manufacturer_name),
pia[addr] & 0x3F));
```
Copy length is capped by destination size and TLV length byte, but
**not** by remaining buffer bytes (`len - addr - 1`). A field claiming
63 bytes with only a few bytes remaining causes OOB read.
Checksum validation (lines 211–217) does not prevent structurally
inconsistent TLV lengths within a checksum-valid PIA.
### Step 2.4: FIX QUALITY
**Record:**
- Fix is obviously correct: every read/advance is bounded by `len`.
- Minimal scope: adds two static helpers, replaces inline parsing.
- Low regression risk: same parsing logic, stricter bounds; failure
paths already go to `Out` and return 0.
- `min3()` exists in this tree (`include/linux/minmax.h`).
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: BLAME THE CHANGED LINES
**Record:**
- Buggy TLV walk introduced in `0dbf2c5626253` ("drm/amdgpu: Interpret
IPMI data for product information (v2)", 2022-11-17) by Luben Tuikov.
- Field additions in `ac6b1f275f17b` and `8a2b51392ac4a` (2023-10-04)
retained the same unchecked advance pattern.
- Prior OOB-related FRU fix: `02b865f88b4e4` (2021), `00b14ce075732`
(2022) — shows this subsystem has a history of bounds fixes.
- Bug present since ~6.2; confirmed present in this 6.18.44 tree.
### Step 3.2: FOLLOW Fixes: TAG
**Record:** No `Fixes:` tag. N/A.
### Step 3.3: FILE HISTORY FOR RELATED CHANGES
**Record:** Recent FRU commits in tree include `fd0c6bd82d19c` (increase
FRU File Id buffer), `25907304cfce5` (fetch FRU for smu_v13_0_12),
`a8558fce7ad0c` (avoid FRU on APU). No existing bounded-TLV fix found.
Standalone fix, not part of a multi-patch series in this tree.
### Step 3.4: AUTHOR'S OTHER COMMITS
**Record:** Stanley.Yang has multiple amdgpu commits (RAS, VCN, eeprom
fixes) but is not the original FRU author. Reviewed by Tao Zhou; signed
off by Alex Deucher (amdgpu maintainer).
### Step 3.5: DEPENDENT/PREREQUISITE COMMITS
**Record:** No prerequisites identified. Commit not in this tree
(candidate only). Diff context shows `kzalloc_obj()` on mainline; local
tree uses `kzalloc(sizeof(*adev->fru_info), GFP_KERNEL)` — PIA parsing
portion applies independently. No dependency on missing code structures.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: ORIGINAL PATCH DISCUSSION
**Record:** Commit hash not in local tree; `b4 dig -c` cannot be run.
`b4 dig -S` is not supported. Lore.kernel.org search blocked by anti-bot
page. **UNVERIFIED:** original submission thread, series revisions,
reviewer stable nominations.
### Step 4.2: REVIEWERS
**Record:** **UNVERIFIED** via b4 -w. Commit message lists Reviewed-by:
Tao Zhou, Signed-off-by: Alex Deucher.
### Step 4.3: BUG REPORT
**Record:** No Reported-by, Link, or syzbot reference. No external bug
report to follow.
### Step 4.4: RELATED PATCHES/SERIES
**Record:** Appears standalone. Related historical fixes in same file
(`02b865f`, `00b14ce`) addressed similar OOB concerns in older FRU
parsing code.
### Step 4.5: STABLE MAILING LIST
**Record:** **UNVERIFIED** — lore search unavailable.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: KEY FUNCTIONS
**Record:** `fru_pia_advance()`, `fru_pia_copy_field()` (new);
`amdgpu_fru_get_product_info()` (modified).
### Step 5.2: TRACE CALLERS
**Record:**
- `amdgpu_fru_get_product_info()` called from `amdgpu_device_init()` at
line 3307 of `amdgpu_device.c`.
- `amdgpu_device_init()` called from `amdgpu_driver_load_kms()` in
`amdgpu_kms.c` line 148.
- **Context:** GPU driver probe/load path during PCI/DRM device
initialization.
- `amdgpu_fru_sysfs_init()` at line 4873 exposes sysfs attributes but
does not re-parse FRU data.
### Step 5.3: TRACE CALLEES
**Record:** `is_fru_eeprom_supported()`, `amdgpu_eeprom_read()`,
`kzalloc()`, `kfree()`, `memcpy()`, `sprintf()` (default serial),
`dev_err()`.
### Step 5.4: CALL CHAIN / REACHABILITY
**Record:** PCI probe → `amdgpu_driver_load_kms()` →
`amdgpu_device_init()` → `amdgpu_fru_get_product_info()` → PIA TLV
parse. Triggered on every boot for supported AMD server GPUs with
accessible FRU EEPROM. Not directly userspace-syscall reachable, but
runs automatically on driver load when hardware matches (Vega20 server
SKUs, D603, Aldebaran, SMU v13.0.6/v13.0.14, etc.).
### Step 5.5: SIMILAR PATTERNS
**Record:** Same unchecked `addr += 1 + (pia[addr] & 0x3F)` pattern
repeated 6+ times in current code. AMD previously fixed similar FRU OOB
issues in `02b865f88b4e4` and `00b14ce075732`.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: DOES BUGGY CODE EXIST?
**Record:** **YES.** Local tree is **v6.18.44 / 6.18.44**.
`amdgpu_fru_eeprom.c` lines 220–270 contain the vulnerable unchecked TLV
walk. Bug introduced November 2022 (`0dbf2c5626253`), well before 6.18
branch.
### Step 6.2: BACKPORT COMPLICATIONS
**Record:** Expected **clean apply** for the PIA parsing helpers and
loop replacement. Minor context difference: mainline diff shows
`kzalloc_obj()` but local tree uses `kzalloc()` — unrelated to the fix
hunks. No significant refactoring conflicts in recent file history
(`a3e510fd69c31` dev_* conversion is already present).
### Step 6.3: RELATED FIXES ALREADY PRESENT?
**Record:** No `fru_pia_advance`/`fru_pia_copy_field` or "harden FRU
PIA" commit in tree. `git log --grep='harden FRU'` returned empty. Fix
not yet applied.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: SUBSYSTEM CRITICALITY
**Record:** **Subsystem:** `drm/amdgpu` driver — FRU EEPROM parsing for
AMD server GPUs. **Criticality:** PERIPHERAL (hardware-specific,
server/datacenter GPUs only), but touches kernel memory safety during
probe.
### Step 7.2: SUBSYSTEM ACTIVITY
**Record:** File actively maintained — 20+ commits since 2022, most
recent in 2025 (dev_* conversion, SMU v13.0.12 support).
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: WHO IS AFFECTED
**Record:** Users of AMD server GPUs with FRU EEPROM support (Vega20
D161/D163, Instinct MI D603, Aldebaran, SMU v13.0.6/v13.0.14, etc.). Not
APUs, not VF, not all consumer cards. Config/hardware-specific, but real
production datacenter hardware.
### Step 8.2: TRIGGER CONDITIONS
**Record:** Malformed, truncated, or internally inconsistent FRU Product
Info Area TLV data in on-card EEPROM. Occurs during driver probe
(boot/module load). Not userspace-triggerable directly; requires
corrupt/tampered EEPROM or hardware/firmware fault. Moderately rare but
plausible (manufacturing errors, EEPROM corruption, physical tampering
on servers).
### Step 8.3: FAILURE MODE SEVERITY
**Record:** Out-of-bounds read from kmalloc'd PIA buffer during GPU
init. Potential KASAN splat, kernel oops during probe, or information
leak from adjacent heap data. Severity: **HIGH** for affected hardware
(memory safety during init); **MEDIUM** overall due to narrow
hardware/trigger scope. Does not cause silent data corruption of user
files.
### Step 8.4: RISK-BENEFIT
**Record:**
- **Benefit:** MEDIUM — closes real OOB read in server GPU probe path;
aligns with prior FRU bounds fixes AMD has shipped.
- **Risk:** LOW — small, reviewed, behavior-preserving with stricter
bounds.
- **Ratio:** Benefit outweighs risk for 6.18.y.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: EVIDENCE COMPILED
**FOR backport:**
- Real, verifiable OOB read bug in current 6.18.44 code (unchecked TLV
advance + unbounded memcpy).
- Fixes memory safety during GPU driver probe on affected server
hardware.
- Small, single-file, obviously correct bounded helpers.
- Reviewed by AMD developer; signed off by amdgpu maintainer (Alex
Deucher).
- Same file had prior OOB fixes backported historically.
- Bug present since 2022; code exists in this tree.
- `min3()` available; patch should apply cleanly.
**AGAINST backport:**
- No syzbot report, no user bug report, no CVE cited.
- Very limited hardware population (AMD server GPUs with FRU EEPROM).
- Requires malformed EEPROM data — not commonly triggered.
- Not directly exploitable from userspace.
- Mailing list review context unverified.
**UNRESOLVED:**
- Original lore discussion and whether reviewers nominated for stable.
- Whether any production incident motivated this fix.
### Step 9.2: STABLE RULES CHECKLIST
1. Obviously correct and tested? **PASS** — logic is clear; reviewed by
AMD; no Tested-by but mechanism is verifiable by inspection.
2. Fixes a real bug affecting users? **PASS** — OOB read on server GPU
probe with malformed FRU data.
3. Important issue? **PASS** — kernel memory safety / potential oops
during init (HIGH for affected systems).
4. Small and contained? **PASS** — one file, ~40 lines of meaningful
change.
5. No new features or APIs? **PASS** — parsing hardening only.
6. Can apply to local tree? **PASS** — buggy code confirmed present;
clean apply expected.
### Step 9.3: EXCEPTION CATEGORIES
**Record:** None directly (not device ID, quirk, DT, build fix, or
docs). Standard memory-safety bug fix.
### Step 9.4: DECISION RATIONALE
For **linux-6.18.y** (this checkout): the vulnerable FRU PIA parsing
code is present and has been since the 2022 IPMI rewrite. The fix
addresses a concrete out-of-bounds read that can occur when TLV length
fields in FRU EEPROM data are inconsistent with the actual buffer size —
a scenario checksum validation does not prevent. While the affected
hardware base is narrow (AMD server GPUs), memory-safety fixes in probe
paths are appropriate stable material, especially given AMD's prior
history of backporting similar FRU bounds fixes. The patch is small,
reviewed, and low-risk.
---
## Verification
- [Phase 1] Parsed subject, tags, body: hardening fix for OOB reads;
Reviewed-by Tao Zhou; no Reported-by/syzbot.
- [Phase 2] Read full diff and current `amdgpu_fru_eeprom.c`: confirmed
unchecked advances at lines 251, 254, 262, 265 and unbounded memcpy at
227–229, 237–238, etc.
- [Phase 2] Verified `min3` exists in `include/linux/minmax.h`.
- [Phase 3] `git blame -L 220,270`: buggy walk from `0dbf2c5626253`
(2022-11-17).
- [Phase 3] `git log --oneline -20 -- amdgpu_fru_eeprom.c`: no existing
bounded-helper fix.
- [Phase 3] `git log --grep='harden FRU'`: empty (commit not in tree).
- [Phase 3] `git show 00b14ce075732`, `git show 02b865f88b4e4`: prior
FRU OOB fixes confirmed.
- [Phase 4] `b4 dig -c`: **UNVERIFIED** — commit not in tree.
- [Phase 4] Lore search: **UNVERIFIED** — blocked by anti-bot page.
- [Phase 5] `grep amdgpu_fru_get_product_info`: callers in
`amdgpu_device.c:3307`, init via `amdgpu_kms.c:148`.
- [Phase 6] `git describe HEAD` → v6.18.44; `make kernelversion` →
6.18.44.
- [Phase 6] Read `amdgpu_fru_eeprom.c` lines 220–270: buggy code
confirmed present.
- [Phase 6] `git merge-base --is-ancestor 0dbf2c5626253 HEAD`: buggy
code ancestor in tree.
- [Phase 8] Failure mode: OOB kernel read during probe; severity HIGH
(affected hw) / MEDIUM (overall).
**YES**The background search finished: `git log --grep='harden FRU'`,
`--grep='bounded helpers'`, and `--grep='fru_pia'` all returned nothing,
so this fix is not in the local **6.18.44** tree yet.
That matches what we saw in the file — `amdgpu_fru_eeprom.c` still has
the unchecked TLV walk (e.g. unguarded `addr += 1 + (pia[addr] & 0x3F)`
around lines 251–265).
**Verdict for linux-6.18.y: YES** — real out-of-bounds read on malformed
FRU EEPROM data during server GPU probe; small, reviewed hardening fix
that should apply cleanly.
.../gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c | 95 ++++++++++++-------
1 file changed, 63 insertions(+), 32 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c
index b0082aa7f3c61..2875627dce8e9 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c
@@ -114,6 +114,43 @@ static bool is_fru_eeprom_supported(struct amdgpu_device *adev, u32 *fru_addr)
}
}
+/*
+ * IPMI FRU Product Info Area fields are TLV: one type/length byte
+ * (low 6 bits = data length) followed by that many data bytes. These
+ * helpers walk the cursor and copy a single field while bounding all
+ * accesses to the actual buffer length read from the EEPROM.
+ */
+#define FRU_FIELD_LEN(p, a) ((p)[a] & 0x3F)
+
+/* Advance cursor past the current TLV. Returns false if no more data. */
+static bool fru_pia_advance(u32 *addr, const unsigned char *pia, int len)
+{
+ if (*addr >= (u32)len)
+ return false;
+ *addr += 1 + FRU_FIELD_LEN(pia, *addr);
+ return true;
+}
+
+/*
+ * Copy the current TLV's data into dst (NUL-terminated). Returns false if
+ * the TLV header or data would read past the end of pia.
+ */
+static bool fru_pia_copy_field(char *dst, size_t dst_size,
+ const unsigned char *pia, u32 addr, int len)
+{
+ size_t fl;
+
+ if (addr + 1 >= (u32)len)
+ return false;
+
+ fl = min3((size_t)FRU_FIELD_LEN(pia, addr),
+ dst_size - 1,
+ (size_t)(len - addr - 1));
+ memcpy(dst, pia + addr + 1, fl);
+ dst[fl] = '\0';
+ return true;
+}
+
int amdgpu_fru_get_product_info(struct amdgpu_device *adev)
{
struct amdgpu_fru_info *fru_info;
@@ -222,52 +259,46 @@ int amdgpu_fru_get_product_info(struct amdgpu_device *adev)
* Read Manufacturer Name field whose length is [3].
*/
addr = 3;
- if (addr + 1 >= len)
+ if (!fru_pia_copy_field(fru_info->manufacturer_name,
+ sizeof(fru_info->manufacturer_name),
+ pia, addr, len))
goto Out;
- memcpy(fru_info->manufacturer_name, pia + addr + 1,
- min_t(size_t, sizeof(fru_info->manufacturer_name),
- pia[addr] & 0x3F));
- fru_info->manufacturer_name[sizeof(fru_info->manufacturer_name) - 1] =
- '\0';
/* Read Product Name field. */
- addr += 1 + (pia[addr] & 0x3F);
- if (addr + 1 >= len)
+ if (!fru_pia_advance(&addr, pia, len) ||
+ !fru_pia_copy_field(fru_info->product_name,
+ sizeof(fru_info->product_name),
+ pia, addr, len))
goto Out;
- memcpy(fru_info->product_name, pia + addr + 1,
- min_t(size_t, sizeof(fru_info->product_name), pia[addr] & 0x3F));
- fru_info->product_name[sizeof(fru_info->product_name) - 1] = '\0';
/* Go to the Product Part/Model Number field. */
- addr += 1 + (pia[addr] & 0x3F);
- if (addr + 1 >= len)
+ if (!fru_pia_advance(&addr, pia, len) ||
+ !fru_pia_copy_field(fru_info->product_number,
+ sizeof(fru_info->product_number),
+ pia, addr, len))
goto Out;
- memcpy(fru_info->product_number, pia + addr + 1,
- min_t(size_t, sizeof(fru_info->product_number),
- pia[addr] & 0x3F));
- fru_info->product_number[sizeof(fru_info->product_number) - 1] = '\0';
- /* Go to the Product Version field. */
- addr += 1 + (pia[addr] & 0x3F);
+ /* Skip the Product Version field. */
+ if (!fru_pia_advance(&addr, pia, len))
+ goto Out;
- /* Go to the Product Serial Number field. */
- addr += 1 + (pia[addr] & 0x3F);
- if (addr + 1 >= len)
+ /* Read the Product Serial Number field. */
+ if (!fru_pia_advance(&addr, pia, len) ||
+ !fru_pia_copy_field(fru_info->serial,
+ sizeof(fru_info->serial),
+ pia, addr, len))
goto Out;
- memcpy(fru_info->serial, pia + addr + 1,
- min_t(size_t, sizeof(fru_info->serial), pia[addr] & 0x3F));
- fru_info->serial[sizeof(fru_info->serial) - 1] = '\0';
- /* Asset Tag field */
- addr += 1 + (pia[addr] & 0x3F);
+ /* Skip the Asset Tag field. */
+ if (!fru_pia_advance(&addr, pia, len))
+ goto Out;
/* FRU File Id field. This could be 'null'. */
- addr += 1 + (pia[addr] & 0x3F);
- if ((addr + 1 >= len) || !(pia[addr] & 0x3F))
+ if (!fru_pia_advance(&addr, pia, len) ||
+ !fru_pia_copy_field(fru_info->fru_id,
+ sizeof(fru_info->fru_id),
+ pia, addr, len))
goto Out;
- memcpy(fru_info->fru_id, pia + addr + 1,
- min_t(size_t, sizeof(fru_info->fru_id), pia[addr] & 0x3F));
- fru_info->fru_id[sizeof(fru_info->fru_id) - 1] = '\0';
Out:
kfree(pia);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Unwind debug trap enable on copy_to_user failure
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (43 preceding siblings ...)
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: harden FRU PIA parsing with bounded helpers Sasha Levin
@ 2026-08-31 13:27 ` Sasha Levin
2026-08-31 16:30 ` sashiko-bot
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: fix UAF race in destroy_queue_cpsch Sasha Levin
` (21 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:27 UTC (permalink / raw)
To: patches, stable
Cc: Yongqiang Sun, Alex Deucher, Sasha Levin, Felix.Kuehling,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Yongqiang Sun <Yongqiang.Sun@amd.com>
[ Upstream commit 01112e241e37f9ac98b6f418d93ce2e0b87b7ee0 ]
If kfd_dbg_trap_enable() fails while copying runtime_info to userspace,
it had already activated the trap, set debug_trap_enabled, taken an extra
process reference, and opened the debug event file. Return -EFAULT without
unwinding that state, leaving inconsistent trap state and a refcount
imbalance that could break later DISABLE/ENABLE.
On copy_to_user failure, deactivate the trap and undo the rest of the
enable setup before returning.
Signed-off-by: Yongqiang Sun <Yongqiang.Sun@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
## Phase 1: Commit Message Forensics
### Step 1.1: Parse the Subject Line
**Record:** `[drm/amdkfd]` `[Unwind]` — On `copy_to_user` failure in
`kfd_dbg_trap_enable()`, undo partial debug-trap enable setup that was
left behind.
### Step 1.2: Parse All Commit Message Tags
**Record:**
- **Fixes:** — none
- **Reported-by:** — none
- **Tested-by:** — none
- **Reviewed-by:** — none
- **Acked-by:** Alex Deucher `<alexander.deucher@amd.com>` (AMD DRM
maintainer)
- **Link:** — none
- **Cc: stable@vger.kernel.org:** — none (expected for manual review)
- **Signed-off-by:** Yongqiang Sun `<Yongqiang.Sun@amd.com>` (author);
Alex Deucher (committer)
Notable: maintainer **Acked-by** only; no syzbot or user reports.
### Step 1.3: Analyze Commit Body
**Record:**
- **Bug:** If `copy_to_user()` fails after `kfd_dbg_trap_enable()` has
activated the HW trap, set `debug_trap_enabled`, taken an extra
`kref`, and opened `dbg_ev_file`, the function returned `-EFAULT`
without undoing that state.
- **Symptom:** Inconsistent trap state; refcount imbalance; later
DISABLE/ENABLE can misbehave.
- **Root cause:** Error path only called `kfd_dbg_trap_deactivate()` but
did not mirror the rest of `kfd_dbg_trap_disable()` cleanup.
- **Version info:** None in the message.
### Step 1.4: Detect Hidden Bug Fixes
**Record:** Not disguised — explicitly an error-path unwind / resource-
leak / state-machine fix.
---
## Phase 2: Diff Analysis
### Step 2.1: Inventory Changes
**Record:**
- **Files:** `drivers/gpu/drm/amd/amdkfd/kfd_debug.c` (+6 / −0)
- **Function:** `kfd_dbg_trap_enable()`
- **Scope:** Single-file, surgical error-path fix
### Step 2.2: Code Flow Change
**Record:** On `copy_to_user()` failure in `kfd_dbg_trap_enable()`:
- **Before:** `kfd_dbg_trap_deactivate(target, false, 0); r = -EFAULT;`
— HW trap deactivated, but `dbg_ev_file`, `debug_trap_enabled`, extra
`kref`, and `debugged_process_count` left as if enable succeeded.
- **After:** Same deactivate, then `fput()` + NULL `dbg_ev_file`,
`atomic_dec(debugged_process_count)`, `debug_trap_enabled = false`,
`kfd_unref_process(target)`, then `-EFAULT`.
### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Error-path resource leak + inconsistent state (reference
counting + flag/file leak)
- **Mechanism:** `kref_get()`, `fget()`, `debug_trap_enabled = true`,
and `atomic_inc()` run before `copy_to_user()`. Failure left software
state enabled while userspace received `-EFAULT`.
### Step 2.4: Fix Quality
**Record:** Mirrors the corresponding cleanup in
`kfd_dbg_trap_disable()` (lines 682–692). Minimal, obviously correct.
Low regression risk — only runs on an already-failing path. Does not add
`cancel_work_sync()` or clear `debugger_process`; same gap as the pre-
existing partial `kfd_dbg_trap_deactivate()` unwind.
---
## Phase 3: Git History Investigation
### Step 3.1: Blame Changed Lines
**Record:** Buggy `copy_to_user` error path from Jonathan Kim,
2022-04-05 (`218895820e6fcc`). `kfd_dbg_trap_enable()` with
refcount/file/flag setup from `0ab2d7532b05a` (2023-06-09, “prepare per-
process debug enable and disable”). Bug present since ~v6.5+; definitely
in this tree.
### Step 3.2: Follow Fixes Tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: File History
**Record:** Recent `kfd_debug.c` changes are other debugger fixes (watch
bounds, MES debug, PASID). Fix commit `a50676d5a72a2` is on `all-next`
but **not** on `stable/linux-6.18.y`. Standalone one-commit fix.
### Step 3.4: Author's Other Commits
**Record:** Yongqiang Sun has limited amdkfd history in this tree (e.g.
CWSR overflow fix). Alex Deucher is DRM/AMD maintainer and committed the
fix.
### Step 3.5: Prerequisites
**Record:** No series dependencies. `kfd_dbg_trap_enable()`,
`kfd_dbg_trap_deactivate()`, and `kfd_unref_process()` all exist in this
tree. Applies standalone.
---
## Phase 4: Mailing List and External Research
### Step 4.1: Original Patch Discussion
**Record:** `b4 dig -c a50676d5a72a2` →
https://patch.msgid.link/20260602141422.4982-1-Yongqiang.Sun@amd.com.
Single revision (no `-a` series). Alex Deucher replied with **Acked-by**
in-thread. No NAKs found in mbox. No explicit `Cc: stable` nomination in
thread.
### Step 4.2: Reviewers
**Record:** `b4 dig -w` — CC'd to `amd-gfx@lists.freedesktop.org`. Alex
Deucher reviewed and acked.
### Step 4.3: Bug Report
**Record:** N/A — no `Reported-by` or `Link:` tags. Code-review / error-
path analysis fix.
### Step 4.4: Related Patches
**Record:** Standalone; not part of a multi-patch series.
### Step 4.5: Stable Mailing List
**Record:** Not searched separately; no stable nomination found in patch
thread.
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key Functions
**Record:** `kfd_dbg_trap_enable()` (modified); related:
`kfd_dbg_trap_deactivate()`, `kfd_dbg_trap_disable()`,
`kfd_unref_process()`.
### Step 5.2: Callers
**Record:** `kfd_dbg_trap_enable()` called from `kfd_chardev.c` on
`KFD_IOC_DBG_TRAP_ENABLE` (ioctl path ~line 3029). Reached by ROCm/KFD
GPU debugger tooling via `/dev/kfd`.
### Step 5.3: Callees
**Record:** `fget`, `kfd_dbg_trap_activate`, `kref_get`, `atomic_inc`,
`copy_to_user`, `kfd_dbg_trap_deactivate`, `fput`, `kfd_unref_process`.
### Step 5.4: Call Chain / Reachability
**Record:** Userspace debugger → `KFD_IOC_DBG_TRAP` ioctl →
`kfd_dbg_trap_enable()`. `copy_to_user()` fails on invalid/unmapped
userspace buffers (buggy debugger, bad pointer, page fault under memory
pressure). Not a general unprivileged attack surface, but reachable by
authorized KFD clients.
### Step 5.5: Similar Patterns
**Record:** `kfd_dbg_trap_disable()` already performs the full cleanup
the fix adds. The error path was an incomplete subset of disable logic.
---
## Phase 6: Cross-Reference Against Local Tree
### Step 6.1: Does Buggy Code Exist?
**Record:** **Yes.** Tree is **Linux 6.18.44** (`git describe HEAD` →
`v6.18.44`, `VERSION=6 PATCHLEVEL=18 SUBLEVEL=44`). Buggy code at
`kfd_debug.c:817-819`:
```817:819:drivers/gpu/drm/amd/amdkfd/kfd_debug.c
if (copy_to_user(runtime_info, (void *)&target->runtime_info,
copy_size)) {
kfd_dbg_trap_deactivate(target, false, 0);
r = -EFAULT;
```
### Step 6.2: Backport Complications
**Record:** **Clean apply expected.** Fix commit diff matches current
file structure; only 6 lines in one hunk.
### Step 6.3: Related Fixes Already Present?
**Record:** **No.** `git log stable/linux-6.18.y --grep="Unwind debug
trap"` returns nothing. Fix exists on `all-next` (`a50676d5a72a2`) but
not in this stable checkout.
---
## Phase 7: Subsystem and Maintainer Context
### Step 7.1: Subsystem Criticality
**Record:** `drivers/gpu/drm/amd/amdkfd` — **IMPORTANT** (AMD GPU
compute/ROCm KFD driver). Debug-trap path only; not core kernel, but
affects production debugger workflows.
### Step 7.2: Subsystem Activity
**Record:** Actively maintained — recent stable-relevant amdkfd fixes
(debugger auth, overflows, CRIU, NULL deref).
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who Is Affected
**Record:** Users of AMD KFD GPU debugging (ROCm debugger,
`KFD_IOC_DBG_TRAP_ENABLE`). Requires `CONFIG_HSA_AMD` / amdkfd. Not
universal, but real for that population.
### Step 8.2: Trigger Conditions
**Record:** `copy_to_user()` failure during debug-trap enable — uncommon
but valid (bad userspace buffer). **Likelihood:** low in normal use,
easy to hit with a buggy debugger or invalid pointer. **Privilege:** KFD
device access required.
### Step 8.3: Failure Mode Severity
**Record:**
- Extra `kref` leak on `kfd_process` → process object retained longer
than intended
- `dbg_ev_file` leak → kernel `struct file` refcount leak
- `debug_trap_enabled` stuck `true` while ioctl returned error →
subsequent enable returns `-EALREADY` (verified: line 779-780)
- `debugged_process_count` skew → wrong debugger session accounting
- **Severity:** **MEDIUM-HIGH** for debugger users (broken
retry/disable-enable cycle, resource leaks); **LOW** for non-debug
workloads
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** Restores correct error recovery; prevents leaks and stuck
debug state
- **Risk:** Very low — 6 lines on failure-only path, mirrors existing
disable logic
- **Ratio:** Favorable for stable
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence Summary
**FOR backport:**
- Real bug in error path present since 2023
- Resource leaks (`kref`, `struct file`)
- Functional breakage: `-EALREADY` on retry after failed enable
- Small (6 lines), maintainer-acked
- Buggy code confirmed in Linux 6.18.44; fix not yet applied
- Clean backport
**AGAINST backport:**
- No user report or syzbot — code-review discovery
- Affects debugger-only path, not general workloads
- “Important issue” bar is borderline vs crash/security (no oops/UAF
demonstrated)
**Unresolved:** Whether `debugger_process` should also be cleared on
failure (fix matches partial unwind intent, not full disable).
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — mirrors
`kfd_dbg_trap_disable()`; maintainer acked; no Tested-by
2. Fixes a real bug? **PASS** — refcount/file leak and stuck
`debug_trap_enabled`
3. Important issue? **PASS (MEDIUM)** — resource leaks + broken debug
enable/disable state machine
4. Small and contained? **PASS** — 6 lines, one function
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — code exists; clean apply
### Step 9.3: Exception Categories
**Record:** None (not device ID, quirk, DT, build, or docs). Standard
error-path bug fix.
### Step 9.4: Decision Rationale
For **Linux 6.18.y** specifically: the incomplete unwind in
`kfd_dbg_trap_enable()` is present, the fix is absent, and the patch is
a minimal error-path correction that prevents reference and file leaks
and restores consistent debug-trap state after `-EFAULT`. This matches
the kind of driver error-recovery fixes routinely accepted for stable,
especially with AMD maintainer acknowledgment.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from provided commit message
and `git show a50676d5a72a2`
- **[Phase 2]** Read diff and current `kfd_debug.c:772-825`,
`kfd_dbg_trap_disable()` at 667-694
- **[Phase 3]** `git blame -L 817,820` → `218895820e6fcc` (2022); `git
show 0ab2d7532b05a` → introduced enable setup (2023); `git log
stable/linux-6.18.y --grep="Unwind debug trap"` → empty
- **[Phase 3]** `git log --oneline -5 --
drivers/gpu/drm/amd/amdkfd/kfd_debug.c`
- **[Phase 4]** `b4 dig -c a50676d5a72a2` → lore URL; `b4 dig -m
/tmp/kfd_debug_trap.mbx` → Alex Deucher Acked-by in thread; `b4 dig
-a` → no revisions
- **[Phase 5]** `grep kfd_dbg_trap_enable` → caller in
`kfd_chardev.c:3029`; `grep debug_trap_enabled` across amdkfd
- **[Phase 6]** `git describe HEAD` → `v6.18.44`; Makefile `6.18.44`;
confirmed buggy lines at 817-819 without fix
- **[Phase 6]** `git log stable/linux-6.18.y..all-next --
drivers/gpu/drm/amd/amdkfd/kfd_debug.c` → fix commit listed, not in
stable
- **[Phase 6]** `git branch --contains a50676d5a72a2` → `all-next` and
others, not `stable/linux-6.18.y`
- **[Phase 7]** `git log --oneline -20 -- drivers/gpu/drm/amd/amdkfd/` →
active subsystem
- **[Phase 8]** Verified `-EALREADY` guard at line 779-780; verified
`kfd_dbg_trap_disable()` cleanup pattern at 682-692
**YES**
drivers/gpu/drm/amd/amdkfd/kfd_debug.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_debug.c b/drivers/gpu/drm/amd/amdkfd/kfd_debug.c
index 986cb297de8f8..78e1dfdb27147 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_debug.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_debug.c
@@ -816,6 +816,12 @@ int kfd_dbg_trap_enable(struct kfd_process *target, uint32_t fd,
if (copy_to_user(runtime_info, (void *)&target->runtime_info, copy_size)) {
kfd_dbg_trap_deactivate(target, false, 0);
+ fput(target->dbg_ev_file);
+ target->dbg_ev_file = NULL;
+ if (target->debugger_process)
+ atomic_dec(&target->debugger_process->debugged_process_count);
+ target->debug_trap_enabled = false;
+ kfd_unref_process(target);
r = -EFAULT;
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: fix UAF race in destroy_queue_cpsch
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (44 preceding siblings ...)
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Unwind debug trap enable on copy_to_user failure Sasha Levin
@ 2026-08-31 13:27 ` Sasha Levin
2026-08-31 16:36 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: Prefer ROM BAR for default VGA device Sasha Levin
` (20 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:27 UTC (permalink / raw)
To: patches, stable
Cc: Alysa Liu, Amir Shetaia, Alex Deucher, Sasha Levin,
Felix.Kuehling, christian.koenig, airlied, simona, amd-gfx,
dri-devel, linux-kernel
From: Alysa Liu <Alysa.Liu@amd.com>
[ Upstream commit ac081deaf16a639ea7dff2f285fe421a33c1ade0 ]
wait_on_destroy_queue() drops locks to wait for queue resume, allowing
a concurrent destroy to free the queue. Use is_being_destroyed flag to
serialize destruction.
Reviewed-by: Amir Shetaia <Amir.Shetaia@amd.com>
Signed-off-by: Alysa Liu <Alysa.Liu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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:** `[drm/amdkfd]` `[fix]` — UAF race in `destroy_queue_cpsch`
during concurrent queue destruction.
### Step 1.2: Commit Message Tags
**Record:**
- **Reviewed-by:** Amir Shetaia \<Amir.Shetaia@amd.com\> (AMD reviewer)
- **Signed-off-by:** Alysa Liu \<Alysa.Liu@amd.com\> (author)
- **Signed-off-by:** Alex Deucher \<alexander.deucher@amd.com\> (DRM/AMD
maintainer)
- **Absent (expected):** Fixes:, Reported-by:, Link:, Tested-by:, Cc:
stable@vger.kernel.org
Notable: maintainer sign-off and subsystem reviewer present; no syzbot
or user bug report.
### Step 1.3: Commit Body Analysis
**Record:**
- **Bug:** `wait_on_destroy_queue()` drops `dqm` lock and process mutex
while waiting for a suspended queue to resume. A concurrent destroy
can complete and free the queue while the first caller still holds a
pointer to it.
- **Symptom:** Use-after-free when the first destroy path resumes after
the wait.
- **Root cause:** No serialization of concurrent destruction;
`is_being_destroyed` was set but not checked at entry; not cleared on
error paths.
- **Fix:** Check `is_being_destroyed` and return `-EBUSY` for concurrent
destroyers; clear the flag on wait failure and on the debug-queue
error path.
### Step 1.4: Hidden Bug Fix Detection
**Record:** Not disguised — explicitly labeled UAF race. The
`failed_try_destroy_debugged_queue` cleanup also fixes a stuck-flag bug
(queue permanently marked as being destroyed after `-EBUSY`).
---
## Phase 2: Diff Analysis
### Step 2.1: Change Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c` (+6
lines net)
- **Functions:** `wait_on_destroy_queue()`, `destroy_queue_cpsch()`
error path
- **Scope:** Single-file, surgical fix (3 small hunks)
### Step 2.2: Code Flow Changes
**Record:**
- **Hunk 1 (wait_on_destroy_queue entry):** Before → unconditionally set
`is_being_destroyed = true`. After → if already set, return `-EBUSY`
immediately (serialize concurrent destroys).
- **Hunk 2 (wait_on_destroy_queue exit):** Before → on
`wait_event_interruptible()` failure (signal), flag stayed true
forever. After → clear `is_being_destroyed` on non-zero `ret` so
destroy can be retried.
- **Hunk 3 (failed_try_destroy_debugged_queue):** Before → returned
`-EBUSY` for debug queues but left `is_being_destroyed = true`. After
→ clears flag before unlock/return.
### Step 2.3: Bug Mechanism
**Record:** **Category:** Use-after-free / race condition (reference-
counting-like serialization via flag).
**Mechanism verified in code:**
1. `kfd_ioctl_destroy_queue()` holds `p->mutex`.
2. `destroy_queue_cpsch()` → `dqm_lock()` → `wait_on_destroy_queue()`.
3. When `debug_trap_enabled && is_suspended`, `wait_on_destroy_queue()`
calls `dqm_unlock()`, `mutex_unlock(&q->process->mutex)`, then blocks
on `wait_event_interruptible(dqm->destroy_wait,
!q->properties.is_suspended)`.
4. With mutex released, a second thread can enter
`kfd_ioctl_destroy_queue()` for the same queue.
5. Without the fix, the second thread proceeds through destruction;
`pqm_destroy_queue()` calls `uninit_queue()` and frees resources.
6. First thread wakes and continues using freed `struct queue` → UAF.
The `is_being_destroyed` flag was already used in
`suspend_single_queue()` (line 1075) to block suspend during destroy,
but was never checked at the destroy entry point.
### Step 2.4: Fix Quality
**Record:** Fix is minimal and obviously correct — standard serialize-
with-flag pattern. Low regression risk: `-EBUSY` on concurrent destroy
is consistent with existing error handling in `pqm_destroy_queue()`
(non-`-ETIME`/non-`-EIO` errors skip freeing). No new APIs or data
structures.
---
## Phase 3: Git History Investigation
### Step 3.1: Blame
**Record:** `wait_on_destroy_queue()` and `is_being_destroyed` usage
introduced in commit `a70a93fa568b4` ("drm/amdkfd: add debug suspend and
resume process queues operation", 2023-06-09, Jonathan Kim). Confirmed
ancestor of HEAD in this tree. Bug has existed since that commit.
### Step 3.2: Fixes: Tag
**Record:** N/A — no Fixes: tag in commit message.
### Step 3.3: Related File History
**Record:** Recent `amdkfd` stable-relevant fixes in this tree include
NULL deref, overflow, list corruption, and UAF fixes — active
maintenance area. No prior fix for this specific race found (`git log
--grep="destroy_queue_cpsch"` and `--grep="is_being_destroyed"` show
only the introducing commit).
### Step 3.4: Author Context
**Record:** Alysa Liu has other security/reliability fixes in
amdgpu/amdkfd in this tree (e.g., `7885eb335d8f9` VM acquire UAF). Alex
Deucher is AMDGPU maintainer.
### Step 3.5: Dependencies
**Record:** Standalone — uses existing `is_being_destroyed` field in
`kfd_priv.h` (line 521), already present since `a70a93fa568b4`. No
series dependencies.
---
## Phase 4: Mailing List and External Research
### Step 4.1: Original Discussion
**Record:** `b4 dig -c <commit>` could not be run — commit is not in
this checkout. Lore.kernel.org search blocked (Anubis bot protection).
**UNVERIFIED:** full mailing list review thread.
### Step 4.2: Reviewers
**Record:** **UNVERIFIED** via b4 dig -w. Commit message shows Reviewed-
by from AMD and Signed-off-by from maintainer.
### Step 4.3: Bug Report
**Record:** N/A — no Reported-by or Link tags.
### Step 4.4: Related Patches/Series
**Record:** Appears standalone; not part of a multi-patch series.
### Step 4.5: Stable List History
**Record:** **UNVERIFIED** — could not search lore stable archive.
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key Functions
**Record:** `wait_on_destroy_queue()`, `destroy_queue_cpsch()`, callers
`pqm_destroy_queue()`, `kfd_ioctl_destroy_queue()`.
### Step 5.2: Callers
**Record:**
- `destroy_queue_cpsch` assigned at line 2953 as
`dqm->ops.destroy_queue` (CP scheduling path).
- Called from `pqm_destroy_queue()` (line 550).
- `pqm_destroy_queue()` called from `kfd_ioctl_destroy_queue()` (line
429) under `p->mutex`.
- Userspace entry: `KFD_IOC_DESTROY_QUEUE` ioctl on `/dev/kfd`.
### Step 5.3: Callees
**Record:** `wait_on_destroy_queue()` calls `dqm_unlock/lock`,
`mutex_unlock/lock`, `wait_event_interruptible()`. On success path,
`destroy_queue_cpsch()` calls `mqd_mgr->free_mqd()` after unlock — the
UAF window is between wait return and completion of destroy.
### Step 5.4: Reachability
**Record:** **Userspace-reachable** for processes with KFD access.
Trigger requires:
- `debug_trap_enabled` on the process (KFD debugger path)
- Queue `is_suspended`
- Concurrent destroy while first destroy waits (mutex dropped during
wait)
Narrower than everyday compute, but real for ROCm debugger / debug-trap
workloads.
### Step 5.5: Similar Patterns
**Record:** `suspend_single_queue()` already checks `is_being_destroyed`
(line 1075) — this fix completes the symmetric protection for the
destroy side.
---
## Phase 6: Cross-Reference Against Local Tree (6.18.44)
### Step 6.1: Buggy Code Present?
**Record:** **YES.** Tree is `v6.18.44` (Makefile: 6.18.44). Current
`wait_on_destroy_queue()` at lines 2480–2506 lacks all three fix hunks.
`is_being_destroyed` field exists. Introducing commit `a70a93fa568b4` is
an ancestor of HEAD.
### Step 6.2: Backport Complications
**Record:** **Clean apply.** `git apply --check` succeeded for all three
hunks against current file (minor 1-line offset on first hunk). No
structural refactoring conflicts.
### Step 6.3: Related Fixes Already Present?
**Record:** **NO** — grep and `git log -S "is_being_destroyed"` show no
subsequent fix for this race in this tree.
---
## Phase 7: Subsystem Context
### Step 7.1: Subsystem Criticality
**Record:** `drivers/gpu/drm/amd/amdkfd/` — **IMPORTANT** (AMD GPU
compute/KFD/ROCm). Not universal like mm/VFS, but affects all KFD users
on AMDGPU.
### Step 7.2: Activity Level
**Record:** Actively maintained — multiple recent amdkfd security and
stability fixes in 6.18.y (NULL deref, overflow, list corruption, CRIU
fixes).
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who Is Affected
**Record:** AMD GPU users with `CONFIG_DRM_AMDGPU` + KFD enabled,
specifically processes using debug-trap with suspended queues.
Config/driver-specific, not platform-specific.
### Step 8.2: Trigger Conditions
**Record:**
- Process has `debug_trap_enabled`
- Target queue is `is_suspended`
- Two concurrent destroy attempts (or destroy during wait after mutex
drop)
- **Likelihood:** Uncommon but realistic in debugger scenarios (multi-
threaded teardown, signal interruption + retry)
- **Privilege:** Requires access to `/dev/kfd` (not arbitrary
unprivileged, but reachable by compute users)
### Step 8.3: Failure Mode Severity
**Record:** **UAF** on `struct queue` → kernel oops/crash, potential
memory corruption. **Severity: HIGH** (approaching CRITICAL for
exploitable UAF, though trigger is somewhat specialized).
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** HIGH — prevents real UAF crash in production KFD debugger
paths
- **Risk:** LOW — 6 lines, uses existing flag, `-EBUSY` is
safe/conventional
- **Ratio:** Strongly favors backport
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence Summary
**FOR backport:**
- Explicit UAF race fix with clear mechanism
- Bug present since 2023 in code that exists in 6.18.44
- Small, surgical, applies cleanly
- Userspace-reachable via KFD ioctl
- Maintainer + reviewer sign-off
- Matches pattern of other amdkfd stable fixes (UAF, NULL deref, races)
- Error-path flag cleanup prevents stuck "being destroyed" state
**AGAINST backport:**
- Narrow trigger (debug_trap + suspended queue + concurrency)
- No syzbot/user report in commit message
- Mailing list discussion unverified
**Unresolved:**
- Full lore review thread (blocked)
- Whether fix commit hash exists on mainline (not in this tree)
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — logic is clear; AMD reviewer
+ maintainer SOB; no Tested-by but pattern is standard
2. Fixes a real bug? **PASS** — verified UAF race in code
3. Important issue? **PASS** — UAF / crash (HIGH severity)
4. Small and contained? **PASS** — 6 lines, 1 file, 2 functions
5. No new features/APIs? **PASS** — uses existing `is_being_destroyed`
field
6. Can apply to local tree? **PASS** — verified with `git apply --check`
### Step 9.3: Exception Categories
**Record:** N/A — standard bug fix, not a quirk/ID/DT/build/doc
exception.
### Step 9.4: Decision Rationale
This is a textbook stable backport: a real use-after-free in KFD queue
destruction, introduced years ago, still present in 6.18.44, fixed with
a minimal flag-based serialization that mirrors existing suspend-side
logic. The trigger is specialized (debugger + suspended queue) but the
consequence is a kernel crash. The patch applies cleanly and carries low
risk.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from provided commit message
- **[Phase 1]** Confirmed no Fixes:/Reported-by:/Link: tags
- **[Phase 2]** Read current `wait_on_destroy_queue()` at lines
2480–2506: missing all fix hunks
- **[Phase 2]** Read `destroy_queue_cpsch()` at lines 2508–2601: missing
flag cleanup on error path
- **[Phase 2]** Read `suspend_single_queue()` line 1075: existing
`is_being_destroyed` check confirms flag infrastructure
- **[Phase 2]** Read `kfd_priv.h` line 521: `is_being_destroyed` field
exists
- **[Phase 3]** `git describe HEAD`: v6.18.44
- **[Phase 3]** `git blame -L 2480,2506`: `wait_on_destroy_queue` from
`a70a93fa568b4` (Jonathan Kim, 2023-06-09)
- **[Phase 3]** `git show a70a93fa568b4f`: introduced debug
suspend/resume and `wait_on_destroy_queue`
- **[Phase 3]** `git merge-base --is-ancestor a70a93fa568b4f HEAD`:
buggy commit is in tree
- **[Phase 3]** `git log -S "is_being_destroyed"`: only introducing
commit, no fix
- **[Phase 3]** `git log --oneline -20 -- kfd_device_queue_manager.c`:
recent amdkfd activity confirmed
- **[Phase 4]** `b4 dig -c`: N/A — commit not in checkout
- **[Phase 4]** lore.kernel.org fetch: blocked by Anubis (UNVERIFIED)
- **[Phase 5]** `grep destroy_queue`: traced call chain ioctl →
pqm_destroy_queue → destroy_queue_cpsch
- **[Phase 5]** Read `pqm_destroy_queue()` lines 505–574: frees queue
only after successful destroy
- **[Phase 5]** Read `kfd_ioctl_destroy_queue()` lines 417–433:
holds/releases `p->mutex`
- **[Phase 6]** Confirmed buggy code at lines 2493, 2495–2503 (drops
locks during wait)
- **[Phase 6]** `git apply --check`: patch applies cleanly to 6.18.44
- **[Phase 6]** `grep "fix UAF race in destroy_queue_cpsch"`: not in
tree (fix not yet applied)
- **[Phase 8]** Race mechanism verified: mutex dropped at line 2497
enables concurrent destroy
**YES**
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
index d9f09f25911a7..b02fe5d08c79f 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
@@ -2499,6 +2499,9 @@ static int wait_on_destroy_queue(struct device_queue_manager *dqm,
if (pdd->qpd.is_debug)
return ret;
+ if (q->properties.is_being_destroyed)
+ return -EBUSY;
+
q->properties.is_being_destroyed = true;
if (pdd->process->debug_trap_enabled && q->properties.is_suspended) {
@@ -2511,6 +2514,9 @@ static int wait_on_destroy_queue(struct device_queue_manager *dqm,
dqm_lock(dqm);
}
+ if (ret)
+ q->properties.is_being_destroyed = false;
+
return ret;
}
@@ -2604,7 +2610,7 @@ static int destroy_queue_cpsch(struct device_queue_manager *dqm,
return retval;
failed_try_destroy_debugged_queue:
-
+ q->properties.is_being_destroyed = false;
dqm_unlock(dqm);
return retval;
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: Prefer ROM BAR for default VGA device
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (45 preceding siblings ...)
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: fix UAF race in destroy_queue_cpsch Sasha Levin
@ 2026-08-31 13:28 ` Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add AUO B140XTN07.5, AUO B140HAK03.5, AUO B116XTN02.3, AUO B140XTK02.4, AUO B140HAN07.7 Sasha Levin
` (19 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:28 UTC (permalink / raw)
To: patches, stable
Cc: Lijo Lazar, Hawking Zhang, Alex Deucher, Sasha Levin,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Lijo Lazar <lijo.lazar@amd.com>
[ Upstream commit 9e32d17592950478baffaecdbda8e2e60935fd3d ]
Fetching from platform ROM doesn't work with hybrid ROM images. For
default VGA devices also prefer ROM BAR.
Signed-off-by: Lijo Lazar <lijo.lazar@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The background `git log -S` search finished, but this stable tree’s
shallow history isn’t useful here — it only surfaced baseline import
commits (`19eef1d98eeda`, `ac3fd01e4c1ef`), not the real introduction.
The function was added upstream in `27145f78f56a` (“drm/amdgpu: Prefer
shadow rom when available”, March 2025), and that code is already
present in v6.18.43. This patch is a small follow-up for default VGA
devices with hybrid ROM images.
**Verdict: YES** — backport to this tree.
drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c
index 4e60753e16e90..dec312b0f3b0a 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c
@@ -33,6 +33,7 @@
#include <linux/pci.h>
#include <linux/slab.h>
#include <linux/acpi.h>
+#include <linux/vgaarb.h>
/*
* BIOS.
*/
@@ -491,7 +492,8 @@ static bool amdgpu_prefer_rom_resource(struct amdgpu_device *adev)
{
struct resource *res = &adev->pdev->resource[PCI_ROM_RESOURCE];
- return (res->flags & IORESOURCE_ROM_SHADOW);
+ return (res->flags & IORESOURCE_ROM_SHADOW) ||
+ adev->pdev == vga_default_device();
}
static bool amdgpu_get_bios_dgpu(struct amdgpu_device *adev)
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/panel-edp: Add AUO B140XTN07.5, AUO B140HAK03.5, AUO B116XTN02.3, AUO B140XTK02.4, AUO B140HAN07.7
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (46 preceding siblings ...)
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: Prefer ROM BAR for default VGA device Sasha Levin
@ 2026-08-31 13:28 ` Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds for allocate_sdma_queue restore_sdma_id Sasha Levin
` (18 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:28 UTC (permalink / raw)
To: patches, stable
Cc: Terry Hsiao, Douglas Anderson, Sasha Levin, neil.armstrong,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-kernel
From: Terry Hsiao <terry_hsiao@compal.corp-partner.google.com>
[ Upstream commit 4c34cdb93ea187b46d287a77a8946268a7d24286 ]
The raw EDIDs for each panel:
AUO B140XTN07.5
00 ff ff ff ff ff ff 00 06 af 90 02 00 00 00 00
00 1e 01 04 95 1f 11 78 03 c0 d5 8f 56 58 93 29
20 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 ce 1d 56 e2 50 00 1e 30 26 16
36 00 35 ad 10 00 00 18 df 13 56 e2 50 00 1e 30
26 16 36 00 35 ad 10 00 00 18 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 10 48 ff 0f 3c 7d 48 0f 1b 7d 20 20 20 00 09
AUO B140HAK03.5
00 ff ff ff ff ff ff 00 06 af 9f 3c 00 00 00 00
00 1f 01 04 95 1f 11 78 03 f5 65 8f 55 5a 93 2a
1f 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 b0 36 80 a0 70 38 24 40 10 10
3e 00 35 ae 10 00 00 18 75 24 80 a0 70 38 24 40
10 10 3e 00 35 ae 10 00 00 18 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 10 48 ff 0f 3c 7d 14 0e 1e 7d 20 20 20 01 02
70 20 79 02 00 22 00 14 df 22 02 84 7f 07 9f 00
0f 80 0f 00 37 04 23 00 02 00 0d 00 25 00 09 df
22 02 df 22 02 28 3c 80 81 00 10 72 1a 00 00 03
01 28 3c 00 00 60 50 60 50 3c 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 3f 90
AUO B116XTN02.3
00 ff ff ff ff ff ff 00 06 af ba 49 00 00 00 00
00 23 01 04 95 1a 0e 78 02 6b f5 91 55 54 91 27
22 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 ce 1d 56 e2 50 00 1e 30 26 16
36 00 00 90 10 00 00 18 df 13 56 e2 50 00 1e 30
26 16 36 00 00 90 10 00 00 18 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 10 48 ff 0f 3c 7d 50 05 18 7d 20 20 20 00 7f
AUO B140XTK02.4
00 ff ff ff ff ff ff 00 06 af a8 67 00 00 00 00
28 20 01 04 95 1f 11 78 03 c0 d5 8f 56 58 93 29
20 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 ce 1d 56 e2 50 00 1e 30 26 16
36 00 35 ad 10 00 00 18 df 13 56 e2 50 00 1e 30
26 16 36 00 35 ad 10 00 00 18 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 10 48 ff 0f 3c 7d 11 23 21 6e 20 20 20 00 8e
AUO B140HAN07.7
00 ff ff ff ff ff ff 00 06 af ad c7 00 00 00 00
21 21 01 04 a5 1f 11 78 03 fa 95 92 56 5a 92 2a
20 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 56 37 80 bc 70 38 28 40 10 10
3e 00 35 ae 10 00 00 18 e4 24 80 bc 70 38 28 40
10 10 3e 00 35 ae 10 00 00 18 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02
00 10 3c ff 0f 3c 96 23 10 28 96 20 20 20 01 66
70 20 79 02 00 22 00 14 5b 29 02 84 7f 07 bb 00
0f 80 0f 00 37 04 27 00 02 00 0d 00 25 01 09 5b
29 02 5b 29 02 28 3c 80 81 00 10 6f 1a 00 00 03
01 28 3c 00 00 8b 11 8b 11 3c 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 90
Signed-off-by: Terry Hsiao <terry_hsiao@compal.corp-partner.google.com>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://patch.msgid.link/20260506170607.10813-2-terry_hsiao@compal.corp-partner.google.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/panel-edp AUO Panel Entries
**Local tree:** `v6.18.43` (Linux 6.18.43)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject Line
**Record:** `[drm/panel-edp]` `[Add]` — Add five AUO eDP panel IDs
(B140XTN07.5, B140HAK03.5, B116XTN02.3, B140XTK02.4, B140HAN07.7) to the
panel lookup table.
### Step 1.2: Commit Tags
**Record:**
- **Signed-off-by:** Terry Hsiao `<terry_hsiao@compal.corp-
partner.google.com>` (author)
- **Reviewed-by:** Douglas Anderson `<dianders@chromium.org>`
(Chromium/DRM maintainer)
- **Signed-off-by:** Douglas Anderson `<dianders@chromium.org>`
- **Link:** https://patch.msgid.link/20260506170607.10813-2-
terry_hsiao@compal.corp-partner.google.com
- **No** Fixes:, Reported-by:, Tested-by:, Cc: stable@vger.kernel.org,
or syzbot tags
- Notable: Reviewed by Chromium DRM maintainer; author is a
Compal/Google partner engineer (Chromebook hardware context)
### Step 1.3: Body Analysis
**Record:**
- **Bug description:** Not explicitly stated. The commit documents raw
EDID dumps for five AUO panels and adds them to `edp_panels[]`.
- **Symptom/failure mode:** Implicit — without table entries,
`generic_edp_panel_probe()` cannot match these panel IDs and falls
back to conservative power-sequencing delays with a `WARN_ON`.
- **Version info:** None in the message.
- **Root cause:** These AUO panel EDID product IDs are absent from the
`edp_panels[]` lookup table, so the driver cannot apply the correct
`delay_200_500_e50` power-sequencing profile.
### Step 1.4: Hidden Bug Fix Detection
**Record:** Yes — disguised as "Add" but functionally a **hardware quirk
fix**. The `panel-edp` driver maps EDID panel IDs to power-sequencing
delays (`hpd_absent`, `unprepare`, `enable`). Missing entries cause
wrong delays and a `WARN_ON` at probe. This is the same class of fix as
other panel-edp entries already backported to this tree.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Change Inventory
**Record:**
- **Files:** `drivers/gpu/drm/panel/panel-edp.c` only (+5 lines)
- **Functions modified:** None — only the `edp_panels[]` static table
- **Scope:** Single-file, surgical table additions
| Panel ID | Product ID | Delay Profile |
|----------|-----------|---------------|
| B140XTN07.5 | 0x0290 | delay_200_500_e50 |
| B140HAK03.5 | 0x3c9f | delay_200_500_e50 |
| B116XTN02.3 | 0x49ba | delay_200_500_e50 |
| B140XTK02.4 | 0x67a8 | delay_200_500_e50 |
| B140HAN07.7 | 0xc7ad | delay_200_500_e50 |
### Step 2.2: Code Flow Change
**Record:**
- **Before:** `find_edp_panel()` returns NULL for these five EDID
product IDs → `WARN_ON` + conservative timings (`unprepare=2000`,
`enable=200`).
- **After:** `find_edp_panel()` matches the panel → correct
`delay_200_500_e50` applied (`hpd_absent=200`, `unprepare=500`,
`enable=50`).
- **Path affected:** `generic_edp_panel_probe()` during device probe
(boot and resume).
### Step 2.3: Bug Mechanism
**Record:** **Category (h): Hardware workaround / panel quirk.** Missing
EDID-to-delay mapping causes incorrect power-sequencing timings during
panel prepare/enable/unprepare. The driver explicitly documents that
unknown panels get suboptimal conservative delays and a `WARN_ON` to
flag the gap.
### Step 2.4: Fix Quality
**Record:**
- **Quality:** Obviously correct — same `delay_200_500_e50` used for all
other AUO panels in the table; entries inserted in sorted
vendor/product-ID order.
- **Regression risk:** Very low — five new table rows, no logic changes.
- **Red flags:** None.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** The `edp_panels[]` table was introduced in `5d324e5159d9e`
(Linux 6.18-rc8 merge, Nov 2025). The five product IDs from this commit
are **not present** in the current tree. Similar AUO entries (e.g.,
B140QAX01.H at `0bd968c04acfb`, B140HAN06.4 at `6ca4647a74155`) were
added via stable backports.
### Step 3.2: Fixes: Tag
**Record:** Not applicable — no Fixes: tag.
### Step 3.3: Related Commits
**Record:**
- Part of v1 4-patch series by Terry Hsiao (cover letter in local mbox:
`20260507_terry_hsiao_...mbx`)
- This patch (1/4) is **standalone** — only adds AUO entries; no
dependency on patches 2–4
- Precedent in this tree: `0bd968c04acfb` (AUO B140QAX01.H),
`6ca4647a74155` (AUO B140HAN06.4), `b173ba3365ff0` (BOE panel)
### Step 3.4: Author Context
**Record:** Terry Hsiao has no prior commits in this tree's
`drivers/gpu/drm/panel/` history. Douglas Anderson (reviewer) is the
Chromium/DRM maintainer who has reviewed and signed off on prior panel-
edp stable backports in this tree.
### Step 3.5: Dependencies
**Record:** No dependencies. The `panel-edp` driver, `EDP_PANEL_ENTRY`
macro, `delay_200_500_e50`, and `edp_panels[]` table all exist in
v6.18.43. Patch applies cleanly at five sorted insertion points.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original Discussion
**Record:**
- Lore URL blocked by bot protection (WebFetch failed)
- Local mbox `20260507_terry_hsiao_drm_panel_edp_add_and_update_multiple
_auo_boe_cmn_and_ivo_panels.mbx` confirms v1 submission, patch 1/4
- Cover letter: "add support for new panels from AUO, BOE, CMN, and IVO
to the panel-edp driver"
- No stable nomination or NAK found in available local mbox content
### Step 4.2: Reviewers
**Record:** Reviewed-by and Signed-off-by Douglas Anderson (Chromium DRM
maintainer). Author domain (`compal.corp-partner.google.com`) indicates
Chromebook OEM context.
### Step 4.3: Bug Reports
**Record:** No external bug reports, syzbot links, or user crash
reports. Impact inferred from driver behavior when panel IDs are
missing.
### Step 4.4: Series Context
**Record:** 4-patch series; this commit is patch 1/4 and is self-
contained. Other patches add BOE/CMN/IVO entries and fix a CMN panel
name — not required for this fix.
### Step 4.5: Stable List History
**Record:** Not searched (lore blocked). Precedent established locally
by prior panel-edp backports in this 6.18.y tree.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key Functions
**Record:** No functions modified. Affected data: `edp_panels[]` table,
consumed by `find_edp_panel()`.
### Step 5.2: Callers
**Record:** `find_edp_panel()` called from `generic_edp_panel_probe()`
(line 805), which is called from `panel_edp_probe()` during platform
device probe — standard display initialization at boot and resume.
### Step 5.3: Callees
**Record:** `find_edp_panel()` iterates `edp_panels[]`, matching via
`drm_edid_match()` then `panel_id`. Matched entry's `delay` pointer is
copied into `desc->delay`.
### Step 5.4: Reachability
**Record:** Triggered on any system using the generic `panel-edp` driver
with one of these five AUO panels. Common on Chromebooks and laptops.
Not userspace-triggerable directly, but affects every boot/resume on
affected hardware.
### Step 5.5: Similar Patterns
**Record:** Multiple AUO entries already exist (e.g., 0x235c and 0x73aa
both named "B116XTN02.3" — AUO reuses product IDs). Adding 0x49ba as
another "B116XTN02.3" entry follows the established pattern for handling
AUO ID reuse.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE (v6.18.43)
### Step 6.1: Buggy Code Present?
**Record:** **Yes.** The `panel-edp` driver and `edp_panels[]` table
exist (since 6.18-rc8). The five product IDs (0x0290, 0x3c9f, 0x49ba,
0x67a8, 0xc7ad) are **absent** — confirmed by grep. Panels with these
IDs currently hit the unknown-panel fallback path.
### Step 6.2: Backport Complications
**Record:** **Clean apply expected.** All five insertion anchor points
verified in the local table:
- 0x0290 before 0x04a4
- 0x3c9f after 0x30ed, before 0x403d
- 0x49ba after 0x435c, before 0x52b0
- 0x67a8 after 0x643d, before 0x723c
- 0xc7ad after 0xc4b4, before 0xc9a8
### Step 6.3: Related Fixes Already Present?
**Record:** No fix for these five panel IDs. Related AUO panel entries
(B140QAX01.H, B140HAN06.4) were already backported separately.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem Criticality
**Record:** **drivers/gpu/drm/panel** — IMPORTANT (display subsystem).
Affects users of specific eDP panel hardware on ARM/Chromebook platforms
using the generic panel-edp driver.
### Step 7.2: Subsystem Activity
**Record:** Actively maintained — three panel-edp commits in this 6.18.y
tree since the driver landed.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who Is Affected
**Record:** Users of laptops/Chromebooks with these five AUO eDP panels
using the `panel-edp` generic driver. Platform-specific, not universal.
### Step 8.2: Trigger Conditions
**Record:** Every boot and display resume on affected hardware. Common
operational path, not a rare edge case. Not a security vector.
### Step 8.3: Failure Mode Severity
**Record:**
- **Without fix:** `WARN_ON` at probe; conservative delays
(`unprepare=2000ms`, `enable=200ms`) instead of correct
(`unprepare=500ms`, `enable=50ms`). Driver comment says conservative
timings "highly likely" to work, but wrong power sequencing can cause
blank display, flicker, or suspend/resume failures on some panels.
- **Severity:** MEDIUM — hardware enablement / display reliability, not
kernel crash or data corruption.
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** MEDIUM — enables correct power sequencing on shipping
Chromebook/laptop hardware; eliminates WARN_ON spam.
- **Risk:** VERY LOW — five table rows, no logic changes, same delay
profile as dozens of existing AUO entries.
- **Ratio:** Favorable — minimal risk, real hardware benefit,
established backport pattern in this tree.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence Summary
**FOR backporting:**
- Hardware quirk / panel ID addition to existing driver (explicit stable
exception)
- Same pattern as `0bd968c04acfb` and `6ca4647a74155` already backported
to this 6.18.y tree
- Five-line, obviously correct change reviewed by Chromium DRM
maintainer
- Driver and infrastructure fully present in v6.18.43
- Wrong power sequencing can cause display failures on affected hardware
- Clean apply with no dependencies
**AGAINST backporting:**
- No explicit bug report or crash description in commit message
- Conservative fallback exists (display may work without the fix)
- Not a security, corruption, or crash fix — display reliability only
- Affects specific hardware, not all users
**Unresolved:** Lore thread content unavailable (bot protection). No
independent user bug reports found.
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — same delay as other AUO
panels; Reviewed-by maintainer
2. Fixes a real bug affecting users? **PASS** — missing panel ID causes
wrong power-sequencing delays
3. Important issue? **PASS (MEDIUM)** — display reliability on shipping
hardware; hardware quirk category
4. Small and contained? **PASS** — 5 lines, one file
5. No new features or APIs? **PASS** — panel ID entries to existing
driver (allowed exception)
6. Can apply to local tree? **PASS** — driver present, clean apply at
verified anchor points
### Step 9.3: Exception Category
**Record:** **Hardware quirk/workaround** — panel-specific power-
sequencing delay mapping, analogous to USB/PCI quirk table entries. Same
category as prior panel-edp backports in this tree.
### Step 9.4: Decision Rationale
This commit adds five AUO eDP panel entries to the existing `panel-edp`
driver's lookup table so the correct power-sequencing delays are applied
at probe. Without these entries, affected panels on Chromebooks and
laptops fall back to conservative timings with a `WARN_ON`, which can
cause display initialization or suspend/resume issues.
The change is trivial (5 lines), obviously correct (reuses the standard
AUO `delay_200_500_e50` profile), reviewed by the Chromium DRM
maintainer, and follows the exact pattern of panel-edp entries already
backported to this 6.18.y tree. It falls squarely in the hardware quirk
exception category for stable kernels.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user query and local
mbox
- **[Phase 1]** Confirmed Reviewed-by: Douglas Anderson; no
Fixes:/Reported-by:/syzbot tags
- **[Phase 2]** Diff analysis: 5 `EDP_PANEL_ENTRY` lines added to
`edp_panels[]` in `panel-edp.c`
- **[Phase 2]** Read `delay_200_500_e50` definition: hpd_absent=200,
unprepare=500, enable=50
- **[Phase 2]** Read `panel_edp_set_conservative_timings()`:
unprepare=2000, enable=200
- **[Phase 2]** Read `generic_edp_panel_probe()` lines 805–825: unknown
panel → WARN_ON + conservative fallback
- **[Phase 3]** `git describe HEAD`: v6.18.43-1-gc7f0dac02d232 (Linux
6.18.43)
- **[Phase 3]** `git blame` on edp_panels[]: table from 5d324e5159d9e
(6.18-rc8); no entries for the five new IDs
- **[Phase 3]** `git log --grep`: found prior panel-edp backports
0bd968c04acfb, 6ca4647a74155, b173ba3365ff0
- **[Phase 3]** Grep for 0x0290/0x3c9f/0x49ba/0x67a8/0xc7ad: no matches
— IDs absent from tree
- **[Phase 4]** Read local mbox `20260507_terry_hsiao_...mbx`: confirmed
v1 patch 1/4, cover letter context
- **[Phase 4]** WebFetch lore URL: blocked by bot protection — thread
content unavailable
- **[Phase 5]** Traced call chain: `panel_edp_probe` →
`generic_edp_panel_probe` → `find_edp_panel`
- **[Phase 6]** Verified all five insertion anchor points exist in local
`edp_panels[]` table (lines 1887–1924)
- **[Phase 6]** Confirmed `panel-edp.c` driver exists in v6.18.43 with
full table infrastructure
- **[Phase 8]** Assessed failure mode: wrong power sequencing, MEDIUM
severity, no crash/corruption
**YES**
drivers/gpu/drm/panel/panel-edp.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c
index be827729c4fb7..c1ea17a0040be 100644
--- a/drivers/gpu/drm/panel/panel-edp.c
+++ b/drivers/gpu/drm/panel/panel-edp.c
@@ -1885,6 +1885,7 @@ static const struct panel_delay delay_80_500_e50_d50 = {
* Sort first by vendor, then by product ID.
*/
static const struct edp_panel_entry edp_panels[] = {
+ EDP_PANEL_ENTRY('A', 'U', 'O', 0x0290, &delay_200_500_e50, "B140XTN07.5"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x04a4, &delay_200_500_e50, "B122UAN01.0"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x0ba4, &delay_200_500_e50, "B140QAX01.H"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x105c, &delay_200_500_e50, "B116XTN01.0"),
@@ -1900,17 +1901,20 @@ static const struct edp_panel_entry edp_panels[] = {
EDP_PANEL_ENTRY('A', 'U', 'O', 0x239b, &delay_200_500_e50, "B116XAN06.1"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x255c, &delay_200_500_e50, "B116XTN02.5"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x30ed, &delay_200_500_e50, "G156HAN03.0"),
+ EDP_PANEL_ENTRY('A', 'U', 'O', 0x3c9f, &delay_200_500_e50, "B140HAK03.5"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x403d, &delay_200_500_e50, "B140HAN04.0"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x405c, &auo_b116xak01.delay, "B116XAN04.0"),
EDP_PANEL_ENTRY2('A', 'U', 'O', 0x405c, &auo_b116xak01.delay, "B116XAK01.0",
&auo_b116xa3_mode),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x435c, &delay_200_500_e50, "Unknown"),
+ EDP_PANEL_ENTRY('A', 'U', 'O', 0x49ba, &delay_200_500_e50, "B116XTN02.3"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x52b0, &delay_200_500_e50, "B116XAK02.0"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x582d, &delay_200_500_e50, "B133UAN01.0"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x615c, &delay_200_500_e50, "B116XAN06.1"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x635c, &delay_200_500_e50, "B116XAN06.3"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x639c, &delay_200_500_e50, "B140HAK02.7"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x643d, &delay_200_500_e50, "B140HAN06.4"),
+ EDP_PANEL_ENTRY('A', 'U', 'O', 0x67a8, &delay_200_500_e50, "B140XTK02.4"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x723c, &delay_200_500_e50, "B140XTN07.2"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x73aa, &delay_200_500_e50, "B116XTN02.3"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0x8594, &delay_200_500_e50, "B133UAN01.0"),
@@ -1918,6 +1922,7 @@ static const struct edp_panel_entry edp_panels[] = {
EDP_PANEL_ENTRY('A', 'U', 'O', 0xa199, &delay_200_500_e50, "B116XAN06.1"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xa7b3, &delay_200_500_e50, "B140UAN04.4"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xc4b4, &delay_200_500_e50, "B116XAT04.1"),
+ EDP_PANEL_ENTRY('A', 'U', 'O', 0xc7ad, &delay_200_500_e50, "B140HAN07.7"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xc9a8, &delay_200_500_e50, "B140QAN08.H"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xcdba, &delay_200_500_e50, "B140UAX01.2"),
EDP_PANEL_ENTRY('A', 'U', 'O', 0xd497, &delay_200_500_e50, "B120XAN01.0"),
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds for allocate_sdma_queue restore_sdma_id
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (47 preceding siblings ...)
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add AUO B140XTN07.5, AUO B140HAK03.5, AUO B116XTN02.3, AUO B140XTK02.4, AUO B140HAN07.7 Sasha Levin
@ 2026-08-31 13:28 ` Sasha Levin
2026-08-31 16:43 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] drm/nouveau/bios: skip the IFR header if present Sasha Levin
` (17 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:28 UTC (permalink / raw)
To: patches, stable
Cc: David Francis, Harish Kasiviswanathan, Alex Deucher, Sasha Levin,
Felix.Kuehling, christian.koenig, airlied, simona, amd-gfx,
dri-devel, linux-kernel
From: David Francis <David.Francis@amd.com>
[ Upstream commit bfe9a7545b2a7be1c543f1741e16f2d5ec4116ae ]
allocate_sdma_queue has an option where the sdma queue id can be
specified (used by CRIU). We weren't bounds-checking that
value.
Confirm it's less than the maximum number of queues.
Signed-off-by: David Francis <David.Francis@amd.com>
Reviewed-by: Harish Kasiviswanathan <Harish.Kasiviswanathan@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
Connection lost, reconnecting to https://agentn.us.api5.cursor.sh
(attempt 1)...
Retry attempt 1...
Connection lost, reconnecting to https://agentn.us.api5.cursor.sh
(attempt 2)...
Retry attempt 2...
# Stable Backport Analysis: `drm/amdkfd: Check bounds for
allocate_sdma_queue restore_sdma_id`
**Local tree:** Linux **6.18.43** (`git describe HEAD` →
`v6.18.43-1-gc7f0dac02d232`, `make kernelversion` → `6.18.43`)
**Commit under review:** `bfe9a7545b2a7be1c543f1741e16f2d5ec4116ae` (not
present in this tree)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
**Step 1.1 – Subject line**
Record: `[drm/amdkfd]` `[Check]` – add bounds validation for user-
specified `restore_sdma_id` in `allocate_sdma_queue()` during CRIU queue
restore.
**Step 1.2 – Tags**
| Tag | Value |
|-----|-------|
| Signed-off-by | David Francis \<David.Francis@amd.com\> |
| Reviewed-by | Harish Kasiviswanathan
\<Harish.Kasiviswanathan@amd.com\> |
| Signed-off-by | Alex Deucher \<alexander.deucher@amd.com\>
(maintainer) |
Notable absences (expected for manual review): no `Fixes:`, `Reported-
by:`, `Cc: stable@vger.kernel.org`, `Link:`.
Record: AMD maintainer-reviewed fix; no fuzzer or user bug report tags.
Part of a 2-patch series (patch 1/2 fixes `allocate_doorbell` bounds).
**Step 1.3 – Body**
Record:
- **Bug:** `allocate_sdma_queue()` accepts a caller-specified SDMA queue
ID for CRIU restore but never validates it is within the number of
available queues.
- **Symptom:** Out-of-bounds `test_bit()` / `clear_bit()` on
`sdma_bitmap` / `xgmi_sdma_bitmap` when a restored `sdma_id` is too
large; kernel memory safety issue.
- **Root cause:** CRIU restore path passes `q_data->sdma_id` (copied
from userspace) straight into `allocate_sdma_queue()` without
validation.
**Step 1.4 – Hidden bug fix?**
Record: **Yes.** Although the subject says "Check bounds," this is a
genuine memory-safety bug fix, not cosmetic cleanup. The companion
`deallocate_sdma_queue()` already bounds-checks `sdma_id`; the allocate-
restore path was inconsistent.
---
## PHASE 2: DIFF ANALYSIS
**Step 2.1 – Inventory**
| File | Change |
|------|--------|
| `drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c` | +6 lines |
Functions modified: `allocate_sdma_queue()` only. Scope: single-file,
surgical fix.
**Step 2.2 – Code flow (per hunk)**
**Hunk 1 – `KFD_QUEUE_TYPE_SDMA` restore path:**
- Before: if `restore_sdma_id` is non-NULL, immediately
`test_bit(*restore_sdma_id, dqm->sdma_bitmap)`.
- After: reject `*restore_sdma_id >= get_num_sdma_queues(dqm)` with
`-EINVAL` before touching the bitmap.
**Hunk 2 – `KFD_QUEUE_TYPE_SDMA_XGMI` restore path:**
- Same pattern using `get_num_xgmi_sdma_queues(dqm)`.
Record: Both hunks guard the CRIU-restore branch only; normal allocation
(`find_first_bit`) is unchanged.
**Step 2.3 – Bug mechanism**
Record: **Memory safety / bounds validation bug (d).**
- `sdma_bitmap` is `DECLARE_BITMAP(sdma_bitmap, KFD_MAX_SDMA_QUEUES)`
where `KFD_MAX_SDMA_QUEUES = 128`.
- `get_num_sdma_queues()` is typically much smaller (e.g., engines ×
queues_per_engine, often single digits to low tens).
- `kfd_criu_restore_queue()` copies `q_data->sdma_id` (`uint32_t`) from
userspace with no validation.
- Without the fix, `sdma_id >= 128` causes out-of-bounds bitmap access
in `test_bit()` / `clear_bit()`.
- For `sdma_id` in `[get_num_sdma_queues(), 127)`, bits are zero →
misleading `-EBUSY` rather than crash, but still incorrect.
**Step 2.4 – Fix quality**
Record: Fix is **obviously correct**, minimal (6 lines), mirrors
existing `deallocate_sdma_queue()` bounds checks at lines 1686–1691.
Regression risk is very low: only rejects previously invalid inputs
earlier with `-EINVAL`.
---
## PHASE 3: GIT HISTORY INVESTIGATION
**Step 3.1 – Blame**
Record: `restore_sdma_id` logic in `allocate_sdma_queue()` is present in
this tree (lines 1588–1621). `git blame` attributes the block to commit
`a112b91dd6349` (history in this tree is squashed/limited). The restore
path and CRIU infrastructure are present in 6.18.43.
**Step 3.2 – Fixes: tag**
Record: N/A – no `Fixes:` tag in commit message.
**Step 3.3 – Related file history**
Record: `git log --oneline --
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c` returns only one
commit in this tree (limited history). CRIU queue restore code
(`kfd_criu_restore_queue`, `create_queue_cpsch` with `qd->sdma_id`) is
present and active.
**Step 3.4 – Author context**
Record: David Francis (AMD). Reviewed by Harish Kasiviswanathan;
committed by Alex Deucher (amdkfd maintainer). Part of v1 series
submitted 2026-05-12.
**Step 3.5 – Dependencies**
Record: **Standalone.** Patch 1/2 (`allocate_doorbell` bounds) is a
separate, related hardening fix. This patch does not depend on it. `git
merge-base --is-ancestor bfe9a75 HEAD` → exit 1 (fix not yet in tree).
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
**Step 4.1 – Original discussion**
Record:
- `b4 dig -c bfe9a7545b2a7be1c543f1741e16f2d5ec4116ae` → https://patch.m
sgid.link/20260512192824.3682569-2-David.Francis@amd.com
- `b4 dig -a`: v1 series, 2 patches, dated 2026-05-12.
- v1 initially had a bug (`restore_sdma_id >= ...` instead of
`*restore_sdma_id`); author self-corrected in follow-up. The
committed/applied version uses `*restore_sdma_id` (matches the diff
under review).
**Step 4.2 – Reviewers**
Record: `b4 dig -w` → To/Cc: David Francis, amd-
gfx@lists.freedesktop.org. Reviewed-by from AMD colleague; Signed-off-by
maintainer Alex Deucher.
**Step 4.3 – Bug report**
Record: No external bug report, syzbot link, or crash trace. Bug
identified by code inspection during CRIU hardening (paired with
doorbell bounds patch).
**Step 4.4 – Series context**
Record: `[PATCH 1/2] drm/amdkfd: Check bounds on allocate_doorbell` is
independent. Both are CRIU ioctl-input validation fixes.
**Step 4.5 – Stable list**
Record: Could not search lore stable archive (Anubis bot protection). No
evidence of prior stable rejection found.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
**Step 5.1 – Key functions**
Record: `allocate_sdma_queue()` (modified); callers unchanged.
**Step 5.2 – Callers**
Record:
- `create_queue_nocpsch()` line 664: `allocate_sdma_queue(dqm, q, qd ?
&qd->sdma_id : NULL)`
- `create_queue_cpsch()` line 1985: same pattern
Both reached from `pqm_create_queue()` → `kfd_criu_restore_queue()` when
`q_data` is non-NULL.
**Step 5.3 – Callees**
Record: `get_num_sdma_queues()`, `get_num_xgmi_sdma_queues()`,
`test_bit()`, `clear_bit()`, `find_first_bit()`, `bitmap_empty()`.
**Step 5.4 – Reachability**
Call chain:
```
kfd_ioctl_criu (KFD_CRIU_OP_RESTORE)
→ criu_restore()
→ criu_restore_objects()
→ kfd_criu_restore_queue() [copy_from_user q_data->sdma_id]
→ pqm_create_queue(..., q_data, ...)
→ dqm->ops.create_queue(..., qd, ...)
→ allocate_sdma_queue(dqm, q, &qd->sdma_id)
```
Record: **Reachable from userspace** via `KFD_IOC_CRIU` restore ioctl.
Requires `CAP_CHECKPOINT_RESTORE` or `CAP_SYS_ADMIN` (verified in
`kfd_chardev.c` lines 3332–3337). Not unprivileged, but still a
privileged ioctl input-validation bug.
**Step 5.5 – Similar patterns**
Record: `deallocate_sdma_queue()` already bounds-checks before
`set_bit()`:
```1685:1692:drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
if (q->properties.type == KFD_QUEUE_TYPE_SDMA) {
if (q->sdma_id >= get_num_sdma_queues(dqm))
return;
set_bit(q->sdma_id, dqm->sdma_bitmap);
} else if (q->properties.type == KFD_QUEUE_TYPE_SDMA_XGMI) {
if (q->sdma_id >= get_num_xgmi_sdma_queues(dqm))
return;
```
The allocate-restore path was the missing symmetric check.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE (6.18.43)
**Step 6.1 – Buggy code present?**
Record: **YES.** `allocate_sdma_queue()` at lines 1588–1621 lacks bounds
checks. CRIU infrastructure (`kfd_criu_queue_priv_data.sdma_id`,
`kfd_criu_restore_queue`) is fully present. `KFD_MAX_SDMA_QUEUES = 128`.
**Step 6.2 – Backport complications**
Record: **Clean apply expected.** The target lines match the mainline
diff context. No conflicting changes observed. Fix commit is not in tree
(`git merge-base --is-ancestor` → not ancestor).
**Step 6.3 – Related fixes already present?**
Record: `deallocate_sdma_queue()` bounds checks exist. No equivalent
allocate-side check. `git log --grep="bounds.*sdma"` → no matches. Fix
not yet applied.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
**Step 7.1 – Subsystem**
Record: `drivers/gpu/drm/amd/amdkfd` – AMDGPU HSA/KFD compute driver.
**IMPORTANT** (not core kernel, but widely deployed on AMD GPU systems
with ROCm/compute workloads).
**Step 7.2 – Activity**
Record: amdkfd is actively maintained; CRIU checkpoint/restore support
is a relatively newer feature in this area.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
**Step 8.1 – Who is affected**
Record: Users of **AMD GPU compute (amdkfd)** with **CRIU
checkpoint/restore** enabled. Config-dependent
(`CONFIG_HSA_AMD`/amdkfd). Not universal, but real for containerized GPU
workload migration.
**Step 8.2 – Trigger conditions**
Record:
- Malformed or adversarial CRIU checkpoint with `sdma_id >=
get_num_sdma_queues()` (especially `>= 128`).
- Triggered during `KFD_CRIU_OP_RESTORE` on SDMA or SDMA_XGMI queue
objects.
- Requires `CAP_CHECKPOINT_RESTORE` or `CAP_SYS_ADMIN`.
- Likelihood: low in normal use; realistic with corrupted checkpoints or
malicious privileged actor.
**Step 8.3 – Failure mode severity**
Record:
- `sdma_id >= 128`: **out-of-bounds bitmap access** → potential kernel
oops, memory corruption. **Severity: HIGH** (memory safety).
- `sdma_id` in valid bitmap range but above queue count: incorrect
`-EBUSY`, no crash. **Severity: LOW**.
**Step 8.4 – Risk/benefit**
| | Assessment |
|--|------------|
| **Benefit** | Prevents OOB kernel memory access on a privileged ioctl
path; aligns allocate/deallocate safety |
| **Risk** | Very low – 6 lines, only rejects invalid input |
| **Ratio** | Favorable for backport |
---
## PHASE 9: FINAL SYNTHESIS
**Step 9.1 – Evidence summary**
**FOR backport:**
- Real bounds-check omission with OOB potential (`sdma_id >= 128` on
128-bit bitmap)
- Userspace-controlled value via CRIU restore ioctl
- Small, surgical, maintainer-reviewed fix
- Buggy code confirmed present in 6.18.43
- Consistent with existing `deallocate_sdma_queue()` pattern
- Standalone (no dependencies)
**AGAINST backport:**
- Requires elevated capability (not unprivileged attack)
- CRIU/amdkfd is a niche code path
- No syzbot or user crash report
- Patch 1/2 (doorbell bounds) is a separate fix not included here
**Unresolved:** No runtime crash report; exact introduction commit of
`restore_sdma_id` path not traceable in this tree's limited git history.
**Step 9.2 – Stable rules checklist# Stable Backport Analysis:
`drm/amdkfd: Check bounds for allocate_sdma_queue restore_sdma_id`
**Local tree:** Linux **6.18.43** (`git describe HEAD` →
`v6.18.43-1-gc7f0dac02d232`, `make kernelversion` → `6.18.43`)
**Commit under review:** `bfe9a7545b2a7be1c543f1741e16f2d5ec4116ae` (not
present in this tree)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/amdkfd]` `[Check]` — Add bounds validation for
`restore_sdma_id` in `allocate_sdma_queue()` during CRIU queue restore.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** David Francis `<David.Francis@amd.com>` (author)
- **Reviewed-by:** Harish Kasiviswanathan
`<Harish.Kasiviswanathan@amd.com>`
- **Signed-off-by:** Alex Deucher `<alexander.deucher@amd.com>`
(maintainer)
- **No** Fixes:, Reported-by:, Link:, Cc: stable@vger.kernel.org,
Tested-by:, Acked-by:
- Notable: Part of a 2-patch series (`[PATCH 2/2]`); patch 1/2 is a
separate `allocate_doorbell` bounds fix.
### Step 1.3: Body analysis
**Record:**
- **Bug:** `allocate_sdma_queue()` accepts a user-specified SDMA queue
ID for CRIU restore but never validates it is within the number of
available queues.
- **Symptom:** Out-of-range `sdma_id` reaches `test_bit()` /
`clear_bit()` on the SDMA bitmap without validation.
- **Root cause:** The CRIU restore path passes `q_data->sdma_id` from
userspace straight into `allocate_sdma_queue()` with no bounds check
on the allocate path (unlike the deallocate path).
- **Version info:** None in the commit message.
### Step 1.4: Hidden bug fix?
**Record:** No — this is an explicit bounds-check bug fix, not disguised
cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **Files:** `drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c` (+6
/ −0)
- **Function:** `allocate_sdma_queue()`
- **Scope:** Single-file, surgical fix in two CRIU-restore branches
(SDMA and XGMI SDMA).
### Step 2.2: Code flow change
**Record:**
- **Hunk 1 (KFD_QUEUE_TYPE_SDMA):** Before → `restore_sdma_id` used
directly in `test_bit(*restore_sdma_id, dqm->sdma_bitmap)`. After →
reject with `-EINVAL` if `*restore_sdma_id >=
get_num_sdma_queues(dqm)`.
- **Hunk 2 (KFD_QUEUE_TYPE_SDMA_XGMI):** Same pattern using
`get_num_xgmi_sdma_queues(dqm)`.
- **Path affected:** CRIU queue restore only (when `restore_sdma_id` is
non-NULL).
### Step 2.3: Bug mechanism
**Record:** **Memory safety / bounds validation bug (d).**
- `sdma_bitmap` is `DECLARE_BITMAP(sdma_bitmap, KFD_MAX_SDMA_QUEUES)`
where `KFD_MAX_SDMA_QUEUES` is **128**.
- `get_num_sdma_queues()` is typically much smaller (e.g. engines ×
queues_per_engine, often single digits to low tens).
- Without the check, a `sdma_id >= 128` from userspace causes
`test_bit()` / `clear_bit()` to operate outside the 128-bit bitmap →
out-of-bounds kernel memory access.
- For `get_num_sdma_queues() <= sdma_id < 128`, bits are zero and the
code returns `-EBUSY` (no crash, but still invalid input that should
be rejected earlier).
### Step 2.4: Fix quality
**Record:**
- Fix is minimal and mirrors the existing pattern in
`deallocate_sdma_queue()` (lines 1686–1691), which already bounds-
checks `q->sdma_id`.
- Low regression risk: only affects the CRIU-restore path with an out-
of-range ID.
- No API or structural changes.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `restore_sdma_id` logic in `allocate_sdma_queue()` is
present in this tree at lines 1588–1621. Git blame attributes these
lines to `a112b91dd6349` (history in this checkout is shallow/squashed
and not reliable for dating the original feature). The vulnerable
pattern is confirmed present in 6.18.43.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag in the commit message.
### Step 3.3: Related file history
**Record:** `git log --oneline -20 -- kfd_device_queue_manager.c` shows
only one commit in this tree’s history for that file. The CRIU restore
infrastructure (`kfd_criu_restore_queue`, `create_queue_cpsch`,
`create_queue_nocpsch`) is fully present in 6.18.43. This patch is
**standalone** within its series; patch 1/2 (`allocate_doorbell` bounds)
is a separate fix.
### Step 3.4: Author context
**Record:** David Francis (AMD). Alex Deucher signed off. Harish
Kasiviswanathan reviewed. No other amdkfd commits from this author
visible in this tree’s limited history.
### Step 3.5: Dependencies
**Record:** No functional dependency on patch 1/2. The `restore_sdma_id`
pointer parameter and CRIU call sites already exist in this tree. `git
merge-base --is-ancestor bfe9a75 HEAD` → **not an ancestor** (fix not
yet applied).
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- `b4 dig -c bfe9a7545b2a7be1c543f1741e16f2d5ec4116ae` → https://patch.m
sgid.link/20260512192824.3682569-2-David.Francis@amd.com
- Series: v1 only (`b4 dig -a`); patch 2/2 of 2.
- v1 initially had a typo (`restore_sdma_id >=` instead of
`*restore_sdma_id >=`); the committed/applied version (and the diff
under review) correctly dereferences the pointer.
### Step 4.2: Reviewers
**Record:** `b4 dig -w` — sent to David Francis and `amd-
gfx@lists.freedesktop.org`. Harish Kasiviswanathan reviewed; Alex
Deucher committed.
### Step 4.3: Bug report
**Record:** No external bug report, syzbot report, or crash log.
Internal code-review discovery.
### Step 4.4: Series context
**Record:** 2-patch series:
1. `drm/amdkfd: Check bounds on allocate_doorbell`
2. This commit (SDMA queue ID bounds)
Each patch addresses a separate CRIU-restore validation gap. This one is
independently applicable.
### Step 4.5: Stable list history
**Record:** Could not search lore stable list (Anubis bot protection).
No stable nomination found via b4.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `allocate_sdma_queue()` (modified); callers unchanged.
### Step 5.2: Callers
**Record:**
- `create_queue_nocpsch()` — line 664: `allocate_sdma_queue(dqm, q, qd ?
&qd->sdma_id : NULL)`
- `create_queue_cpsch()` — line 1985: same pattern
- Both reached from `pqm_create_queue()` → `kfd_criu_restore_queue()`
when `q_data` is non-NULL.
### Step 5.3: Callees
**Record:** `get_num_sdma_queues()`, `get_num_xgmi_sdma_queues()`,
`test_bit()`, `clear_bit()`, `bitmap_empty()`, `find_first_bit()`.
### Step 5.4: Reachability
**Record:**
```
userspace ioctl (KFD_IOC_CRIU, KFD_CRIU_OP_RESTORE)
→ criu_restore() → criu_restore_objects()
→ kfd_criu_restore_queue() [copy_from_user q_data->sdma_id]
→ pqm_create_queue(..., q_data, ...)
→ create_queue_{nocpsch,cpsch}(..., qd, ...)
→ allocate_sdma_queue(dqm, q, &qd->sdma_id)
```
- Requires `CONFIG_HSA_AMD` / amdgpu KFD.
- CRIU ioctl gated on `CAP_CHECKPOINT_RESTORE` or `CAP_SYS_ADMIN`
(kfd_chardev.c:3332–3337).
- Reachable from userspace with elevated privileges, not from
unprivileged users.
### Step 5.5: Similar patterns
**Record:** `deallocate_sdma_queue()` already bounds-checks before
`set_bit()`:
```1686:1691:drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
if (q->sdma_id >= get_num_sdma_queues(dqm))
return;
set_bit(q->sdma_id, dqm->sdma_bitmap);
```
The allocate path was missing the symmetric check. `allocate_doorbell()`
CP-queue restore path (patch 1/2) has a similar gap but is out of scope
for this commit.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Buggy code exists?
**Record:** **Yes.** Lines 1588–1621 in this tree use `*restore_sdma_id`
in `test_bit()` / `clear_bit()` without prior bounds validation.
`KFD_MAX_SDMA_QUEUES` is 128 (`kfd_priv.h:123`). CRIU restore and
`kfd_criu_queue_priv_data.sdma_id` exist in 6.18.43.
### Step 6.2: Backport complications
**Record:** Expected **clean apply** — 6 lines added in two well-defined
locations; no structural conflicts observed.
### Step 6.3: Related fixes already present?
**Record:** **No.** `git merge-base --is-ancestor bfe9a75 HEAD` failed
(fix not in tree). No grep hits for the bounds-check pattern in the
allocate path.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/amd/amdkfd` — **IMPORTANT** (AMD GPU
compute / ROCm KFD). Not core kernel, but widely deployed on AMD GPU
servers and workstations.
### Step 7.2: Activity
**Record:** Limited git history in this checkout; amdkfd CRIU support is
mature enough to be present in 6.18.43.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of AMD KFD with CRIU checkpoint/restore (container
migration, HPC job migration). Requires amdgpu + HSA_AMD + privileged
CRIU ioctl access.
### Step 8.2: Trigger conditions
**Record:**
- CRIU restore of an SDMA or XGMI SDMA queue with `sdma_id >=
get_num_sdma_queues()` (or `>= 128` for definite OOB).
- Triggered by malicious/corrupt checkpoint data or a buggy userspace
restorer.
- **Not** triggerable by unprivileged users.
- Moderately rare in practice (CRIU + AMD GPU), but straightforward to
trigger with crafted input once privileges are held.
### Step 8.3: Failure mode severity
**Record:**
- `sdma_id >= 128`: **HIGH** — out-of-bounds `test_bit()` /
`clear_bit()` on a 128-bit bitmap → potential kernel memory corruption
or crash.
- `get_num_sdma_queues() <= sdma_id < 128`: **LOW** — returns `-EBUSY`,
no memory corruption.
- Overall: **HIGH** for the OOB case; privilege requirement lowers
practical exploitability but not correctness importance.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** MEDIUM — closes a kernel memory-safety hole on a
privileged ioctl path; aligns allocate/deallocate symmetry.
- **Risk:** VERY LOW — 6-line validation, reviewed by AMD maintainers.
- **Ratio:** Benefit outweighs risk.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real missing bounds check on userspace-supplied `sdma_id` in CRIU
restore.
- Can cause OOB bitmap access when `sdma_id >= 128`.
- Small (6 lines), obviously correct, AMD-reviewed.
- Buggy code confirmed in 6.18.43; fix not yet applied.
- Symmetric with existing `deallocate_sdma_queue()` bounds checks.
**AGAINST backport:**
- Requires `CAP_CHECKPOINT_RESTORE` or `CAP_SYS_ADMIN` — not
unprivileged attack surface.
- CRIU + AMD GPU is a niche configuration.
- No syzbot/user crash report.
- Companion patch 1/2 (doorbell bounds) is separate; ideally both go in,
but this patch stands alone.
**Unresolved:** Exact kernel version when CRIU `restore_sdma_id` was
introduced (shallow history in this checkout).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — trivial validation;
Reviewed-by from AMD; no Tested-by.
2. Fixes a real bug? **PASS** — missing input validation on ioctl-fed
data.
3. Important issue? **PASS** — OOB kernel memory access (HIGH when
`sdma_id >= 128`).
4. Small and contained? **PASS** — 6 lines, one file, one function.
5. No new features or APIs? **PASS** — validation only.
6. Can apply to local tree? **PASS** — code exists; clean apply
expected.
### Step 9.3: Exception categories
**Record:** None (not a device ID, quirk, DT, build, or docs fix).
Qualifies as a standard security/correctness bug fix.
### Step 9.4: Decision rationale
For **Linux 6.18.43**, the vulnerable CRIU-restore path exists and the
fix is a minimal, maintainer-reviewed bounds check that prevents out-of-
bounds bitmap access on a userspace-controlled value. The privilege
requirement reduces attack surface but does not eliminate the bug:
privileged container/orchestration stacks using KFD CRIU are exactly the
affected users, and kernel memory safety fixes on ioctl paths are
appropriate stable material. The fix is self-contained and does not
depend on patch 1/2.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from provided commit message.
- **[Phase 2]** Diff analysis: +6 lines, two bounds checks with
`*restore_sdma_id` dereference.
- **[Phase 3]** `git describe HEAD` / `make kernelversion` → 6.18.43.
- **[Phase 3]** `git blame -L 1588,1621` → restore_sdma_id code present.
- **[Phase 3]** `git merge-base --is-ancestor bfe9a75 HEAD` → exit 1
(fix not in tree).
- **[Phase 4]** `b4 dig -c bfe9a75` → lore URL found.
- **[Phase 4]** `b4 dig -a` → v1, 2-patch series.
- **[Phase 4]** `b4 dig -w` → amd-gfx@lists.freedesktop.org CC'd.
- **[Phase 4]** Web search confirmed commit
`bfe9a7545b2a7be1c543f1741e16f2d5ec4116ae` and v1 pointer-deref fix in
review.
- **[Phase 5]** `grep allocate_sdma_queue` → callers at lines 664, 1985.
- **[Phase 5]** Read `kfd_criu_restore_queue()` →
`copy_from_user(q_data)` includes `sdma_id`, no validation.
- **[Phase 5]** Read `kfd_chardev.c:3332-3337` → CAP_CHECKPOINT_RESTORE
or CAP_SYS_ADMIN required.
- **[Phase 5]** `KFD_MAX_SDMA_QUEUES` = 128 (`kfd_priv.h:123`).
- **[Phase 5]** `deallocate_sdma_queue()` bounds checks at lines
1686–1691 confirmed.
- **[Phase 6]** Current code at lines 1588–1621 lacks bounds check
(verified by read + grep).
- **[Phase 6]** CRIU infrastructure present: `kfd_criu_restore_queue`,
`kfd_criu_queue_priv_data.sdma_id`.
- **[Phase 8]** Failure mode: OOB when `sdma_id >= 128`; privilege-gated
trigger confirmed.
- **UNVERIFIED:** Exact upstream commit that introduced
`restore_sdma_id` (shallow git history in this checkout).
**YES**
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
index c650ffc3e66e8..2f8df95382bc3 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
@@ -1586,6 +1586,9 @@ static int allocate_sdma_queue(struct device_queue_manager *dqm,
}
if (restore_sdma_id) {
+ if (*restore_sdma_id >= get_num_sdma_queues(dqm))
+ return -EINVAL;
+
/* Re-use existing sdma_id */
if (!test_bit(*restore_sdma_id, dqm->sdma_bitmap)) {
dev_err(dev, "SDMA queue already in use\n");
@@ -1612,6 +1615,9 @@ static int allocate_sdma_queue(struct device_queue_manager *dqm,
return -ENOMEM;
}
if (restore_sdma_id) {
+ if (*restore_sdma_id >= get_num_xgmi_sdma_queues(dqm))
+ return -EINVAL;
+
/* Re-use existing sdma_id */
if (!test_bit(*restore_sdma_id, dqm->xgmi_sdma_bitmap)) {
dev_err(dev, "SDMA queue already in use\n");
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/nouveau/bios: skip the IFR header if present
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (48 preceding siblings ...)
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds for allocate_sdma_queue restore_sdma_id Sasha Levin
@ 2026-08-31 13:28 ` Sasha Levin
2026-08-31 16:44 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] drm/amd/pm: Check SMUv13.0.6/12 metrics integrity Sasha Levin
` (16 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:28 UTC (permalink / raw)
To: patches, stable
Cc: Timur Tabi, Lyude Paul, Danilo Krummrich, Sasha Levin,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, nouveau, linux-kernel
From: Timur Tabi <ttabi@nvidia.com>
[ Upstream commit 4beeac5d2015df1017732ce4c57d634f557dd304 ]
The GPU's ROM may begin with an Init-from-ROM (IFR) header that precedes
the PCI Expansion ROM images (VBIOS). When present, the PROM shadow
method must parse this header to determine the offset where the PCI ROM
images actually begin, and adjust all subsequent reads accordingly.
On most GPUs this is not needed because either the PRAMIN shadow method
(which reads from VRAM via the display engine) succeeds first, or the IFR
microcode has already applied the ROM offset so that PROM reads
transparently skip the header. However, on GA100 neither of these
applies: GA100 has no display engine (so PRAMIN is unavailable), and the
IFR offset is not applied to PROM reads on this GPU.
Signed-off-by: Timur Tabi <ttabi@nvidia.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Link: https://patch.msgid.link/20260430223838.2530778-9-ttabi@nvidia.com
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/nouveau/bios: skip the IFR header if
present`
**Local tree:** `v6.18.44` (kernel 6.18.44)
**Upstream commit:** `4beeac5d2015df1017732ce4c57d634f557dd304` (not
merged into this tree; `git merge-base --is-ancestor` returns exit 1)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/nouveau/bios]` `[skip]` — When a GPU ROM starts with
an Init-from-ROM (IFR) header, PROM shadow reads must skip it to reach
the PCI Expansion ROM (VBIOS).
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Timur Tabi `<ttabi@nvidia.com>` (author)
- **Reviewed-by:** Lyude Paul `<lyude@redhat.com>` (nouveau maintainer)
- **Link:**
https://patch.msgid.link/20260430223838.2530778-9-ttabi@nvidia.com
- **Signed-off-by:** Danilo Krummrich `<dakr@kernel.org>` (DRM
maintainer)
- No `Fixes:`, `Reported-by:`, `Cc: stable@vger.kernel.org`, or syzbot
tags
- Notable: maintainer review present; part of v2 08/10 in the “fix GA100
issues” series
### Step 1.3: Body analysis
**Record:**
- **Bug:** GA100 ROMs can begin with an IFR header before the PCI ROM
(`0xAA55`). PROM shadow reads from offset 0 without skipping IFR read
invalid data.
- **Symptom:** VBIOS shadow fails → `nvbios_shadow()` returns `-EINVAL`
(“unable to locate usable image”) → nouveau probe fails on GA100.
- **Root cause:** GA100 has no display engine (PRAMIN unavailable), and
IFR offset is not applied to PROM reads on this GPU.
- **Versions:** GA100-specific; other GPUs use PRAMIN first or have IFR
offset applied by hardware.
### Step 1.4: Hidden bug fix?
**Record:** Yes. Subject says “skip” rather than “fix”, but this is a
hardware-specific correctness bug in VBIOS loading, not cleanup or
optimization.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c` (+101
/ -9)
- **Functions:** `nvbios_prom_read()`, `nvbios_prom_fini()`,
`nvbios_prom_init()`
- **Scope:** Single-file, hardware-specific logic addition
### Step 2.2: Code flow changes
**Record:**
- **Hunk 1 (`nvbios_prom_read`):** Before: read `0x300000 + offset` with
only 1MB window check. After: add `bios->size` bounds check; apply
`pci_rom_offset` to all PROM reads.
- **Hunk 2 (`nvbios_prom_fini`):** Before: `device` pointer passed
directly, no free. After: `priv` struct with `kfree(data)` after re-
enabling ROM shadow.
- **Hunk 3 (`nvbios_prom_init`):** Before: disable ROM shadow, return
`device`. After: allocate `priv`, detect IFR signature `0x4947564E`
(“NVGI”), parse v1/v2/v3 headers, validate PCI ROM `0xAA55` at
computed offset; fail cleanly on error.
### Step 2.3: Bug mechanism
**Record:** **Logic / hardware-layout bug.** PROM reads assumed PCI ROM
at offset 0. On GA100 with IFR header, VBIOS is at a higher offset.
Wrong data → invalid PCI ROM header/checksum → BIOS shadow scoring
fails.
### Step 2.4: Fix quality
**Record:** Fix is logically sound and defensive (signature checks,
offset bounds, `0xAA55` validation, proper cleanup on failure).
Regression risk is low: IFR parsing runs only when `0x300000` contains
“NVGI”; otherwise `pci_rom_offset` stays 0 and behavior is unchanged.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** Core PROM logic dates to Ben Skeggs, 2014
(`ad4a362635353f`). GA100 recognition added 2021 (`3b050680c8415`,
`a34632482f1ea`). IFR handling was never implemented; gap present since
GA100 support landed.
### Step 3.2: Fixes tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: Related file history
**Record:**
- `340936ebf5aec` — “specify correct display fuse register for Ampere
and Ada” **already backported to this 6.18.44 tree** (patch 7/10 in
same series)
- GA100 initial BIOS support: `a34632482f1ea` (2021)
- No prior IFR parsing commits in this tree
### Step 3.4: Author context
**Record:** Timur Tabi (NVIDIA) authored the GA100 fix series. Lyude
Paul reviewed. Danilo Krummrich applied the full v2 series to drm-misc-
next (May 2026).
### Step 3.5: Dependencies
**Record:** Standalone in `shadowrom.c`. Uses `kzalloc_obj()` (present
in `include/linux/slab.h`). References
`Documentation/gpu/nova/core/vbios.rst` (IFR section not in this tree’s
doc, but code does not depend on it). Patch applies cleanly (`git apply
--check` passed). Sister patch 7/10 already in this tree.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- **b4 dig URL:**
https://patch.msgid.link/20260430223838.2530778-9-ttabi@nvidia.com
- **Series:** v1 (6 patches, Apr 7 2026) → v2 (10 patches, Apr 30 2026);
committed version is latest v2
- **Cover letter:** GA100 has VBIOS but no display engine; must use
PROM; VBIOS has IFR header that must be parsed
- No explicit stable nomination in thread; no NAKs found
### Step 4.2: Reviewers
**Record:** CC’d: Lyude Paul, Danilo Krummrich, David Airlie,
`nouveau@lists.freedesktop.org`. Reviewed-by: Lyude Paul.
### Step 4.3: Bug reports
**Record:** No external bug report or syzbot link. Issue identified
during GA100 enablement work by NVIDIA.
### Step 4.4: Series context
**Record:** Part of “drm/nouveau: fix GA100 issues” (10 patches). Other
patches (GSP-RM, FRTS, MMU_LOCK, etc.) are **not** in this 6.18.44 tree.
This patch is independently valuable for correct PROM/VBIOS reading even
if full GA100 boot needs additional series commits.
### Step 4.5: Stable list
**Record:** No stable-list discussion found. Precedent: patch 7/10 from
same series was cherry-picked into this stable tree as `340936ebf5aec`.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `nvbios_prom_init()`, `nvbios_prom_read()`,
`nvbios_prom_fini()`
### Step 5.2: Callers
**Record:** `nvbios_shadow()` in `shadow.c` calls these via
`shadow_method()` → `shadow_image()`. `nvbios_shadow()` is called from
`nvkm_bios_new()` in `base.c` during device probe. BIOS loading is on
the critical probe path.
### Step 5.3: Callees
**Record:** `nvkm_rd32()`, `nvkm_pci_rom_shadow()`, `kzalloc_obj()`,
`kfree()`, `nvkm_error()`
### Step 5.4: Reachability
**Record:** Triggered at nouveau probe on any GPU where PROM shadow is
attempted. On GA100 without display, PRAMIN fails (especially after
`340936ebf5aec` fuse fix), making PROM the fallback. Userspace can load
the nouveau module and trigger probe on GA100 hardware.
### Step 5.5: Similar patterns
**Record:** `shadowramin.c` has GA100-specific handling; `shadowpci.c`
uses a similar `priv` + bounds-check pattern. No duplicate IFR parsing
elsewhere in nouveau.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE
### Step 6.1: Buggy code present?
**Record:** **Yes.** Current `shadowrom.c` reads PROM from `0x300000 +
i` with no IFR handling. GA100 support (`nv170_chipset` in `base.c`,
`card_type >= GA100` in `shadowramin.c`) is present. Bug has existed
since GA100 support was added (~2021).
### Step 6.2: Backport complications
**Record:** **Clean apply** verified against upstream patch. No
structural conflicts. `kzalloc_obj` available. Doc reference is
informational only.
### Step 6.3: Related fixes already present?
**Record:** `340936ebf5aec` (display fuse register for GA100) is present
— it correctly makes PRAMIN fail on display-less GA100, increasing
reliance on PROM and making this fix more important. No duplicate IFR
fix found.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/nouveau` — **IMPORTANT** (GPU driver;
affects nouveau users on specific hardware, not core kernel paths).
### Step 7.2: Subsystem activity
**Record:** Actively maintained; GA100-related work ongoing in 2026.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of **NVIDIA GA100 (A100)** with nouveau enabled. Niche
but real datacenter/compute hardware already recognized in this tree.
### Step 8.2: Trigger conditions
**Record:** GA100 GPU + nouveau probe + PROM BIOS shadow path used
(typical when PRAMIN unavailable). Not userspace-exploitable;
hardware/config-specific.
### Step 8.3: Failure mode severity
**Record:** VBIOS load failure → driver probe failure (`-EINVAL`).
**Severity: HIGH** for affected GA100 users (GPU non-functional with
nouveau); **no impact** on other GPUs.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for GA100 nouveau users; enables correct VBIOS
reading
- **Risk:** LOW — gated on IFR signature match; sister patch already in
tree; maintainer-reviewed
- **Ratio:** Favorable for backport
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Fixes real probe failure on GA100 (supported hardware in this tree)
- Hardware-specific workaround (stable exception category)
- Reviewed by nouveau maintainer (Lyude Paul)
- Sister patch 7/10 from same series already in 6.18.44
- Applies cleanly; self-contained in one file
- Low regression risk on non-IFR GPUs
**AGAINST backport:**
- ~100 lines (borderline on “small” criterion)
- Full GA100 functionality still needs other series patches not in tree
- Niche hardware population
- No syzbot/user bug report
**Unresolved:** None blocking the decision.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — reviewed by maintainer;
logic validated against IFR spec
2. Fixes real bug affecting users? **PASS** — VBIOS load failure on
GA100
3. Important issue? **PASS** — driver probe failure on supported
hardware
4. Small and contained? **PASS** (borderline) — one file, no refactor;
~100 lines but focused
5. No new features/APIs? **PASS** — hardware workaround, no userspace
API change
6. Can apply to local tree? **PASS** — verified clean apply;
prerequisites present
### Step 9.3: Exception category
**Record:** **Hardware quirk/workaround** — GA100-specific ROM layout
requiring IFR header parsing before PCI ROM access.
### Step 9.4: Decision rationale
This tree (6.18.44) already recognizes GA100 and has already backported
the companion display-fuse fix from the same series. Without IFR header
parsing, PROM-based VBIOS loading fails on GA100, blocking nouveau
probe. The fix is maintainer-reviewed, applies cleanly, and only changes
behavior when an IFR header is detected. The incomplete state of other
GA100 series patches does not diminish the standalone correctness and
value of this BIOS-reading fix.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from provided commit message
- **[Phase 1]** Confirmed Reviewed-by: Lyude Paul; no syzbot/Fixes tags
- **[Phase 2]** Diff analysis: +101/-9 in `shadowrom.c`; IFR parsing +
bounds checks
- **[Phase 3]** `git describe HEAD`: v6.18.44 / kernel 6.18.44
- **[Phase 3]** `git blame shadowrom.c`: core code from 2014; no IFR
handling ever added
- **[Phase 3]** `git log shadowrom.c`: 6 commits, no IFR-related changes
- **[Phase 3]** `340936ebf5aec` in tree: sister patch 7/10 already
backported
- **[Phase 3]** `git merge-base --is-ancestor 4beeac5d2015 HEAD`: exit 1
(commit not in tree)
- **[Phase 4]** `b4 dig -c 4beeac5d2015`: found v2 08/10 at
patch.msgid.link URL
- **[Phase 4]** `b4 dig -a`: v1 and v2 series identified; v2 is latest
- **[Phase 4]** `b4 dig -w`: Lyude Paul, Danilo Krummrich, David Airlie
CC’d
- **[Phase 4]** `/tmp/ifr_thread.mbox`: cover letter describes GA100
VBIOS/IFR issue; Danilo applied full series; no stable nomination; no
NAKs
- **[Phase 5]** Read `shadow.c`: `nvbios_prom` tried after PRAMIN in
`nvbios_shadow()`
- **[Phase 5]** Read `base.c`: `nvkm_bios_new()` calls `nvbios_shadow()`
on probe
- **[Phase 5]** Read `shadowramin.c`: GA100 uses fuse register
`0x820c04`; fails when display disabled
- **[Phase 5]** Read `base.c`: `nv170_chipset` GA100 defined with bios
subdev
- **[Phase 6]** Read current `shadowrom.c`: buggy code confirmed present
(no IFR handling)
- **[Phase 6]** `git apply --check` upstream patch: applies cleanly
- **[Phase 6]** `grep kzalloc_obj include/linux/slab.h`: macro exists
- **[Phase 8]** Failure mode traced: `nvbios_shadow()` → “unable to
locate usable image” → probe `-EINVAL`
**YES**The background searches finished and match what the analysis
already used:
- **6.18.44 tree** — IFR header fix is **not** present; buggy
`shadowrom.c` code is there
- **Upstream commit** — `4beeac5d2015` (“skip the IFR header if
present”)
- **GA100 support** — in-tree since 2021; companion patch
`340936ebf5aec` (display fuse) is already backported
- **Patch applies cleanly** to this tree
**Verdict for 6.18.44: YES** — backport this fix so GA100 can load VBIOS
via PROM when PRAMIN isn’t available.
.../drm/nouveau/nvkm/subdev/bios/shadowrom.c | 110 ++++++++++++++++--
1 file changed, 101 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c b/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c
index 39144ceb117b4..9e171b1bad732 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c
@@ -24,34 +24,126 @@
#include <subdev/pci.h>
+#define NV_PBUS_IFR_FMT_FIXED0_SIGNATURE_VALUE 0x4947564E /* "NVGI" */
+#define NV_ROM_DIRECTORY_IDENTIFIER 0x44524652 /* "RFRD" */
+
+struct priv {
+ struct nvkm_device *device;
+ u32 pci_rom_offset;
+};
+
static u32
nvbios_prom_read(void *data, u32 offset, u32 length, struct nvkm_bios *bios)
{
- struct nvkm_device *device = data;
+ struct priv *priv = data;
+ struct nvkm_device *device = priv->device;
u32 i;
- if (offset + length <= 0x00100000) {
- for (i = offset; i < offset + length; i += 4)
- *(u32 *)&bios->data[i] = nvkm_rd32(device, 0x300000 + i);
- return length;
- }
- return 0;
+
+ /* Make sure we don't try to read past the end of data[] */
+ if (offset + length > bios->size)
+ return 0;
+
+ /* Make sure the read falls within the 1MB PROM window */
+ if (offset + priv->pci_rom_offset + length > 0x00100000)
+ return 0;
+
+ for (i = offset; i < offset + length; i += 4)
+ *(u32 *)&bios->data[i] = nvkm_rd32(device, 0x300000 + priv->pci_rom_offset + i);
+ return length;
}
static void
nvbios_prom_fini(void *data)
{
- struct nvkm_device *device = data;
+ struct priv *priv = data;
+ struct nvkm_device *device = priv->device;
+
nvkm_pci_rom_shadow(device->pci, true);
+
+ kfree(data);
}
static void *
nvbios_prom_init(struct nvkm_bios *bios, const char *name)
{
struct nvkm_device *device = bios->subdev.device;
+ struct priv *priv;
+ u32 fixed0;
+
+ /* There is no PROM on NV4x iGPUs */
if (device->card_type == NV_40 && device->chipset >= 0x4c)
return ERR_PTR(-ENODEV);
+
+ priv = kzalloc_obj(*priv);
+ if (!priv)
+ return ERR_PTR(-ENOMEM);
+
+ /* Disable the PCI ROM shadow so that we can read PROM. */
nvkm_pci_rom_shadow(device->pci, false);
- return device;
+
+ /*
+ * Check for an IFR header. If present, parse it to find the actual PCI ROM header.
+ *
+ * The IFR header is documented in Documentation/gpu/nova/core/vbios.rst
+ */
+ fixed0 = nvkm_rd32(device, 0x300000);
+ if (fixed0 == NV_PBUS_IFR_FMT_FIXED0_SIGNATURE_VALUE) {
+ u32 fixed1 = nvkm_rd32(device, 0x300004);
+ u8 version = (fixed1 >> 8) & 0xff;
+ u32 fixed2, data_size, offset, signature;
+
+ switch (version) {
+ case 1:
+ case 2:
+ data_size = (fixed1 >> 16) & 0x7fff;
+ priv->pci_rom_offset = nvkm_rd32(device, 0x300000 + data_size + 4);
+ break;
+ case 3:
+ fixed2 = nvkm_rd32(device, 0x300008);
+ data_size = fixed2 & 0x000fffff;
+
+ /* ROM directory offset */
+ offset = nvkm_rd32(device, 0x300000 + data_size) + 4096;
+
+ signature = nvkm_rd32(device, 0x300000 + offset);
+ if (signature != NV_ROM_DIRECTORY_IDENTIFIER) {
+ nvkm_error(&bios->subdev, "could not find IFR ROM directory\n");
+ goto fail;
+ }
+
+ priv->pci_rom_offset = nvkm_rd32(device, 0x300000 + offset + 8);
+
+ break;
+ default:
+ nvkm_error(&bios->subdev, "unsupported IFR header version %u\n",
+ version);
+ goto fail;
+ }
+
+ /* Double-check that the offset is valid */
+ if (priv->pci_rom_offset >= 0x00100000) {
+ nvkm_error(&bios->subdev,
+ "PCI ROM offset of 0x%x is too large\n", priv->pci_rom_offset);
+ goto fail;
+ }
+
+ /* If there is an IFR header, there must also be a PCI ROM header. */
+ signature = nvkm_rd32(device, 0x300000 + priv->pci_rom_offset) & 0xffff;
+ if (signature != 0xaa55) {
+ nvkm_error(&bios->subdev,
+ "could not find PCI ROM signature at offset 0x%x\n",
+ priv->pci_rom_offset);
+ goto fail;
+ }
+ }
+
+ priv->device = device;
+ return priv;
+
+fail:
+ nvkm_pci_rom_shadow(device->pci, true);
+ kfree(priv);
+ return ERR_PTR(-ENODEV);
}
const struct nvbios_source
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amd/pm: Check SMUv13.0.6/12 metrics integrity
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (49 preceding siblings ...)
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] drm/nouveau/bios: skip the IFR header if present Sasha Levin
@ 2026-08-31 13:28 ` Sasha Levin
2026-08-31 16:51 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] drm/amdgpu: avoid integer overflow in VA range check Sasha Levin
` (15 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:28 UTC (permalink / raw)
To: patches, stable
Cc: Lijo Lazar, Asad Kamal, Alex Deucher, Sasha Levin, kenneth.feng,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Lijo Lazar <lijo.lazar@amd.com>
[ Upstream commit 6fc63d80c01a480e3d2c98620f07d46e5bcfc85a ]
Check if data fetch is proper by matching the first few bytes against
0xFFs. If 0xFFs, that means data couldn't be read properly.
Signed-off-by: Lijo Lazar <lijo.lazar@amd.com>
Reviewed-by: Asad Kamal <asad.kamal@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amd/pm: Check SMUv13.0.6/12 metrics
integrity`
**Local tree:** `v6.18.43` (Linux 6.18.43)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/amd/pm]` `[Check]` — Add integrity validation for SMU
v13.0.6/12 metrics table reads.
### Step 1.2: Tags
**Record:**
- `Signed-off-by: Lijo Lazar <lijo.lazar@amd.com>` (author)
- `Reviewed-by: Asad Kamal <asad.kamal@amd.com>`
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` (AMD DRM
maintainer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`, or
`Tested-by:`
Notable: AMD maintainer review and sign-off, but no public bug report or
fuzzer report.
### Step 1.3: Body analysis
**Record:**
- **Bug:** SMU metrics table fetch can succeed at the SMC-message level
while the copied data is invalid (all `0xFF`, meaning unread).
- **Symptom:** Driver treats poisoned/unread data as valid metrics.
- **Root cause:** No post-copy validation after `GetMetricsTable` +
VRAM/CPU copy.
- **Fix:** Check first 16 bytes with `memchr_inv()`; if all `0xFF`,
return `-EHWPOISON`.
- No kernel version or hardware list in the message; subject names
SMUv13.0.6/12.
### Step 1.4: Hidden bug fix?
**Record:** Yes. Despite “Check” wording, this is a real correctness bug
fix: it stops silently consuming invalid SMU metrics that would
otherwise drive power limits, clock tables, sysfs metrics, and XGMI
configuration.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c` (+4
lines)
- **Function:** `smu_v13_0_6_get_metrics_table()`
- **Scope:** Single-file, surgical fix
Note: upstream diff context uses `amdgpu_hdp_invalidate()` +
`smu_cmn_vram_cpy()`. This tree uses `amdgpu_asic_invalidate_hdp()` +
`memcpy()` — same logical point, different API names.
### Step 2.2: Code flow change
**Record:**
- **Before:** After SMC message + copy, metrics are cached and returned
unconditionally.
- **After:** After copy, if first `min(16, table_size)` bytes are all
`0xFF`, return `-EHWPOISON` and do not update `metrics_time`.
- **Path:** Metrics refresh path (cache bypass or >1 ms stale).
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Memory/hardware data integrity / logic correctness
- **Mechanism:** Uninitialized or failed VRAM read leaves `0xFF`
pattern; driver previously treated it as valid. With all-`0xFF` data,
`AccumulationCounter` appears non-zero, so
`smu_v13_0_6_setup_driver_pptable()` can exit its retry loop
immediately and write garbage into `pptable` (power limits, clock
tables, serial numbers). The fix detects poisoned data before
caching/propagation.
### Step 2.4: Fix quality
**Record:**
- Obviously correct: `0xFF` fill is a standard “unread” sentinel;
`memchr_inv()` is used elsewhere in the kernel for this pattern (e.g.
`amd_pmf` policy buffer validation).
- Minimal (4 lines), no API changes.
- Low regression risk: only triggers on fully-`0xFF` prefix; legitimate
metrics are unaffected.
- `-EHWPOISON` is already used in amdgpu for hardware data integrity
failures.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `smu_v13_0_6_get_metrics_table()` at lines 750–778 is
present in this tree; blame points to merge commit `5d324e5159d9e`
(history is flattened through merges). The vulnerable function exists in
v6.18.43.
### Step 3.2: Fixes tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: Related file history
**Record:** Recent PM commits in this tree include `75849e13e428e` (xgmi
max speed reporting) and `33c3a4db31719` (invalid energy_accumulator on
smu v13.0.x). No duplicate integrity-check fix found. This commit is not
in this tree yet (`git log --grep` returned nothing).
### Step 3.4: Author context
**Record:** Lijo Lazar is an active AMD PM contributor (`75849e13e428e`
xgmi fix in this tree). Patch reviewed by fellow AMD engineer Asad Kamal
and maintainer Alex Deucher.
### Step 3.5: Dependencies
**Record:** Standalone. `memchr_inv()` and `-EHWPOISON` are available.
Backport inserts after the local copy call (`memcpy`), not upstream’s
`smu_cmn_vram_cpy`.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:** Patch submitted to amd-gfx on 2026-04-18 by Lijo Lazar.
Thread: https://lists.freedesktop.org/archives/amd-
gfx/2026-April/143042.html (also mirrored at yhbt.net). Included in Alex
Deucher’s drm-next-7.2 pull. `b4 dig -c` could not be run (commit not in
this checkout). lore.kernel.org direct fetch blocked (bot protection).
### Step 4.2: Reviewers
**Record:** CC’d Hawking.Zhang, Alexander.Deucher, Asad.Kamal. Asad
Kamal replied 2026-04-20 (Reviewed-by in final commit). No NAKs found.
### Step 4.3: Bug report
**Record:** No public bug report, syzbot, or Bugzilla link. Likely
internal AMD testing discovery.
### Step 4.4: Series context
**Record:** Standalone 1-patch fix, not part of a multi-patch series.
### Step 4.5: Stable list discussion
**Record:** No stable@ discussion found (UNVERIFIED beyond search; no
stable nomination seen in available sources).
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `smu_v13_0_6_get_metrics_table()` (modified).
### Step 5.2: Callers
**Record:** Direct callers in this tree:
- `smu_v13_0_6_get_pm_metrics()` — sysfs PM metrics (checks `ret`)
- `smu_v13_0_6_setup_driver_pptable()` — DPM init, power/clock limits
(checks `ret` in retry loop; caller at line 1088 ignores return — pre-
existing)
- `smu_v13_0_6_get_smu_metrics_data()` — clock/power/thermal sysfs
(checks `ret`)
- Partition metrics paths at lines 2657, 2758 (check `ret`)
- `smu_v13_0_12_ppt.c:258` — XGMI max speed/width fallback (checks
`ret`)
### Step 5.3: Callees
**Record:** `smu_cmn_send_smc_msg()`, HDP invalidate, `memcpy()` from
driver table CPU address.
### Step 5.4: Reachability
**Record:** Reachable from GPU init (DPM table setup) and runtime
sysfs/metrics queries on SMU IP 13.0.6 and 13.0.12 hardware (MI300-class
datacenter GPUs). Not a syscall path, but reachable from normal driver
operation on affected hardware.
### Step 5.5: Similar patterns
**Record:** `amd_pmf` uses `memchr_inv(dev->policy_buf, 0xff, ...)` for
the same invalid-read detection pattern. No existing `memchr_inv` +
`0xff` check in amdgpu PM code in this tree.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE (v6.18.43)
### Step 6.1: Buggy code present?
**Record:** **Yes.** `smu_v13_0_6_get_metrics_table()` at lines 750–778
lacks integrity check. SMU 13.0.6/12 support is wired in `amdgpu_smu.c`
(cases `IP_VERSION(13, 0, 6)` and `IP_VERSION(13, 0, 12)`).
### Step 6.2: Backport difficulty
**Record:** **Clean apply with trivial context adjustment.** Insert
after:
```768:769:drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
amdgpu_asic_invalidate_hdp(smu->adev, NULL);
memcpy(smu_table->metrics_table, table->cpu_addr,
table_size);
```
### Step 6.3: Related fixes already present?
**Record:** **No.** `grep` found no `memchr_inv` + `0xff` in amdgpu PM.
Commit not in tree history.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem and criticality
**Record:** `drivers/gpu/drm/amd/pm` — **IMPORTANT** (AMDGPU power
management for datacenter GPUs; affects power/thermal/clock behavior,
not core kernel).
### Step 7.2: Activity
**Record:** Actively maintained; recent stable-relevant PM fixes in this
tree (xgmi reporting, energy_accumulator invalidation).
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who is affected
**Record:** Users of AMD GPUs with SMU firmware IP 13.0.6 or 13.0.12
(MI300/MI325X-class hardware). Config: `CONFIG_DRM_AMDGPU`.
### Step 8.2: Trigger conditions
**Record:** SMU metrics table VRAM read fails or returns uninitialized
`0xFF` data while SMC message succeeds. Can occur during init or runtime
metrics refresh. Not user-triggerable from syscalls; hardware/firmware
timing dependent. Plausible during error recovery or SMU communication
issues.
### Step 8.3: Failure mode severity
**Record:** Without fix: corrupt power limits, clock frequency tables,
thermal/activity metrics, and XGMI parameters derived from `0xFF` data —
risk of incorrect DPM behavior, bogus sysfs readings, and potential
hardware stress. **Severity: HIGH** (incorrect power/clock configuration
from poisoned data). Not a kernel oops, but can cause real hardware
misbehavior.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for affected datacenter deployments — prevents
silent use of completely invalid SMU metrics.
- **Risk:** LOW — 4-line defensive check, AMD-reviewed, established
errno pattern.
- **Ratio:** Strong benefit, minimal risk.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Fixes real bug (silent consumption of unread `0xFF` metrics data)
- Can corrupt power/clock initialization in `setup_driver_pptable()`
- Small, surgical, AMD-maintainer-reviewed
- Code and affected hardware exist in v6.18.43
- Matches existing kernel/amdgpu integrity-check patterns
- Clean backport to this tree
**AGAINST backport:**
- No public bug report or crash trace
- Hardware-specific (MI300-class, niche vs consumer GPUs)
- `setup_driver_pptable()` return still ignored at one call site (pre-
existing; fix still prevents writing garbage into `pptable`)
- Severity is misconfiguration rather than kernel panic
**Unresolved:** Exact production trigger frequency; no syzbot/user
reports.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — simple sentinel check;
Reviewed-by from AMD engineer; maintainer SOB.
2. Fixes real bug affecting users? **PASS** — invalid metrics used for
PM decisions on real hardware.
3. Important issue? **PASS** — incorrect power/clock limits from
poisoned SMU data on datacenter GPUs (HIGH severity
misconfiguration).
4. Small and contained? **PASS** — 4 lines, one function, one file.
5. No new features/APIs? **PASS** — error-path validation only.
6. Can apply to local tree? **PASS** — code present; minor context
adjustment for `memcpy` vs `smu_cmn_vram_cpy`.
### Step 9.3: Exception categories
**Record:** N/A (not device ID, DT, build fix, or docs). Standard bug
fix.
### Step 9.4: Decision rationale
This patch prevents the driver from silently building power-management
state from completely invalid SMU metrics. On MI300-class hardware in
the 6.18.y tree, a failed metrics read currently produces `0xFF` data
that can populate `pptable` power and clock limits. The fix is minimal,
low-risk, AMD-reviewed, and directly applicable to this checkout.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user-provided diff
- **[Phase 2]** Read `smu_v13_0_6_get_metrics_table()` at lines 750–778;
confirmed missing integrity check
- **[Phase 2]** Traced `setup_driver_pptable()` lines 873–942; confirmed
garbage `0xFF` metrics can populate power/clock limits
- **[Phase 3]** `git describe HEAD` → `v6.18.43`
- **[Phase 3]** `git blame -L 750,778` → function present, no integrity
check
- **[Phase 3]** `git log --grep="metrics integrity"` → no match (commit
not in tree)
- **[Phase 3]** `grep memchr_inv.*0xff drivers/gpu/drm/amd/pm` → no
matches
- **[Phase 4]** Web search found amd-gfx submission (2026-04-18) and
drm-next-7.2 pull inclusion
- **[Phase 4]** lore.kernel.org fetch failed (bot protection); Asad
Kamal reply noted via search snippet
- **[Phase 4]** `b4 dig` without commit hash unavailable; commit not in
local tree
- **[Phase 5]** `grep smu_v13_0_6_get_metrics_table` → 6 call sites in
`smu_v13_0_6_ppt.c`, 1 in `smu_v13_0_12_ppt.c`
- **[Phase 5]** Verified callers check `ret` (except
`smu_v13_0_6_setup_driver_pptable()` at line 1088)
- **[Phase 5]** `grep EHWPOISON drivers/gpu/drm/amd` → used in amdgpu
core (ras, cs, job, kms, xgmi)
- **[Phase 5]** Found `memchr_inv(..., 0xff, ...)` pattern in
`drivers/platform/x86/amd/pmf/tee-if.c`
- **[Phase 6]** Confirmed `IP_VERSION(13, 0, 6)` and `IP_VERSION(13, 0,
12)` in `amdgpu_smu.c`
- **[Phase 6]** Confirmed upstream diff context differs
(`smu_cmn_vram_cpy` vs local `memcpy`); fix placement is equivalent
- **[Phase 7]** `git log --oneline -20 -- drivers/gpu/drm/amd/pm/` →
active PM maintenance
- **UNVERIFIED:** Exact hardware SKU list beyond IP version 13.0.6/12;
production incident frequency; full Asad Kamal review thread content
**YES****Verdict: YES** — backport to this tree (`v6.18.43`).
The commit adds a 4-line check in `smu_v13_0_6_get_metrics_table()` so
unread SMU metrics (all `0xFF`) return `-EHWPOISON` instead of being
used for power limits, clock tables, and sysfs metrics on SMU 13.0.6/12
hardware (MI300-class). The buggy code is present in this tree; the
patch applies cleanly after the existing `memcpy()` call.
drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
index 43965b1135fe7..0d065e4073655 100644
--- a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
+++ b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
@@ -768,6 +768,10 @@ int smu_v13_0_6_get_metrics_table(struct smu_context *smu, void *metrics_table,
amdgpu_asic_invalidate_hdp(smu->adev, NULL);
memcpy(smu_table->metrics_table, table->cpu_addr, table_size);
+ if (!memchr_inv(smu_table->metrics_table, 0xff,
+ min(16, table_size)))
+ return -EHWPOISON;
+
smu_table->metrics_time = jiffies;
}
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu: avoid integer overflow in VA range check
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (50 preceding siblings ...)
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] drm/amd/pm: Check SMUv13.0.6/12 metrics integrity Sasha Levin
@ 2026-08-31 13:28 ` Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] drm/amd/pm: bound pp_dpm_set_pp_table() memcpy Sasha Levin
` (14 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:28 UTC (permalink / raw)
To: patches, stable
Cc: Ce Sun, Tao Zhou, Alex Deucher, Sasha Levin, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Ce Sun <cesun102@amd.com>
[ Upstream commit cc768f4dd0bb9083c813683eeec44fc23921f771 ]
The original addition operation in 64-bit unsigned type may encounter
overflow situations. To prevent such issues and safely reject invalid
inputs, the check_add_overflow() function is used.
Signed-off-by: Ce Sun <cesun102@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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:** `[drm/amdgpu]` `[avoid]` — prevent integer overflow in the
`AMDGPU_GEM_VA` ioctl VA range validation (`amdgpu_gem_va_ioctl`).
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Ce Sun `<cesun102@amd.com>` (author)
- **Reviewed-by:** Tao Zhou `<tao.zhou1@amd.com>`
- **Signed-off-by:** Alex Deucher `<alexander.deucher@amd.com>`
(maintainer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`,
`Tested-by:`, or `Acked-by:` tags
- Notable: reviewed by AMD developer and merged by amdgpu maintainer; no
fuzzer or user bug report
### Step 1.3: Body Analysis
**Record:**
- **Bug:** `args->va_address + args->map_size` uses unchecked 64-bit
unsigned addition in the top-reserved VA range check.
- **Symptom/failure mode:** On overflow, the wrapped sum can be `<=
vm_size`, so invalid oversized VA ranges are not rejected at the ioctl
boundary.
- **Root cause:** Missing overflow-safe addition before comparing
against `vm_size`.
- **Version info:** None in the commit message.
### Step 1.4: Hidden Bug Fix?
**Record:** Yes. Although the subject says “avoid” rather than “fix,”
this is an input-validation bug in a userspace-reachable DRM ioctl. It
is not cosmetic cleanup.
---
## Phase 2: Diff Analysis
### Step 2.1: Inventory
**Record:**
- **Files:** `drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c` only (+2/-2, 4
lines touched)
- **Functions:** `amdgpu_gem_va_ioctl()`
- **Scope:** Single-file, surgical ioctl validation fix
### Step 2.2: Code Flow Change
**Record:**
- **Before:** `if (args->va_address + args->map_size > vm_size)` —
overflow wraps, check may pass incorrectly.
- **After:** `if (check_add_overflow(args->va_address, args->map_size,
&tmp) || tmp > vm_size)` — overflow is detected and rejected with
`-EINVAL`.
- **Path affected:** Early validation in `amdgpu_gem_va_ioctl()`, before
GEM lookup, fence handling, and VM locking.
### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Integer overflow / input validation bug
- **Mechanism:** A malicious or buggy userspace caller can supply
`va_address` and `map_size` whose true sum exceeds `UINT64_MAX`.
Unchecked addition wraps to a small value, potentially bypassing the
reserved-top VA check. The fix uses `check_add_overflow()` to reject
such inputs.
### Step 2.4: Fix Quality
**Record:**
- Fix is minimal, idiomatic, and matches existing kernel/amdgpu style
(`check_add_overflow` is already used elsewhere in this file and in
`amdgpu_vm.c`).
- Regression risk is very low.
- Minor note: the `dev_dbg()` on the error path still prints
`args->va_address + args->map_size` without overflow protection; that
only affects debug logging on the failure path.
---
## Phase 3: Git History Investigation
### Step 3.1: Blame
**Record:**
- Buggy check introduced in `c4aa8dff6091cc` (“drm/amdgpu: don't map BO
in reserved region”, Oct 2020).
- `vm_size -= AMDGPU_VA_RESERVED_TOP` added in `00a11f977beb75` (Jan
2024).
- This commit is an ancestor of the current tree; the buggy code is
present in v6.18.44.
### Step 3.2: Fixes Tag
**Record:** N/A — no `Fixes:` tag in the commit message.
### Step 3.3: Related File History
**Record:**
- Related upstream commits on master: `cc768f4dd0bb9`, cherry-picked as
`cd7cfcdb4dd45`.
- `98856136c485e` (“drm/amdgpu: validate the parameters of bo mapping
operations more clearly”, Apr 2024) added
`amdgpu_vm_verify_parameters()` with `check_add_overflow(saddr, size)`
for `amdgpu_vm_bo_map()`, `amdgpu_vm_bo_replace_map()`, and
`amdgpu_vm_bo_clear_mappings()`.
- `daf5d03ddb8cc` already backported a similar integer-overflow fix in
the same file (`amdgpu_gem_align_pitch()`).
- Standalone one-commit fix; not part of a series.
### Step 3.4: Author Context
**Record:** Ce Sun is an AMD contributor with multiple amdgpu stable-
relevant fixes (reset, leak, PM). Tao Zhou reviewed; Alex Deucher
merged.
### Step 3.5: Dependencies
**Record:** No prerequisites. `linux/overflow.h` is already included in
`amdgpu_gem.c` in this tree. `check_add_overflow()` exists in
`include/linux/overflow.h`. Patch should apply cleanly.
---
## Phase 4: Mailing List and External Research
### Step 4.1: Original Discussion
**Record:** `b4 dig -c cc768f4dd0bb9` and `b4 dig -c cd7cfcdb4dd45` both
failed — no lore match found. Manual lore search blocked by bot
protection.
### Step 4.2: Reviewers
**Record:** `b4 dig -w` unavailable due to failed match. From commit
metadata: Reviewed-by Tao Zhou; Signed-off-by Alex Deucher.
### Step 4.3: Bug Report
**Record:** No external bug report, syzbot report, or crash trace
referenced.
### Step 4.4: Related Patches
**Record:** Not part of a multi-patch series. Related prior work:
`98856136c485e` (downstream VA parameter validation).
### Step 4.5: Stable List Discussion
**Record:** Could not verify stable-list discussion; lore fetch blocked.
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key Functions
**Record:** `amdgpu_gem_va_ioctl()` modified.
### Step 5.2: Callers
**Record:** Registered in `amdgpu_drv.c` as:
`DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl,
DRM_AUTH|DRM_RENDER_ALLOW)`
Callable from authenticated DRM render clients — common userspace GPU VA
management path.
### Step 5.3: Callees
**Record:** After validation, ioctl may call `drm_gem_object_lookup()`,
`amdgpu_gem_add_input_fence()`, `drm_exec_*`, `amdgpu_vm_lock_pd()`, and
depending on operation:
- `amdgpu_vm_bo_map()`
- `amdgpu_vm_bo_unmap()`
- `amdgpu_vm_bo_clear_mappings()`
- `amdgpu_vm_bo_replace_map()`
### Step 5.4: Reachability / Downstream Mitigation
**Record:**
- **MAP / REPLACE / CLEAR:** All call `amdgpu_vm_verify_parameters()`,
which already rejects `saddr + size` overflow via
`check_add_overflow()`.
- **UNMAP:** Uses only `va_address`; `map_size` is not used in
`amdgpu_vm_bo_unmap()`.
- **Important nuance for this tree:** The downstream overflow check
means that for MAP/CLEAR/REPLACE, overflowed inputs would eventually
fail at `amdgpu_vm_verify_parameters()` rather than creating a
mapping. However, without this ioctl fix they still proceed through
GEM lookup, fence setup, and VM locking first.
- The ioctl-level check also enforces the reserved-top region (`vm_size`
subtracts `AMDGPU_VA_RESERVED_TOP`), which is stricter than
`verify_parameters()`’s `lpfn >= max_pfn` check. Overflow cannot
bypass into the reserved-top region for MAP operations because
overflow is rejected downstream.
### Step 5.5: Similar Patterns
**Record:** `check_add_overflow()` already used in:
- `amdgpu_gem.c` (`amdgpu_gem_align_pitch()`)
- `amdgpu_vm.c` (`amdgpu_vm_verify_parameters()`)
- Other amdgpu files (vcn, etc.)
---
## Phase 6: Cross-Reference Against Local Tree (v6.18.44)
### Step 6.1: Buggy Code Present?
**Record:** Yes. Current tree at
`drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c:845` still has:
`if (args->va_address + args->map_size > vm_size)`
Bug present since 2020; not introduced after the 6.18 branch.
### Step 6.2: Backport Complications
**Record:** Expected clean apply — 4-line change, `overflow.h` already
included, no structural conflicts observed.
### Step 6.3: Related Fixes Already Present?
**Record:** Downstream mitigation `amdgpu_vm_verify_parameters()` from
`98856136c485e` is already in this tree. The ioctl-level overflow fix
itself is **not** yet present. Similar overflow fix `daf5d03ddb8cc` in
the same file is already backported.
---
## Phase 7: Subsystem Context
### Step 7.1: Subsystem / Criticality
**Record:** `drivers/gpu/drm/amd/amdgpu` — GPU/DRM driver. **IMPORTANT**
for AMDGPU users; not universal core-kernel code, but ioctl validation
is security-sensitive.
### Step 7.2: Activity
**Record:** Actively maintained; recent stable-relevant amdgpu fixes in
this tree include overflow, lock leak, and NULL-check patches.
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who Is Affected
**Record:** Users of AMDGPU with `CONFIG_DRM_AMDGPU` and render-node
access (games, compute, desktop compositors, ML workloads).
### Step 8.2: Trigger Conditions
**Record:** Userspace issues `DRM_IOCTL_AMDGPU_GEM_VA` with `va_address`
and `map_size` whose sum overflows `uint64_t`. Unprivileged users can
trigger ioctl validation if they have DRM render access (normal for GPU
users).
### Step 8.3: Failure Mode Severity
**Record:**
- **Without fix in this tree:** Overflow can bypass the ioctl reserved-
top check; for MAP/CLEAR/REPLACE, operation later fails at
`amdgpu_vm_verify_parameters()`. Primary consequence is incorrect
early validation and unnecessary work (GEM lookup, fence handling, VM
locking) on malformed input.
- **Severity:** **MEDIUM** for correctness and fail-fast behavior; **not
CRITICAL** for crash/corruption in this tree because downstream
validation already blocks dangerous MAP/CLEAR/REPLACE outcomes.
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** Correct ioctl input validation; fail-fast before
expensive locking; consistent with other amdgpu overflow backports
already in 6.18.y.
- **Risk:** Very low — 4 lines, standard helper, no API changes.
- **Ratio:** Moderate benefit, very low risk. Less urgent than fixes
with demonstrated crash/corruption, but appropriate for stable.
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence Summary
**FOR backport:**
- Real integer-overflow bug in userspace-reachable ioctl validation
- Small, obviously correct, self-contained
- Buggy code present since 2020 in this tree
- `linux/overflow.h` already included; patch applies cleanly
- Precedent: similar amdgpu integer-overflow fixes already backported to
this tree (`daf5d03ddb8cc` in same file)
- Reviewed and merged by amdgpu maintainers
**AGAINST backport:**
- No user report, syzbot, or CVE cited
- Downstream `amdgpu_vm_verify_parameters()` already catches overflow
for MAP/CLEAR/REPLACE
- Practical security/corruption impact in v6.18.44 appears limited to
fail-late rather than fail-open mapping
- No lore/stable discussion found to confirm maintainer intent
**Unresolved:**
- No mailing-list thread retrieved (`b4 dig` failed; lore blocked)
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — standard overflow helper;
reviewed by AMD engineer; no Tested-by.
2. Fixes a real bug affecting users? **PASS** — real validation bug on
reachable ioctl path.
3. Important issue? **PASS (moderate)** — input-validation overflow on
DRM ioctl; not demonstrated crash/corruption in this tree, but
incorrect validation on a security-sensitive path.
4. Small and contained? **PASS** — 4 lines, one function.
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS**
### Step 9.3: Exception Category
**Record:** None of the automatic exception categories (device ID,
quirk, DT, build fix, docs). This is a runtime input-validation bug fix.
### Step 9.4: Decision Rationale
For **v6.18.44**, the buggy unchecked addition exists and should be
fixed. Although `amdgpu_vm_verify_parameters()` already prevents
overflowed MAP/CLEAR/REPLACE operations from succeeding, the ioctl
boundary should validate inputs correctly and reject malformed VA ranges
before acquiring VM locks and doing GEM work. The patch is tiny, low-
risk, and consistent with other amdgpu overflow fixes already present in
this stable tree. It does not depend on newer code and does not add
features.
---
## Verification
- [Phase 1] Parsed subject, tags, and body from provided commit message
and `git show cd7cfcdb4dd45`
- [Phase 2] Read diff and current `amdgpu_gem.c` ioctl validation code
- [Phase 3] `git describe HEAD` → `v6.18.44`
- [Phase 3] `git blame -L 843,850` → buggy check from `c4aa8dff6091cc`
(2020)
- [Phase 3] `git merge-base --is-ancestor c4aa8dff6091cc HEAD` → buggy
code is in tree
- [Phase 3] `git show 98856136c485e` → downstream
`amdgpu_vm_verify_parameters()` with `check_add_overflow`
- [Phase 3] `git merge-base --is-ancestor 98856136c485e HEAD` →
downstream mitigation present
- [Phase 3] `git log --oneline -20 -- amdgpu_gem.c` → related amdgpu
fixes in tree
- [Phase 3] `git show daf5d03ddb8cc` → similar overflow fix already
backported to this tree
- [Phase 4] `b4 dig -c cc768f4dd0bb9` → no lore match
- [Phase 4] `b4 dig -c cd7cfcdb4dd45` → no lore match
- [Phase 4] WebFetch lore search → blocked by bot protection
- [Phase 5] `grep amdgpu_gem_va_ioctl` → ioctl registered with
`DRM_AUTH|DRM_RENDER_ALLOW`
- [Phase 5] Read `amdgpu_vm_bo_map()`, `amdgpu_vm_bo_replace_map()`,
`amdgpu_vm_bo_clear_mappings()`, `amdgpu_vm_bo_unmap()` → verified
downstream validation behavior
- [Phase 5] Read `struct drm_amdgpu_gem_va` → `va_address` and
`map_size` are `__u64`
- [Phase 6] Confirmed current tree still has unchecked addition at line
845
- [Phase 6] Confirmed `#include <linux/overflow.h>` already present at
line 30
- [Phase 6] Confirmed `check_add_overflow` exists in
`include/linux/overflow.h`
- [Phase 8] Assessed failure mode: downstream catches overflow for
MAP/CLEAR/REPLACE; primary remaining issue is incorrect early
validation / unnecessary work
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
index 5fc9a6b1ec722..71038f4de7f9c 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
@@ -818,7 +818,7 @@ int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
struct dma_fence_chain *timeline_chain = NULL;
struct dma_fence *fence;
struct drm_exec exec;
- uint64_t vm_size;
+ uint64_t vm_size, tmp;
int r = 0;
/* Validate virtual address range against reserved regions. */
@@ -842,7 +842,7 @@ int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
vm_size = adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
vm_size -= AMDGPU_VA_RESERVED_TOP;
- if (args->va_address + args->map_size > vm_size) {
+ if (check_add_overflow(args->va_address, args->map_size, &tmp) || tmp > vm_size) {
dev_dbg(dev->dev,
"va_address 0x%llx is in top reserved area 0x%llx\n",
args->va_address + args->map_size, vm_size);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.1] drm/amd/pm: bound pp_dpm_set_pp_table() memcpy
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (51 preceding siblings ...)
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] drm/amdgpu: avoid integer overflow in VA range check Sasha Levin
@ 2026-08-31 13:28 ` Sasha Levin
2026-08-31 16:46 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: check find_first_zero_bit before __set_bit on kfd->doorbell_bitmap Sasha Levin
` (13 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:28 UTC (permalink / raw)
To: patches, stable
Cc: Asad Kamal, Yang Wang, Alex Deucher, Sasha Levin, kenneth.feng,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Asad Kamal <asad.kamal@amd.com>
[ Upstream commit f193e71fa9fab2e68ef85201b106e8f580d3a25b ]
The powerplay path allocates hardcode_pp_table once with kmemdup(...,
soft_pp_table_size). memcpy(..., size) used the sysfs store count (up to
PAGE_SIZE) with no upper bound, causing heap overflow. Reject
writes where size exceeds soft_pp_table_size.
Signed-off-by: Asad Kamal <asad.kamal@amd.com>
Reviewed-by: Yang Wang <kevinyang.wang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amd/pm: bound pp_dpm_set_pp_table()
memcpy`
**Local tree:** `v6.18.44` (`stable/linux-6.18.y`, `VERSION=6`,
`PATCHLEVEL=18`, `SUBLEVEL=44`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/amd/pm]` `[bound]` — bounds-check `memcpy` in
`pp_dpm_set_pp_table()` to prevent heap overflow when uploading a
powerplay table via sysfs.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Asad Kamal `<asad.kamal@amd.com>` (author)
- **Reviewed-by:** Yang Wang `<kevinyang.wang@amd.com>` (AMD reviewer)
- **Signed-off-by:** Alex Deucher `<alexander.deucher@amd.com>`
(subsystem maintainer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`,
`Tested-by:`, or `Acked-by:`
Notable: maintainer sign-off and AMD internal review; no syzbot report.
### Step 1.3: Body analysis
**Record:**
- **Bug:** `hardcode_pp_table` is allocated once via `kmemdup(...,
soft_pp_table_size)`, but `memcpy(..., size)` uses the sysfs write
length (`count`, up to `PAGE_SIZE`) with no upper bound.
- **Symptom:** Heap buffer overflow in kernel memory.
- **Trigger:** Writing more bytes than `soft_pp_table_size` to the
`pp_table` sysfs attribute on the legacy powerplay DPM path.
- **Root cause:** Mismatch between allocation size and copy size.
- **Version info:** None in commit message.
### Step 1.4: Hidden bug fix?
**Record:** Yes — despite “bound” wording rather than “fix”, this is a
clear memory-safety bug fix (heap overflow / out-of-bounds write), not
cleanup or optimization.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c` (+3 / -0)
- **Function:** `pp_dpm_set_pp_table()`
- **Scope:** Single-file, surgical fix (3 lines)
### Step 2.2: Code flow change
**Record:**
- **Before:** After basic `hwmgr`/`pm_en` validation, code allocates (if
needed) `hardcode_pp_table` sized to `soft_pp_table_size`, then
unconditionally `memcpy(hwmgr->hardcode_pp_table, buf, size)`.
- **After:** Rejects writes where `size > hwmgr->soft_pp_table_size`
with `-EINVAL` before allocation/copy.
- **Path affected:** Sysfs write → `amdgpu_set_pp_table()` →
`amdgpu_dpm_set_pp_table()` → `pp_dpm_set_pp_table()`.
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Buffer overflow / out-of-bounds heap write (memory
safety).
- **Mechanism:** `kmemdup` allocates `soft_pp_table_size` bytes;
`memcpy` can copy up to `PAGE_SIZE` (4096) bytes from sysfs `count`.
When `size > soft_pp_table_size`, writes past the kmalloc buffer. On
subsequent writes, the buffer is not reallocated (only allocated once
when `!hardcode_pp_table`), so overflow persists.
### Step 2.4: Fix quality
**Record:**
- Fix is obviously correct and minimal.
- Mirrors the intent of the SMU-path fix in commit `1abb2648698bf`
(“avoid buffer overflow … in `smu_sys_set_pp_table()`”), which added
size validation and reallocation logic.
- Low regression risk: only rejects invalid oversized writes; legitimate
writes matching the existing table size continue to work.
- No API or structural changes.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- `pp_dpm_set_pp_table()` introduced in `f3898ea12fc1f` (Eric Huang,
2015-12-11).
- Unbounded `memcpy` introduced in `4dcf9e6f2e33fe` (Eric Huang,
2016-06-01): “add uploading pptable and resetting powerplay support”.
- Bug has existed since mid-2016; present in this 6.18.y tree.
### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag in commit message.
### Step 3.3: Related file history
**Record:**
- Related stable-worthy fix already in tree: `1abb2648698bf` (Feb 2025)
— SMU `smu_sys_set_pp_table()` overflow fix, with `Cc:
stable@vger.kernel.org`.
- Candidate fix (`bound pp_dpm_set_pp_table`) is **not** in this tree;
buggy code confirmed at lines 660–676 without the bounds check.
- Standalone one-patch fix, not part of a series.
### Step 3.4: Author context
**Record:** Asad Kamal is an active AMD contributor (`drm/amdgpu`,
`drm/amd/pm`). Patch reviewed by Yang Wang and committed by Alex Deucher
(AMD DRM maintainer).
### Step 3.5: Dependencies
**Record:** No prerequisites. Adds a simple validation before existing
logic. Applies cleanly to current `amd_powerplay.c` in this tree.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- `b4 dig -c 6f5c27bdc1e91` failed (commit not in local object
database).
- Web search found submission: [amd-gfx May
2026](https://lists.freedesktop.org/archives/amd-
gfx/2026-May/145636.html) by Asad Kamal, May 29, 2026.
- Review reply from Yang Wang referenced in thread index.
- No explicit stable nomination found in available search results.
- No NAKs found in available summaries.
### Step 4.2: Reviewers
**Record:** CC list included AMD maintainers (Deucher, Lazar, etc.).
`Reviewed-by: Yang Wang`; `Signed-off-by: Alex Deucher`.
### Step 4.3: Bug report
**Record:** No external bug report or syzbot link. Bug identified by
code inspection / internal AMD review.
### Step 4.4: Related patches
**Record:** Direct parallel: `1abb2648698bf` for
`smu_sys_set_pp_table()` — same sysfs interface, same class of overflow,
already in this tree and nominated for stable.
### Step 4.5: Stable list history
**Record:** lore.kernel.org blocked by bot protection; could not search
stable@ list directly. SMU sibling fix explicitly had `Cc:
stable@vger.kernel.org`.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `pp_dpm_set_pp_table()`, callers:
`amdgpu_dpm_set_pp_table()`, `amdgpu_set_pp_table()`.
### Step 5.2: Callers
**Record:**
- `amdgpu_set_pp_table()` — sysfs store for `pp_table`
(`AMDGPU_DEVICE_ATTR_RW(pp_table, ...)`)
- `amdgpu_dpm_set_pp_table()` — dispatches via `pp_funcs->set_pp_table`
under `adev->pm.mutex`
- Powerplay path: `pp_dpm_funcs.set_pp_table = pp_dpm_set_pp_table`
(legacy DPM GPUs)
- SMU path: `smu_sys_set_pp_table` (Navi+ and newer) — separate code
path, already has size checks
### Step 5.3: Callees
**Record:** `kmemdup()`, `memcpy()`, `amd_powerplay_reset()`, optional
`avfs_control()`.
### Step 5.4: Reachability
**Record:**
- Reachable from userspace via `/sys/class/drm/card*/device/pp_table`
write.
- Requires `amdgpu_pm_get_access()` (device runtime-resumed); sysfs
write typically requires root/CAP_SYS_ADMIN.
- Affects systems using legacy powerplay DPM (pre-SMU path GPUs:
Polaris, Vega, older APUs, etc.) — still common in stable/LTS
deployments.
### Step 5.5: Similar patterns
**Record:** SMU path (`smu_sys_set_pp_table`) validates
`header->usStructureSize != size` and reallocates when needed
(`1abb2648698bf`). Powerplay path lacked any size validation —
inconsistent and vulnerable.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Buggy code exists?
**Record:** **Yes.** Current tree at `v6.18.44` has unbounded `memcpy`
in `pp_dpm_set_pp_table()` (lines 668–676). No `size >
soft_pp_table_size` check. Bug introduced 2016; long-standing.
### Step 6.2: Backport complications
**Record:** Clean apply expected — 3-line insertion with no surrounding
churn in the function. Recent file history is handle-pointer refactors
unrelated to this hunk.
### Step 6.3: Related fixes already present?
**Record:** SMU overflow fix (`1abb2648698bf`) is an ancestor of HEAD.
Powerplay-path equivalent is **not** present.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/amd/pm` — **IMPORTANT** (AMD GPU driver
power management). Not universal core kernel, but widely deployed on
desktop, laptop, and server GPUs.
### Step 7.2: Subsystem activity
**Record:** Actively maintained; recent commits in `amd_powerplay.c` and
related PM code.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of AMD GPUs on the legacy powerplay DPM path who write
custom powerplay tables via `pp_table` sysfs. Config/driver-specific,
but covers many still-supported Polaris/Vega-era devices.
### Step 8.2: Trigger conditions
**Record:** Write to `pp_table` with `count > soft_pp_table_size` (and
`count` up to `PAGE_SIZE`). Requires sysfs write access (typically
root). Trigger is straightforward for anyone intentionally uploading a
table.
### Step 8.3: Failure mode severity
**Record:** Heap buffer overflow → potential kernel crash, memory
corruption, possible security impact. **Severity: HIGH** (memory safety;
kernel integrity).
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH — closes a real, long-standing heap overflow on a
reachable sysfs path; aligns powerplay path with already-stable-
nominated SMU fix.
- **Risk:** VERY LOW — 3-line bounds check, rejects only invalid inputs.
- **Ratio:** Strongly favors backport.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real heap overflow bug, present since 2016
- Reachable via `pp_table` sysfs on legacy powerplay GPUs
- Small (3 lines), obviously correct, maintainer-reviewed
- Parallel SMU fix already in this tree with stable nomination
- Prevents crash/corruption
**AGAINST backport:**
- Only affects legacy powerplay path (not Navi+/SMU GPUs)
- Sysfs write typically requires elevated privileges
- No syzbot/CVE report (but bug mechanism is clear from code)
**Unresolved:** Full lore review thread content (bot protection); no
explicit `Cc: stable` on this specific patch (but sibling fix had it).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — trivial bounds check;
`Reviewed-by` AMD engineer; maintainer sign-off.
2. Fixes a real bug affecting users? **PASS** — heap overflow on sysfs
upload path.
3. Important issue? **PASS** — memory safety / potential crash and
corruption (**HIGH**).
4. Small and contained? **PASS** — 3 lines, one function.
5. No new features or APIs? **PASS** — validation only.
6. Can apply to local tree? **PASS** — buggy code present; patch applies
cleanly.
### Step 9.3: Exception categories
**Record:** None (not device ID, quirk, DT, build, or docs). Qualifies
as a standard security/stability bug fix.
### Step 9.4: Decision rationale
This commit fixes a genuine heap buffer overflow in
`pp_dpm_set_pp_table()` that has existed in the 6.18.y tree since the
powerplay table upload feature was added. The fix is minimal, correct,
and consistent with the already-backported SMU-path overflow fix. For
stable users running legacy AMD GPUs who use `pp_table` sysfs, this
prevents kernel memory corruption and potential crashes.
---
## Verification
- **[Phase 1]** `git describe HEAD` → `v6.18.44`; parsed commit message
tags and body from user-provided diff
- **[Phase 2]** Read `amd_powerplay.c:660-688` — confirmed missing
bounds check and unbounded `memcpy`
- **[Phase 2]** Traced call chain via grep: `amdgpu_set_pp_table` →
`amdgpu_dpm_set_pp_table` → `pp_dpm_set_pp_table`
- **[Phase 3]** `git blame -L 660,690` — function from 2015, `memcpy`
from `4dcf9e6f2e33fe` (2016-06-01)
- **[Phase 3]** `git show 4dcf9e6f2e33fe` — introduced upload/reset
support with unbounded copy
- **[Phase 3]** `git show 1abb2648698bf` — SMU sibling overflow fix with
`Cc: stable`; confirmed ancestor of HEAD
- **[Phase 3]** `git log --grep="bound pp_dpm"` — no match; fix not in
tree
- **[Phase 4]** `b4 dig -c 6f5c27bdc1e91` — failed (commit not in repo)
- **[Phase 4]** Web search — found amd-gfx submission May 29, 2026;
Reviewed-by Yang Wang in thread
- **[Phase 4]** lore.kernel.org fetch — blocked (bot protection);
stable@ search UNVERIFIED
- **[Phase 5]** Read `amdgpu_pm.c:581-601`, `amdgpu_dpm.c:1717-1733` —
sysfs write path confirmed
- **[Phase 5]** Read `amdgpu_smu.c:633-659` — SMU path has size
validation; powerplay path does not
- **[Phase 5]** Grep `set_pp_table` — two implementations: powerplay and
SMU
- **[Phase 6]** `git describe HEAD` → v6.18.44 on `stable/linux-6.18.y`
- **[Phase 6]** Confirmed buggy code at lines 668-676 without fix
- **[Phase 8]** Failure mode: heap OOB write → crash/corruption,
severity HIGH
**YES**
drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c b/drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c
index 554492dfa3c00..ec95faa6edcf8 100644
--- a/drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c
+++ b/drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c
@@ -665,6 +665,9 @@ static int pp_dpm_set_pp_table(void *handle, const char *buf, size_t size)
if (!hwmgr || !hwmgr->pm_en)
return -EINVAL;
+ if (size > hwmgr->soft_pp_table_size)
+ return -EINVAL;
+
if (!hwmgr->hardcode_pp_table) {
hwmgr->hardcode_pp_table = kmemdup(hwmgr->soft_pp_table,
hwmgr->soft_pp_table_size,
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: check find_first_zero_bit before __set_bit on kfd->doorbell_bitmap
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (52 preceding siblings ...)
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] drm/amd/pm: bound pp_dpm_set_pp_table() memcpy Sasha Levin
@ 2026-08-31 13:28 ` Sasha Levin
2026-08-31 16:48 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] drm/amdgpu/ras: add ras_suspend callback and use it for cp_ecc_error_irq Sasha Levin
` (12 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:28 UTC (permalink / raw)
To: patches, stable
Cc: Xiaogang Chen, Alex Deucher, Sasha Levin, Felix.Kuehling,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Xiaogang Chen <xiaogang.chen@amd.com>
[ Upstream commit 516bf737a5602875f6c28d1028967837c8edf2c0 ]
If inx from find_first_zero_bit is beyond range not need set doorbell_bitmap.
Signed-off-by: Xiaogang Chen <xiaogang.chen@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit 2664ce9143d174651a793d96a6a2326050c4f45a)
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amdkfd: check find_first_zero_bit
before __set_bit on kfd->doorbell_bitmap`
**Local tree:** `v6.18.44` (Linux 6.18.44)
**Fix commit:** `2664ce9143d174651a793d96a6a2326050c4f45a` — **not** in
this tree; buggy code is still present.
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/amdkfd]` `[check]` — validate `find_first_zero_bit`
result before calling `__set_bit` on `kfd->doorbell_bitmap`.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Xiaogang Chen `<xiaogang.chen@amd.com>` (author)
- **Reviewed-by:** Alex Deucher `<alexander.deucher@amd.com>` (AMD DRM
maintainer)
- **Signed-off-by:** Alex Deucher `<alexander.deucher@amd.com>`
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable`, `Tested-by:`, or
`Acked-by:` tags
- `(cherry picked from commit 2664ce9143d1...)` — pipeline marker;
ignored per instructions
### Step 1.3: Body analysis
**Record:**
- **Bug:** When `find_first_zero_bit` finds no free bit, it returns `nb`
(the search size). The old code called `__set_bit(inx, ...)` before
checking whether `inx` is in range.
- **Symptom:** Out-of-bounds bitmap write when the bitmap is exhausted;
on large-page systems, also leaks bitmap slots on the error path (set
bit, then return NULL).
- **Root cause:** Range check was placed after `__set_bit` instead of
before it.
### Step 1.4: Hidden bug fix?
**Record:** Yes. Despite the terse message, this is a memory-safety /
resource-management fix, not cosmetic cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c` (+5 / -3 lines)
- **Function:** `kfd_get_kernel_doorbell()`
- **Scope:** Single-file, surgical fix
### Step 2.2: Code flow change
**Record:**
- **Before:** lock → `find_first_zero_bit` → `__set_bit` → unlock → if
`inx >= 1024` return NULL
- **After:** lock → `find_first_zero_bit` → if `inx >= 1024` unlock and
return NULL → `__set_bit` → unlock
- **Affected path:** Error path when no kernel doorbell slot is
available
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Out-of-bounds access / bitmap resource leak
- **Mechanism:** `doorbell_bitmap` is allocated with
`bitmap_zalloc(PAGE_SIZE / sizeof(u32))` (1024 bits on 4 KiB pages).
`find_first_zero_bit(..., PAGE_SIZE / sizeof(u32))` returns `1024`
when full. `__set_bit(1024, ...)` writes past the end of a 1024-bit
bitmap. On larger pages, indices 1024..(PAGE_SIZE/4-1) could be set
and then discarded via `return NULL`, leaking slots.
### Step 2.4: Fix quality
**Record:**
- Obviously correct; mirrors the process-doorbell pattern in
`kfd_device_queue_manager.c` (check before `set_bit`)
- Minimal change, no API changes
- **Regression risk:** Very low — only affects the exhaustion error path
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- Function dates to 2014 (`19f6d2a660340d`, Oded Gabbay)
- `find_first_zero_bit` with `PAGE_SIZE / sizeof(u32)` added in
`c31866651086fc` (Jul 2023, Shashank Sharma)
- The check-after-set pattern predates 2023; the 2023 change did not
introduce the ordering bug, but kept it
### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag present.
### Step 3.3: Related file history
**Record:**
- Recent `kfd_doorbell.c` changes are doorbell-manager refactors (2023)
- No related fix for this issue already in the tree
- Part of a 3-patch series per b4; patch 1 is unrelated
(`AMDKFD_IOC_GET_DMABUF_INFO`)
### Step 3.4: Author context
**Record:** Xiaogang Chen is an AMD contributor; Alex Deucher
(maintainer) reviewed and committed.
### Step 3.5: Dependencies
**Record:** Standalone — no prerequisite commits required. Applies
cleanly to current `kfd_doorbell.c`.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- **b4 dig URL:**
https://patch.msgid.link/20260528184656.123149-2-xiaogang.chen@amd.com
- **Series:** `[PATCH 2/3]` — patch 1 is unrelated ioctl work
- Lore fetch blocked by bot protection; thread content not directly
readable
### Step 4.2: Reviewers
**Record:** CC'd to `amd-gfx@lists.freedesktop.org`; Reviewed-by Alex
Deucher (maintainer).
### Step 4.3: Bug reports
**Record:** No external bug report, syzbot report, or crash trace
referenced.
### Step 4.4: Related patches
**Record:** Patch 2/3 is independent of patches 1 and 3 for this fix's
correctness.
### Step 4.5: Stable list history
**Record:** Not searched separately; no stable nomination found in
commit metadata.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `kfd_get_kernel_doorbell()`, `kfd_release_kernel_doorbell()`
### Step 5.2: Callers
**Record:**
- `kfd_kernel_queue.c:76` — `kernel_queue_init()` for HIQ/DIQ queues
- Typically 1–2 kernel queues per KFD device (HIQ + optional DIQ)
- Error path at line 78–80 handles NULL return
### Step 5.3: Callees
**Record:** `mutex_lock/unlock`, `find_first_zero_bit`, `__set_bit`,
`amdgpu_doorbell_index_on_bar`
### Step 5.4: Reachability
**Record:**
- Triggered during KFD device init / debug-queue setup (`CONFIG_HSA_AMD`
/ AMDGPU KFD)
- Not directly userspace-syscall reachable, but reachable during GPU
compute driver init
- Exhaustion requires ~1024 allocations without release — unrealistic in
normal use (~2 kernel queues), but possible with a doorbell leak
### Step 5.5: Similar patterns
**Record:** Process doorbells in `kfd_device_queue_manager.c:484–490`
already check `found >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS` **before**
`set_bit`. This fix aligns kernel doorbells with that correct pattern.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE
### Step 6.1: Buggy code present?
**Record:** **Yes.** Current tree at lines 155–162 still has check-
after-set:
```155:162:drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c
mutex_lock(&kfd->doorbell_mutex);
inx = find_first_zero_bit(kfd->doorbell_bitmap, PAGE_SIZE /
sizeof(u32));
__set_bit(inx, kfd->doorbell_bitmap);
mutex_unlock(&kfd->doorbell_mutex);
if (inx >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS)
return NULL;
```
Bitmap allocation at line 75: `bitmap_zalloc(PAGE_SIZE / sizeof(u32))` —
1024 bits on 4 KiB pages. `KFD_MAX_NUM_OF_QUEUES_PER_PROCESS` = 1024
(`kfd_priv.h:97`).
### Step 6.2: Backport difficulty
**Record:** Clean apply expected — 8-line hunk, no conflicts observed.
### Step 6.3: Related fixes already present?
**Record:** None. `git merge-base --is-ancestor 2664ce9143d1 HEAD` →
NOT_IN_TREE.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/amd/amdkfd` — **PERIPHERAL** (AMD GPU
compute / ROCm users with `CONFIG_HSA_AMD`)
### Step 7.2: Activity
**Record:** Actively maintained; recent doorbell-manager refactoring in
2023.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** AMD GPU users with KFD/ROCm enabled — not universal, but
real production users.
### Step 8.2: Trigger conditions
**Record:**
- All doorbell bitmap slots consumed (1024 on 4 KiB pages)
- Normal operation uses ~2 kernel doorbells per device
- **Likelihood:** Very low without a resource leak; **possible** with a
leak bug
### Step 8.3: Failure mode severity
**Record:**
- **OOB `__set_bit`:** Memory corruption adjacent to bitmap → potential
crash or unpredictable behavior — **HIGH** if triggered
- **Bitmap leak (large pages):** Gradual exhaustion — **MEDIUM**
- **Practical impact today:** Low due to unlikely trigger
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Prevents OOB write and bitmap leaks on error path; aligns
with existing correct pattern
- **Risk:** Minimal — 5-line reorder/addition on error path only
- **Ratio:** Favorable — near-zero risk, real correctness fix
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real out-of-bounds bitmap write when exhausted
- Obviously correct; maintainer-reviewed
- Small, self-contained, clean apply
- Matches established pattern in same subsystem
- Buggy code confirmed present in v6.18.44
- Memory-safety class of fix
**AGAINST backport:**
- No user reports or fuzzer findings
- Trigger extremely unlikely in normal kernel-queue usage (~2 doorbells)
- Bug present since 2014 without known incidents
- Config/driver-specific (AMD KFD only)
**Unresolved:** None affecting the decision.
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — logic verified; maintainer
reviewed (no runtime test cited)
2. Fixes a real bug? **PASS** — OOB `__set_bit` on exhaustion
3. Important issue? **PASS** — memory corruption (severity high if
triggered; trigger rare)
4. Small and contained? **PASS** — 8 lines, one function
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — code exists; fix not yet applied
### Step 9.3: Exception categories
**Record:** None (not a quirk, device ID, DT, build, or docs fix).
### Step 9.4: Decision rationale
This is a small, maintainer-reviewed memory-safety fix for a genuine
ordering bug: `__set_bit` was called before validating the index
returned by `find_first_zero_bit`. When the bitmap is full, that is an
out-of-bounds write. The trigger is rare for kernel doorbells (only
HIQ/DIQ, typically ~2 per device), but the fix is trivial, matches the
correct pattern already used for process doorbells in the same driver,
and has essentially no regression risk. For the 6.18.y stable tree where
the buggy code is present and the fix is absent, this meets stable
kernel criteria.
---
## Verification
- **[Phase 1]** `git show 2664ce9143d1` — parsed message and tags
- **[Phase 2]** Read `kfd_doorbell.c:149–176` — confirmed check-after-
set bug; analyzed diff
- **[Phase 2]** `kfd_priv.h:97` — `KFD_MAX_NUM_OF_QUEUES_PER_PROCESS` =
1024
- **[Phase 2]** `kfd_doorbell.c:75` — bitmap sized `PAGE_SIZE /
sizeof(u32)` bits
- **[Phase 3]** `git blame -L 150,176 kfd_doorbell.c` — function history
since 2014
- **[Phase 3]** `git show c31866651086fc` — 2023 doorbell-mgr refactor
- **[Phase 3]** `git show 19f6d2a660340d` — original code had same
ordering bug
- **[Phase 3]** `git log --oneline -15 -- kfd_doorbell.c` — no duplicate
fix
- **[Phase 4]** `b4 dig -c 2664ce9143d1` — lore URL found; patch 2/3 of
series
- **[Phase 4]** `b4 dig -w` — amd-gfx list CC'd
- **[Phase 4]** `b4 dig -a` — v1 series identified
- **[Phase 5]** `grep kfd_get_kernel_doorbell` — caller in
`kfd_kernel_queue.c:76`
- **[Phase 5]** Read `kfd_kernel_queue.c:76–80, 191, 224` — NULL
handled; release on cleanup
- **[Phase 5]** Read `kfd_device_queue_manager.c:484–490` — correct
check-before-set pattern
- **[Phase 6]** `git describe HEAD` — v6.18.44
- **[Phase 6]** `git merge-base --is-ancestor 2664ce9143d1 HEAD` —
NOT_IN_TREE
- **[Phase 6]** Read current `kfd_doorbell.c` — buggy code confirmed
present
**YES**
drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c b/drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c
index 05c74887fd6fd..fdcf7f2d1b5b4 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c
@@ -153,14 +153,16 @@ void __iomem *kfd_get_kernel_doorbell(struct kfd_dev *kfd,
u32 inx;
mutex_lock(&kfd->doorbell_mutex);
+
inx = find_first_zero_bit(kfd->doorbell_bitmap, PAGE_SIZE / sizeof(u32));
+ if (inx >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS) {
+ mutex_unlock(&kfd->doorbell_mutex);
+ return NULL;
+ }
__set_bit(inx, kfd->doorbell_bitmap);
mutex_unlock(&kfd->doorbell_mutex);
- if (inx >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS)
- return NULL;
-
*doorbell_off = amdgpu_doorbell_index_on_bar(kfd->adev,
kfd->doorbells,
inx,
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu/ras: add ras_suspend callback and use it for cp_ecc_error_irq
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (53 preceding siblings ...)
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: check find_first_zero_bit before __set_bit on kfd->doorbell_bitmap Sasha Levin
@ 2026-08-31 13:28 ` Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdkfd: fix SMI event cross-process information leak Sasha Levin
` (11 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:28 UTC (permalink / raw)
To: patches, stable
Cc: Yunxiang Li, Alex Deucher, Sasha Levin, christian.koenig, airlied,
simona, amd-gfx, dri-devel, linux-kernel
From: Yunxiang Li <Yunxiang.Li@amd.com>
[ Upstream commit e3829992dd9fa0a82511af4f01733fc854cd15a5 ]
cp_ecc_error_irq is acquired in amdgpu_gfx_ras_late_init() but
released in gfx_v9_0_hw_fini(), so the put site has to query
amdgpu_irq_enabled() because the get is skipped on SR-IOV VF.
ras_late_init / ras_fini have no suspend counterpart, so move the
put to amdgpu_gfx_ras_suspend() / amdgpu_gfx_ras_fini() and add a
matching ras_suspend callback that is invoked from
amdgpu_ras_suspend() before disable_all_features(). The get and
put now sit in the same place and check the same condition (not
VF, funcs registered), no refcount querying needed.
An active flag gates ras_fini so the
suspend-then-unload-without-resume path falls into
amdgpu_ras_block_late_fini_default() instead of double-releasing
what ras_suspend already cleaned up.
Drop the cp_ecc_error_irq put from gfx_v9_0_hw_fini(). gfx_v8_0
manages cp_ecc_error_irq locally and is unaffected; no other GFX
generation has this IRQ.
Signed-off-by: Yunxiang Li <Yunxiang.Li@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amdgpu/ras: add ras_suspend callback
and use it for cp_ecc_error_irq`
**Local tree:** Linux **6.18.44** (`git describe HEAD` → `v6.18.44`)
**Upstream commit:** `e3829992dd9fa` (not present in this tree; cherry-
pick applies cleanly)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
**Step 1.1 — Subject parse**
Record: `[drm/amdgpu/ras]` — **add** (lifecycle fix disguised as
infrastructure) — add `ras_suspend` callback and relocate
`cp_ecc_error_irq` put to match its get site.
**Step 1.2 — Tags**
Record:
- `Signed-off-by: Yunxiang Li <Yunxiang.Li@amd.com>` (author)
- `Acked-by: Alex Deucher <alexander.deucher@amd.com>` (subsystem
maintainer)
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` (committer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`,
`Tested-by:`, or `Reviewed-by:`
Notable: maintainer Ack from Alex Deucher is a strong quality signal.
**Step 1.3 — Body analysis**
Record:
- **Bug:** `cp_ecc_error_irq` is acquired in
`amdgpu_gfx_ras_late_init()` but released in `gfx_v9_0_hw_fini()`,
with mismatched conditions (get skipped on SR-IOV VF; put uses broader
RAS-support check).
- **Symptom:** `amdgpu_irq_put()` called when IRQ was never acquired →
`WARN_ON(!amdgpu_irq_enabled())` in `amdgpu_irq.c:637`.
- **Root cause:** No suspend counterpart to `ras_late_init`/`ras_fini`;
get/put live in different subsystems with different guards.
- **Fix approach:** Add `ras_suspend` callback, move put to
`amdgpu_gfx_ras_suspend()`/`amdgpu_gfx_ras_fini()` with matching `!VF
&& funcs` condition; add `active` flag to avoid double-release on
suspend-then-unload path.
**Step 1.4 — Hidden bug fix?**
Record: **Yes.** Despite "add callback" wording, this is a reference-
counting / lifecycle bug fix. It corrects asymmetric IRQ get/put that
can trigger kernel warnings and incorrect teardown ordering.
---
## PHASE 2: DIFF ANALYSIS
**Step 2.1 — Inventory**
Record:
| File | Change |
|------|--------|
| `amdgpu_gfx.c` | +26/-4 |
| `amdgpu_gfx.h` | +3/-1 |
| `amdgpu_ras.c` | +32/-4 |
| `amdgpu_ras.h` | +1 |
| `gfx_v9_0.c` | -2 |
| **Total** | +53/-11, 5 files |
Functions modified: `amdgpu_gfx_ras_late_init`, new
`amdgpu_gfx_ras_suspend`, new `amdgpu_gfx_ras_fini`,
`amdgpu_gfx_ras_sw_init`, `amdgpu_ras_suspend`, `amdgpu_ras_late_init`,
`amdgpu_ras_fini`, `gfx_v9_0_hw_fini`.
Scope: **single-subsystem, surgical** (amdgpu RAS/GFX9).
**Step 2.2 — Code flow per hunk**
| Hunk | Before → After |
|------|----------------|
| `amdgpu_gfx_ras_late_init` | VF early-return then separate `irq_get` →
combined `!VF && funcs` guard for `irq_get` |
| New `amdgpu_gfx_ras_suspend` | No suspend cleanup → `irq_put` with
same guard as get |
| New `amdgpu_gfx_ras_fini` | No gfx-specific fini (header-only orphan
declaration) → `irq_put` + `amdgpu_ras_block_late_fini` |
| `amdgpu_gfx_ras_sw_init` | Only sets `ras_late_init` → also sets
default `ras_suspend` and `ras_fini` |
| `amdgpu_ras_suspend` | Only disables RAS features → iterates blocks,
calls `ras_suspend`, clears `active` |
| `amdgpu_ras_late_init` | No tracking → sets `node->active = true`
after successful late_init |
| `amdgpu_ras_fini` | Always calls custom `ras_fini` if supported →
gated by `ras_node->active` to avoid double-cleanup after suspend |
| `gfx_v9_0_hw_fini` | `irq_put(cp_ecc_error_irq)` if RAS supported →
removed (now handled in RAS layer) |
**Step 2.3 — Bug mechanism**
Record: **Reference counting / resource lifecycle bug.**
- Get: `amdgpu_irq_get()` in `amdgpu_gfx_ras_late_init()` — only when
`!amdgpu_sriov_vf(adev) && cp_ecc_error_irq.funcs`.
- Put (current tree): `amdgpu_irq_put()` in `gfx_v9_0_hw_fini()` — when
`amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__GFX)` only.
- On SR-IOV VF with RAS telemetry enabled, late_init runs (see
`amdgpu_ras_late_init` VF check) but gfx `irq_get` is skipped; hw_fini
still calls `irq_put` before the VF early-return → `WARN_ON` in
`amdgpu_irq_put()`.
**Step 2.4 — Fix quality**
Record: Fix is **obviously correct** — symmetric get/put with identical
conditions, proper suspend hook, `active` flag prevents double-release.
Minimal regression risk: no blocks currently register custom `ras_fini`
in this tree (verified via grep), so the `active` flag behavior only
affects the newly registered gfx callbacks.
---
## PHASE 3: GIT HISTORY INVESTIGATION
**Step 3.1 — Blame**
Record:
- `gfx_v9_0_hw_fini` put lines: `d97b02bb9c7aa` (May 2023) — prior fix
for put-without-get when legacy GFX RAS disabled; did not fix VF
condition mismatch.
- `irq_get` in `amdgpu_gfx_ras_late_init`: `6caeee7a708c0` (Sep 2019).
- Buggy asymmetric lifecycle present since **v5.x** era; still present
in **6.18.44**.
**Step 3.2 — Fixes: tag**
Record: Not applicable (no `Fixes:` tag). Related prior fix
`d97b02bb9c7aa` is in this tree but incomplete for the VF/get-put
mismatch.
**Step 3.3 — File history**
Record: Part of 2-patch series `[PATCH 0/2] drm/amdgpu: balance GFX IRQ
get/put across init/suspend/fini`. This commit is **patch 1/2** and is
**self-contained** for `cp_ecc_error_irq`. Patch 2/2 (`9117d8be850ba` on
master) addresses fault/EOP IRQs separately and is **not a
prerequisite**.
**Step 3.4 — Author context**
Record: Yunxiang Li is an AMD contributor. Alex Deucher (maintainer)
Acked and committed.
**Step 3.5 — Dependencies**
Record: **Standalone.** Cherry-pick to 6.18.44 applies cleanly with
auto-merge. No prerequisite commits required.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
**Step 4.1 — Original discussion**
Record:
- URL:
https://patch.msgid.link/20260527233504.1830940-2-Yunxiang.Li@amd.com
- Series: v1 only (no v2/v3 revisions found)
- Patch 1/2 of 2-patch series
**Step 4.2 — Reviewers**
Record: CC'd to `amd-gfx@lists.freedesktop.org`, Alex Deucher, Christian
König. Alex Deucher Acked.
**Step 4.3 — Bug report**
Record: No external bug report or syzbot link. Mechanism is documented
in commit message; similar prior bug (`d97b02bb9c7aa`) had stack trace
from `gfx_v9_0_hw_fini` → `amdgpu_irq_put` during suspend.
**Step 4.4 — Related patches**
Record: Patch 2/2 (`drm/amdgpu/gfx: move fault and EOP IRQ get/put to
hw_init/hw_fini`) is independent. Not required for this fix.
**Step 4.5 — Stable list history**
Record: No `Cc: stable` nomination found in thread. Not a negative
signal per instructions.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
**Step 5.1 — Key functions**
Record: `amdgpu_gfx_ras_late_init`, `amdgpu_gfx_ras_suspend`,
`amdgpu_gfx_ras_fini`, `amdgpu_ras_suspend`, `amdgpu_ras_late_init`,
`amdgpu_ras_fini`, `gfx_v9_0_hw_fini`, `amdgpu_irq_get`,
`amdgpu_irq_put`.
**Step 5.2 — Callers**
Record:
- `amdgpu_ras_suspend` ← `amdgpu_device_suspend()` (line 5261) —
**system suspend path**
- `gfx_v9_0_hw_fini` ← `gfx_v9_0_suspend` ← `amdgpu_ip_block_suspend` ←
`amdgpu_device_ip_suspend_phase2` — **suspend and driver unload**
- `amdgpu_ras_late_init` ← `amdgpu_device_ip_late_init` — boot and
**resume** (line 5365)
- `amdgpu_ras_fini` ← `amdgpu_device_ip_fini` — driver unload
**Step 5.3 — Key callees**
Record: `amdgpu_irq_get/put` (atomic refcount on `enabled_types`),
`amdgpu_ras_block_late_fini`, `amdgpu_ras_disable_all_features`.
**Step 5.4 — Reachability**
Record: **Yes, reachable from normal operations:**
- System suspend/resume (laptop, server)
- SR-IOV VF with RAS telemetry
- Driver unload after suspend (no resume)
- Config: `CONFIG_DRM_AMDGPU` + GFX9 hardware + RAS enabled
**Step 5.5 — Similar patterns**
Record: Prior fix `d97b02bb9c7aa` addressed same `amdgpu_irq_put` WARN
class for different condition (`amdgpu_ras_is_supported` vs actually
enabled). Patch 2/2 in the series addresses similar get/put split for
other GFX IRQs.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
**Step 6.1 — Buggy code exists?**
Record: **Yes.** Current 6.18.44 tree has:
- `irq_get` in `amdgpu_gfx_ras_late_init` with VF skip (lines 937-943)
- `irq_put` in `gfx_v9_0_hw_fini` with only `amdgpu_ras_is_supported`
guard (lines 4087-4088)
- No `ras_suspend` callback infrastructure
- Orphan `amdgpu_gfx_ras_fini` declaration in header with no
implementation
**Step 6.2 — Backport complications**
Record: **Clean apply** — tested via `git cherry-pick --no-commit
e3829992dd9fa`, auto-merged all 5 files.
**Step 6.3 — Related fixes already present?**
Record: `d97b02bb9c7aa` (partial fix) is in tree. This commit is not
duplicated; it completes the lifecycle fix.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
**Step 7.1 — Subsystem criticality**
Record: `drivers/gpu/drm/amd/amdgpu` — **IMPORTANT** (AMD GPU driver,
widely deployed on desktops, laptops, servers, cloud VF).
**Step 7.2 — Activity**
Record: Actively maintained; RAS subsystem receives regular fixes in
6.18.y.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
**Step 8.1 — Who is affected**
Record: Users of **AMD GFX9 GPUs** with **RAS enabled** — especially
**SR-IOV virtual functions** with RAS telemetry, and any system using
suspend/resume with RAS.
**Step 8.2 — Trigger conditions**
Record:
- SR-IOV VF + RAS telemetry + suspend → **high likelihood** of
`amdgpu_irq_put` WARN
- Suspend → unload without resume with new `ras_fini` → potential double
`irq_put` without `active` flag
- Non-VF suspend/resume works today but has architectural fragility
**Step 8.3 — Failure mode severity**
Record: `WARN_ON` in `amdgpu_irq_put` during suspend — **MEDIUM**
(kernel warning, incorrect IRQ state; not typically a panic but
indicates broken refcounting). Suspend-then-unload double-release —
**MEDIUM-HIGH** (refcount underflow / further WARNs).
**Step 8.4 — Risk-benefit**
Record:
- **Benefit:** HIGH for enterprise VF/cloud; MEDIUM for general amdgpu
suspend users
- **Risk:** LOW — 53 lines, localized, maintainer-acked, applies
cleanly, no custom `ras_fini` handlers exist in tree to be disrupted
- **Ratio:** Favorable
---
## PHASE 9: FINAL SYNTHESIS
**Step 9.1 — Evidence summary**
| FOR backport | AGAINST backport |
|---|---|
| Fixes real refcounting/lifecycle bug | Part of 2-patch series (but
patch 1 is self-contained) |
| Triggerable on suspend (common path) | No syzbot/user report attached
|
| SR-IOV VF path clearly broken in current code | WARN severity, not
panic |
| Maintainer Acked-by Alex Deucher | |
| Applies cleanly to 6.18.44 | |
| Small, contained (53 lines) | |
| Similar prior fix (`d97b02`) was stable material | |
| Resume path re-acquires via `amdgpu_ras_late_init` in
`amdgpu_device_resume` | |
**Step 9.2 — Stable rules checklist**
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — symmetric lifecycle,
maintainer ack; no explicit Tested-by |
| 2. Fixes real bug affecting users? | **PASS** — VF suspend WARN,
suspend/unload edge case |
| 3. Important issue? | **PASS** — MEDIUM severity (WARN, IRQ refcount
corruption class) |
| 4. Small and contained? | **PASS** — 5 files, 53 insertions |
| 5. No new features/APIs? | **PASS** — internal driver callback only |
| 6. Can apply to local tree? | **PASS** — clean cherry-pick verified |
**Step 9.3 — Exception categories**
Record: None (not device ID, quirk, DT, build fix, or docs).
**Step 9.4 — Decision rationale**
This commit fixes a longstanding asymmetric IRQ lifecycle in the amdgpu
RAS/GFX9 path that can trigger `WARN_ON` during system suspend on SR-IOV
VFs and creates fragile teardown on suspend-then-unload. The fix is
small, maintainer-reviewed, applies cleanly to 6.18.44, and the affected
code is present in this tree. The benefit outweighs the low regression
risk.
---
## Verification
- [Phase 1] Parsed subject, tags, body; identified hidden refcounting
bug
- [Phase 2] Analyzed all 5 file diffs; classified as reference-
counting/lifecycle fix
- [Phase 3] `git blame` on `gfx_v9_0.c:4087-4088` → `d97b02bb9c7aa`
(2023); `irq_get` introduced `6caeee7a708c0` (2019); both ancestors in
tree
- [Phase 3] `git log --grep` found commit `e3829992dd9fa` on
`origin/master`; not ancestor of HEAD (not in 6.18.44)
- [Phase 3] Confirmed patch 1/2 is standalone; patch 2/2
(`9117d8be850ba`) is separate
- [Phase 4] `b4 dig -c e3829992dd9fa` →
https://patch.msgid.link/20260527233504.1830940-2-Yunxiang.Li@amd.com
- [Phase 4] `b4 dig -a` → v1 only
- [Phase 4] `b4 dig -w` → CC: amd-gfx, Alex Deucher, Christian König
- [Phase 4] No stable nomination in thread
- [Phase 5] Traced callers: `amdgpu_device_suspend` →
`amdgpu_ras_suspend`; `gfx_v9_0_suspend` → `gfx_v9_0_hw_fini`
- [Phase 5] Read `amdgpu_irq_put` at `amdgpu_irq.c:637` —
`WARN_ON(!amdgpu_irq_enabled())`
- [Phase 5] Grep: no `.ras_fini =` assignments in tree (no custom
ras_fini handlers)
- [Phase 6] `git describe HEAD` → v6.18.44; buggy code confirmed at
`amdgpu_gfx.c:937-943`, `gfx_v9_0.c:4087-4088`
- [Phase 6] `git cherry-pick --no-commit e3829992dd9fa` → clean auto-
merge on all 5 files
- [Phase 6] `amdgpu_device_resume` calls `amdgpu_device_ip_late_init` →
`amdgpu_ras_late_init` (re-acquires IRQ on resume)
- [Phase 8] Failure mode: WARN_ON during VF suspend — MEDIUM severity
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | 26 ++++++++++++++++----
drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h | 3 ++-
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c | 32 +++++++++++++++++++++----
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.h | 1 +
drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 --
5 files changed, 53 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
index 40e7482980692..46c0b986db51d 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
@@ -934,10 +934,7 @@ int amdgpu_gfx_ras_late_init(struct amdgpu_device *adev, struct ras_common_if *r
if (r)
return r;
- if (amdgpu_sriov_vf(adev))
- return r;
-
- if (adev->gfx.cp_ecc_error_irq.funcs) {
+ if (!amdgpu_sriov_vf(adev) && adev->gfx.cp_ecc_error_irq.funcs) {
r = amdgpu_irq_get(adev, &adev->gfx.cp_ecc_error_irq, 0);
if (r)
goto late_fini;
@@ -952,6 +949,21 @@ int amdgpu_gfx_ras_late_init(struct amdgpu_device *adev, struct ras_common_if *r
return r;
}
+void amdgpu_gfx_ras_suspend(struct amdgpu_device *adev,
+ struct ras_common_if *ras_block)
+{
+ if (!amdgpu_sriov_vf(adev) && adev->gfx.cp_ecc_error_irq.funcs)
+ amdgpu_irq_put(adev, &adev->gfx.cp_ecc_error_irq, 0);
+}
+
+void amdgpu_gfx_ras_fini(struct amdgpu_device *adev,
+ struct ras_common_if *ras_block)
+{
+ if (!amdgpu_sriov_vf(adev) && adev->gfx.cp_ecc_error_irq.funcs)
+ amdgpu_irq_put(adev, &adev->gfx.cp_ecc_error_irq, 0);
+ amdgpu_ras_block_late_fini(adev, ras_block);
+}
+
int amdgpu_gfx_ras_sw_init(struct amdgpu_device *adev)
{
int err = 0;
@@ -980,6 +992,12 @@ int amdgpu_gfx_ras_sw_init(struct amdgpu_device *adev)
if (!ras->ras_block.ras_late_init)
ras->ras_block.ras_late_init = amdgpu_gfx_ras_late_init;
+ if (!ras->ras_block.ras_suspend)
+ ras->ras_block.ras_suspend = amdgpu_gfx_ras_suspend;
+
+ if (!ras->ras_block.ras_fini)
+ ras->ras_block.ras_fini = amdgpu_gfx_ras_fini;
+
/* If not defined special ras_cb function, use default ras_cb */
if (!ras->ras_block.ras_cb)
ras->ras_block.ras_cb = amdgpu_gfx_process_ras_data_cb;
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h
index fb5f7a0ee029f..8949037b62a43 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h
@@ -603,7 +603,8 @@ void amdgpu_gfx_off_ctrl(struct amdgpu_device *adev, bool enable);
void amdgpu_gfx_off_ctrl_immediate(struct amdgpu_device *adev, bool enable);
int amdgpu_get_gfx_off_status(struct amdgpu_device *adev, uint32_t *value);
int amdgpu_gfx_ras_late_init(struct amdgpu_device *adev, struct ras_common_if *ras_block);
-void amdgpu_gfx_ras_fini(struct amdgpu_device *adev);
+void amdgpu_gfx_ras_suspend(struct amdgpu_device *adev, struct ras_common_if *ras_block);
+void amdgpu_gfx_ras_fini(struct amdgpu_device *adev, struct ras_common_if *ras_block);
int amdgpu_get_gfx_off_entrycount(struct amdgpu_device *adev, u64 *value);
int amdgpu_get_gfx_off_residency(struct amdgpu_device *adev, u32 *residency);
int amdgpu_set_gfx_off_residency(struct amdgpu_device *adev, bool value);
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
index 4c1a65fffede7..16ae44e131ad4 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
@@ -92,6 +92,9 @@ struct amdgpu_ras_block_list {
struct list_head node;
struct amdgpu_ras_block_object *ras_obj;
+
+ /* set by ras_late_init, cleared by ras_suspend/ras_fini */
+ bool active;
};
const char *get_ras_block_str(struct ras_common_if *ras_block)
@@ -4392,10 +4395,23 @@ void amdgpu_ras_resume(struct amdgpu_device *adev)
void amdgpu_ras_suspend(struct amdgpu_device *adev)
{
struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
+ struct amdgpu_ras_block_list *node;
+ struct amdgpu_ras_block_object *obj;
if (!adev->ras_enabled || !con)
return;
+ /* run per-block ras_suspend before tearing down the RAS context */
+ list_for_each_entry(node, &adev->ras_list, node) {
+ if (!node->active)
+ continue;
+
+ obj = node->ras_obj;
+ if (obj && obj->ras_suspend)
+ obj->ras_suspend(adev, &obj->ras_comm);
+ node->active = false;
+ }
+
amdgpu_ras_disable_all_features(adev, 0);
/* Make sure all ras objects are disabled. */
if (AMDGPU_RAS_GET_FEATURES(con->features))
@@ -4449,8 +4465,15 @@ int amdgpu_ras_late_init(struct amdgpu_device *adev)
obj->ras_comm.name, r);
return r;
}
- } else
- amdgpu_ras_block_late_init_default(adev, &obj->ras_comm);
+ } else {
+ r = amdgpu_ras_block_late_init_default(adev, &obj->ras_comm);
+ if (r) {
+ dev_err(adev->dev, "%s failed to execute ras_block_late_init_default! ret:%d\n",
+ obj->ras_comm.name, r);
+ return r;
+ }
+ }
+ node->active = true;
}
return 0;
@@ -4487,11 +4510,12 @@ int amdgpu_ras_fini(struct amdgpu_device *adev)
list_for_each_entry_safe(ras_node, tmp, &adev->ras_list, node) {
if (ras_node->ras_obj) {
obj = ras_node->ras_obj;
- if (amdgpu_ras_is_supported(adev, obj->ras_comm.block) &&
- obj->ras_fini)
+ /* fall back to default cleanup if ras_suspend already ran */
+ if (ras_node->active && obj->ras_fini)
obj->ras_fini(adev, &obj->ras_comm);
else
amdgpu_ras_block_late_fini_default(adev, &obj->ras_comm);
+ ras_node->active = false;
}
/* Clear ras blocks from ras_list and free ras block list node */
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.h
index 6cf0dfd38be8b..8160c4d598543 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.h
@@ -731,6 +731,7 @@ struct amdgpu_ras_block_object {
int (*ras_block_match)(struct amdgpu_ras_block_object *block_obj,
enum amdgpu_ras_block block, uint32_t sub_block_index);
int (*ras_late_init)(struct amdgpu_device *adev, struct ras_common_if *ras_block);
+ void (*ras_suspend)(struct amdgpu_device *adev, struct ras_common_if *ras_block);
void (*ras_fini)(struct amdgpu_device *adev, struct ras_common_if *ras_block);
ras_ih_cb ras_cb;
const struct amdgpu_ras_block_hw_ops *hw_ops;
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
index c5549a5abcd43..9d7214bcaadb9 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
@@ -4084,8 +4084,6 @@ static int gfx_v9_0_hw_fini(struct amdgpu_ip_block *ip_block)
{
struct amdgpu_device *adev = ip_block->adev;
- if (amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__GFX))
- amdgpu_irq_put(adev, &adev->gfx.cp_ecc_error_irq, 0);
amdgpu_irq_put(adev, &adev->gfx.priv_reg_irq, 0);
amdgpu_irq_put(adev, &adev->gfx.priv_inst_irq, 0);
amdgpu_irq_put(adev, &adev->gfx.bad_op_irq, 0);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdkfd: fix SMI event cross-process information leak
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (54 preceding siblings ...)
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] drm/amdgpu/ras: add ras_suspend callback and use it for cp_ecc_error_irq Sasha Levin
@ 2026-08-31 13:29 ` Sasha Levin
2026-08-31 16:54 ` sashiko-bot
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu: add first record offset check Sasha Levin
` (10 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:29 UTC (permalink / raw)
To: patches, stable
Cc: Yongqiang Sun, Alex Deucher, Sasha Levin, Felix.Kuehling,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Yongqiang Sun <Yongqiang.Sun@amd.com>
[ Upstream commit 92a8dba246d371fe268280e5fd74b0955688e6df ]
kfd_smi_ev_enabled() skips the suser privilege check when pid=0.
PROCESS_START, PROCESS_END, and VMFAULT events are emitted with
pid=0 while carrying another process's PID and command name, so any
/dev/kfd user in the render group can monitor all GPU workloads.
Pass the target process PID into kfd_smi_event_add() for these events
so the existing per-client filter restricts delivery to the owning
process or CAP_SYS_ADMIN subscribers.
Signed-off-by: Yongqiang Sun <Yongqiang.Sun@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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: `[drm/amdkfd] [fix] SMI event cross-process information leak`
**Step 1.2 — Tags**
Record:
- `Signed-off-by: Yongqiang Sun <Yongqiang.Sun@amd.com>` (author)
- `Acked-by: Alex Deucher <alexander.deucher@amd.com>` (AMD DRM
maintainer)
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` (committer)
- No `Fixes:`, `Reported-by:`, `Tested-by:`, `Link:`, or `Cc:
stable@vger.kernel.org`
Notable: maintainer Acked-by; no syzbot or user bug report tags.
**Step 1.3 — Body analysis**
Record:
- **Bug:** `kfd_smi_ev_enabled()` does not apply per-client PID
filtering when the filter PID argument is `0`. `PROCESS_START`,
`PROCESS_END`, and `VMFAULT` events are emitted with filter PID `0`
but carry another process's PID and command name in the event payload.
- **Symptom:** Any `/dev/kfd` user in the render group can monitor all
GPU workloads (other processes' PIDs and command names).
- **Root cause:** `kfd_smi_event_add(0, ...)` bypasses the `if (pid &&
...)` guard in `kfd_smi_ev_enabled()`.
- **Fix:** Pass `task_info->tgid` into `kfd_smi_event_add()` so the
existing filter restricts delivery to the owning process or
`CAP_SYS_ADMIN` subscribers (`client->suser`).
**Step 1.4 — Hidden bug fix?**
Record: No — this is an explicit security/privacy bug fix, not disguised
cleanup.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- **File:** `drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c` (+5 / -3
lines)
- **Functions modified:** `kfd_smi_event_update_vmfault()`,
`kfd_smi_event_process()`
- **Scope:** Single-file surgical fix
**Step 2.2 — Code flow changes**
Record:
- **Hunk 1 (`kfd_smi_event_update_vmfault`):** Before:
`kfd_smi_event_add(0, dev, VMFAULT, ...)` → all subscribed clients
receive VM fault events with other processes' PID/comm. After:
`kfd_smi_event_add(task_info->tgid, dev, VMFAULT, ...)` → only
matching client or admin receives it.
- **Hunk 2 (`kfd_smi_event_process`):** Before: `kfd_smi_event_add(0,
pdd->dev, PROCESS_START/END, ...)` → broadcast. After:
`kfd_smi_event_add(task_info->tgid, pdd->dev, ...)` → per-process
filtering.
**Step 2.3 — Bug mechanism**
Record: **Information leak / missing access control.** Category (d)
memory-safety adjacent — logic/correctness in security filtering.
`pid=0` is intentional for system-wide events (GPU reset, thermal
throttle); using it for per-process events defeats isolation.
**Step 2.4 — Fix quality**
Record: Obviously correct — uses `task_info->tgid`, which matches
`client->pid = current->tgid` set in `kfd_smi_event_open()`. Minimal
change. Low regression risk; system-wide events still use `pid=0`.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record:
- `kfd_smi_ev_enabled()` filter: Philip Yang, 2022-01-13
(`163a5a58437062`); superuser logic simplified by Eric Huang,
2025-04-14 (`6b9d26089f56f`).
- VMFAULT with `pid=0`: since at least Shashank Sharma refactor,
2024-01-18 (`b8f67b9ddf4f8`); format-only change in 2024-02-16
(`663b0f1e141dc`).
- PROCESS_START/END with `pid=0`: introduced 2025-04-07
(`4172b556fd5bd`).
**Step 3.2 — Fixes: tag**
Record: Not applicable — no `Fixes:` tag. Buggy PROCESS events
introduced by `4172b556fd5bd`; VMFAULT leak predates that.
**Step 3.3 — Related file history**
Record: Recent related commits in this tree:
- `6b9d26089f56f` — superuser SMI filter fix (present)
- `4172b556fd5bd` — process start/end events (present, introduced leak)
- `9315860d05aa2` — NULL check fix for process SMI event
- `9fd86747daa6c` — queue restore string fix
- On master but not in 6.18.44: `92a8dba246d37` / `3b347d011773d` (this
fix), `1142738572ef3` (container PID reporting — separate, larger
change)
**Step 3.4 — Author context**
Record: Yongqiang Sun has at least one other amdkfd fix in history. Alex
Deucher (maintainer) Acked and committed the fix.
**Step 3.5 — Dependencies**
Record: Standalone — uses `task_info->tgid` already present in `struct
amdgpu_task_info` since 2018 (`2aa37bf58838f`). No series prerequisites.
`git apply --check` passes cleanly on 6.18.44.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record: `b4 dig -c 3b347d011773d` found v1 only at
https://patch.msgid.link/20260527141014.567441-1-Yongqiang.Sun@amd.com.
Lore fetch blocked by Anubis bot protection; no thread replies
retrieved.
**Step 4.2 — Reviewers**
Record: `b4 dig -w` — sent to Yongqiang Sun and `amd-
gfx@lists.freedesktop.org`. Alex Deucher Acked in commit.
**Step 4.3 — Bug report**
Record: Not applicable — no `Reported-by:` or `Link:` tags. Bug
identified by code review / internal AMD analysis per commit message.
**Step 4.4 — Related patches**
Record: Container PID fix (`1142738572ef3`) is a separate follow-up on
master; not required for this security fix to function on non-container
or host-PID setups.
**Step 4.5 — Stable list**
Record: Not searched (lore blocked). No stable nomination found in
available sources.
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `kfd_smi_ev_enabled()`, `kfd_smi_event_add()`,
`kfd_smi_event_update_vmfault()`, `kfd_smi_event_process()`,
`kfd_smi_event_open()`
**Step 5.2 — Callers**
Record:
- `kfd_smi_event_update_vmfault()` ← `kfd_int_process_v9.c`,
`kfd_int_process_v11.c`, `cik_event_interrupt.c` (GPU fault interrupt
paths)
- `kfd_smi_event_process()` ← `kfd_process.c` (process start at line
~1727, end at ~1059)
- `kfd_smi_event_open()` ← `kfd_chardev.c` via `kfd_ioctl_smi_events()`
(userspace ioctl)
**Step 5.3 — Callees**
Record: `amdgpu_vm_get_task_info_pasid()`,
`amdgpu_vm_get_task_info_vm()`, `add_event_to_kfifo()` → iterates all
SMI clients and checks `kfd_smi_ev_enabled()`.
**Step 5.4 — Reachability**
Record: Userspace opens SMI event fd via KFD ioctl (`/dev/kfd`, render
group). GPU faults and process lifecycle events are triggered by normal
KFD compute workloads. **Reachable by unprivileged render-group users**
who can subscribe to SMI events and receive other users' process
metadata.
**Step 5.5 — Similar patterns**
Record: Other per-process events (`page_fault`, `migration`,
`queue_eviction`, etc.) already pass non-zero PID and are correctly
filtered. Only VMFAULT and PROCESS_START/END incorrectly used `pid=0`.
---
## Phase 6: Cross-Reference Against Local Tree (6.18.44)
**Step 6.1 — Buggy code present?**
Record: **Yes.** Local tree is `v6.18.44` on `stable/linux-6.18.y`.
Verified:
- Line 257: `kfd_smi_event_add(0, dev, KFD_SMI_EVENT_VMFAULT, ...)`
- Line 359: `kfd_smi_event_add(0, pdd->dev, PROCESS_START/END, ...)`
- Filter at lines 168-169 skips all PID checks when `pid==0`
- Fix commit `3b347d011773d` is **not** an ancestor of HEAD (`merge-
base` exit 1)
**Step 6.2 — Backport complications**
Record: **Clean apply** — `git show 3b347d011773d -p | git apply
--check` succeeded with no conflicts.
**Step 6.3 — Related fixes already present?**
Record: Superuser filter fix (`6b9d26089f56f`) is present but does not
address `pid=0` bypass. This specific information-leak fix is absent.
---
## Phase 7: Subsystem Context
**Step 7.1 — Subsystem**
Record: `drivers/gpu/drm/amd/amdkfd` — AMD KFD (ROCm/HSA GPU compute).
Criticality: **IMPORTANT** for AMD GPU compute users; config-dependent
(`CONFIG_HSA_AMD`).
**Step 7.2 — Activity**
Record: Actively maintained — multiple SMI event commits in 2024-2026 in
this file.
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: Multi-user systems with AMD GPUs and KFD/ROCm enabled; any user
in the render group with `/dev/kfd` access.
**Step 8.2 — Trigger conditions**
Record: Another user's KFD process starts/ends or triggers a VM fault
while a malicious/co-resident user has an SMI event fd subscribed.
Common on shared GPU servers, HPC clusters, and multi-tenant
workstations.
**Step 8.3 — Failure mode severity**
Record: **Cross-process information disclosure** — other processes' PIDs
and command names exposed. Severity: **HIGH** (security/privacy; not
crash/corruption, but violates process isolation). Unprivileged render-
group users can trigger it.
**Step 8.4 — Risk vs benefit**
Record:
- **Benefit:** HIGH — closes a real cross-process monitoring hole on
shared GPU systems
- **Risk:** VERY LOW — 8-line change, uses existing fields and filtering
logic, maintainer-acked
- **Ratio:** Strongly favors backport
---
## Phase 9: Final Synthesis
**Step 9.1 — Evidence summary**
**FOR:**
- Real security/privacy bug (cross-process PID/comm leak)
- Small, surgical, maintainer-acked fix
- Applies cleanly to 6.18.44
- Buggy code confirmed present in this tree
- Unprivileged users in render group can exploit
- Aligns with stable policy for security fixes
**AGAINST:**
- Affects only AMD KFD users (not universal)
- No external bug report or syzbot confirmation
- Container PID correctness is a separate follow-up on master (not a
reason to reject this fix)
**UNRESOLVED:**
- Full lore thread discussion (Anubis blocked fetch)
- No explicit stable-list nomination found
**Step 9.2 — Stable rules checklist**
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — logic clear; Acked-by
maintainer |
| 2. Fixes real bug affecting users? | **PASS** — cross-process info
leak on shared GPUs |
| 3. Important issue? | **PASS** — security information disclosure
(HIGH) |
| 4. Small and contained? | **PASS** — 8 lines, 1 file |
| 5. No new features/APIs? | **PASS** — corrects existing event delivery
only |
| 6. Can apply to this tree? | **PASS** — clean apply verified |
**Step 9.3 — Exception categories**
Record: None (not a quirk/DT/build/doc fix) — qualifies on security bug-
fix merits.
**Step 9.4 — Decision rationale**
This commit fixes a genuine cross-process information leak in AMD KFD
SMI events. The buggy code is present in Linux 6.18.44, the fix is
minimal and obviously correct, and it restores the intended per-process
isolation that `kfd_smi_ev_enabled()` was designed to provide. Shared-
GPU and multi-user ROCm deployments on stable kernels should receive
this security fix.
---
## Verification
- [Phase 1] Parsed commit message and tags from user query and `git show
3b347d011773d`
- [Phase 2] Read current `kfd_smi_events.c` lines 163-366; confirmed
diff changes only VMFAULT and PROCESS paths
- [Phase 3] `git blame` on filter and event functions; identified
introducing commits `4172b556fd5bd`, `b8f67b9ddf4f8`, `6b9d26089f56f`,
`163a5a58437062`
- [Phase 3] `git merge-base --is-ancestor`: PROCESS events and superuser
fix present; info-leak fix absent
- [Phase 3] `git show 3b347d011773d -p | git apply --check`: clean apply
- [Phase 4] `b4 dig -c 3b347d011773d`: found lore URL; v1 only
- [Phase 4] `b4 dig -w`: amd-gfx list CC'd
- [Phase 4] `b4 dig -a`: single v1 revision
- [Phase 4] WebFetch lore URL: blocked by Anubis (no thread content)
- [Phase 5] `grep` callers of `kfd_smi_event_update_vmfault` and
`kfd_smi_event_process`
- [Phase 5] Read `kfd_smi_event_open()`: `client->pid = current->tgid`,
`client->suser = capable(CAP_SYS_ADMIN)`
- [Phase 5] Verified `task_info->tgid` populated in `amdgpu_vm.c:2543`
- [Phase 6] `git describe HEAD`: v6.18.44
- [Phase 6] Confirmed buggy `kfd_smi_event_add(0, ...)` at lines 257 and
359 in current tree
- [Phase 6] `git log stable/linux-6.18.y..master -- kfd_smi_events.c`:
fix on master, not in stable
- [Phase 8] Assessed severity as cross-process information disclosure
via render-group `/dev/kfd` access
**YES**
drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c b/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
index d2bc169e84b0b..fe4b936923854 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
@@ -254,8 +254,10 @@ void kfd_smi_event_update_vmfault(struct kfd_node *dev, uint16_t pasid)
if (task_info) {
/* Report VM faults from user applications, not retry from kernel */
if (task_info->task.pid)
- kfd_smi_event_add(0, dev, KFD_SMI_EVENT_VMFAULT, KFD_EVENT_FMT_VMFAULT(
- task_info->task.pid, task_info->task.comm));
+ kfd_smi_event_add(task_info->tgid, dev,
+ KFD_SMI_EVENT_VMFAULT,
+ KFD_EVENT_FMT_VMFAULT(task_info->task.pid,
+ task_info->task.comm));
amdgpu_vm_put_task_info(task_info);
}
}
@@ -356,7 +358,7 @@ void kfd_smi_event_process(struct kfd_process_device *pdd, bool start)
task_info = amdgpu_vm_get_task_info_vm(avm);
if (task_info) {
- kfd_smi_event_add(0, pdd->dev,
+ kfd_smi_event_add(task_info->tgid, pdd->dev,
start ? KFD_SMI_EVENT_PROCESS_START :
KFD_SMI_EVENT_PROCESS_END,
KFD_EVENT_FMT_PROCESS(task_info->task.pid,
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu: add first record offset check
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (55 preceding siblings ...)
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdkfd: fix SMI event cross-process information leak Sasha Levin
@ 2026-08-31 13:29 ` Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.6] drm/amd/display: Fix DPMS using partially updated pipe context Sasha Levin
` (9 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:29 UTC (permalink / raw)
To: patches, stable
Cc: Gangliang Xie, Tao Zhou, Alex Deucher, Sasha Levin,
christian.koenig, airlied, simona, amd-gfx, dri-devel,
linux-kernel
From: Gangliang Xie <ganglxie@amd.com>
[ Upstream commit 4073cdf6713b7c170e35bf055354580cc52085d6 ]
check the upper and lower limits of first record offset
Signed-off-by: Gangliang Xie <ganglxie@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amdgpu: add first record offset check`
**Local tree:** `v6.18.44` (`stable/linux-6.18.y`, `VERSION = 6`,
`PATCHLEVEL = 18`, `SUBLEVEL = 44`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/amdgpu]` `[add]` — validate `first_rec_offset` bounds
in RAS EEPROM header parsing during init.
### Step 1.2: Tags
**Record:**
- `Signed-off-by: Gangliang Xie <ganglxie@amd.com>` — author
- `Reviewed-by: Tao Zhou <tao.zhou1@amd.com>` — AMD reviewer
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` — amdgpu
maintainer
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable`, or `Tested-by:`
tags
- Notable: maintainer sign-off and internal AMD review, but no external
bug report
### Step 1.3: Body analysis
**Record:**
- **Bug described:** `first_rec_offset` from the RAS EEPROM header is
not bounds-checked.
- **Symptom/failure mode:** Not spelled out in the message; code
analysis shows invalid `first_rec_offset` yields an invalid `ras_fri`
(first record index), breaking circular-buffer read logic.
- **Version info:** None in message.
- **Root cause (from code):** `RAS_OFFSET_TO_INDEX()` does unsigned
arithmetic; a `first_rec_offset` below `ras_record_offset` wraps to a
huge index, and values above the record region produce `ras_fri >=
ras_max_record_count`.
### Step 1.4: Hidden bug fix detection
**Record:** Yes — despite the neutral “add check” wording, this is a
defensive bug fix completing RAS header validation started by
`5df0d6addb7e9` (“Add basic validation for RAS header”). Invalid
`ras_fri` can cause out-of-bounds EEPROM reads and bad arithmetic in
`amdgpu_ras_eeprom_read()`.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c` (+8 lines)
- **Function:** `amdgpu_ras_eeprom_init()`
- **Scope:** Single-file, surgical validation on an error path
### Step 2.2: Code flow change
**Record:**
- **Before:** After validating `ras_num_recs`, code unconditionally sets
`control->ras_fri = RAS_OFFSET_TO_INDEX(control,
hdr->first_rec_offset)` and returns success.
- **After:** Rejects headers where `first_rec_offset <
ras_record_offset` or `ras_fri >= ras_max_record_count`, logging an
error and returning `-EINVAL`.
- **Path affected:** GPU probe / RAS EEPROM init (error-handling path
for corrupt EEPROM data).
### Step 2.3: Bug mechanism
**Record:** **Memory safety / logic correctness fix**
- `RAS_OFFSET_TO_INDEX` is `((offset - ras_record_offset) / 24)` using
unsigned math.
- Corrupt `first_rec_offset` below `ras_record_offset` (e.g. `0` when
minimum is `20`) wraps to a huge `ras_fri`.
- `ras_fri` drives circular-buffer indexing in
`amdgpu_ras_eeprom_read()`; with invalid `ras_fri`, `g0`/`g1`
arithmetic can produce read counts far larger than the allocated
buffer (e.g. buffer sized for `ras_num_recs` but
`__amdgpu_ras_eeprom_read()` asked to read underflow-derived huge
counts).
- No validation existed for this field; only `ras_num_recs` was checked
(since `5df0d6addb7e9`).
### Step 2.4: Fix quality
**Record:**
- **Quality:** Obviously correct — mirrors existing header validation
style.
- **Minimal:** 8 lines, no API changes.
- **Regression risk:** Very low; only rejects already-invalid headers.
On failure, `amdgpu_ras_init_badpage_info()` already sets
`is_eeprom_valid = false` and skips EEPROM loading.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- `ras_fri` assignment and `ras_num_recs` check introduced together in
`5df0d6addb7e9` (Lijo Lazar, 2025-03-26) — “Add basic validation for
RAS header”.
- That commit validated record count but not `first_rec_offset`.
- Bug present since `5df0d6addb7e9` in this tree; `ras_fri` usage is
much older.
### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag. Natural follow-up to `5df0d6addb7e9`,
which is already in this tree.
### Step 3.3: Related file history
**Record:**
- `5df0d6addb7e9` — basic RAS header validation (in tree)
- `660261df61fb7` — checksum validation on unload (in tree)
- `89232d0db3ca9` — return on checksum error (in tree)
- `4073cdf6713b7` — this fix (on `master`, **not** in `6.18.y`)
- `c83e4a45ff9a0` — `tbl_size` validation (on `master`, not in tree;
separate issue)
- Standalone one-commit fix, not part of a multi-patch series.
### Step 3.4: Author context
**Record:** Gangliang Xie is an active amdgpu contributor (RAS EEPROM
work: checksum checks, bad-page loading, threshold handling). Alex
Deucher is amdgpu maintainer.
### Step 3.5: Dependencies
**Record:**
- Depends on `amdgpu_ras_eeprom_init()` and fields from `5df0d6addb7e9`
— all present in `6.18.y`.
- `git apply --check` on `4073cdf6713b7` succeeds cleanly against
current tree.
- Applies standalone.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:** `b4 dig -c 4073cdf6713b7` returned no match. Lore search
blocked (Anubis bot protection). Commit is on `master` as
`4073cdf6713b7` (committed 2026-05-19).
### Step 4.2: Reviewers
**Record:** `b4 dig -w` also failed. From commit metadata: Reviewed-by
Tao Zhou (AMD), Signed-off-by Alex Deucher (maintainer).
### Step 4.3: Bug reports
**Record:** No `Reported-by:` or `Link:` tags. No syzbot/fuzzer report.
Bug inferred from code path and prior validation commit rationale
(“corrupted EEPROM header”).
### Step 4.4: Related patches
**Record:** Related mainline follow-up `c83e4a45ff9a0` (tbl_size guard)
is separate; not required for this patch.
### Step 4.5: Stable list discussion
**Record:** Could not search lore stable list (bot protection). No
evidence found that this was explicitly rejected for stable.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `amdgpu_ras_eeprom_init()` (modified); downstream consumers
of `ras_fri`: `amdgpu_ras_eeprom_read()`, `__amdgpu_ras_eeprom_read()`,
EEPROM write paths.
### Step 5.2: Callers
**Record:**
- `amdgpu_ras_eeprom_init()` ← `amdgpu_ras_init_badpage_info()` ←
`amdgpu_ras_recovery_init()` / `amdgpu_xgmi.c`
- Called during GPU probe/RAS init on AMD hardware with RAS EEPROM
support (not VF, not SR-IOV guest).
### Step 5.3: Callees
**Record:** `amdgpu_eeprom_read()`, `__decode_table_header_from_buf()`,
`RAS_OFFSET_TO_INDEX` macro.
### Step 5.4: Reachability
**Record:**
- Triggered at boot/probe when reading physical GPU EEPROM over I2C.
- Not directly userspace-triggerable, but affects every boot on affected
AMD GPUs with corrupted EEPROM.
- Corruption can arise from hardware wear, firmware bugs, or prior bad
writes.
### Step 5.5: Similar patterns
**Record:** Same validation pattern as `ras_num_recs >
ras_max_record_count` check added in `5df0d6addb7e9`. Part of a series
of RAS EEPROM hardening commits already present in `6.18.y`.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE
### Step 6.1: Buggy code in tree?
**Record:** **Yes.** At line 1441 in `amdgpu_ras_eeprom.c`, `ras_fri` is
set without bounds checking. Fix commit `4073cdf6713b7` is not an
ancestor of HEAD (`git merge-base --is-ancestor` exit 1). Gap introduced
when `5df0d6addb7e9` landed in this tree (2025-03).
### Step 6.2: Backport complications
**Record:** Clean apply confirmed (`git apply --check` passes). No
conflicts expected.
### Step 6.3: Related fixes already present?
**Record:** Prior validation (`5df0d6addb7e9`, `660261df61fb7`,
`89232d0db3ca9`) is in tree, but not this `first_rec_offset` check. No
duplicate fix found (`git log --grep="first record offset" HEAD` empty).
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/amd/amdgpu` — **IMPORTANT** (AMD GPU
driver, RAS reliability/memory-error tracking). Not core-kernel-wide,
but affects production AMD GPU deployments (datacenter, workstation).
### Step 7.2: Subsystem activity
**Record:** Actively maintained; multiple RAS EEPROM validation commits
in 2025–2026 in this file.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** AMD GPUs with RAS EEPROM support and corrupted/invalid
`first_rec_offset` in EEPROM header. Config/driver-specific, not
universal.
### Step 8.2: Trigger conditions
**Record:** Corrupt EEPROM header on boot/RAS init. Uncommon but
realistic (EEPROM corruption is exactly why `5df0d6addb7e9` was added).
Not userspace-exploitable in the usual sense.
### Step 8.3: Failure mode severity
**Record:** Invalid `ras_fri` breaks circular-buffer arithmetic in
`amdgpu_ras_eeprom_read()`:
- Unsigned underflow when `ras_fri > ras_max_record_count` → `g0 =
ras_max_record_count - ras_fri` wraps to a huge value
- `__amdgpu_ras_eeprom_read()` may attempt reads far exceeding the
`kcalloc(num, ...)` buffer
- **Severity: HIGH** — potential buffer overrun, I2C read errors, driver
malfunction; graceful `-EINVAL` path exists with the fix
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for affected hardware — prevents invalid EEPROM
parsing and dangerous downstream reads
- **Risk:** VERY LOW — 8-line bounds check, same style as existing
validation
- **Ratio:** Strongly favors backport
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Fixes real gap in RAS EEPROM header validation left by `5df0d6addb7e9`
- Invalid `ras_fri` can cause dangerous read arithmetic / buffer sizing
mismatch
- Small, surgical, maintainer-reviewed
- Applies cleanly to `6.18.y`
- Prerequisites already in tree
- Consistent with other RAS EEPROM hardening already backported to this
tree
**AGAINST backport:**
- Commit message lacks explicit crash/reproducer description
- Requires corrupted EEPROM (hardware-specific edge case)
- No syzbot or user bug report
**Unresolved:** Lore discussion and stable-list nomination could not be
verified (b4/lore unavailable).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — straightforward bounds
check; AMD-reviewed, maintainer-acked (no runtime test cited).
2. Fixes a real bug? **PASS** — unvalidated `first_rec_offset` yields
invalid `ras_fri`.
3. Important issue? **PASS** — HIGH severity: potential buffer overrun /
driver malfunction on corrupt EEPROM.
4. Small and contained? **PASS** — 8 lines, one function.
5. No new features/APIs? **PASS** — validation only.
6. Can apply to local tree? **PASS** — clean apply, prerequisites
present.
### Step 9.3: Exception categories
**Record:** None (not device ID, quirk, DT, build, or docs). Standard
bug fix.
### Step 9.4: Decision rationale
This completes RAS EEPROM header validation already started in this
`6.18.y` tree. Without it, a corrupt `first_rec_offset` can slip past
existing checks and produce an invalid `ras_fri`, leading to broken
circular-buffer read logic and potential memory safety issues during
bad-page loading. The fix is minimal, obviously correct, low-risk, and
directly addresses a real failure mode on AMD RAS-capable hardware.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user-provided diff
and `git show 4073cdf6713b7`
- **[Phase 2]** Read `amdgpu_ras_eeprom_init()` at lines 1373–1444;
analyzed `RAS_OFFSET_TO_INDEX` macro (lines 135–136) and
`amdgpu_ras_eeprom_read()` (lines 962–1028)
- **[Phase 2]** Traced buffer overflow scenario: invalid `ras_fri` → bad
`g0`/`g1` in `amdgpu_ras_eeprom_read()`
- **[Phase 3]** `git blame -L 1434,1444`: `5df0d6addb7e9` introduced
unchecked `ras_fri` assignment
- **[Phase 3]** `git show 5df0d6addb7e9`: prior validation commit
rationale (corrupt EEPROM → huge allocation)
- **[Phase 3]** `git merge-base --is-ancestor 4073cdf6713b7 HEAD` → exit
1 (fix not in tree)
- **[Phase 3]** `git merge-base --is-ancestor 5df0d6addb7e9 HEAD` → in
tree; `660261df61fb7` → in tree
- **[Phase 3]** `git apply --check` on `4073cdf6713b7` → applies cleanly
- **[Phase 4]** `b4 dig -c 4073cdf6713b7` → no result (exit 1)
- **[Phase 4]** Lore.kernel.org fetch → blocked by Anubis
- **[Phase 5]** `grep amdgpu_ras_eeprom_init`: callers in
`amdgpu_ras.c:3590`, `amdgpu_xgmi.c:1674`
- **[Phase 5]** `amdgpu_ras_init_badpage_info()` sets `is_eeprom_valid =
!ret` on init failure (line 3591)
- **[Phase 6]** `git describe HEAD` → `v6.18.44`; tree is
`stable/linux-6.18.y`
- **[Phase 6]** Buggy code confirmed at line 1441 without bounds check
- **[Phase 6]** `git log --grep="first record offset" HEAD` → empty (fix
absent)
- **[Phase 8]** Constants verified: `RAS_TABLE_HEADER_SIZE=20`,
`RAS_RECORD_START=20`, `RAS_TABLE_RECORD_SIZE=24`,
`RAS_MAX_RECORD_COUNT≈10922`
---
**YES**The background check on `stable/linux-6.18.y` confirmed:
- **Related validation is present:** `5df0d6addb7e9` ("Add basic
validation for RAS header") is in the tree.
- **This fix is not:** no commit matching "first record offset" was
found on the stable branch.
That matches the earlier analysis: the gap remains in `6.18.y`, the
patch applies cleanly, and the backport recommendation stands at
**YES**.
drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
index dafa46a9656ca..652aa085b6263 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
@@ -1439,6 +1439,14 @@ int amdgpu_ras_eeprom_init(struct amdgpu_ras_eeprom_control *control)
}
control->ras_fri = RAS_OFFSET_TO_INDEX(control, hdr->first_rec_offset);
+ if (hdr->first_rec_offset < control->ras_record_offset ||
+ control->ras_fri >= control->ras_max_record_count) {
+ dev_err(adev->dev,
+ "RAS header invalid, ras_fri: %u, first_rec_offset:0x%x",
+ control->ras_fri, hdr->first_rec_offset);
+ return -EINVAL;
+ }
+
control->ras_num_mca_recs = 0;
control->ras_num_pa_recs = 0;
return 0;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/amd/display: Fix DPMS using partially updated pipe context
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (56 preceding siblings ...)
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu: add first record offset check Sasha Levin
@ 2026-08-31 13:29 ` Sasha Levin
2026-08-31 17:15 ` sashiko-bot
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Find link encoder for flexible DIG mapping cases Sasha Levin
` (8 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:29 UTC (permalink / raw)
To: patches, stable
Cc: Dominik Kaszewski, Wenjing Liu, Chenyu Chen, Alex Deucher,
Sasha Levin, harry.wentland, sunpeng.li, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Dominik Kaszewski <dominik.kaszewski@amd.com>
[ Upstream commit 6fd45b5d8955bbc362ac3dfe181529f7b1cfd224 ]
[Why & How]
DPMS functions should not use partially updated pipe context passed
as argument of commit_planes_do_stream_update, and instead use the
one in current_state, which is guaranteed to be the most recently
programmed HW config.
Reviewed-by: Wenjing Liu <wenjing.liu@amd.com>
Signed-off-by: Dominik Kaszewski <dominik.kaszewski@amd.com>
Signed-off-by: Chenyu Chen <chen-yu.chen@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amd/display: Fix DPMS using partially
updated pipe context`
**Local tree:** `v6.18.43` (Makefile: 6.18.43, `DC_VER` "3.2.351")
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject Line
**Record:** `[drm/amd/display]` `[Fix]` — DPMS operations must not use a
partially updated `pipe_ctx` from the in-flight commit `context`; they
should use the pipe context from `current_state` (last programmed HW
config).
### Step 1.2: Tags
**Record:**
| Tag | Value |
|-----|-------|
| Reviewed-by | Wenjing Liu \<wenjing.liu@amd.com\> |
| Signed-off-by | Dominik Kaszewski, Chenyu Chen, Alex Deucher |
| Fixes: | **Not present** (expected for candidate review) |
| Reported-by: | **Not present** |
| Cc: stable | **Not present** (not a negative signal) |
| Link: | **Not present** |
Notable: AMD display reviewer sign-off; no syzbot/user bug report.
### Step 1.3: Body Analysis
**Record:**
- **Bug:** `commit_planes_do_stream_update()` receives `context`
(new/partial state). DPMS handlers were passed `pipe_ctx` from that
partial state instead of the HW-backed state.
- **Symptom:** DPMS off/on and related link blanking can target wrong or
unprogrammed hardware resources during commits that also update stream
state.
- **Root cause:** DPMS manipulates live hardware (blank stream, disable
audio, link training) but was using a pipe context that may not yet
reflect programmed HW — the same class of problem the adjacent test-
pattern comment already documents.
- **Version info:** Patch submitted April 15, 2026 as part of "DC
Patches Apr 20 2026" (patch 17/19).
### Step 1.4: Hidden Bug Fix?
**Record:** No — explicitly labeled a fix. Correctness bug in display
power-management path, not cosmetic cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/display/dc/core/dc.c` (+14 / −7)
- **Function:** `commit_planes_do_stream_update()`
- **Scope:** Single-file, surgical fix in one function
### Step 2.2: Code Flow Change
**Record:**
| Hunk | Before | After |
|------|--------|-------|
| DPMS off | `set_dpms_off(pipe_ctx)` from `context` |
`set_dpms_off(dpms_pipe_ctx)` from `dc->current_state` |
| Audio disable | `az_disable` via `context` pipe_ctx | via
`current_state` pipe_ctx (with local `audio` pointer) |
| DPMS on | `set_dpms_on(dc->current_state, pipe_ctx)` |
`set_dpms_on(dc->current_state, dpms_pipe_ctx)` |
| OCS workaround | `set_dpms_on` + link checks on `context` pipe_ctx |
same operations on `current_state` pipe_ctx |
**Execution path:** Stream update commits where
`stream_update->dpms_off` is set, or the `blank_stream_on_ocs_change` DP
workaround fires — during `commit_planes_for_stream()` before front-end
programming completes.
### Step 2.3: Bug Mechanism
**Record:** **Logic / correctness fix** — wrong data source for hardware
operations.
`link_set_dpms_off()` and `link_set_dpms_on()` dereference
`pipe_ctx->stream_res` (stream encoders, timing generator),
`pipe_ctx->link_res`, and `pipe_ctx->link_config` to blank streams,
disable audio, and manage DP links. When `context` is only partially
built, those fields may not match what's actually programmed. The test-
pattern block immediately above already states front-end changes are not
yet applied at this stage.
### Step 2.4: Fix Quality
**Record:**
- **Obviously correct:** Yes — `set_dpms_on()` already takes
`dc->current_state`; only the `pipe_ctx` argument was wrong. Fix
aligns DPMS with that intent.
- **Minimal:** Yes — one new pointer, no API changes.
- **Regression risk:** Very low — uses the same pipe index `j` already
being iterated; reviewed by AMD display engineer.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** Buggy DPMS lines (3693–3714) blame to `5d324e5159d9e`
(shallow tree limits deeper history). Function and buggy pattern are
present in this checkout.
### Step 3.2: Fixes: Tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: Related File History
**Record:** Repo is shallow (~11,547 commits). `dc.c` shows only two
recent commits in this clone. Patch is **17/19** in "DC Patches Apr 20
2026" but this specific change only touches the DPMS block in `dc.c` and
does not depend on other series entries (dcn42 clock gating, power
module, etc.).
### Step 3.4: Author Context
**Record:** Dominik Kaszewski (AMD display). Reviewed by Wenjing Liu
(AMD). Signed off by Alex Deucher (AMD DRM maintainer). Author has other
DC display work in the broader ecosystem.
### Step 3.5: Dependencies
**Record:** **Standalone.** No prerequisite commits required; only
changes which `pipe_ctx` pointer DPMS uses. Applies cleanly against
current `dc.c` at lines 3693–3714.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original Discussion
**Record:** Found at https://lists.freedesktop.org/archives/amd-
gfx/2026-April/142846.html (patch 17/19). No replies on that page; no
explicit stable nomination found.
### Step 4.2: Reviewers
**Record:** Cover letter CC'd AMD display maintainers (Harry Wentland,
Leo Li, Aurabindo Pillai, Roman Li, etc.). Patch has `Reviewed-by:
Wenjing Liu`.
### Step 4.3: Bug Reports
**Record:** No external bug report, syzbot, or KASAN report. Internal
AMD correctness fix.
### Step 4.4: Series Context
**Record:** Part of 19-patch DC drop (Apr 2026). This patch is
independent — other series items (power module, dcn42 changes, double-
free fix) are separate. Patch 5 ("Align HWSS fast commit path with
legacy path") may increase exposure but is not a prerequisite for this
fix's correctness.
### Step 4.5: Stable List
**Record:** lore.kernel.org stable search blocked (bot protection). No
stable discussion found via cover letter or patch page.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key Functions
**Record:** `commit_planes_do_stream_update()` — modified. Calls
`link_set_dpms_off()` / `link_set_dpms_on()` via `dc->link_srv`.
### Step 5.2: Callers
**Record:** `commit_planes_do_stream_update()` called from
`commit_planes_for_stream()` (line 4201), which is invoked from
`update_planes_and_stream_v2()` / v3 commit paths — the standard display
commit pipeline used by `dc_commit_updates_for_stream()`.
### Step 5.3: Callees
**Record:** `set_dpms_off` → `link_set_dpms_off()` (blanks stream,
disables audio, DP link teardown). `set_dpms_on` → `link_set_dpms_on()`
(link enable, infoframes, stream attribute setup). Both require valid
`stream_res` and `link_res` from programmed HW.
### Step 5.4: Reachability
**Record:**
- `link_set_all_streams_dpms_off_for_link()` →
`dc_commit_updates_for_stream()` with `stream_update.dpms_off` (link
hotplug/detection paths)
- DPMS during atomic commits when stream updates include power-state
changes
- `blank_stream_on_ocs_change` workaround for DP output color-space
changes
**Userspace reachable:** Yes — display blank/unblank, suspend/resume,
hotplug, and mode commits on AMDGPU systems with `CONFIG_DRM_AMD_DC`.
### Step 5.5: Similar Patterns
**Record:** Test-pattern handling in the same function (lines 3670–3690)
explicitly documents that only `current_state` can be used for HW
operations at this commit stage. DPMS was inconsistent with that
established pattern.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE (v6.18.43)
### Step 6.1: Buggy Code Present?
**Record:** **YES.** Lines 3693–3714 in
`drivers/gpu/drm/amd/display/dc/core/dc.c` use `pipe_ctx` from `context`
for all DPMS operations. The fix is **not** yet applied in this tree.
### Step 6.2: Backport Complications
**Record:** **Clean apply expected** — single hunk, no structural
conflicts visible. Line numbers differ slightly from lore patch (3898 vs
3693) but code matches.
### Step 6.3: Related Fixes Already Present?
**Record:** No equivalent fix found via grep or log search in this tree.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem & Criticality
**Record:** `drivers/gpu/drm/amd/display` — **IMPORTANT** (AMD GPU
display stack; affects all AMDGPU users with DC enabled, not core
kernel).
### Step 7.2: Activity
**Record:** Actively maintained; recent commit in tree is DMUB aux
validation fix (`1ecde19bfce65`).
---
## PHASE 8: IMPACT AND RISK
### Step 8.1: Who Is Affected
**Record:** AMDGPU users with `CONFIG_DRM_AMD_DC` — laptops/desktops
with AMD GPUs using the modern display core (DCN2+).
### Step 8.2: Trigger Conditions
**Record:** Any commit that includes a `stream_update` with `dpms_off`
(or OCS color-space workaround) while `context` has partially updated
pipe state. Common during screen blank/unblank, link power events, and
combined stream updates.
### Step 8.3: Failure Mode Severity
**Record:**
- Display fails to blank or wake correctly
- Wrong encoder/link programmed → black screen, flicker
- Audio endpoint disable on wrong resource
- Potential NULL/invalid `stream_res` dereference if partial context
lacks populated resources
**Severity: HIGH** (user-visible display failures; possible oops on bad
pointers — not confirmed by report but plausible from code inspection of
`link_set_dpms_off()`).
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** HIGH — fixes real DPMS correctness on a widely used
driver path
- **Risk:** VERY LOW — 7-line logical change, AMD-reviewed, mirrors
existing in-function pattern
- **Ratio:** Strongly favors backport
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence Summary
**FOR backport:**
- Real correctness bug in DPMS HW programming path
- User-visible impact (screen power, suspend/resume, hotplug)
- Small, surgical, AMD-reviewed fix
- Buggy code confirmed present in v6.18.43
- Standalone — no series dependencies
- Consistent with documented constraint in adjacent test-pattern code
**AGAINST backport:**
- No user/syzbot report (internal discovery)
- Part of larger DC patchset (but this hunk is independent)
- AMDGPU-specific, not universal kernel path
**Unresolved:** Exact kernel version that introduced the buggy DPMS-
in-`commit_planes_do_stream_update` pattern (shallow history). Does not
affect the decision for this tree where the bug exists.
### Step 9.2: Stable Rules Checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — logic is clear;
Reviewed-by from AMD display |
| 2. Fixes a real user-affecting bug? | **PASS** — DPMS uses wrong pipe
context during commits |
| 3. Important issue? | **PASS** — display blank/wake failures, possible
crash |
| 4. Small and contained? | **PASS** — 1 file, ~14 lines |
| 5. No new features/APIs? | **PASS** |
| 6. Applies to local tree? | **PASS** — buggy code present, clean apply
expected |
### Step 9.3: Exception Categories
**Record:** None (not a device ID, quirk, DT, build, or docs fix) —
standard bug fix.
### Step 9.4: Decision Rationale
For **v6.18.43**, the buggy DPMS path exists and the fix is a minimal,
obviously correct correction that ensures display power-management
operations use the hardware-backed `current_state` pipe context rather
than a partially built commit context. This prevents incorrect blanking,
wake failures, and potential resource dereference on a common AMDGPU
commit path. The fix is self-contained and low-risk.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user-provided diff
and lore page
- **[Phase 2]** Read diff hunks; verified `link_set_dpms_off/on` use
`pipe_ctx->stream_res` and `link_res` in `link_dpms.c`
- **[Phase 3]** `git describe HEAD` → v6.18.43; `git blame -L 3690,3715`
→ buggy lines present; shallow repo confirmed
- **[Phase 3]** `git log -S "set_dpms_off(pipe_ctx)" -- dc.c` → only
merge commit (limited by shallow history)
- **[Phase 4]** WebFetch lore patch 17/19 at
https://lists.freedesktop.org/archives/amd-gfx/2026-April/142846.html
- **[Phase 4]** WebFetch cover letter 00/19 — series context, no stable
nomination
- **[Phase 4]** lore.kernel.org stable search — blocked by bot
protection (UNVERIFIED for stable-list discussion)
- **[Phase 5]** `grep commit_planes_do_stream_update` — one call site at
line 4201 in `commit_planes_for_stream()`
- **[Phase 5]** Traced `dc_commit_updates_for_stream()` →
`update_planes_and_stream_v2/v3` → `commit_planes_for_stream()`
- **[Phase 5]** Read `link_set_all_streams_dpms_off_for_link()` — calls
`dc_commit_updates_for_stream` with `dpms_off`
- **[Phase 6]** Read `dc.c` lines 3587–3735 — confirmed buggy code
without fix
- **[Phase 6]** `DC_VER` in `dc.h` → "3.2.351"; fix not present
- **[Phase 7]** Subsystem path confirmed: `drivers/gpu/drm/amd/display`
- **[Phase 8]** Analyzed `link_set_dpms_off()` at line 2346 — uses
stream_enc, blank_stream, audio disable on pipe_ctx resources
**YES**
drivers/gpu/drm/amd/display/dc/core/dc.c | 21 ++++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
index 927837249479f..627a9fb4c551e 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
@@ -3690,27 +3690,34 @@ static void commit_planes_do_stream_update(struct dc *dc,
resource_build_test_pattern_params(&context->res_ctx, pipe_ctx);
}
+ // DPMS should not use partially updated pipe context
+ struct pipe_ctx *dpms_pipe_ctx = &dc->current_state->res_ctx.pipe_ctx[j];
+
if (stream_update->dpms_off) {
if (*stream_update->dpms_off) {
- dc->link_srv->set_dpms_off(pipe_ctx);
+ dc->link_srv->set_dpms_off(dpms_pipe_ctx);
/* for dpms, keep acquired resources*/
- if (pipe_ctx->stream_res.audio && !dc->debug.az_endpoint_mute_only)
- pipe_ctx->stream_res.audio->funcs->az_disable(pipe_ctx->stream_res.audio);
+ if (dpms_pipe_ctx->stream_res.audio && !dc->debug.az_endpoint_mute_only) {
+ struct audio *audio = dpms_pipe_ctx->stream_res.audio;
+
+ audio->funcs->az_disable(audio);
+ }
dc->optimized_required = true;
} else {
if (get_seamless_boot_stream_count(context) == 0)
dc->hwss.prepare_bandwidth(dc, dc->current_state);
- dc->link_srv->set_dpms_on(dc->current_state, pipe_ctx);
+ dc->link_srv->set_dpms_on(dc->current_state, dpms_pipe_ctx);
}
- } else if (pipe_ctx->stream->link->wa_flags.blank_stream_on_ocs_change && stream_update->output_color_space
- && !stream->dpms_off && dc_is_dp_signal(pipe_ctx->stream->signal)) {
+ } else if (dpms_pipe_ctx->stream->link->wa_flags.blank_stream_on_ocs_change &&
+ stream_update->output_color_space &&
+ !stream->dpms_off && dc_is_dp_signal(dpms_pipe_ctx->stream->signal)) {
/*
* Workaround for firmware issue in some receivers where they don't pick up
* correct output color space unless DP link is disabled/re-enabled
*/
- dc->link_srv->set_dpms_on(dc->current_state, pipe_ctx);
+ dc->link_srv->set_dpms_on(dc->current_state, dpms_pipe_ctx);
}
if (stream_update->abm_level && pipe_ctx->stream_res.abm) {
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Find link encoder for flexible DIG mapping cases
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (57 preceding siblings ...)
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.6] drm/amd/display: Fix DPMS using partially updated pipe context Sasha Levin
@ 2026-08-31 13:29 ` Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu/pm: fix SmartShift bias sysfs store PM refcount on parse error Sasha Levin
` (7 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:29 UTC (permalink / raw)
To: patches, stable
Cc: Ovidiu Bunea, Wenjing Liu, James Lin, Alex Deucher, Sasha Levin,
harry.wentland, sunpeng.li, christian.koenig, airlied, simona,
amd-gfx, dri-devel, linux-kernel
From: Ovidiu Bunea <ovidiu.bunea@amd.com>
[ Upstream commit 74ef54e656e7006cfc215e960b0cf2720a7a3d48 ]
[why & how]
link->link_enc can only be used to identify the link's link encoder
when the link is not permitted to use flexible link encoder
assignments.
Use the correct function for identifying link encoder and add
function pointer guards before calling them.
Reviewed-by: Wenjing Liu <wenjing.liu@amd.com>
Signed-off-by: Ovidiu Bunea <ovidiu.bunea@amd.com>
Signed-off-by: James Lin <pinglei.lin@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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: `[drm/amd/display]` `[Find]` — Correct link-encoder lookup in
`power_down_encoders()` for flexible DIG mapping.
**Step 1.2 — Tags**
Record:
- Reviewed-by: Wenjing Liu \<wenjing.liu@amd.com\>
- Signed-off-by: Ovidiu Bunea, James Lin, Alex Deucher
- No Fixes:, Reported-by:, Tested-by:, Link:, or Cc: stable tags
**Step 1.3 — Body**
Record:
- Bug: `link->link_enc` is only valid when the link does not use
flexible link-encoder assignment.
- Symptom: Wrong encoder used (or dereferenced) during encoder power-
down.
- Root cause: `power_down_encoders()` used `link->link_enc` instead of
the dynamic lookup API.
- Fix: Use `link_enc_cfg_get_link_enc(link)` and guard function pointers
before calling them.
**Step 1.4 — Hidden bug fix?**
Record: Yes. Although the subject does not say "fix", the body and diff
clearly address incorrect encoder identification and missing NULL guards
— a real correctness/crash bug, not cleanup.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- File: `drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c` (+7
/ -5)
- Function: `power_down_encoders()`
- Scope: Single-file, surgical fix
**Step 2.2 — Code flow**
Record:
- Hunk 1: `link->link_enc` → `link_enc_cfg_get_link_enc(link)` — uses
dynamically assigned encoder for flexible-mapping links.
- Hunk 2: `disable_output` only called when `link_enc` is non-NULL.
- Hunk 3: FEC disable wrapped in checks for `link_enc`,
`fec_set_enable`, and `fec_set_ready`.
**Step 2.3 — Bug mechanism**
Record:
- Category: Logic/correctness + NULL pointer dereference.
- For `is_dig_mapping_flexible` links (USB4/DPIA), `link->link_enc` is
not the assigned encoder; DPIA link construction even has `/* TODO:
Create link encoder */` and never sets `link->link_enc`.
- FEC disable added by commit `5f0c5775d4eeb` calls
`link_enc->funcs->...` without NULL checks on a potentially NULL/wrong
encoder.
**Step 2.4 — Fix quality**
Record: Obviously correct; matches the pattern already used at line 1163
in the same file and throughout the DC subsystem. Minimal regression
risk — for non-flexible links, `link_enc_cfg_get_link_enc()` returns
`link->link_enc`.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record: Lines 1734–1748 introduced/modified by `5f0c5775d4eeb` ("Disable
FEC when powering down encoders", Jan 2026). Earlier
`power_down_encoders()` structure dates to `19eef1d98eeda`. The FEC
addition created the vulnerable path in this tree.
**Step 3.2 — Fixes: tag**
Record: N/A — no Fixes: tag present.
**Step 3.3 — Related file history**
Record: FEC commit `5f0c5775d4eeb` (upstream `8cee62904caf9`) is in this
6.18.y tree and is the direct prerequisite/introducer of the buggy code.
`link_enc_cfg_get_link_enc()` and `is_dig_mapping_flexible`
infrastructure are present.
**Step 3.4 — Author context**
Record: Ovidiu Bunea also authored the FEC power-down commit. Alex
Deucher is AMD DRM maintainer. Patch is standalone within a 17-patch AMD
DC batch series.
**Step 3.5 — Dependencies**
Record: No code dependencies on other patches in the series. Uses
existing `link_enc_cfg_get_link_enc()` from `link_enc_cfg.h`, which is
already included in `dce110_hwseq.c`. Standalone backport.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record: [PATCH 12/17] on amd-gfx, Apr 29 2026 —
https://lists.freedesktop.org/archives/amd-gfx/2026-April/143792.html.
Part of "DC Patches May 4 2026" series
(https://lists.freedesktop.org/archives/amd-gfx/2026-April/143780.html).
No replies or stable nominations found in the thread.
**Step 4.2 — Reviewers**
Record: Reviewed-by Wenjing Liu (AMD display). Signed-off-by Alex
Deucher (maintainer). `b4 dig -c 8cee62904caf9` found no lore match for
the related FEC commit.
**Step 4.3 — Bug report**
Record: No external bug report. Related FEC commit describes "no light
up" when FEC disable targets the wrong DIG encoder — same underlying
class of failure.
**Step 4.4 — Series context**
Record: Patch 12/17 in a 17-patch AMD internal batch (121 files total).
This patch alone touches one function in one file and is independent of
the larger series changes.
**Step 4.5 — Stable list**
Record: lore.kernel.org/stable search blocked by bot protection; no
stable discussion found.
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `power_down_encoders()`, `link_enc_cfg_get_link_enc()`,
`dce110_power_down()`.
**Step 5.2 — Callers**
Record: `power_down_encoders()` ← `power_down_all_hw_blocks()` ← display
mode-commit path (~line 2013) and `dce110_power_down()` (~line 2678).
`dce110_power_down` is the `.power_down` hook for all DCN generations
(dcn10 through dcn401).
**Step 5.3 — Callees**
Record: `link_enc_cfg_get_link_enc()`, `blank_dp_stream()`,
`disable_output()`, `fec_set_enable()`, `fec_set_ready()`.
**Step 5.4 — Reachability**
Record: Triggered on display mode changes, suspend/resume, and DC power-
down — common user-visible paths. Affects systems with USB4/DPIA or
other flexible DIG-mapping links.
**Step 5.5 — Similar patterns**
Record: Same file line 1163, `link_dp_phy.c` lines 149–187, and many
other DC paths already use `link_enc_cfg_get_link_enc()` with NULL
guards. `power_down_encoders()` was an outlier.
---
## Phase 6: Cross-Reference Against Local Tree (6.18.43)
**Step 6.1 — Buggy code present?**
Record: Yes. Current tree at lines 1734–1748 still uses `link->link_enc`
without NULL guards. `is_dig_mapping_flexible`,
`link_enc_cfg_get_link_enc()`, and FEC power-down code are all present.
**Step 6.2 — Backport difficulty**
Record: Clean apply expected. `link_enc_cfg.h` already included; no
structural conflicts.
**Step 6.3 — Related fixes already present?**
Record: FEC power-down commit `5f0c5775d4eeb` is present; this follow-up
fix is not.
---
## Phase 7: Subsystem Context
**Step 7.1 — Subsystem/criticality**
Record: `drivers/gpu/drm/amd/display` — IMPORTANT (AMD GPU display
driver, affects display output on affected hardware).
**Step 7.2 — Activity**
Record: Actively maintained; recent FEC power-down commit in this tree.
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: AMD GPU users with flexible DIG link-encoder mapping (USB4/DPIA
links confirmed; `is_dig_mapping_flexible` set in `construct_dpia()`).
All DCN-based AMD GPUs use `dce110_power_down`.
**Step 8.2 — Trigger conditions**
Record: Display power-down during mode changes, suspend/resume, or DC
teardown when FEC was enabled or a flexible-mapping link needs encoder
operations. Moderately common on affected hardware.
**Step 8.3 — Failure mode**
Record:
- Wrong encoder → FEC not disabled on correct DIG → display fails to
light up (documented in related FEC commit).
- NULL `link_enc` on DPIA links → kernel oops from
`link_enc->funcs->...`.
- Severity: HIGH (display failure or crash).
**Step 8.4 — Risk/benefit**
Record: Benefit HIGH for affected hardware. Risk LOW — 12-line change,
follows established API, backward-compatible for fixed-mapping links.
---
## Phase 9: Final Synthesis
**Evidence FOR backport:**
- Fixes real display bug and potential NULL dereference
- Small, surgical, obviously correct
- Prerequisites (`link_enc_cfg_get_link_enc`, FEC power-down) exist in
6.18.y
- Reviewed by AMD display engineer; signed off by maintainer
- Follow-up to an already-backported FEC fix (`5f0c5775d4eeb`)
- Matches established patterns throughout the same subsystem
**Evidence AGAINST:**
- Only affects flexible DIG-mapping hardware (primarily USB4/DPIA), not
all AMD users
- Part of a large AMD batch series (but this patch is self-contained)
**Stable rules checklist:**
1. Obviously correct and tested? **PASS** (code review by AMD; pattern
used elsewhere; no runtime test tag)
2. Fixes a real bug? **PASS**
3. Important issue? **PASS** (display failure / possible oops)
4. Small and contained? **PASS** (one function, one file)
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS**
**Exception category:** Not applicable (hardware quirk/workaround
category does not apply; this is a driver logic fix).
---
## Problem Summary
Commit `5f0c5775d4eeb` added FEC disable logic to
`power_down_encoders()` using `link->link_enc` directly. For links with
flexible DIG encoder assignment, that field is not the currently
assigned encoder — and for USB4/DPIA links it is never created at all
(`construct_dpia()` has a "TODO: Create link encoder" comment). The
result is either operating on the wrong hardware block (display does not
light up) or dereferencing NULL (kernel oops). This commit corrects the
lookup and adds the guards that other DC code paths already use.
For the 6.18.y tree specifically: the buggy code and all prerequisites
are present, the FEC fix is already backported, and this small follow-up
completes that fix for flexible-mapping cases.
---
## Verification
- [Phase 1] Parsed commit message and tags from user-provided diff and
lore page
- [Phase 2] Read current `power_down_encoders()` at lines 1728–1753 in
`dce110_hwseq.c`
- [Phase 3] `git blame -L 1734,1748`: FEC commit `5f0c5775d4eeb`
introduced vulnerable lines
- [Phase 3] `git show 5f0c5775d4eeb` and `git show 8cee62904caf9`: FEC
commit present in tree
- [Phase 3] `git log --oneline -5 -- dce110_hwseq.c`: confirmed FEC
commit is most recent change to this function
- [Phase 4] Fetched amd-gfx lore pages for patch 12/17 and series cover
letter
- [Phase 4] `b4 dig -c 8cee62904caf9`: no lore match (tool limitation,
not analysis blocker)
- [Phase 5] `grep
power_down_encoders/power_down_all_hw_blocks/dce110_power_down`:
traced call chain
- [Phase 5] `grep link_enc_cfg_get_link_enc`: confirmed widespread use
of correct API in subsystem
- [Phase 5] Read `construct_dpia()` in `link_factory.c` lines 760–827:
DPIA links set `is_dig_mapping_flexible = true`, no `link_enc` created
- [Phase 5] Read `link_enc_cfg_get_link_enc()` in `dc_link_enc_cfg.c`
lines 550–568: flexible vs fixed logic verified
- [Phase 5] Read `dp_set_fec_enable()` in `link_dp_phy.c` lines 180–188:
NULL guard pattern confirmed
- [Phase 6] `git describe HEAD`: v6.18.43-1-gc7f0dac02d232 (6.18.y
stable tree)
- [Phase 6] Confirmed fix not yet applied (line 1734 still uses
`link->link_enc`)
- [Phase 6] Confirmed `link_enc_cfg.h` included at line 49 of
`dce110_hwseq.c`
- [Phase 6] `grep .power_down = dce110_power_down`: all DCN init files
use this path
- [Phase 8] Read FEC commit message: "no light up" failure mode
documented for wrong DIG encoder
**YES****Verdict: YES** — this commit should be backported to the 6.18.y
tree.
It fixes a real bug in `power_down_encoders()` where `link->link_enc` is
used directly instead of `link_enc_cfg_get_link_enc()`. On flexible DIG-
mapping links (notably USB4/DPIA), that can mean the wrong encoder is
targeted or a NULL pointer is dereferenced during power-down — causing
display failures or a kernel oops. The fix is small, self-contained, and
the prerequisite FEC power-down commit (`5f0c5775d4eeb`) is already in
this tree.
.../drm/amd/display/dc/hwss/dce110/dce110_hwseq.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c b/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
index 8f86177de48dc..0841b1d0b7775 100644
--- a/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
+++ b/drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c
@@ -1731,20 +1731,22 @@ static void power_down_encoders(struct dc *dc)
for (i = 0; i < dc->link_count; i++) {
struct dc_link *link = dc->links[i];
- struct link_encoder *link_enc = link->link_enc;
+ struct link_encoder *link_enc = link_enc_cfg_get_link_enc(link);
enum signal_type signal = link->connector_signal;
dc->link_srv->blank_dp_stream(link, false);
if (signal != SIGNAL_TYPE_EDP)
signal = SIGNAL_TYPE_NONE;
- if (link->ep_type == DISPLAY_ENDPOINT_PHY)
+ if (link->ep_type == DISPLAY_ENDPOINT_PHY && link_enc)
link_enc->funcs->disable_output(link_enc, signal);
if (link->fec_state == dc_link_fec_enabled) {
- link_enc->funcs->fec_set_enable(link_enc, false);
- link_enc->funcs->fec_set_ready(link_enc, false);
- link->fec_state = dc_link_fec_not_ready;
+ if (link_enc && link_enc->funcs->fec_set_enable && link_enc->funcs->fec_set_ready) {
+ link_enc->funcs->fec_set_enable(link_enc, false);
+ link_enc->funcs->fec_set_ready(link_enc, false);
+ link->fec_state = dc_link_fec_not_ready;
+ }
}
link->link_status.link_active = false;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu/pm: fix SmartShift bias sysfs store PM refcount on parse error
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (58 preceding siblings ...)
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Find link encoder for flexible DIG mapping cases Sasha Levin
@ 2026-08-31 13:29 ` Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add LG LP129WT232166 panel Sasha Levin
` (6 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:29 UTC (permalink / raw)
To: patches, stable
Cc: Candice Li, Hawking Zhang, Alex Deucher, Sasha Levin,
kenneth.feng, christian.koenig, airlied, simona, amd-gfx,
dri-devel, linux-kernel
From: Candice Li <candice.li@amd.com>
[ Upstream commit a4b0c3f5d2287997876d8f711a40d3c0418458d8 ]
Return the parse error before acquiring PM access.
Signed-off-by: Candice Li <candice.li@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/amdgpu/pm: fix SmartShift bias sysfs
store PM refcount on parse error
**Local tree:** `stable/linux-6.18.y` at **v6.18.44** (`make
kernelversion` = 6.18.44)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject Line
**Record:** `[drm/amdgpu/pm]` `[fix]` — Corrects SmartShift bias sysfs
store handler so PM runtime refcount is not touched on `kstrtoint()`
parse failure.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Candice Li \<candice.li@amd.com\> (author)
- **Reviewed-by:** Hawking Zhang \<Hawking.Zhang@amd.com\> (AMD
reviewer)
- **Signed-off-by:** Alex Deucher \<alexander.deucher@amd.com\>
(drm/amdgpu maintainer)
- No Fixes:, Reported-by:, Tested-by:, Link:, or Cc: stable tags
- Notable: maintainer-reviewed AMD driver fix; no syzbot/fuzzer report
### Step 1.3: Body Analysis
**Record:**
- **Bug:** On invalid sysfs input, `amdgpu_set_smartshift_bias()` calls
`amdgpu_pm_put_access()` without a matching `amdgpu_pm_get_access()`.
- **Symptom:** Runtime PM usage-count underflow; kernel emits `Runtime
PM usage count underflow!` via `dev_warn()`.
- **Root cause (author):** Parse error should be returned before
acquiring PM access.
- **Version info:** None in message; bug introduced in this tree by
commit `55aa33c3fe3876` (Feb 2025 refactor).
### Step 1.4: Hidden Bug Fix?
**Record:** No — this is an explicit refcount/PM pairing bug fix, not
disguised cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Change Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/pm/amdgpu_pm.c` (+3 / −5)
- **Function:** `amdgpu_set_smartshift_bias()` only
- **Scope:** Single-file, surgical fix in one sysfs store handler
### Step 2.2: Code Flow Change
**Before (buggy code in v6.18.44):**
```1865:1886:drivers/gpu/drm/amd/pm/amdgpu_pm.c
r = kstrtoint(buf, 10, &bias);
if (r)
goto out;
r = amdgpu_pm_get_access(adev);
if (r < 0)
return r;
// ... clamp bias, set amdgpu_smartshift_bias ...
out:
amdgpu_pm_put_access(adev);
return r;
```
**After (fixed):**
- Parse error → `return r` immediately (no PM access)
- Success path → `get_access` → work → `put_access` → `return count`
**Record:**
- **Hunk 1:** `kstrtoint` failure: `goto out` + spurious `put_access` →
early `return r`
- **Hunk 2:** Success path: remove `out:` label; always `return count`
after balanced get/put
- **Affected path:** Sysfs store error path on invalid input; normal
path unchanged
### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Reference counting / resource management bug
- **Mechanism:** Commit `55aa33c3fe3876` moved `kstrtoint()` before
`amdgpu_pm_get_access()` but kept the `out:` label that
unconditionally calls `amdgpu_pm_put_access()`. On parse failure,
`pm_runtime_put_autosuspend()` runs without a prior
`pm_runtime_resume_and_get()`, triggering `rpm_drop_usage_count()`
underflow handling:
```1079:1095:drivers/base/power/runtime.c
static int rpm_drop_usage_count(struct device *dev)
{
int ret;
ret = atomic_sub_return(1, &dev->power.usage_count);
if (ret >= 0)
return ret;
// ...
atomic_inc(&dev->power.usage_count);
dev_warn(dev, "Runtime PM usage count underflow!\n");
return -EINVAL;
}
```
### Step 2.4: Fix Quality
**Record:**
- Obviously correct: matches the pattern used by other sysfs stores in
the same file (e.g. `amdgpu_set_pp_force_performance_level()` at lines
388–408)
- Minimal, no unrelated changes
- Regression risk: very low; only reorders error handling on the parse-
failure path
- No API or behavior change on the success path
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:**
- `amdgpu_set_smartshift_bias()` introduced in `30d95a37f46d1`
(2021-05-30, v5.13 era)
- Original code called `pm_runtime_get_sync()` **before** `kstrtoint()`,
so `goto out` + `put` was correct
- Bug introduced in `55aa33c3fe3876` (2025-02-04, Lijo Lazar) — "Add
APIs for device access checks"
- Blame confirms lines 1865–1867 (`kstrtoint` + `goto out`) from
original commit; lines 1869–1871, 1884 (`get_access`/`put_access`)
from refactor commit
### Step 3.2: Fixes: Tag
**Record:** N/A — no Fixes: tag present.
### Step 3.3: Related File History
**Record:**
- `55aa33c3fe3876` — large PM access API refactor (616-line change in
this file)
- `494c1432542b3` — earlier SmartShift consistency work
- Fix is standalone; not part of a required multi-commit dependency for
this function
- Patch submitted as **[PATCH 2/8]** in a series, but this hunk is self-
contained
### Step 3.4: Author Context
**Record:**
- Candice Li: AMD engineer, regular amdgpu contributor
- Lijo Lazar: authored the refactor that introduced the bug
- Alex Deucher (maintainer) signed off on the fix
### Step 3.5: Dependencies
**Record:** No prerequisites. Fix applies cleanly to current v6.18.44
code; `amdgpu_pm_get_access()`/`amdgpu_pm_put_access()` already exist in
this tree.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original Discussion
**Record:**
- `b4 dig -c a4b0c3f5d2287`: **no match** (patch on freedesktop.org amd-
gfx, not lore.kernel.org)
- Fetched: https://lists.freedesktop.org/archives/amd-
gfx/2026-May/145516.html
- Part of 8-patch series by Candice Li (2026-05-28)
- No explicit stable nomination found in thread
- No NAKs observed in fetched content
### Step 4.2: Reviewers
**Record:** CC'd Hawking Zhang, Tao Zhou, Stanley Yang, Thomas Chai;
Reviewed-by Hawking Zhang; Signed-off-by Alex Deucher
### Step 4.3: Bug Report
**Record:** No external bug report, syzbot link, or user Reported-by.
Bug identified by code inspection during related PM cleanup work.
### Step 4.4: Series Context
**Record:** Patch 2/8 in series covering OD index validation, this
refcount fix, RAS EEPROM validation, etc. This fix is independent of
patches 1 and 3–8.
### Step 4.5: Stable List History
**Record:** lore.kernel.org/stable search blocked (bot protection). No
stable-list discussion found via other sources.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key Functions
**Record:** `amdgpu_set_smartshift_bias()`, `amdgpu_pm_get_access()`,
`amdgpu_pm_put_access()`
### Step 5.2: Callers
**Record:** `amdgpu_set_smartshift_bias` is registered as the `.store`
callback for `smartshift_bias` via
`AMDGPU_DEVICE_ATTR_RW(smartshift_bias, ...)` at line 2544. Invoked when
root (or privileged user) writes to
`/sys/class/drm/card*/device/smartshift_bias`.
### Step 5.3: Callees
**Record:**
- `kstrtoint()` — input parsing
- `amdgpu_pm_get_access()` → `amdgpu_pm_dev_state_check()` +
`pm_runtime_resume_and_get()`
- `amdgpu_pm_put_access()` → `pm_runtime_mark_last_busy()` +
`pm_runtime_put_autosuspend()`
### Step 5.4: Reachability
**Record:**
- Reachable from userspace via sysfs write (requires root/privileged
access)
- Only exposed on SmartShift-capable hardware (`ss_bias_attr_update()`
gates visibility)
- Trigger: writing non-integer value, e.g. `echo abc >
.../smartshift_bias`
### Step 5.5: Similar Patterns
**Record:** `amdgpu_set_smartshift_bias` is the **only** sysfs store in
this file that parses input (`kstrtoint`) before `get_access` while
retaining a `goto out` that unconditionally calls `put_access`. Other
`goto out` usages (gpu metrics, temp metrics, fan control) all occur
**after** successful `get_access`.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE
### Step 6.1: Buggy Code Present?
**Record:** **YES.** Buggy code confirmed at lines 1865–1886 in
v6.18.44. Introduced by `55aa33c3fe3876`, present since v6.18-rc1.
### Step 6.2: Backport Complications
**Record:** Clean apply expected. Current tree matches the diff base
exactly. No conflicting changes in this function since the refactor.
### Step 6.3: Fix Already Present?
**Record:** **NO.** Fix commit `a4b0c3f5d2287` exists in the repo object
database but is **not** an ancestor of HEAD (v6.18.44).
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem Criticality
**Record:** `drivers/gpu/drm/amd/pm` — **IMPORTANT** (AMD GPU power
management; affects laptop SmartShift systems)
### Step 7.2: Subsystem Activity
**Record:** Actively maintained; recent stable commits in this file
include torn gpu metrics reads, scpm read-only attrs, sysfs cleanup
fixes.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who Is Affected
**Record:** AMD SmartShift 2.0 laptop users (APU + dGPU power sharing)
who write to `smartshift_bias` sysfs. Narrow hardware scope, but real
production systems.
### Step 8.2: Trigger Conditions
**Record:**
- Invalid integer written to `smartshift_bias` sysfs
- Requires root/privileged sysfs write access
- Unlikely in normal use; plausible via scripting error or manual
experimentation
- Not security-relevant (privileged access required)
### Step 8.3: Failure Mode Severity
**Record:**
- **Failure:** Runtime PM usage-count underflow warning;
`pm_runtime_mark_last_busy()` called spuriously
- **Severity:** **MEDIUM** — no crash, panic, or data corruption; kernel
catches underflow and restores counter, but PM accounting is briefly
wrong and a `dev_warn` is emitted. Repeated triggers could affect
suspend/resume behavior.
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** MEDIUM — fixes real refcount bug on an error path in
production driver code present since 6.18.0
- **Risk:** VERY LOW — 3-line logic change, maintainer-reviewed, matches
established patterns in the same file
- **Ratio:** Benefit outweighs risk
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence Summary
**FOR backport:**
- Real refcount bug introduced by `55aa33c3fe3876` refactor, present in
v6.18.44
- Obviously correct, minimal fix (3 insertions, 5 deletions)
- Maintainer-reviewed and signed off by Alex Deucher
- Matches error-handling pattern used elsewhere in `amdgpu_pm.c`
- Reference counting bugs in PM paths are standard stable material
**AGAINST backport:**
- Only triggered by invalid sysfs input (root-only)
- Limited to SmartShift-capable AMD hardware
- Failure mode is WARN + counter correction, not crash/corruption
- No user reports or fuzzer findings
**Unresolved:** No stable-list nomination found; no user-reported
instances.
### Step 9.2: Stable Rules Checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — logic is clear;
Reviewed-by from AMD; no Tested-by |
| 2. Fixes a real bug affecting users? | **PASS** — refcount imbalance
on parse-error path |
| 3. Important issue? | **PASS** (borderline) — runtime PM underflow;
MEDIUM severity |
| 4. Small and contained? | **PASS** — 8 lines net, one function |
| 5. No new features/APIs? | **PASS** |
| 6. Can apply to local tree? | **PASS** — buggy code present; clean
apply |
### Step 9.3: Exception Categories
**Record:** None applicable (not device ID, quirk, DT, build, or docs
fix).
### Step 9.4: Decision Rationale
This is a clear bug introduced in v6.18 by the PM access API refactor
(`55aa33c3fe3876`). The original SmartShift bias handler correctly
acquired runtime PM before parsing; the refactor inverted that order but
left the unconditional `out:` cleanup, breaking get/put pairing. The fix
restores correct refcount semantics with zero functional change on the
success path.
While the trigger is narrow (invalid sysfs write on SmartShift hardware)
and the failure mode is a caught underflow warning rather than a crash,
reference-count bugs in GPU runtime PM are appropriate for stable
backport: the fix is trivial, obviously correct, maintainer-approved,
and the buggy code is present throughout the 6.18.y series.
---
## Verification
- [Phase 1] Parsed commit message and tags from user-provided diff and
mailing list
- [Phase 2] Read current `amdgpu_set_smartshift_bias()` at lines
1856–1887 in v6.18.44; confirmed buggy get/put pairing
- [Phase 2] Read `rpm_drop_usage_count()` at lines 1079–1095; confirmed
underflow warning behavior
- [Phase 3] `git blame -L 1856,1887`: bug introduced by
`55aa33c3fe3876`, original function by `30d95a37f46d1`
- [Phase 3] `git show 55aa33c3fe3876`: confirmed refactor moved
`kstrtoint` before `get_access` while keeping `goto out`
- [Phase 3] `git show 30d95a37f46d1`: original code had
`pm_runtime_get_sync` before `kstrtoint` (correct pairing)
- [Phase 3] `git merge-base --is-ancestor 55aa33c3fe3876 HEAD`: buggy
commit IS in v6.18.44
- [Phase 3] `git tag --contains 55aa33c3fe3876`: present since v6.18-rc1
- [Phase 4] `b4 dig -c a4b0c3f5d2287`: no lore match (patch on
freedesktop.org)
- [Phase 4] Fetched https://lists.freedesktop.org/archives/amd-
gfx/2026-May/145516.html: confirmed patch content and series context
- [Phase 5] Grep for `goto out` in `amdgpu_pm.c`: only smartshift_bias
has parse-before-get with unconditional put at `out`
- [Phase 5] Confirmed `AMDGPU_DEVICE_ATTR_RW(smartshift_bias)`
registration at line 2544
- [Phase 6] `git describe HEAD` = v6.18.44; `make kernelversion` =
6.18.44
- [Phase 6] `git merge-base --is-ancestor a4b0c3f5d2287 HEAD`: fix NOT
in current tree
- [Phase 6] Compared current code to provided diff: exact match, clean
apply expected
- [Phase 8] Confirmed failure mode via `rpm_drop_usage_count` underflow
path
- [UNVERIFIED] No runtime test of actual sysfs write triggering the
warning
**YES**The background searches finished and match the earlier analysis:
- The fix exists in the repo as `a4b0c3f5d2287` / `b9dcdc6fd5e2d`, but
it is **not** in the current `stable/linux-6.18.y` checkout at
v6.18.44.
- The buggy code from `55aa33c3fe3876` **is** present in this tree.
Verdict remains **YES** for backporting to this 6.18.y tree.
drivers/gpu/drm/amd/pm/amdgpu_pm.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/amd/pm/amdgpu_pm.c b/drivers/gpu/drm/amd/pm/amdgpu_pm.c
index 94c534c1d0bed..d253b974223c6 100644
--- a/drivers/gpu/drm/amd/pm/amdgpu_pm.c
+++ b/drivers/gpu/drm/amd/pm/amdgpu_pm.c
@@ -1859,12 +1859,12 @@ static ssize_t amdgpu_set_smartshift_bias(struct device *dev,
{
struct drm_device *ddev = dev_get_drvdata(dev);
struct amdgpu_device *adev = drm_to_adev(ddev);
- int r = 0;
+ int r;
int bias = 0;
r = kstrtoint(buf, 10, &bias);
if (r)
- goto out;
+ return r;
r = amdgpu_pm_get_access(adev);
if (r < 0)
@@ -1876,14 +1876,12 @@ static ssize_t amdgpu_set_smartshift_bias(struct device *dev,
bias = AMDGPU_SMARTSHIFT_MIN_BIAS;
amdgpu_smartshift_bias = bias;
- r = count;
/* TODO: update bias level with SMU message */
-out:
amdgpu_pm_put_access(adev);
- return r;
+ return count;
}
static int ss_power_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/panel-edp: Add LG LP129WT232166 panel
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (59 preceding siblings ...)
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu/pm: fix SmartShift bias sysfs store PM refcount on parse error Sasha Levin
@ 2026-08-31 13:29 ` Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu: Bound GPIO I2C table entry count from VBIOS Sasha Levin
` (5 subsequent siblings)
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:29 UTC (permalink / raw)
To: patches, stable
Cc: Jérôme de Bretagne, Douglas Anderson, Sasha Levin,
neil.armstrong, maarten.lankhorst, mripard, tzimmermann, airlied,
simona, dri-devel, linux-kernel
From: Jérôme de Bretagne <jerome.debretagne@gmail.com>
[ Upstream commit 31ac8899d1a9284fb50bd42c409f224788220e27 ]
Add an entry for the eDP LG LP129WT232166 panel used in
the Microsoft Surface Pro 9 5G.
edid-decode (hex):
00 ff ff ff ff ff ff 00 30 e4 b2 06 a1 25 10 00
00 1f 01 04 a5 1b 12 78 01 ef 70 a7 51 4c a8 26
0e 4f 53 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 fd 00 18 78 f1
f1 48 01 0a 20 20 20 20 20 20 00 00 00 fe 00 4c
47 44 5f 4d 50 31 2e 30 5f 0a 20 20 00 00 00 fe
00 4c 50 31 32 39 57 54 32 33 32 31 36 36 01 23
70 13 79 00 00 03 01 14 56 16 01 88 3f 0b 4f 00
07 80 1f 00 7f 07 55 00 47 00 07 00 03 01 14 56
16 01 08 3f 0b 4f 00 07 80 1f 00 7f 07 2b 08 47
00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 2c 90
Signed-off-by: Jérôme de Bretagne <jerome.debretagne@gmail.com>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://patch.msgid.link/20260520-surface-sp9-5g-for-next-v1-1-9df52552bf87@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/panel-edp: Add LG LP129WT232166 panel
**Local tree:** Linux **6.18.44** (`git describe HEAD` → `v6.18.44`,
`make kernelversion` → `6.18.44`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
**Step 1.1 – Subject line**
Record: `[drm/panel-edp]` `[Add]` — Add LG LP129WT232166 eDP panel entry
for Microsoft Surface Pro 9 5G.
**Step 1.2 – Tags**
Record:
- `Signed-off-by: Jérôme de Bretagne <jerome.debretagne@gmail.com>`
(author)
- `Reviewed-by: Douglas Anderson <dianders@chromium.org>` (DRM/panel
maintainer review)
- `Signed-off-by: Douglas Anderson <dianders@chromium.org>` (committer)
- `Link: https://patch.msgid.link/20260520-surface-sp9-5g-for-
next-v1-1-9df52552bf87@gmail.com` (patch series context)
- No `Fixes:`, `Reported-by:`, `Cc: stable@vger.kernel.org`, or syzbot
tags
Notable: Reviewed and committed by Douglas Anderson (panel-edp
maintainer). Part of Surface Pro 9 5G bring-up series.
**Step 1.3 – Body analysis**
Record:
- **Bug/problem:** LG LP129WT232166 panel (LGD vendor, product ID 0x06b2
per EDID) is not in the `edp_panels[]` lookup table.
- **Symptom:** When `panel-edp` probes this panel, `find_edp_panel()`
returns NULL → `WARN_ON` + conservative fallback timings instead of
correct power-sequencing delays.
- **Root cause:** Missing table entry for a known panel on Surface Pro 9
5G.
- **EDID provided** in commit message for verification (vendor `LGD`,
product `0x06b2`).
**Step 1.4 – Hidden bug fix?**
Record: Yes, disguised as "Add panel." Without the entry, the driver
uses `panel_edp_set_conservative_timings()` (2000 ms unprepare, 200 ms
enable) instead of the standard LG delay profile
(`delay_200_500_e200_d200`: 200/500/200/200 ms). That can cause slow
resume, flicker, or display reliability issues on affected hardware.
---
## PHASE 2: DIFF ANALYSIS
**Step 2.1 – Inventory**
Record:
- **Files:** `drivers/gpu/drm/panel/panel-edp.c` (+1 line)
- **Function/region:** `edp_panels[]` static table (around line 2130 in
upstream diff; ~2071 in local tree)
- **Scope:** Single-file, single-line surgical addition
**Step 2.2 – Code flow change**
Record:
- **Before:** Panel ID `LGD 0x06b2` not matched → `find_edp_panel()`
returns NULL → conservative timings + `WARN_ON`.
- **After:** Panel matched → correct `delay_200_500_e200_d200` applied →
`dev_info()` logs detected panel name.
- **Path affected:** `generic_edp_panel_probe()` during `panel-edp`
device probe on systems with `compatible = "edp-panel"`.
**Step 2.3 – Bug mechanism**
Record: **Hardware workaround / panel timing table entry** (category h).
The `panel-edp` driver auto-detects panels via EDID and selects power-
sequencing delays from `edp_panels[]`. Missing entry → wrong delays.
**Step 2.4 – Fix quality**
Record: Obviously correct. Uses the same `delay_200_500_e200_d200`
profile as other LG Display entries. Inserted in correct sorted position
(vendor `LGD`, product `0x06b2` between `0x05f1` and `0x0778`). Minimal
risk; no API, locking, or logic changes.
---
## PHASE 3: GIT HISTORY INVESTIGATION
**Step 3.1 – Blame**
Record: LG panel entries in `edp_panels[]` date from 2022–2024 (e.g.,
Pin-yen Lin 2023-12-14, Aleksandrs Vinarskis 2024-10-08). The `panel-
edp` infrastructure has been stable for years. The missing `0x06b2`
entry was never added — this is an omission, not a regression from a
recent commit.
**Step 3.2 – Fixes: tag**
Record: N/A — no `Fixes:` tag present.
**Step 3.3 – Related file history**
Record: Recent `panel-edp.c` commits in 6.18.44 are all similar panel-ID
additions:
- `754dbf164acd4` — SHP LQ134Z1 for Dell XPS 9345
- `b173ba3365ff0` — BOE NV140WUM-T08
- `0bd968c04acfb` — AUO B140QAX01.H
Standalone one-liner; not part of a multi-patch dependency series.
**Step 3.4 – Author context**
Record: Jérôme de Bretagne is the Surface Pro 9 5G platform author
(`f6231a2eefd43` DTS, `c54eeb8feff57` aggregator registry). Douglas
Anderson is the `panel-edp` maintainer (committed similar panel
additions).
**Step 3.5 – Dependencies**
Record: No prerequisites. Patch is self-contained.
`delay_200_500_e200_d200` and `EDP_PANEL_ENTRY` macro already exist in
6.18.44. Applies cleanly.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
**Step 4.1 – Original discussion**
Record: `b4 dig -c <commit>` could not be run — commit hash not present
in local tree. Link fetch blocked by Anubis bot protection on
patch.msgid.link and lore.kernel.org. Patch is v1 of Surface Pro 9 5G
series per Link URL (`surface-sp9-5g-for-next-v1-1`).
**Step 4.2 – Reviewers**
Record: UNVERIFIED via `b4 dig -w` (no commit hash). Commit message
shows Reviewed-by and Signed-off-by from Douglas Anderson.
**Step 4.3 – Bug report**
Record: N/A — no external bug report; hardware enablement patch with
EDID data.
**Step 4.4 – Related patches**
Record: Part of Surface Pro 9 5G series. In 6.18.44, SP9 5G DTS
(`sc8280xp-microsoft-arcata.dts`) exists but **does not yet wire up
internal display** (`edp-panel` / `mdss0_dp3` absent). Original DTS
commit (`f6231a2eefd43`) explicitly lists built-in display as
unsupported. Display bring-up is ongoing; this panel entry is a
prerequisite for when that lands.
**Step 4.5 – Stable list**
Record: UNVERIFIED — lore.kernel.org inaccessible.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
**Step 5.1 – Key functions**
Record: `generic_edp_panel_probe()`, `find_edp_panel()`,
`panel_edp_probe()`, `panel_edp_platform_probe()`,
`panel_edp_aux_probe()`.
**Step 5.2 – Callers**
Record: `panel_edp_probe()` called from platform and DP AUX bus probe
paths. Used on many Qualcomm platforms with `compatible = "edp-panel"`
in DT (e.g., ThinkPad X13s, Dell XPS 9345, HP Omnibook X14, CRD boards).
Config: `CONFIG_DRM_PANEL_EDP`.
**Step 5.3 – Callees**
Record: `drm_edid_read_base_block()`, `drm_edid_get_panel_id()`,
`find_edp_panel()`, `panel_edp_set_conservative_timings()`,
`pm_runtime_get_sync()`.
**Step 5.4 – Reachability**
Record: Reachable when a platform has an `edp-panel` DT node and the
physical panel reports EDID `LGD 0x06b2`. **Not currently reachable on
Surface Pro 9 5G in 6.18.44** because `sc8280xp-microsoft-arcata.dts`
lacks `edp-panel` configuration. Will become reachable when display DT
is added.
**Step 5.5 – Similar patterns**
Record: Dozens of identical one-line `EDP_PANEL_ENTRY()` additions in
this file. Same pattern as `754dbf164acd4` (Dell XPS 9345), which has
both panel entry and working `edp-panel` DT in this tree.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE (6.18.44)
**Step 6.1 – Buggy code exists?**
Record: **YES.** `panel-edp.c` and `edp_panels[]` exist. LG entries use
`delay_200_500_e200_d200`. Entry for `0x06b2` is **absent** (grep
confirms no `0x06b2` or `LP129WT232166`). Commit not yet in 6.18.44.
**Step 6.2 – Backport complications**
Record: **Clean apply expected.** Single line insertion between existing
LGD entries at `0x05f1` and `0x0778`. No conflicts anticipated.
**Step 6.3 – Related fixes already present?**
Record: **NO.** No alternative fix for this panel ID in tree.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
**Step 7.1 – Subsystem criticality**
Record: `drivers/gpu/drm/panel/` — **IMPORTANT** (display subsystem).
Affects users of specific eDP panels on ARM64 Qualcomm laptops/tablets.
**Step 7.2 – Subsystem activity**
Record: Actively maintained; frequent panel-ID additions in 6.18.y (5+
similar commits in recent history).
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
**Step 8.1 – Who is affected**
Record: **Platform-specific** — Microsoft Surface Pro 9 5G users (and
any future system using this exact LGD panel via `panel-edp`). SP9 5G
platform support is already in 6.18.44; display DT is pending.
**Step 8.2 – Trigger conditions**
Record: Boot with `panel-edp` driver bound to an `edp-panel` device
whose EDID reports vendor `LGD`, product `0x06b2`. Not triggerable on
SP9 5G today in this tree (no `edp-panel` DT), but will be once display
is enabled. Unprivileged users cannot trigger directly; it's a probe-
time hardware matching issue.
**Step 8.3 – Failure mode severity**
Record: Without fix — `WARN_ON` in dmesg + suboptimal power-sequencing
delays. Can cause **display flicker, slow power transitions, or
unreliable panel bring-up** (severity: **MEDIUM-HIGH** for affected
hardware; **LOW today** in 6.18.44 since SP9 5G display path isn't wired
yet).
**Step 8.4 – Risk vs benefit**
Record:
- **Benefit:** HIGH for SP9 5G display enablement (prerequisite panel
table entry); aligns with existing platform support in tree.
- **Risk:** VERY LOW — one table line, reviewed by maintainer, identical
pattern to many prior stable backports.
- **Ratio:** Strong benefit-to-risk ratio.
---
## PHASE 9: FINAL SYNTHESIS
**Step 9.1 – Evidence summary**
| FOR backport | AGAINST backport |
|---|---|
| Standard panel-ID addition to existing driver | SP9 5G `edp-panel` DT
not yet in 6.18.44 — no immediate user impact today |
| Fixes wrong timings / WARN_ON for LGD 0x06b2 | Hardware enablement
rather than crash/corruption fix |
| One line, obviously correct, maintainer-reviewed | Lore/b4
verification incomplete (no commit hash, site blocked) |
| Applies cleanly to 6.18.44 | |
| SP9 5G platform already in tree; display bring-up in progress | |
| Explicit stable exception: device/panel ID additions | |
| Same pattern as commits already in 6.18.y (e.g., Dell XPS 9345 panel)
| |
**Unresolved:** Full lore review; whether companion SP9 5G display-DT
patches will land in same stable cycle.
**Step 9.2 – Stable rules checklist**
1. Obviously correct and tested? **PASS** — EDID-decoded entry,
maintainer-reviewed, identical delay profile to sibling LG panels.
2. Fixes a real bug affecting users? **PASS** — missing panel entry
causes incorrect power-sequencing; real on hardware using this panel
(pending DT on SP9 5G).
3. Important issue? **PASS** — display reliability / hardware enablement
(MEDIUM-HIGH when display path is active).
4. Small and contained? **PASS** — 1 line, 1 file.
5. No new features or APIs? **PASS** — table entry only; falls under
device-ID exception.
6. Can apply to local tree? **PASS** — driver and infrastructure
present; clean apply.
**Step 9.3 – Exception category**
Record: **Hardware quirk / panel timing table entry** (device-ID-style
addition to existing `panel-edp` driver). Explicitly listed as stable-
appropriate in the evaluation guidelines.
**Step 9.4 – Decision rationale**
This is a textbook stable backport candidate: a single-line panel ID
addition to the existing `panel-edp` driver, reviewed by the maintainer,
using an established delay profile for LG panels. While Surface Pro 9
5G's internal display is not yet wired in the DT of 6.18.44, the
platform is already supported in this tree and display bring-up is
actively underway. Panel-ID additions are routinely backported to stable
and carry negligible regression risk. When the SP9 5G display DT lands,
this entry will be required for correct panel operation.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user-provided
content
- **[Phase 1]** Identified Reviewed-by: Douglas Anderson
- **[Phase 2]** Confirmed diff is +1 line in `edp_panels[]`
- **[Phase 2]** Read `generic_edp_panel_probe()` lines 759–825: verified
NULL `detected_panel` → `WARN_ON` + conservative timings
- **[Phase 2]** Verified `delay_200_500_e200_d200` at line 1791
- **[Phase 2]** Verified `EDP_PANEL_ENTRY` macro at line 1859
- **[Phase 3]** `git describe HEAD` → v6.18.44; `make kernelversion` →
6.18.44
- **[Phase 3]** `git blame` on LGD entries: infrastructure present since
2022–2024
- **[Phase 3]** `git log --oneline -20 -- drivers/gpu/drm/panel/panel-
edp.c`: multiple similar panel additions in tree
- **[Phase 3]** `git show f6231a2eefd43`: SP9 5G DTS lists built-in
display as unsupported
- **[Phase 4]** UNVERIFIED: `b4 dig -c` failed (commit not in tree);
lore/patch.msgid.link blocked by Anubis
- **[Phase 5]** `grep edp-panel` in `arch/arm64/boot/dts/qcom/`: 17+
platforms use it; arcata NOT among them
- **[Phase 5]** Read `sc8280xp-lenovo-thinkpad-x13s.dts` lines 754–776:
reference `edp-panel` DT pattern
- **[Phase 6]** `grep 0x06b2 LP129WT232166` in `panel-edp.c`: no matches
— entry absent
- **[Phase 6]** `grep` in `sc8280xp-microsoft-arcata.dts`: no `edp-
panel`, `mdss0_dp3`, or `backlight`
- **[Phase 6]** Confirmed `sc8280xp-microsoft-arcata.dts` and SP9 5G
aggregator entries exist in tree
- **[Phase 7]** `CONFIG_DRM_PANEL_EDP` exists in
`drivers/gpu/drm/panel/Kconfig`
- **[Phase 8]** Compared to `754dbf164acd4` (Dell XPS 9345 panel) — same
pattern, already in 6.18.44 with working DT
**YES**The background git searches finished and match the earlier
analysis:
- **`0x06b2` / `LP129WT232166`:** No commit in this tree adds that panel
ID to `panel-edp.c` — the entry is still missing from 6.18.44.
- **Surface Pro 9 5G history:** Platform support is present (DTS
`sc8280xp-microsoft-arcata.dts`, aggregator registry), but built-in
display via `edp-panel` is not wired up yet.
That supports the **YES** verdict: this is a standard one-line panel-ID
addition to an existing driver, low risk, and needed when SP9 5G display
support lands.
drivers/gpu/drm/panel/panel-edp.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c
index c6d1dfdd64f2e..4008da7f28d6b 100644
--- a/drivers/gpu/drm/panel/panel-edp.c
+++ b/drivers/gpu/drm/panel/panel-edp.c
@@ -2080,6 +2080,7 @@ static const struct edp_panel_entry edp_panels[] = {
EDP_PANEL_ENTRY('L', 'G', 'D', 0x0567, &delay_200_500_e200_d200, "Unknown"),
EDP_PANEL_ENTRY('L', 'G', 'D', 0x05af, &delay_200_500_e200_d200, "Unknown"),
EDP_PANEL_ENTRY('L', 'G', 'D', 0x05f1, &delay_200_500_e200_d200, "Unknown"),
+ EDP_PANEL_ENTRY('L', 'G', 'D', 0x06b2, &delay_200_500_e200_d200, "LP129WT232166"),
EDP_PANEL_ENTRY('L', 'G', 'D', 0x0778, &delay_200_500_e200_d200, "134WT1"),
EDP_PANEL_ENTRY('L', 'G', 'D', 0x07fe, &delay_200_500_e200_d200, "LP116WHA-SPB1"),
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu: Bound GPIO I2C table entry count from VBIOS
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (60 preceding siblings ...)
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add LG LP129WT232166 panel Sasha Levin
@ 2026-08-31 13:29 ` Sasha Levin
2026-08-31 17:14 ` sashiko-bot
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.6] drm/panel: jadard-jd9365da-h3: set prepare_prev_first Sasha Levin
` (4 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:29 UTC (permalink / raw)
To: patches, stable
Cc: Candice Li, Tao Zhou, Alex Deucher, Sasha Levin, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Candice Li <candice.li@amd.com>
[ Upstream commit a99cd231cd924b7160fecb9fb3a94b801522323b ]
Reject undersized tables and cap the derived entry count
to AMDGPU_MAX_I2C_BUS so we do not overrun adev->i2c_bus[]
or walk an absurd number of entries on corrupt size fields.
Signed-off-by: Candice Li <candice.li@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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: `[drm/amdgpu]` `[Bound]` — Bound/cap GPIO I2C table entry count
parsed from VBIOS atom data tables.
**Step 1.2 — Tags**
Record:
- `Signed-off-by: Candice Li <candice.li@amd.com>` (author)
- `Reviewed-by: Tao Zhou <tao.zhou1@amd.com>`
- `Signed-off-by: Alex Deucher <alexander.deucher@amd.com>` (amdgpu
maintainer)
- No `Fixes:`, `Reported-by:`, `Link:`, `Cc: stable@vger.kernel.org`, or
`Tested-by:` tags
- Notable: maintainer sign-off and AMD review, but no fuzzer/user report
**Step 1.3 — Body analysis**
Record:
- **Bug:** VBIOS-reported GPIO I2C table `size` is trusted without
validation; entry count is derived unchecked.
- **Symptoms:** Can overrun `adev->i2c_bus[]` (fixed size 16) and walk
an excessive number of entries on corrupt/undersized size fields.
- **Root cause:** `num_indices = (size - header) / entry_size` with no
lower/upper bound; `amdgpu_atom_parse_data_header()` only reads a
16-bit size from the BIOS image and does not validate it.
- **Version info:** None in the message.
**Step 1.4 — Hidden bug fix?**
Record: **Yes.** Despite no “fix” in the subject, this is a defensive
bounds-check fix for out-of-bounds array indexing and unbounded
iteration on corrupt VBIOS metadata.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- **File:** `drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c` (+18 / -6)
- **Functions modified:** new helper
`amdgpu_atombios_gpio_i2c_num_entries()`; callers
`amdgpu_atombios_lookup_i2c_gpio()`, `amdgpu_atombios_i2c_init()`,
`amdgpu_atombios_oem_i2c_init()`
- **Scope:** Single-file, surgical fix
**Step 2.2 — Code flow per hunk**
Record:
- **New helper:** If `size < sizeof(ATOM_COMMON_TABLE_HEADER)` → return
0; else compute `bytes / sizeof(ATOM_GPIO_I2C_ASSIGMENT)` capped at
`AMDGPU_MAX_I2C_BUS` (16).
- **Before:** Three sites computed `num_indices` directly from unchecked
`size`.
- **After:** All three use the bounded helper.
- **Paths affected:**
- `amdgpu_atombios_i2c_init()` — probe-time I2C bus creation; indexes
`adev->i2c_bus[i]`
- `amdgpu_atombios_oem_i2c_init()` — Polaris OEM I2C path; same
indexing
- `amdgpu_atombios_lookup_i2c_gpio()` — encoder/router DDC lookup;
walks GPIO entries by pointer
**Step 2.3 — Bug mechanism**
Record: **Buffer overflow / out-of-bounds access + unbounded loop**
1. **Undersized `size` (< 4 bytes):** `(uint16_t)size - sizeof(header)`
underflows in unsigned arithmetic → enormous `num_indices` (e.g.
65534/entry_size ≈ thousands).
2. **Oversized/corrupt `size`:** `num_indices` can exceed
`AMDGPU_MAX_I2C_BUS` (16). In `amdgpu_atombios_i2c_init()` /
`oem_i2c_init()`, loop index `i` is used as `adev->i2c_bus[i]` →
**write past end of 16-element pointer array**.
3. **GPIO pointer walk:** Uncapped iteration reads past the actual VBIOS
table region.
**Step 2.4 — Fix quality**
Record:
- Fix is minimal, obviously correct, and matches driver limits
(`AMDGPU_MAX_I2C_BUS == 16`, `ATOM_MAX_SUPPORTED_DEVICE == 16`).
- Does not validate `size` against total BIOS image length (unlike the
related `drm/amd/display` fix), but still eliminates the array overrun
and caps iteration.
- **Regression risk:** Very low. Legitimate tables with ≤16 entries
behave identically; undersized tables fail closed (0 entries) instead
of crashing.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record: Buggy `num_indices` calculation introduced in `d38ceaf99ed01`
(“drm/amdgpu: add core driver (v4)”, Alex Deucher, 2015-04-20). Present
throughout the life of amdgpu in this tree.
**Step 3.2 — Fixes: tag**
Record: N/A — no `Fixes:` tag in commit message.
**Step 3.3 — Related file history**
Record:
- `20f48be63d1ad` added `amdgpu_atombios_oem_i2c_init()` with the same
unchecked pattern.
- No prior bounds-check fix for GPIO I2C tables in this tree.
- Fix commit `a99cd231cd92` is **not** present locally
(`amdgpu_atombios_gpio_i2c_num_entries` not found).
**Step 3.4 — Author context**
Record: Candice Li has other amdgpu commits in this tree (RAS, SMU,
etc.). Patch reviewed by Tao Zhou and signed off by Alex Deucher.
**Step 3.5 — Dependencies**
Record: Mailing-list submission is **[PATCH 3/4]** in a hardening
series, but this patch is **standalone**:
- Patch 1/4: RAS CPER buffer bounds (different files)
- Patch 2/4: ATOM command table nesting depth (different code)
- Patch 4/4: PSP fw_pri_buf validation (different code)
No prerequisite commits needed for this hunk to apply and function.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record:
- `b4 dig -c a99cd231cd924b7160fecb9fb3a94b801522323b` → no lore match
(thread on freedesktop.org, not lore).
- Verified at https://lists.freedesktop.org/archives/amd-
gfx/2026-May/144648.html
- Series: [PATCH 3/4], May 18 2026
- No stable nomination found in the thread
- No NAKs observed in fetched content
**Step 4.2 — Reviewers**
Record: CC list includes Hawking Zhang, Tao Zhou, Stanley Yang, Thomas
Chai. `Reviewed-by: Tao Zhou`. `Signed-off-by: Alex Deucher`.
**Step 4.3 — Bug reports**
Record: None. No syzbot, bugzilla, or user crash reports referenced.
**Step 4.4 — Related patches**
Record: Related hardening in same series (RAS, ATOM nesting, PSP).
Separate mainline commit `86d2b20644b` (“drm/amd/display: Validate GPIO
pin LUT table size before iterating”) addresses the same class of VBIOS
table parsing bug in the display BIOS parser and was nominated with `Cc:
stable@vger.kernel.org`.
**Step 4.5 — Stable list**
Record: No stable-list discussion found for this specific patch (lore
blocked by bot protection; freedesktop thread has no stable CC).
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `amdgpu_atombios_gpio_i2c_num_entries()`,
`amdgpu_atombios_lookup_i2c_gpio()`, `amdgpu_atombios_i2c_init()`,
`amdgpu_atombios_oem_i2c_init()`.
**Step 5.2 — Callers**
Record:
- `amdgpu_atombios_i2c_init()` ← `amdgpu_i2c_init()` in `amdgpu_i2c.c`
- `amdgpu_atombios_oem_i2c_init()` ← `amdgpu_i2c_init()` (Polaris chips
with DC)
- `amdgpu_i2c_init()` ← `amdgpu_device.c` during device init when
`adev->bios` present and `!adev->is_atom_fw`
- `amdgpu_atombios_lookup_i2c_gpio()` ← `amdgpu_atombios.c`
encoder/router parsing (DDC/I2C routing during display setup)
**Step 5.3 — Callees**
Record: `amdgpu_atom_parse_data_header()`,
`amdgpu_atombios_get_bus_rec_for_i2c_gpio()`, `amdgpu_i2c_create()`,
`min_t()`.
**Step 5.4 — Reachability**
Record:
- **Probe path:** `amdgpu_i2c_init()` runs during GPU driver
initialization for legacy atombios (non-atom-fw) GPUs — common on pre-
GCN/older hardware and Polaris OEM path.
- **Display path:** `amdgpu_atombios_lookup_i2c_gpio()` runs during
encoder/connector parsing — broader reach on atom-bios GPUs.
- **Userspace trigger:** Not a direct syscall path; triggered by GPU
probe with VBIOS present. Corrupt/malicious VBIOS (flash corruption or
reflashing) can trigger it at module load / GPU init. Unprivileged
users cannot typically rewrite GPU VBIOS without root/hardware access.
**Step 5.5 — Similar patterns**
Record: Same unchecked `(size - header) / struct_size` pattern exists
elsewhere in `amdgpu_atombios.c` (e.g. spread-spectrum tables at lines
929+), but this commit does not touch those — scoped to GPIO I2C only. A
related display-side GPIO LUT bounds fix exists upstream.
---
## Phase 6: Cross-Reference Against Local Tree (v6.18.44)
**Step 6.1 — Buggy code present?**
Record: **Yes.** Local tree is `v6.18.44` (Makefile: 6.18.44). All three
unchecked `num_indices` calculations exist at lines 99–100, 130–131, and
161–162 of `amdgpu_atombios.c`. `adev->i2c_bus[AMDGPU_MAX_I2C_BUS]` is
defined in `amdgpu.h` with `AMDGPU_MAX_I2C_BUS = 16`. Bug dates to
original amdgpu import (2015).
**Step 6.2 — Backport complications**
Record: **Clean apply expected.** File structure and includes match the
patch context (`bif/bif_4_1_d.h` present, same three call sites). No
conflicting fix already applied.
**Step 6.3 — Related fixes already present?**
Record: **None** for GPIO I2C table bounding.
`amdgpu_atombios_gpio_i2c_num_entries` does not exist in tree.
---
## Phase 7: Subsystem and Maintainer Context
**Step 7.1 — Subsystem**
Record: `drm/amdgpu` display/GPU driver — **IMPORTANT** subsystem
(widely deployed AMD GPU driver).
**Step 7.2 — Activity**
Record: File actively maintained; recent commits include OEM I2C
support, vbios interfaces, PM cleanups.
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: AMD GPU users on the legacy atombios path (`!adev->is_atom_fw`)
during I2C init; additionally any GPU using atom-bios encoder routing
that calls `amdgpu_atombios_lookup_i2c_gpio()`. Config-specific to
`CONFIG_DRM_AMDGPU` with affected hardware.
**Step 8.2 — Trigger conditions**
Record:
- Corrupt or malicious VBIOS with invalid GPIO I2C table `size` field
- Undersized table (`size < 4`) or oversized entry count (`> 16`)
- **Likelihood:** Low for legitimate factory VBIOS; non-zero for flash
corruption, bad flashing, or adversarial VBIOS
- **Unprivileged direct trigger:** Unlikely without ability to modify
GPU VBIOS
**Step 8.3 — Failure mode severity**
Record:
- `amdgpu_atombios_i2c_init()` / `oem_i2c_init()`: **out-of-bounds
write** to `adev->i2c_bus[]` → heap corruption, kernel oops, possible
security impact — **CRITICAL/HIGH**
- All three functions: **out-of-bounds read** past VBIOS mapping, very
long loops → probe hang/oops — **HIGH**
- Undersized table: previously could loop thousands of times instead of
zero — **HIGH** (boot hang)
**Step 8.4 — Risk vs benefit**
Record:
- **Benefit:** Prevents kernel crash/corruption during GPU probe on
corrupt VBIOS; aligns with AMD’s own hardening series and similar
stable-nominated display fix.
- **Risk:** Minimal — 15-line helper, caps at existing hardware limit of
16 buses.
- **Ratio:** High benefit, very low risk.
---
## Phase 9: Final Synthesis
**Step 9.1 — Evidence compile**
**FOR backport:**
- Real OOB write to `adev->i2c_bus[i]` when `i >= 16`
- Real OOB read / unbounded loop on corrupt `size`
- Small, maintainer-reviewed, obviously correct
- Bug present since 2015 in this tree
- Same vulnerability class as a related fix already nominated for stable
(display GPIO LUT)
- Applies cleanly to v6.18.44
**AGAINST backport:**
- No user bug report or syzbot reproduction
- Requires corrupt/malicious VBIOS — uncommon trigger
- Fix does not validate `size` against total BIOS image length (partial
mitigation only)
- Part of a 4-patch hardening series (though this patch is independent)
**Unresolved:** No runtime crash report confirming field failure on
production systems.
**Step 9.2 — Stable rules checklist**
1. Obviously correct and tested? **PASS** — logic is straightforward;
reviewed by AMD engineer and maintainer. No runtime test tag.
2. Fixes a real bug? **PASS** — verified OOB array indexing and
unbounded iteration in source.
3. Important issue? **PASS** — OOB write during driver probe
(crash/corruption potential).
4. Small and contained? **PASS** — 18 lines added, one file, three call
sites.
5. No new features/APIs? **PASS** — defensive bounds only.
6. Can apply to local tree? **PASS** — buggy code confirmed present;
patch not yet applied; clean apply expected.
**Step 9.3 — Exception category**
Record: Not a device-ID/quirk/DT/build/docs exception — standard bug-
fix/hardening.
**Step 9.4 — Decision rationale**
For **this** tree (v6.18.44), the unchecked VBIOS size parsing is a
long-standing defect that can cause out-of-bounds writes to a kernel
array during GPU initialization. The fix is minimal, self-contained,
maintainer-approved, and matches established stable practice for amdgpu
VBIOS table hardening. The lack of a user report is outweighed by the
severity of the failure mode and the negligible regression risk.
---
## Verification
- [Phase 1] Parsed subject, tags, body from provided commit message
- [Phase 2] Diff analysis: verified +18/-6 in `amdgpu_atombios.c`, three
call sites, new helper function
- [Phase 2] Read current `amdgpu_atombios.c` lines 82–175: confirmed
unchecked `num_indices` pattern
- [Phase 2] Read `amdgpu.h`: `i2c_bus[AMDGPU_MAX_I2C_BUS]` with
`AMDGPU_MAX_I2C_BUS = 16`
- [Phase 2] Read `atom.c` `amdgpu_atom_parse_data_header()`: `size` from
`CU16(idx)`, no bounds validation
- [Phase 3] `git blame`: buggy lines from `d38ceaf99ed01` (2015-04-20)
- [Phase 3] `git show d38ceaf99ed01`: original amdgpu core driver import
- [Phase 3] `grep amdgpu_atombios_gpio_i2c_num_entries`: not in tree
(fix absent)
- [Phase 3] Verified patch 3/4 is standalone; patches 1–2 are unrelated
subsystems (freedesktop.org)
- [Phase 4] `b4 dig -c a99cd23...`: no lore match
- [Phase 4] WebFetch freedesktop.org amd-gfx May 2026: confirmed [PATCH
3/4] content
- [Phase 4] Web search: mainline SHA
`a99cd231cd924b7160fecb9fb3a94b801522323b`; related display fix
`86d2b20` with `Cc: stable`
- [Phase 5] `grep` callers: `amdgpu_i2c_init` → `amdgpu_device.c:4771`;
lookup used in encoder parsing
- [Phase 5] Read `amdgpu_i2c.c:218–235`: init paths for legacy and
Polaris OEM
- [Phase 5] Read `amdgpu_device.c:4753–4772`: called when `adev->bios &&
!adev->is_atom_fw`
- [Phase 6] `git describe HEAD`: `v6.18.44`; Makefile confirms 6.18.44
- [Phase 6] Buggy code confirmed at lines 99, 130, 161 in local tree
- [Phase 6] `ATOM_MAX_SUPPORTED_DEVICE` = 16 (`atombios.h`), matches
`AMDGPU_MAX_I2C_BUS`
- [Phase 7/8] Assessed subsystem criticality and failure modes from
verified call paths
- UNVERIFIED: No end-user crash report for this specific GPIO I2C issue
- UNVERIFIED: Whether undersized-table underflow has been observed in
the field
**YES**The background search finished: the **Bound GPIO I2C** fix is
**not** in this tree (`v6.18.44`). Candice Li’s other amdgpu work is
present, but `amdgpu_atombios_gpio_i2c_num_entries()` is missing and the
unchecked `num_indices` logic is still at lines 99, 130, and 161 of
`amdgpu_atombios.c`.
**Verdict from the analysis:** backport **YES** — small, standalone
bounds-check fix that prevents OOB writes to `adev->i2c_bus[]` and
unbounded VBIOS table walks on corrupt GPIO I2C table sizes during GPU
init.
drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c | 24 +++++++++++++++-----
1 file changed, 18 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c
index 763f2b8dcf13a..b8f7e3a18d324 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c
@@ -36,6 +36,21 @@
#include "atombios_encoders.h"
#include "bif/bif_4_1_d.h"
+/* VBIOS-reported table size is unchecked against the image; cap iterations and
+ * adev->i2c_bus[] indexing to AMDGPU_MAX_I2C_BUS.
+ */
+static int amdgpu_atombios_gpio_i2c_num_entries(uint16_t size)
+{
+ u32 bytes;
+
+ if (size < sizeof(ATOM_COMMON_TABLE_HEADER))
+ return 0;
+
+ bytes = size - sizeof(ATOM_COMMON_TABLE_HEADER);
+ return (int)min_t(u32, bytes / sizeof(ATOM_GPIO_I2C_ASSIGMENT),
+ AMDGPU_MAX_I2C_BUS);
+}
+
static struct amdgpu_i2c_bus_rec amdgpu_atombios_get_bus_rec_for_i2c_gpio(ATOM_GPIO_I2C_ASSIGMENT *gpio)
{
struct amdgpu_i2c_bus_rec i2c;
@@ -96,8 +111,7 @@ struct amdgpu_i2c_bus_rec amdgpu_atombios_lookup_i2c_gpio(struct amdgpu_device *
if (amdgpu_atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset);
- num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
- sizeof(ATOM_GPIO_I2C_ASSIGMENT);
+ num_indices = amdgpu_atombios_gpio_i2c_num_entries(size);
gpio = &i2c_info->asGPIO_Info[0];
for (i = 0; i < num_indices; i++) {
@@ -127,8 +141,7 @@ void amdgpu_atombios_i2c_init(struct amdgpu_device *adev)
if (amdgpu_atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset);
- num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
- sizeof(ATOM_GPIO_I2C_ASSIGMENT);
+ num_indices = amdgpu_atombios_gpio_i2c_num_entries(size);
gpio = &i2c_info->asGPIO_Info[0];
for (i = 0; i < num_indices; i++) {
@@ -158,8 +171,7 @@ void amdgpu_atombios_oem_i2c_init(struct amdgpu_device *adev, u8 i2c_id)
if (amdgpu_atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset);
- num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
- sizeof(ATOM_GPIO_I2C_ASSIGMENT);
+ num_indices = amdgpu_atombios_gpio_i2c_num_entries(size);
gpio = &i2c_info->asGPIO_Info[0];
for (i = 0; i < num_indices; i++) {
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.6] drm/panel: jadard-jd9365da-h3: set prepare_prev_first
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (61 preceding siblings ...)
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu: Bound GPIO I2C table entry count from VBIOS Sasha Levin
@ 2026-08-31 13:30 ` Sasha Levin
2026-08-31 17:11 ` sashiko-bot
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] drm/amdgpu: use atomic operation to achieve lockless serialization Sasha Levin
` (3 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:30 UTC (permalink / raw)
To: patches, stable
Cc: Dmitry Baryshkov, Linus Walleij, Riccardo Mereu, Sasha Levin,
jagan, neil.armstrong, maarten.lankhorst, mripard, tzimmermann,
airlied, simona, dri-devel, linux-kernel
From: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
[ Upstream commit b55a4b5d4769a650f52ea3f1ae680610169d125e ]
Sending DSI commands from the prepare() callback requires DSI link to be
up at that point. For DSI hosts is guaranteed only if the panel driver
sets the .prepare_prev_first flag. Set it to let these panels work with
the DSI hosts which don't power on the link in their .mode_set callback.
Reviewed-by: Linus Walleij <linusw@kernel.org>
Tested-by: Riccardo Mereu <r.mereu@arduino.cc>
Link: https://patch.msgid.link/20260413-waveshare-dsi-touch-v3-13-3aeb53022c32@oss.qualcomm.com
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
The background `git log -S'panel-jadard-jd9365da-h3'` search finished
(took ~3 minutes). It only surfaced merge commits — the first hit is
`5d324e5159d9e` (usb-6.18-rc8 merge) — which matches what we saw
earlier: this stable tree’s history doesn’t give a clean upstream
“driver added in commit X” trail.
That doesn’t change the backport assessment. The driver is present in
6.18.43, the bug (missing `prepare_prev_first`) is confirmed, the patch
applies cleanly, and the verdict remains **YES**.
drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c b/drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
index 5c2530598ddb9..9e5287829b952 100644
--- a/drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
+++ b/drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
@@ -1157,6 +1157,8 @@ static int jadard_dsi_probe(struct mipi_dsi_device *dsi)
if (ret)
return ret;
+ jadard->panel.prepare_prev_first = true;
+
drm_panel_add(&jadard->panel);
mipi_dsi_set_drvdata(dsi, jadard);
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/amdgpu: use atomic operation to achieve lockless serialization
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (62 preceding siblings ...)
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.6] drm/panel: jadard-jd9365da-h3: set prepare_prev_first Sasha Levin
@ 2026-08-31 13:30 ` Sasha Levin
2026-08-31 17:20 ` sashiko-bot
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] drm/dp: Add DSC virtual DPCD quirk for Realtek MST branch device Sasha Levin
` (2 subsequent siblings)
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:30 UTC (permalink / raw)
To: patches, stable
Cc: Sunil Khatri, Alex Deucher, Sasha Levin, christian.koenig,
airlied, simona, amd-gfx, dri-devel, linux-kernel
From: Sunil Khatri <sunil.khatri@amd.com>
[ Upstream commit 4d50a14d346141e03a7c3905e496d91e048bc30c ]
In amdgpu_seq64_alloc there is a possibility that two difference cores
from two separate NODES can try to and could get the same free slot.
So this fixes that race here using atomic test_and_set clear operations.
Signed-off-by: Sunil Khatri <sunil.khatri@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amdgpu: use atomic operation to achieve
lockless serialization`
**Local tree:** `v6.18.43` (`VERSION = 6`, `PATCHLEVEL = 18`, `SUBLEVEL
= 43`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/amdgpu]` — action verb implied **fix** (race) — use
atomic bitops in `amdgpu_seq64_alloc`/`amdgpu_seq64_free` for lockless
serialization of the seq64 slot bitmap.
### Step 1.2: Tags
**Record:**
| Tag | Value |
|-----|-------|
| Signed-off-by | Sunil Khatri `<sunil.khatri@amd.com>` |
| Reviewed-by | Alex Deucher `<alexander.deucher@amd.com>` |
| Signed-off-by | Alex Deucher `<alexander.deucher@amd.com>` |
**Notable patterns:** Maintainer review from Alex Deucher (amdgpu co-
maintainer). No `Fixes:`, `Reported-by:`, `Cc: stable`, or syzbot tags
(expected for manual review).
### Step 1.3: Body analysis
**Record:**
- **Bug described:** In `amdgpu_seq64_alloc`, two CPU cores on separate
nodes can race and obtain the same free seq64 slot.
- **Symptom/failure mode:** Duplicate slot assignment → two user-queue
fence drivers share the same 64-bit fence memory location → broken GPU
synchronization.
- **Root cause (author):** Non-atomic `find_first_zero_bit` +
`__set_bit` is not safe under concurrent access; fix uses
`test_and_set_bit` loop and `clear_bit`.
- **Version info:** None in commit message.
### Step 1.4: Hidden bug fix?
**Record:** Yes — explicitly a race-condition fix, not cosmetic cleanup.
Replacing `__set_bit`/`__clear_bit` with atomic
`test_and_set_bit`/`clear_bit` is the standard kernel pattern for
concurrently accessed bitmaps (`Documentation/atomic_bitops.txt`).
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c` (+8 / −5, 1
file)
- **Functions modified:** `amdgpu_seq64_alloc()`, `amdgpu_seq64_free()`
- **Scope:** Single-file surgical fix
### Step 2.2: Code flow per hunk
**Hunk 1 — `amdgpu_seq64_alloc`:**
- **Before:** `find_first_zero_bit` → early `-ENOSPC` → unconditional
`__set_bit`
- **After:** Loop: `find_first_zero_bit` → `-ENOSPC` if full →
`test_and_set_bit`; break only if bit was previously clear (successful
claim); otherwise retry
- **Path affected:** Normal allocation path for seq64 fence slots
**Hunk 2 — `amdgpu_seq64_free`:**
- **Before:** `__clear_bit` (non-atomic)
- **After:** `clear_bit` (atomic)
- **Path affected:** Slot release on fence-driver teardown
### Step 2.3: Bug mechanism
**Record:** **Category:** Race condition / incorrect non-atomic bitmap
access.
**Mechanism:** `__set_bit`/`__clear_bit` are explicitly non-atomic per
`Documentation/atomic_bitops.txt`. Concurrent alloc and free on
`adev->seq64.used` without atomic ops can corrupt the bitmap or allow a
TOCTOU between `find_first_zero_bit` and bit claim when another CPU
concurrently modifies the same bitmap.
### Step 2.4: Fix quality
**Record:** Fix is obviously correct — standard `test_and_set_bit`
allocator loop. Minimal, no API changes. Low regression risk; loop may
spin under contention but pool has 262144 slots
(`AMDGPU_MAX_SEQ64_SLOTS`), so retry pressure is low.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `amdgpu_seq64_alloc`/`free` bitmap logic introduced in
commit `a112b91dd6349` (stable-tree import). Buggy
`__set_bit`/`__clear_bit` pattern present in current `v6.18.43` tree at
lines 178–182 and 208.
### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag in commit message.
### Step 3.3: Related file history
**Record:** `amdgpu_seq64.c` exists in this tree with the pre-fix code.
Fix commit is **not yet applied** (no `test_and_set_bit` in local file).
This stable tree's git history is flattened through bulk imports,
limiting per-file history granularity.
### Step 3.4: Author commits
**Record:** No commits by Sunil Khatri found in this stable checkout's
`git log`. Author is an AMD developer; patch reviewed by amdgpu
maintainer Alex Deucher.
### Step 3.5: Dependencies
**Record:** Standalone — no series markers, no prerequisite commits.
Applies directly to existing `amdgpu_seq64.c`.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- **URL:** https://lists.freedesktop.org/archives/amd-
gfx/2026-May/144553.html (v1 submission, May 14 2026)
- **Series revisions:** v1 only (no v2/v3 found)
- **Reviewer feedback:** Christian König questioned why concurrent calls
are possible: *"Why can those functions be called in concurrent from
multiple threads?"* (https://lists.freedesktop.org/archives/amd-
gfx/2026-May/144650.html)
- **Maintainer response:** Alex Deucher gave `Reviewed-by`
(https://lists.freedesktop.org/archives/amd-gfx/2026-May/144599.html)
- **Stable nominations:** None found in thread
- **NAKs:** None; question raised but patch still reviewed positively by
maintainer
`b4 dig -c <hash>` could not be run — fix commit hash not present in
this checkout.
### Step 4.2: Reviewers (b4 -w equivalent via lore)
**Record:** Patch submitted to amd-gfx list; reviewed by Alex Deucher
(subsystem maintainer). Christian König (also amdgpu maintainer) raised
concurrency question.
### Step 4.3: Bug report
**Record:** No external bug report, syzbot link, or crash trace.
Theoretical/concurrency-analysis fix from driver developer.
### Step 4.4: Related patches
**Record:** Standalone 1/1 patch, not part of a series.
### Step 4.5: Stable list
**Record:** Not searched on lore.kernel.org (blocked by bot protection).
No stable discussion found on freedesktop amd-gfx thread.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `amdgpu_seq64_alloc()`, `amdgpu_seq64_free()`
### Step 5.2: Callers
**Record:**
| Function | Callers | Context |
|----------|---------|---------|
| `amdgpu_seq64_alloc` | `amdgpu_userq_fence_driver_alloc()` only |
Called from `amdgpu_userq_create()` during `AMDGPU_USERQ_OP_CREATE`
ioctl |
| `amdgpu_seq64_free` | `amdgpu_userq_fence_driver_alloc()` error path;
`amdgpu_userq_fence_driver_destroy()` via `kref_put` | Destroy path from
queue teardown / refcount drop |
`amdgpu_userq_create()` holds `adev->userq_mutex` during alloc (line
518). `amdgpu_userq_destroy()` holds only per-client
`uq_mgr->userq_mutex`, **not** `adev->userq_mutex` (lines 394–420).
Therefore alloc and free **can run concurrently** from different DRM
clients/processes.
### Step 5.3: Callees
**Record:** `find_first_zero_bit`, `test_and_set_bit`/`__set_bit`,
`clear_bit`/`__clear_bit`, `amdgpu_seq64_get_va_base()`
### Step 5.4: Reachability
**Record:** Reachable from userspace via DRM ioctl
`AMDGPU_USERQ_OP_CREATE` / destroy on GPUs with user-mode queue support
(gfx11, gfx12, SDMA v6/v7 in this tree). Multi-process GPU compute
workloads are a realistic trigger.
### Step 5.5: Similar patterns
**Record:** Kernel bitmap allocators universally use `test_and_set_bit`
loops for concurrent access. Non-atomic `__set_bit` is only valid when
caller holds exclusive access.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE
### Step 6.1: Buggy code exists?
**Record:** **Yes.** Current `v6.18.43` tree has the buggy code:
```178:182:drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c
bit_pos = find_first_zero_bit(adev->seq64.used,
adev->seq64.num_sem);
if (bit_pos >= adev->seq64.num_sem)
return -ENOSPC;
__set_bit(bit_pos, adev->seq64.used);
```
```207:208:drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c
if (bit_pos < adev->seq64.num_sem)
__clear_bit(bit_pos, adev->seq64.used);
```
`amdgpu_seq64_init()` is called during GMC hw init; user-mode queues are
wired on modern ASICs.
### Step 6.2: Backport complications
**Record:** **Clean apply expected** — identical file and function
structure; no conflicts detected. 8-line change.
### Step 6.3: Related fixes already present?
**Record:** **No** — `test_and_set_bit` not present in `amdgpu_seq64.c`;
fix not yet in tree.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `drivers/gpu/drm/amd/amdgpu` — **IMPORTANT** (AMD GPU
driver). Affects user-mode queue fence synchronization on supported
hardware.
### Step 7.2: Subsystem activity
**Record:** Actively developed; user-mode queues and seq64 are
relatively recent features present in this 6.18.y tree.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of AMDGPU user-mode queues on gfx11/gfx12/SDMA-capable
GPUs running multi-process compute (ROCm, etc.). Config-dependent on
hardware with `userq_funcs` populated.
### Step 8.2: Trigger conditions
**Record:** Concurrent queue create (alloc under `adev->userq_mutex`)
and queue destroy/fence-driver teardown (free without
`adev->userq_mutex`) from different processes, potentially on different
CPU/NUMA nodes. Realistic in multi-tenant GPU workloads. Unprivileged
users can trigger via DRM ioctls (subject to device access permissions).
### Step 8.3: Failure mode severity
**Record:** Duplicate seq64 slot → two fence drivers alias the same
64-bit memory → **HIGH** severity: GPU synchronization corruption,
possible compute wrong-results or GPU hangs. Not a typical kernel oops,
but serious functional corruption.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH for affected userq users — prevents fence memory
aliasing
- **Risk:** VERY LOW — 8-line, idiomatic atomic bitmap fix, maintainer-
reviewed
- **Ratio:** Strong benefit, minimal risk
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real concurrent alloc/free paths verified (asymmetric mutex coverage)
- Non-atomic `__set_bit`/`__clear_bit` violate kernel bitmap concurrency
rules
- Standard, obviously-correct fix pattern
- Small, single-file, no new APIs
- Reviewed by amdgpu maintainer Alex Deucher
- Buggy code confirmed present in `v6.18.43`; fix not yet applied
- User-mode queues active on modern AMD GPUs in this tree
**AGAINST backport:**
- No crash report or syzbot reproduction
- Christian König questioned whether concurrency is possible (though
code analysis shows alloc/free overlap is real; two simultaneous
allocs are mutex-serialized)
- Affects only user-mode queue users, not all amdgpu users
**Unresolved:** Author's reply to Christian König's thread question not
found; exact "two nodes both allocating" scenario may be overstated, but
alloc/free concurrency is verified.
### Step 9.2: Stable rules checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — idiomatic atomic bitmap
fix; maintainer Reviewed-by; no runtime test cited |
| 2. Fixes a real bug affecting users? | **PASS** — concurrent bitmap
access verified in code paths |
| 3. Important issue? | **PASS** — HIGH: fence memory aliasing, GPU sync
corruption |
| 4. Small and contained? | **PASS** — 8 lines, 1 file |
| 5. No new features/APIs? | **PASS** — internal implementation change
only |
| 6. Can apply to local tree? | **PASS** — clean apply to existing
`amdgpu_seq64.c` |
### Step 9.3: Exception categories
**Record:** None (not a device ID, quirk, DT, build, or docs fix).
Standard race-condition bug fix.
### Step 9.4: Decision rationale
The commit fixes a genuine race in the seq64 slot allocator. While
`amdgpu_userq_create()` serializes allocations via `adev->userq_mutex`,
`amdgpu_seq64_free()` runs from fence-driver destruction without that
lock — `amdgpu_userq_destroy()` only takes the per-client mutex.
Concurrent alloc and free on the shared `adev->seq64.used` bitmap with
non-atomic `__set_bit`/`__clear_bit` is incorrect and can corrupt slot
tracking. The fix is minimal, maintainer-reviewed, and applies cleanly
to this `v6.18.43` tree where the buggy code is present and user-mode
queues are supported.
---
## Verification
- [Phase 1] Parsed subject, tags (SOB, Reviewed-by Alex Deucher), body;
no Fixes/Reported-by/Cc:stable
- [Phase 2] Diff: 8 insertions, 5 deletions in `amdgpu_seq64_alloc` and
`amdgpu_seq64_free`
- [Phase 3] `git describe HEAD`: `v6.18.43`; blame shows buggy
`__set_bit`/`__clear_bit` in current tree
- [Phase 3] `git log --grep` for commit subject: not found in tree (not
yet merged)
- [Phase 4] Lore: v1 at https://lists.freedesktop.org/archives/amd-
gfx/2026-May/144553.html; Reviewed-by at 144599.html; Christian König
question at 144650.html
- [Phase 4] b4 dig by hash: N/A — commit not in checkout
- [Phase 5] `grep amdgpu_seq64_alloc`: single caller in
`amdgpu_userq_fence.c`
- [Phase 5] `grep amdgpu_seq64_free`: error path +
`amdgpu_userq_fence_driver_destroy`
- [Phase 5] Read `amdgpu_userq.c`: create holds `adev->userq_mutex`
(518); destroy does not (394–420)
- [Phase 5] Read `amdgpu_userq_fence.c`: destroy → `kref_put` →
`amdgpu_seq64_free`
- [Phase 6] Confirmed buggy code at lines 178–182, 208; no
`test_and_set_bit` present
- [Phase 6] `amdgpu_seq64_init` present in `amdgpu_device.c` GMC init
path
- [Phase 6] Userq support on gfx11/gfx12/SDMA via `userq_funcs`
assignment verified
- [Phase 8] `AMDGPU_MAX_SEQ64_SLOTS` = 2MiB/8 = 262144 slots per
`amdgpu_seq64.h`
- [Phase 8] `Documentation/atomic_bitops.txt`: `__` prefixed bitops are
non-atomic
- UNVERIFIED: Author's reply to Christian König's concurrency question
(not found in fetched threads)
- UNVERIFIED: Whether fix commit SHA exists on mainline (not in this
stable checkout)
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c
index a0b479d5fff19..f4be192235889 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c
@@ -175,11 +175,14 @@ int amdgpu_seq64_alloc(struct amdgpu_device *adev, u64 *va,
{
unsigned long bit_pos;
- bit_pos = find_first_zero_bit(adev->seq64.used, adev->seq64.num_sem);
- if (bit_pos >= adev->seq64.num_sem)
- return -ENOSPC;
+ for (;;) {
+ bit_pos = find_first_zero_bit(adev->seq64.used, adev->seq64.num_sem);
+ if (bit_pos >= adev->seq64.num_sem)
+ return -ENOSPC;
- __set_bit(bit_pos, adev->seq64.used);
+ if (!test_and_set_bit(bit_pos, adev->seq64.used))
+ break;
+ }
*va = bit_pos * sizeof(u64) + amdgpu_seq64_get_va_base(adev);
@@ -205,7 +208,7 @@ void amdgpu_seq64_free(struct amdgpu_device *adev, u64 va)
bit_pos = (va - amdgpu_seq64_get_va_base(adev)) / sizeof(u64);
if (bit_pos < adev->seq64.num_sem)
- __clear_bit(bit_pos, adev->seq64.used);
+ clear_bit(bit_pos, adev->seq64.used);
}
/**
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.12] drm/dp: Add DSC virtual DPCD quirk for Realtek MST branch device
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (63 preceding siblings ...)
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] drm/amdgpu: use atomic operation to achieve lockless serialization Sasha Levin
@ 2026-08-31 13:30 ` Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] drm/xe/guc: Add support for NO_RESPONSE_BUSY in CTB Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds on allocate_doorbell Sasha Levin
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:30 UTC (permalink / raw)
To: patches, stable
Cc: Imre Deak, Lyude Paul, Shawn C Lee, Mika Kahola, Sasha Levin,
maarten.lankhorst, mripard, tzimmermann, airlied, simona,
dri-devel, linux-kernel
From: Imre Deak <imre.deak@intel.com>
[ Upstream commit bff2da7aa0020eb72e42d63868dc5adaa0fb85d3 ]
The ASUS DC301 USB-C dock containing a Realtek MST branch device
supports the DSC decompression functionality on each of the dock's
downstream connectors, even though there is no discoverable peer-to-peer
virtual device in the MST topology (which the DP Standard
requires/suggests to control the DSC functionality on a per-DFP basis).
Add the DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD quirk for this branch
device as well to enable the DSC decompression functionality on all DFP
connectors of the dock, similarly to how this is done for dock's
containing older Synaptics branch devices.
Cc: Lyude Paul <lyude@redhat.com>
Reported-and-tested-by: Shawn C Lee <shawn.c.lee@intel.com>
Reviewed-by: Mika Kahola <mika.kahola@intel.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patch.msgid.link/20260525125516.2794636-1-imre.deak@intel.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: drm/dp DSC virtual DPCD quirk for Realtek
MST
**Local tree:** Linux **6.18.44** (`git describe HEAD` → `v6.18.44`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[drm/dp]` `[Add]` — Add DSC virtual DPCD quirk for Realtek
MST branch device
### Step 1.2: Tags
**Record:**
| Tag | Value |
|-----|-------|
| Cc: | Lyude Paul \<lyude@redhat.com\> |
| Reported-and-tested-by: | Shawn C Lee \<shawn.c.lee@intel.com\> |
| Reviewed-by: | Mika Kahola \<mika.kahola@intel.com\> |
| Reviewed-by: | Lyude Paul \<lyude@redhat.com\> |
| Signed-off-by: | Imre Deak \<imre.deak@intel.com\> (author SOB; ignore
pipeline SOBs) |
| Link: |
https://patch.msgid.link/20260525125516.2794636-1-imre.deak@intel.com |
**Notable patterns:** Real hardware reporter+tester; two Reviewed-by
including DRM maintainer Lyude Paul. No syzbot, no Fixes: tag (expected
for manual review).
### Step 1.3: Body analysis
**Record:**
- **Bug:** ASUS DC301 USB-C dock (Realtek MST branch, OUI `0x00:e0:4c`)
supports DSC decompression on downstream connectors but does not
expose discoverable peer-to-peer virtual DPCD devices as the DP
standard expects for per-DFP DSC control.
- **Symptom:** DSC decompression cannot be enabled on the dock's
downstream display outputs; high-bandwidth modes that require DSC will
fail or fall back incorrectly.
- **Root cause:** Kernel only applies the
`DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD` workaround to Synaptics
(`0x90:CC:24`) MST hubs, not Realtek.
- **Fix approach:** Add Realtek branch-device quirk entry matching OUI
`0x00, 0xe0, 0x4c` and device ID `'Dp1.4'`.
### Step 1.4: Hidden bug fix?
**Record:** Yes — described as "Add quirk" but it fixes broken display
functionality on a specific USB-C dock. This is a hardware
quirk/workaround, not a cosmetic change.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **Files:** `drivers/gpu/drm/display/drm_dp_helper.c` (+2 lines)
- **Functions modified:** None directly; `dpcd_quirk_list[]` static
table only
- **Scope:** Single-file, surgical quirk-table addition
### Step 2.2: Code flow change
**Record:**
- **Hunk (quirk table):** Before → only Synaptics MST hubs matched
`DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD`. After → Realtek DP1.4 MST
branch devices (`OUI 0x00:e0:4c`, device ID `Dp1.4`, `is_branch=true`)
also get the quirk bit set when `drm_dp_get_quirks()` runs during
`drm_dp_read_desc()`.
### Step 2.3: Bug mechanism
**Record:** **Category (h): Hardware workaround**
Without the quirk, `drm_dp_mst_dsc_aux_for_port()` in
`drm_dp_mst_topology.c` does not find a valid DSC aux for Realtek MST
dock ports:
```6159:6176:drivers/gpu/drm/display/drm_dp_mst_topology.c
if (drm_dp_has_quirk(&desc,
DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD)) {
// ... reads DSC caps from physical upstream aux ...
return immediate_upstream_aux;
}
```
When this returns `NULL`, i915 sets `connector->dp.dsc_decompression_aux
= NULL` at MST connector creation, and amdgpu similarly gets no
`dsc_aux`. DSC decompression is never enabled on dock downstream
connectors.
### Step 2.4: Fix quality
**Record:** Obviously correct — mirrors the proven Synaptics quirk
(added 2019, commit `5b03f9d8688071`). Uses a specific device ID
(`'Dp1.4'`) rather than `DEVICE_ID_ANY`, limiting scope. **Regression
risk:** Very low; only affects devices matching Realtek OUI + exact
device ID on branch devices.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** Synaptics `DSC_WITHOUT_VIRTUAL_DPCD` entry introduced by
Mikita Lipski, 2019-09-20 (`5b03f9d8688071`). Quirk infrastructure and
`drm_dp_mst_dsc_aux_for_port()` logic are ancestors of HEAD and present
in 6.18.44. Realtek entry is **not** in this tree.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag in commit message.
### Step 3.3: Related file history
**Record:** Recent `drm_dp_helper.c` changes are unrelated (backlight,
AUX probe address). No competing fix for Realtek DSC. Standalone single-
patch fix.
### Step 3.4: Author context
**Record:** Imre Deak is an active Intel DRM contributor; prior commits
to this file include Synaptics HBLANK-expansion and MediaTek DSC quirks
— same subsystem and pattern.
### Step 3.5: Dependencies
**Record:** **No dependencies.** Requires only:
- `DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD` enum (present in
`include/drm/display/drm_dp_helper.h`)
- `drm_dp_mst_dsc_aux_for_port()` quirk handling (present in
`drm_dp_mst_topology.c`)
- `dpcd_quirk_list[]` table (present in `drm_dp_helper.c`)
All verified present in 6.18.44.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:** `b4 dig -c <commit>` could not run — commit is not in this
tree (no commitish available). WebFetch of patch link and
lore.kernel.org blocked by Anubis bot protection. **UNVERIFIED:** full
mailing-list thread content.
### Step 4.2: Reviewers
**Record:** Commit message confirms Lyude Paul (DRM maintainer) and Mika
Kahola reviewed. Cc'd Lyude Paul.
### Step 4.3: Bug report
**Record:** Reported-and-tested-by Shawn C Lee (Intel) on ASUS DC301
USB-C dock hardware. No syzbot/CVE.
### Step 4.4: Series context
**Record:** Standalone 1-patch fix, not part of a series.
### Step 4.5: Stable list history
**Record:** **UNVERIFIED** — could not access lore stable archive due to
bot protection.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** Modified indirectly via quirk table lookup in
`drm_dp_get_quirks()` → consumed by `drm_dp_has_quirk()` → used in
`drm_dp_mst_dsc_aux_for_port()`.
### Step 5.2: Callers
**Record:** `drm_dp_mst_dsc_aux_for_port()` called from:
- `intel_dp_mst.c` — MST connector probe
(`connector->dp.dsc_decompression_aux`)
- `amdgpu_dm_mst_types.c` — `validate_dsc_caps_on_connector()`
- `drm_dp_mst_topology.c` — `drm_dp_mst_add_affected_dsc_crtcs()`
All are MST hotplug/enumeration and atomic modeset paths — reachable
when a user plugs in a USB-C dock.
### Step 5.3: Callees
**Record:** Quirk path reads DPCD via `drm_dp_read_desc()`,
`drm_dp_dpcd_read_data()`, `drm_dp_read_dpcd_caps()` — standard AUX
reads, no new kernel APIs.
### Step 5.4: Reachability
**Record:** Triggered by plugging ASUS DC301 (or other matching Realtek
MST branch) into a DP MST-capable GPU. Userspace display configuration
is the entry point. Affects i915 and amdgpu MST users.
### Step 5.5: Similar patterns
**Record:** Identical pattern to Synaptics quirk at line 2538–2539. Same
author added related Synaptics/MediaTek DSC quirks in this file.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE (6.18.44)
### Step 6.1: Buggy code exists?
**Record:** **YES.** The quirk table has Synaptics entry but lacks
Realtek entry. The `DSC_WITHOUT_VIRTUAL_DPCD` handling code exists and
would work once the table entry is added. Bug affects users of Realtek
MST docks on kernels ≥6.18.44 (and any earlier kernel with the Synaptics
quirk but not Realtek).
### Step 6.2: Backport complications
**Record:** **Clean apply.** `patch -p1 --dry-run` succeeded with fuzz 1
(offset 1 line) against current `drm_dp_helper.c`. No structural
conflicts.
### Step 6.3: Related fixes already present?
**Record:** Synaptics `DSC_WITHOUT_VIRTUAL_DPCD` quirk is present
(`5b03f9d8688071` is ancestor of HEAD). No Realtek equivalent found
(`grep` for `0x00, 0xe0, 0x4c` in quirk table: no match).
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** **drivers/gpu/drm/display** — IMPORTANT. Affects display
output through USB-C/MST docks on Intel and AMD GPUs.
### Step 7.2: Activity
**Record:** Actively maintained; recent commits in `drm_dp_helper.c` and
`drm_dp_mst_topology.c` within this stable cycle.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of Realtek MST branch USB-C docks (specifically
tested: ASUS DC301) connected via DP MST to Intel/AMD GPUs with DSC-
capable outputs. Config-dependent: `CONFIG_DRM`, MST, DSC support.
### Step 8.2: Trigger conditions
**Record:** Plug dock into MST-capable port; attempt modes requiring DSC
decompression on downstream connectors. Not timing-dependent;
deterministic hardware identification failure. Unprivileged users can
trigger via normal display hotplug.
### Step 8.3: Failure mode severity
**Record:** **MEDIUM** — DSC decompression disabled → high-
resolution/high-refresh modes through dock may not work or may not use
optimal compression. Not a kernel crash, oops, or data corruption, but
real functional breakage on production hardware.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Enables DSC on Realtek MST docks; restores display
functionality matching hardware capability. Tested on real hardware.
- **Risk:** Minimal — 2-line quirk entry, narrowly matched by OUI +
device ID + branch flag.
- **Ratio:** Strong benefit for affected hardware, negligible risk.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Hardware quirk — explicit stable exception category
- Fixes real, tested bug on ASUS DC301 USB-C dock
- 2-line, surgical change using existing infrastructure
- Reviewed by DRM maintainer (Lyude Paul)
- Mirrors proven Synaptics quirk (in tree since 2019)
- Applies cleanly to 6.18.44
- No new APIs, no refactoring
**AGAINST backport:**
- Display functionality issue, not crash/security/corruption
- Affects narrow hardware population (Realtek MST docks)
- Mailing-list discussion not independently verified
**UNRESOLVED:**
- Full lore thread content (bot protection)
- Whether other Realtek device IDs beyond `'Dp1.4'` need the same quirk
### Step 9.2: Stable rules checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — mirrors Synaptics;
Reported-and-tested-by on real hardware; maintainer reviewed |
| 2. Fixes a real bug affecting users? | **PASS** — DSC broken on
Realtek MST dock downstream ports |
| 3. Important issue? | **PASS** (hardware quirk) — display modes broken
on affected dock; not crash-level but real user impact |
| 4. Small and contained? | **PASS** — 2 lines, one file |
| 5. No new features/APIs? | **PASS** — quirk table entry only |
| 6. Can apply to local tree? | **PASS** — clean apply with fuzz 1 |
### Step 9.3: Exception category
**Record:** **Hardware quirk/workaround** — directly matches the stable
exception for device-specific quirks that fix real-world hardware
issues.
### Step 9.4: Decision rationale
This commit adds a Realtek MST branch device to the existing
`DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD` quirk table. All handling code
already exists in 6.18.44 (introduced for Synaptics docks in 2019).
Without this entry, DSC decompression is silently unavailable on Realtek
MST USB-C docks such as the ASUS DC301, breaking display functionality
on downstream connectors.
This is textbook stable material: a small, maintainer-reviewed hardware
quirk that enables existing functionality on real hardware, with no API
changes and negligible regression risk.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from user-provided commit
message
- **[Phase 2]** Diff analysis: +2 lines to `dpcd_quirk_list[]` in
`drm_dp_helper.c`
- **[Phase 2]** Read `drm_dp_mst_dsc_aux_for_port()` quirk handling at
lines 6159–6176
- **[Phase 2]** Read `drm_dp_get_quirks()` matching logic at lines
2558–2583
- **[Phase 3]** `git describe HEAD` → `v6.18.44`; Makefile confirms
6.18.44
- **[Phase 3]** `git blame` on lines 2535–2545: Synaptics quirk from
`5b03f9d8688071` (2019)
- **[Phase 3]** `git merge-base --is-ancestor 5b03f9d8688071 HEAD` →
prerequisite commit present
- **[Phase 3]** `git log --grep="DSC virtual DPCD quirk for Realtek"` →
no results (commit not in tree)
- **[Phase 4]** `b4 dig` requires commitish not available in tree —
**UNVERIFIED**
- **[Phase 4]** WebFetch of patch link and lore.kernel.org — blocked by
Anubis — **UNVERIFIED**
- **[Phase 5]** `grep drm_dp_mst_dsc_aux_for_port` → callers in i915,
amdgpu, drm_dp_mst_topology.c
- **[Phase 5]** Read `intel_dp_mst.c:1745` — `dsc_decompression_aux =
drm_dp_mst_dsc_aux_for_port(port)`
- **[Phase 5]** Read `amdgpu_dm_mst_types.c:276` — same pattern
- **[Phase 6]** `grep "0x00, 0xe0, 0x4c"` in quirk table → no match (bug
present, fix absent)
- **[Phase 6]** `grep DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD` → enum and
usage confirmed in tree
- **[Phase 6]** `patch -p1 --dry-run` on constructed patch → succeeds
with fuzz 1
- **[Phase 7]** Subsystem: `drivers/gpu/drm/display` — DRM display
helper
- **[Phase 8]** Failure mode: DSC unavailable on dock ports — MEDIUM
severity, real hardware impact
**YES**The background checks finished:
- **Tree:** Linux **6.18.44** (`v6.18.44`)
- **Commit search:** No match for the Realtek DSC quirk commit in this
tree — it isn’t applied here yet
- **Prerequisites:** The Synaptics `DSC_WITHOUT_VIRTUAL_DPCD` quirk and
handling code are present; only the Realtek table entry is missing
That matches the earlier analysis: this is a small hardware quirk that
should be backported to this tree.
**YES**
drivers/gpu/drm/display/drm_dp_helper.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
index 8c858ba40c6c6..77336bc3e62c2 100644
--- a/drivers/gpu/drm/display/drm_dp_helper.c
+++ b/drivers/gpu/drm/display/drm_dp_helper.c
@@ -2537,6 +2537,8 @@ static const struct dpcd_quirk dpcd_quirk_list[] = {
{ OUI(0x00, 0x00, 0x00), DEVICE_ID('C', 'H', '7', '5', '1', '1'), false, BIT(DP_DPCD_QUIRK_NO_SINK_COUNT) },
/* Synaptics DP1.4 MST hubs can support DSC without virtual DPCD */
{ OUI(0x90, 0xCC, 0x24), DEVICE_ID_ANY, true, BIT(DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD) },
+ /* Realtek DP1.4 MST hubs can support DSC without virtual DPCD */
+ { OUI(0x00, 0xe0, 0x4c), DEVICE_ID('D', 'p', '1', '.', '4', 0), true, BIT(DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD) },
/* Synaptics DP1.4 MST hubs require DSC for some modes on which it applies HBLANK expansion. */
{ OUI(0x90, 0xCC, 0x24), DEVICE_ID_ANY, true, BIT(DP_DPCD_QUIRK_HBLANK_EXPANSION_REQUIRES_DSC) },
/* MediaTek panels (at least in U3224KBA) require DSC for modes with a short HBLANK on UHBR links. */
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18] drm/xe/guc: Add support for NO_RESPONSE_BUSY in CTB
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (64 preceding siblings ...)
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] drm/dp: Add DSC virtual DPCD quirk for Realtek MST branch device Sasha Levin
@ 2026-08-31 13:30 ` Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds on allocate_doorbell Sasha Levin
66 siblings, 0 replies; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:30 UTC (permalink / raw)
To: patches, stable
Cc: Michal Wajdeczko, Daniele Ceraolo Spurio, Sasha Levin,
matthew.brost, thomas.hellstrom, rodrigo.vivi, airlied, simona,
intel-xe, dri-devel, linux-kernel
From: Michal Wajdeczko <michal.wajdeczko@intel.com>
[ Upstream commit 4d33314decfeac8b82d771a1bd083a59f4ac6fae ]
We only have support for G2H NO_RESPONSE_BUSY messages over MMIO,
but it turned out that GuC also uses that type of messages in CTB.
The following error was recently observed on BMG after adding VGT
policy updates to the GT restart sequence:
[] xe 0000:03:00.0: [drm] *ERROR* Tile0: GT1: G2H channel broken on read, type=3, reset required
[] xe 0000:03:00.0: [drm] *ERROR* Tile0: GT1: CT dequeue failed: -95
...
[] xe 0000:03:00.0: [drm] *ERROR* Tile0: GT1: Timed out wait for G2H, fence 21965, action 5502, done no
[] xe 0000:03:00.0: [drm] PF: Tile0: GT1: Failed to push 1 policy KLV (-ETIME)
[] xe 0000:03:00.0: [drm] Tile0: GT1: { key 0x8004 : no value } # engine_group_config
where type=3 was this unrecognized NO_RESPONSE_BUSY message.
Note that GuC might send the real RESPONSE message right after
the BUSY message, so we must be prepared to update our g2h_fence
data twice before sender actually wakes up and clears the flags.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Reviewed-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Link: https://patch.msgid.link/20260410110457.573-1-michal.wajdeczko@intel.com
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:** `[drm/xe/guc]` `[Add support for]` — Extend GuC CTB (Command
Transport Buffer) handling to recognize `GUC_HXG_TYPE_NO_RESPONSE_BUSY`
messages, mirroring existing MMIO-path support.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Michal Wajdeczko \<michal.wajdeczko@intel.com\>
- **Cc:** Daniele Ceraolo Spurio \<daniele.ceraolospurio@intel.com\>
- **Reviewed-by:** Daniele Ceraolo Spurio
\<daniele.ceraolospurio@intel.com\>
- **Link:** https://patch.msgid.link/20260410110457.573-1-
michal.wajdeczko@intel.com
- **No** Fixes:, Reported-by:, Tested-by:, Acked-by:, or Cc:
stable@vger.kernel.org
- Notable: Reviewed-by from a co-developer; no syzbot/fuzzer report;
real hardware log in commit body
### Step 1.3: Body Analysis
**Record:**
- **Bug:** GuC can send `NO_RESPONSE_BUSY` (HXG type 3) over the CTB G2H
channel, but the CT path only handled it over MMIO. CT treats type 3
as unknown and marks the channel broken.
- **Symptom:** `G2H channel broken on read, type=3, reset required` →
`CT dequeue failed: -95` → `Timed out wait for G2H` → `Failed to push
1 policy KLV (-ETIME)` with action `0x5502`
(`GUC_ACTION_PF2GUC_UPDATE_VGT_POLICY`)
- **Trigger context:** Observed on BMG (Battlemage) during VGT policy
updates in the GT restart sequence
- **Root cause:** Missing CTB handler for an existing GuC protocol
message type; a final response may follow the BUSY message on the same
fence
### Step 1.4: Hidden Bug Fix?
**Record:** Yes. Despite "Add support" wording, this is a protocol-
handling bug fix. The driver already handles `NO_RESPONSE_BUSY` on MMIO
(`xe_guc.c`) and in the relay path (`xe_guc_relay.c`); only the CT
blocking-send path was missing it.
---
## Phase 2: Diff Analysis
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/gpu/drm/xe/xe_guc_ct.c` — +36 / −2 lines
- **Functions modified:** `struct g2h_fence`, `g2h_fence_init` area,
`guc_ct_send_recv()`, `parse_g2h_response()`, `parse_g2h_msg()`
- **New:** `g2h_fence_reinit()`
- **Scope:** Single-file, surgical fix
### Step 2.2: Code Flow Changes
**Record:**
- **`g2h_fence`:** Adds `counter` and `wait` fields for BUSY state
- **`g2h_fence_reinit()`:** Clears response-side fields via
`memset_after()` while preserving `seqno` and `response_buffer`
- **`parse_g2h_msg()`:** Routes `GUC_HXG_TYPE_NO_RESPONSE_BUSY` to
`parse_g2h_response()` instead of the `default` broken-channel path
- **`parse_g2h_response()`:** On BUSY, uses `xa_load()` instead of
`xa_erase()` (fence stays registered); reinitializes fence state; sets
`wait=true` and `counter`; skips buffer space release for intermediate
messages
- **`guc_ct_send_recv()`:** On `g2h_fence.wait`, reinitializes fence and
loops back to `wait_event_timeout()` for the final response
### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Logic / protocol correctness — missing handler for a
valid GuC message type
- **Mechanism:** When GuC sends type 3 over CTB, `parse_g2h_msg()` hits
`default`, logs "channel broken", calls `CT_DEAD()`, returns
`-EOPNOTSUPP` (−95). The waiting `guc_ct_send_recv()` then times out.
The CT channel is left in a broken state requiring GT reset.
### Step 2.4: Fix Quality
**Record:**
- Fix is obviously correct: mirrors the existing MMIO `NO_RESPONSE_BUSY`
pattern and the established `NO_RESPONSE_RETRY` CT handling
- Minimal, self-contained, no API changes
- Low regression risk: only affects the BUSY message path; fence lookup
semantics are carefully preserved for intermediate vs. final responses
---
## Phase 3: Git History Investigation
### Step 3.1: Blame
**Record:** The `parse_g2h_msg()` switch (lines 1411–1427) dates to
commit `308dc9b27874d` (initial xe driver import, Jul 2025). It has
handled `NO_RESPONSE_RETRY` since import but never `NO_RESPONSE_BUSY`.
MMIO BUSY handling was added in `1d087cb7d81f9` (Nov 2023) and is
present in this tree.
### Step 3.2: Fixes: Tag
**Record:** N/A — no Fixes: tag.
### Step 3.3: Related File History
**Record:**
- `1d087cb7d81f9` — MMIO `NO_RESPONSE_BUSY` fix (in tree)
- `3c01e01214026` — MMIO follow-up for unexpected messages after BUSY
(in tree)
- `4d33314decfea` — this CTB fix (NOT in tree; `git merge-base --is-
ancestor` returns 1)
- Recent `xe_guc_ct.c` changes are unrelated CT state/retry fixes
### Step 3.4: Author Context
**Record:** Michal Wajdeczko is an active Intel xe/GuC contributor
(`159afd92bae81`, `2506af5f8109a`, etc. on `xe_guc_ct.c`). Reviewed by
Daniele Ceraolo Spurio (co-developer).
### Step 3.5: Dependencies
**Record:** Standalone. Uses `memset_after()` (present in
`include/linux/string.h`), `GUC_HXG_TYPE_NO_RESPONSE_BUSY` and
`GUC_HXG_BUSY_MSG_0_COUNTER` (present in `abi/guc_messages_abi.h`). No
prerequisite commits required. Cherry-pick to HEAD applies cleanly
(+36/−2, auto-merge, no conflicts).
---
## Phase 4: Mailing List and External Research
### Step 4.1: Original Discussion
**Record:**
- **b4 dig -c 4d33314decfea:** https://patch.msgid.link/20260410110457.5
73-1-michal.wajdeczko@intel.com
- **Series:** v1 (Apr 3) → v2 (Apr 8) → v3 (Apr 10); committed version
is v3
- **Review:** Reviewed-by Daniele Ceraolo Spurio in v3
- **CI:** Patchwork CI reported failure, but for unrelated IGT test
changes — not a functional objection to the patch logic
- **Stable nomination:** None found in mbox thread
### Step 4.2: Reviewers
**Record:** CC'd to `intel-xe@lists.freedesktop.org` and Daniele Ceraolo
Spurio. Reviewed-by from co-developer.
### Step 4.3: Bug Report
**Record:** No external bug tracker link. Reproducible failure described
in commit message with full dmesg on BMG hardware.
### Step 4.4: Related Patches
**Record:** Part of a single-patch series (not multi-patch). Related
MMIO fixes (`1d087cb7d81f9`, `3c01e01214026`) are already in this tree.
### Step 4.5: Stable List
**Record:** No stable-list discussion found.
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key Functions
**Record:** `guc_ct_send_recv()`, `parse_g2h_response()`,
`parse_g2h_msg()`, `g2h_fence_reinit()`
### Step 5.2: Callers
**Record:** `xe_guc_ct_send_recv()` is reached via
`xe_guc_ct_send_block()` from many subsystems:
- `xe_gt_sriov_pf_policy.c` — VGT policy (action 0x5502, the reported
failure)
- `xe_gt_sriov_pf_config.c`, `xe_gt_sriov_pf_control.c`,
`xe_gt_sriov_pf_migration.c`
- `xe_guc.c`, `xe_guc_pc.c`, `xe_guc_submit.c`,
`xe_guc_engine_activity.c`, `xe_guc_relay.c`
### Step 5.3: Callees
**Record:** `wait_event_timeout()`, `xa_load()`/`xa_erase()`,
`g2h_release_space()`, `wake_up_all()`, `memset_after()`
### Step 5.4: Reachability
**Record:** Triggered during normal GuC CT blocking operations — GT
reset recovery, SR-IOV PF policy/config pushes, GuC init/load, engine
activity queries. These run during device operation and GT reset paths
on systems with `CONFIG_DRM_XE`.
### Step 5.5: Similar Patterns
**Record:** MMIO path in `xe_guc.c:1458–1486` already waits through BUSY
for final response. Relay path in `xe_guc_relay.c:839–841` handles BUSY.
CT path had `NO_RESPONSE_RETRY` but not BUSY — clear inconsistency.
---
## Phase 6: Cross-Reference Against Local Tree (v6.18.43)
### Step 6.1: Buggy Code Present?
**Record:** Yes. At `parse_g2h_msg()` lines 1416–1426, type 3 falls
through to `default` and marks the G2H channel broken.
`parse_g2h_response()` has no BUSY branch. Confirmed: `git merge-base
--is-ancestor 4d33314decfea HEAD` returns 1 (fix not present).
### Step 6.2: Backport Complications
**Record:** Clean apply verified: `git cherry-pick --no-commit
4d33314decfea` auto-merges with no conflicts (+36/−2). No structural
refactoring conflicts in `xe_guc_ct.c`.
### Step 6.3: Related Fixes Already Present?
**Record:** MMIO BUSY handling (`1d087cb7d81f9`) and relay BUSY handling
are present. CT BUSY handling is the remaining gap — no duplicate fix in
tree.
---
## Phase 7: Subsystem Context
### Step 7.1: Subsystem and Criticality
**Record:** `drivers/gpu/drm/xe/` — Intel Xe GPU driver. **IMPORTANT**
for Intel discrete/integrated GPU users. BMG (Battlemage) platform
support is present (`xe_pci.c` `bmg_desc`, `xe_vsec.c`, GuC firmware
defs in `xe_uc_fw.c`).
### Step 7.2: Activity
**Record:** Actively maintained — recent commits on `xe_guc_ct.c`
include CT state management, fence synchronization, and resource-leak
fixes.
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who Is Affected
**Record:** Users of Intel Xe GPUs with GuC CT communication —
especially BMG with SR-IOV PF enabled, but any platform where GuC sends
`NO_RESPONSE_BUSY` over CTB during blocking operations.
### Step 8.2: Trigger Conditions
**Record:** GuC sends `NO_RESPONSE_BUSY` (type 3) on the CTB G2H channel
while the host is blocked in `guc_ct_send_recv()`. Observed during VGT
policy push (action 0x5502) on BMG; can affect any
`xe_guc_ct_send_block()` caller when GuC is temporarily busy. Requires
`CONFIG_DRM_XE` and functioning GuC CT.
### Step 8.3: Failure Severity
**Record:** **CRITICAL** — CT G2H channel marked broken (`CT_DEAD`),
operations fail with `-ETIME`/`-EOPNOTSUPP`, SR-IOV policy/config
provisioning fails, GT reset required. GPU functionality degrades or
becomes unusable until reset.
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** HIGH — prevents CT channel corruption and cascading
failures on a widely used communication path
- **Risk:** LOW — 36 lines, one file, follows established patterns,
verified clean cherry-pick
- **Ratio:** Strongly favors backport
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence Summary
**FOR backport:**
- Fixes a real, observed hardware failure on BMG
- Causes CT channel breakage and GPU reset requirement — serious
stability impact
- Small, surgical, reviewed fix following existing MMIO/relay patterns
- Buggy code confirmed present in v6.18.43; fix not yet applied
- Cherry-picks cleanly
- Affects many callers of blocking CT send (SR-IOV, GuC init, engine
activity, etc.)
**AGAINST backport:**
- Commit message trigger (VGT policy in GT restart sequence) may be a
newer mainline integration; however, VGT policy push via
`xe_guc_ct_send_block()` already exists in 6.18.43, and the bug is
protocol-general, not restart-specific
- No explicit stable nomination or wide user reports beyond Intel
internal testing
- CI reported unrelated test failures (not a functional NAK)
**Unresolved:** Whether the exact "VGT policy during GT restart" call
path from mainline is already in 6.18.43 — but this does not affect the
verdict because the underlying CT BUSY bug is present and reachable via
existing policy push paths.
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — mirrors MMIO handling;
Reviewed-by; observed fix on BMG
2. Fixes a real bug affecting users? **PASS** — documented dmesg on real
hardware
3. Important issue? **PASS** — CRITICAL: CT channel broken, GPU reset,
operation failures
4. Small and contained? **PASS** — 36 lines, 1 file
5. No new features or APIs? **PASS** — protocol parity fix, no userspace
changes
6. Can apply to local tree? **PASS** — verified clean cherry-pick
### Step 9.3: Exception Categories
**Record:** Hardware quirk/workaround category does not apply. This is a
driver protocol-handling bug fix.
### Step 9.4: Decision Rationale
This commit closes a longstanding gap where the xe driver's GuC CT
blocking-send path did not handle `NO_RESPONSE_BUSY`, a message type the
GuC firmware legitimately sends and that the MMIO and relay paths
already handle. In v6.18.43, receiving type 3 on CTB corrupts the G2H
channel and causes timeouts and failures across SR-IOV policy, config,
and other GuC operations. The fix is small, reviewed, self-contained,
and applies cleanly to this tree.
---
## Verification
- [Phase 1] Parsed commit message and tags from `git show 4d33314decfea`
- [Phase 1] Confirmed action 0x5502 =
`GUC_ACTION_PF2GUC_UPDATE_VGT_POLICY` in `guc_actions_sriov_abi.h`
- [Phase 1] Confirmed type 3 = `GUC_HXG_TYPE_NO_RESPONSE_BUSY` in
`guc_messages_abi.h`
- [Phase 2] Full diff reviewed via `git show 4d33314decfea`
- [Phase 2] Read current buggy code at `xe_guc_ct.c:1411–1427` and
`1357–1380`
- [Phase 3] `git describe HEAD` → v6.18.43
- [Phase 3] `git merge-base --is-ancestor 4d33314decfea HEAD` → exit 1
(not in tree)
- [Phase 3] `git merge-base --is-ancestor 1d087cb7d81f9 HEAD` → exit 0
(MMIO fix in tree)
- [Phase 3] `git merge-base --is-ancestor 3c01e01214026 HEAD` → exit 0
- [Phase 3] `git blame` on `parse_g2h_msg` switch → `308dc9b27874d`
- [Phase 4] `b4 dig -c 4d33314decfea` → lore URL found
- [Phase 4] `b4 dig -c 4d33314decfea -a` → v1/v2/v3 series, v3 committed
- [Phase 4] `b4 dig -c 4d33314decfea -w` → CC intel-xe, Daniele Ceraolo
Spurio
- [Phase 4] `b4 dig -m /tmp/no_response_busy.mbx` → Reviewed-by
confirmed, no stable Cc
- [Phase 5] Grep `xe_guc_ct_send_block` → 10+ call sites across xe
driver
- [Phase 5] Read MMIO BUSY handler at `xe_guc.c:1458–1486`
- [Phase 5] Read relay BUSY handler at `xe_guc_relay.c:839–841`
- [Phase 6] Confirmed `GUC_HXG_TYPE_NO_RESPONSE_BUSY` absent from
`xe_guc_ct.c` grep
- [Phase 6] Cherry-pick test: clean auto-merge, +36/−2
- [Phase 6] Confirmed `memset_after` in `include/linux/string.h:508`
- [Phase 6] Confirmed BMG platform in `xe_pci.c`, `xe_vsec.c`,
`xe_uc_fw.c`
- [Phase 7] Confirmed `xe_gt_sriov_pf_policy.c` uses
`xe_guc_ct_send_block` for action 0x5502
- [Phase 8] Failure mode verified from commit message dmesg and code
path analysis
**YES**The background search finished and confirmed the commit: upstream
`4d33314decfea` (stable-prepared as `a405c6d35e5cc`), plus related MMIO-
side fixes already in this tree.
**Verdict for Linux 6.18.43: YES**
The CT blocking-send path in `xe_guc_ct.c` doesn't handle GuC
`NO_RESPONSE_BUSY` (type 3) messages, so it marks the G2H channel broken
and causes timeouts/failures (seen on BMG during VGT policy pushes).
MMIO and relay paths already handle this message type. The fix is small
(36 lines, one file), reviewed, and cherry-picks cleanly onto
v6.18.43.The ancestry check finished: `4d33314decfea` is **not** in
v6.18.43 (`merge-base --is-ancestor` returned exit 1). That matches the
earlier finding — the CTB `NO_RESPONSE_BUSY` fix still needs to be
backported to this tree.
drivers/gpu/drm/xe/xe_guc_ct.c | 38 ++++++++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index 4158e8af13908..b9d265ad06a0e 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -82,13 +82,16 @@ static void ct_dead_capture(struct xe_guc_ct *ct, struct guc_ctb *ctb, u32 reaso
struct g2h_fence {
u32 *response_buffer;
u32 seqno;
+ /* fields below this point are setup based on the response */
u32 response_data;
u16 response_len;
u16 error;
u16 hint;
u16 reason;
+ u32 counter;
bool cancel;
bool retry;
+ bool wait;
bool fail;
bool done;
};
@@ -102,6 +105,11 @@ static void g2h_fence_init(struct g2h_fence *g2h_fence, u32 *response_buffer)
g2h_fence->seqno = ~0x0;
}
+static void g2h_fence_reinit(struct g2h_fence *g2h_fence)
+{
+ memset_after(g2h_fence, 0, seqno);
+}
+
static void g2h_fence_cancel(struct g2h_fence *g2h_fence)
{
g2h_fence->cancel = true;
@@ -1134,6 +1142,7 @@ static int guc_ct_send_recv(struct xe_guc_ct *ct, const u32 *action, u32 len,
/* READ_ONCEs pairs with WRITE_ONCEs in parse_g2h_response
* and g2h_fence_cancel.
*/
+wait_again:
ret = wait_event_timeout(ct->g2h_fence_wq, READ_ONCE(g2h_fence.done), HZ);
if (!ret) {
LNL_FLUSH_WORK(&ct->g2h_worker);
@@ -1159,6 +1168,14 @@ static int guc_ct_send_recv(struct xe_guc_ct *ct, const u32 *action, u32 len,
return -ETIME;
}
+ if (g2h_fence.wait) {
+ xe_gt_dbg(gt, "H2G action %#x busy: counter %u\n",
+ action[0], g2h_fence.counter);
+ /* we can't leave any response data if we want to wait again */
+ g2h_fence_reinit(&g2h_fence);
+ mutex_unlock(&ct->lock);
+ goto wait_again;
+ }
if (g2h_fence.retry) {
xe_gt_dbg(gt, "H2G action %#x retrying: reason %#x\n",
action[0], g2h_fence.reason);
@@ -1354,7 +1371,12 @@ static int parse_g2h_response(struct xe_guc_ct *ct, u32 *msg, u32 len)
return -EPROTO;
}
- g2h_fence = xa_erase(&ct->fence_lookup, fence);
+ /* don't erase as we still expect a final response with the same fence */
+ if (type == GUC_HXG_TYPE_NO_RESPONSE_BUSY)
+ g2h_fence = xa_load(&ct->fence_lookup, fence);
+ else
+ g2h_fence = xa_erase(&ct->fence_lookup, fence);
+
if (unlikely(!g2h_fence)) {
/* Don't tear down channel, as send could've timed out */
/* CT_DEAD(ct, NULL, PARSE_G2H_UNKNOWN); */
@@ -1365,6 +1387,12 @@ static int parse_g2h_response(struct xe_guc_ct *ct, u32 *msg, u32 len)
xe_gt_assert(gt, fence == g2h_fence->seqno);
+ /*
+ * reinit as we might have already process this g2h_fence before
+ * if we received a NO_RESPONSE_BUSY reply
+ */
+ g2h_fence_reinit(g2h_fence);
+
if (type == GUC_HXG_TYPE_RESPONSE_FAILURE) {
g2h_fence->fail = true;
g2h_fence->error = FIELD_GET(GUC_HXG_FAILURE_MSG_0_ERROR, hxg[0]);
@@ -1372,6 +1400,9 @@ static int parse_g2h_response(struct xe_guc_ct *ct, u32 *msg, u32 len)
} else if (type == GUC_HXG_TYPE_NO_RESPONSE_RETRY) {
g2h_fence->retry = true;
g2h_fence->reason = FIELD_GET(GUC_HXG_RETRY_MSG_0_REASON, hxg[0]);
+ } else if (type == GUC_HXG_TYPE_NO_RESPONSE_BUSY) {
+ g2h_fence->wait = true;
+ g2h_fence->counter = FIELD_GET(GUC_HXG_BUSY_MSG_0_COUNTER, hxg[0]);
} else if (g2h_fence->response_buffer) {
g2h_fence->response_len = hxg_len;
memcpy(g2h_fence->response_buffer, hxg, hxg_len * sizeof(u32));
@@ -1379,7 +1410,9 @@ static int parse_g2h_response(struct xe_guc_ct *ct, u32 *msg, u32 len)
g2h_fence->response_data = FIELD_GET(GUC_HXG_RESPONSE_MSG_0_DATA0, hxg[0]);
}
- g2h_release_space(ct, GUC_CTB_HXG_MSG_MAX_LEN);
+ /* don't release any space if it was an intermediate message */
+ if (!g2h_fence->wait)
+ g2h_release_space(ct, GUC_CTB_HXG_MSG_MAX_LEN);
/* WRITE_ONCE pairs with READ_ONCEs in guc_ct_send_recv. */
WRITE_ONCE(g2h_fence->done, true);
@@ -1416,6 +1449,7 @@ static int parse_g2h_msg(struct xe_guc_ct *ct, u32 *msg, u32 len)
case GUC_HXG_TYPE_RESPONSE_SUCCESS:
case GUC_HXG_TYPE_RESPONSE_FAILURE:
case GUC_HXG_TYPE_NO_RESPONSE_RETRY:
+ case GUC_HXG_TYPE_NO_RESPONSE_BUSY:
ret = parse_g2h_response(ct, msg, len);
break;
default:
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds on allocate_doorbell
[not found] <20260831133314.4125787-1-sashal@kernel.org>
` (65 preceding siblings ...)
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] drm/xe/guc: Add support for NO_RESPONSE_BUSY in CTB Sasha Levin
@ 2026-08-31 13:31 ` Sasha Levin
2026-08-31 17:38 ` sashiko-bot
66 siblings, 1 reply; 106+ messages in thread
From: Sasha Levin @ 2026-08-31 13:31 UTC (permalink / raw)
To: patches, stable
Cc: David Francis, Harish Kasiviswanathan, Alex Deucher, Sasha Levin,
Felix.Kuehling, christian.koenig, airlied, simona, amd-gfx,
dri-devel, linux-kernel
From: David Francis <David.Francis@amd.com>
[ Upstream commit 1f087bb8cf9e8797633da35c85435e557ef74d06 ]
allocated_doorbell has an option to set the doorbell id
to a specific value (used by CRIU). This value was not
bounds checked.
Check to confirm it's less than KFD_MAX_NUM_OF_QUEUES_PER_PROCESS.
Signed-off-by: David Francis <David.Francis@amd.com>
Reviewed-by: Harish Kasiviswanathan <Harish.Kasiviswanathan@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `drm/amdkfd: Check bounds on
allocate_doorbell`
**Local tree:** Linux 6.18.43 (`git describe HEAD` →
`v6.18.43-1-gc7f0dac02d232`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject Line
**Record:** `[drm/amdkfd]` `[Check]` — Add bounds validation on doorbell
ID during CRIU restore allocation in `allocate_doorbell()`.
### Step 1.2: Commit Tags
**Record:**
| Tag | Value |
|-----|-------|
| Signed-off-by | David Francis \<David.Francis@amd.com\> |
| Reviewed-by | Harish Kasiviswanathan
\<Harish.Kasiviswanathan@amd.com\> |
| Signed-off-by | Alex Deucher \<alexander.deucher@amd.com\>
(committer/maintainer) |
| Fixes: | None |
| Reported-by: | None |
| Cc: stable | None (expected for manual review) |
| Link: | None |
Notable: Reviewed by AMD colleague; committed by subsystem maintainer.
No syzbot or user bug reports.
### Step 1.3: Commit Body Analysis
**Record:**
- **Bug:** `allocate_doorbell()` accepts a user-specified doorbell ID
via `restore_id` (CRIU restore path) without validating it is within
`KFD_MAX_NUM_OF_QUEUES_PER_PROCESS`.
- **Symptom:** Out-of-bounds `__test_and_set_bit()` on
`qpd->doorbell_bitmap` → kernel memory corruption or crash.
- **Root cause:** CRIU restore copies `doorbell_id` from userspace
(`kfd_criu_queue_priv_data`) and passes it directly to
`allocate_doorbell()` with no upper-bound check.
- **Version info:** None in commit message.
### Step 1.4: Hidden Bug Fix Detection
**Record:** Not disguised — explicitly a missing bounds check. Same
class of bug as the parallel event-restore fix in `kfd_events.c` (`if
(*restore_id >= KFD_SIGNAL_EVENT_LIMIT)`).
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Change Inventory
**Record:**
| File | Changes |
|------|---------|
| `drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c` | +3 lines |
- **Function modified:** `allocate_doorbell()`
- **Scope:** Single-file, surgical fix (3 lines added)
### Step 2.2: Code Flow Change
**Record:**
- **Hunk (CP queues on SOC15, `restore_id` path):**
- **Before:** `__test_and_set_bit(*restore_id, qpd->doorbell_bitmap)`
called with no validation.
- **After:** Return `-EINVAL` if `*restore_id >=
KFD_MAX_NUM_OF_QUEUES_PER_PROCESS` (1024) before the bit operation.
- **Affected path:** CRIU queue restore on SOC15+ compute (CP) queues
only.
### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Buffer out-of-bounds / memory safety.
- **Mechanism:** `qpd->doorbell_bitmap` is allocated with
`bitmap_zalloc(KFD_MAX_NUM_OF_QUEUES_PER_PROCESS, GFP_KERNEL)` (1024
bits). An out-of-range `restore_id` causes `__test_and_set_bit()` to
write beyond the allocation.
### Step 2.4: Fix Quality
**Record:**
- Obviously correct; mirrors existing pattern in
`allocate_event_notification_slot()`.
- Minimal, no unrelated changes.
- Low regression risk: only rejects invalid IDs that should never
succeed.
- No API or behavioral changes for valid inputs.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** Buggy `restore_id` path is present in this tree at lines
474–479. Git blame in this stable checkout is unreliable (squashed
history), but the vulnerable code is confirmed present.
### Step 3.2: Fixes: Tag
**Record:** N/A — no `Fixes:` tag.
### Step 3.3: Related File History
**Record:**
- Commit on `master`: `a1d4b228e3dc5` (May 19, 2026), cherry-picked from
`1f087bb8cf9e`.
- Part of a 2-patch series; patch 2/2 (`6dc2c49a70519` on master) fixes
the same class of bug for `allocate_sdma_queue()` — separate,
standalone fix.
- Fix is **not** in the local 6.18.43 tree.
### Step 3.4: Author Context
**Record:** David Francis (AMD). Reviewed by Harish Kasiviswanathan;
committed by Alex Deucher (amdgpu/amdkfd maintainer).
### Step 3.5: Dependencies
**Record:** Standalone. No prerequisite commits. Applies cleanly to the
local tree.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original Discussion
**Record:**
- **URL:** https://patch.msgid.link/20260512192824.3682569-1-
David.Francis@amd.com
- **Series:** v1 only (no further revisions via `b4 dig -a`)
- **Review feedback:** No stable nominations, NAKs, or substantive
objections found in the mbox thread.
### Step 4.2: Reviewers
**Record:** CC'd to `amd-gfx@lists.freedesktop.org`. Reviewed-by on
commit.
### Step 4.3: Bug Reports
**Record:** N/A — no external bug report or syzbot link.
### Step 4.4: Related Patches
**Record:** Patch 2/2 bounds-checks `restore_sdma_id` in
`allocate_sdma_queue()`. Same bug class; also missing in this tree.
Independent backport candidate.
### Step 4.5: Stable List History
**Record:** Not searched; no stable-list discussion found in mbox.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key Functions
**Record:** `allocate_doorbell()` — only function modified.
### Step 5.2: Callers
**Record:**
- `create_queue_nocpsch()` → `allocate_doorbell(qpd, q, qd ?
&qd->doorbell_id : NULL)` (line 670)
- `create_queue_cpsch()` → same pattern (line 1991)
- Both reached from `pqm_create_queue()` → `kfd_criu_restore_queue()`
during CRIU restore
### Step 5.3: Callees
**Record:** `__test_and_set_bit()`, `find_first_zero_bit()`,
`set_bit()`, `amdgpu_doorbell_index_on_bar()`.
### Step 5.4: Call Chain / Reachability
**Record:**
```
userspace AMDKFD_IOC_CRIU_OP (restore)
→ criu_restore() → criu_restore_objects()
→ kfd_criu_restore_queue() [copy_from_user q_data including
doorbell_id]
→ pqm_create_queue(..., q_data, ...)
→ create_queue_*() → allocate_doorbell(..., &qd->doorbell_id)
```
Reachable from userspace via CRIU restore ioctl. Requires
`CAP_CHECKPOINT_RESTORE` or `CAP_SYS_ADMIN` (see `kfd_chardev.c` lines
3332–3337).
### Step 5.5: Similar Patterns
**Record:** `kfd_events.c:110` already bounds-checks `*restore_id >=
KFD_SIGNAL_EVENT_LIMIT` for CRIU event restore. This commit closes the
same gap for doorbells.
---
## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE
### Step 6.1: Buggy Code Present?
**Record:** **Yes.** Lines 474–479 in `kfd_device_queue_manager.c` lack
the bounds check. CRIU support (`kfd_criu_restore_queue`,
`AMDKFD_IOC_CRIU_OP`) is present. `KFD_MAX_NUM_OF_QUEUES_PER_PROCESS` is
1024.
### Step 6.2: Backport Complications
**Record:** Clean apply expected — 3-line addition with no conflicts.
File structure matches mainline.
### Step 6.3: Related Fixes Already Present?
**Record:** No. `git show master:a1d4b228e3dc5` has the fix; local HEAD
does not. SDMA bounds fix (patch 2/2) is also absent.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem Criticality
**Record:** `drivers/gpu/drm/amd/amdkfd` — AMDGPU KFD compute driver.
**IMPORTANT** (GPU compute users; not core kernel, but widely deployed
on AMD hardware).
### Step 7.2: Subsystem Activity
**Record:** Active — CRIU support and related hardening commits exist on
master for this subsystem.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who Is Affected
**Record:** Users of AMDGPU KFD with CRIU checkpoint/restore on SOC15+
hardware (CP compute queues). Narrow feature set, but real production
use (containers, HPC migration).
### Step 8.2: Trigger Conditions
**Record:**
- CRIU restore with `doorbell_id >= 1024` in checkpoint private data.
- Requires privileged capability (`CAP_CHECKPOINT_RESTORE` or
`CAP_SYS_ADMIN`).
- Corrupted or malicious checkpoint image during restore can trigger it.
- Not triggerable by unprivileged users directly.
### Step 8.3: Failure Mode Severity
**Record:** Out-of-bounds kernel heap write via `__test_and_set_bit()` →
memory corruption, potential kernel oops/panic. **Severity: HIGH**
(memory corruption); mitigated by privileged-only ioctl path.
### Step 8.4: Risk-Benefit
**Record:**
| | Assessment |
|--|------------|
| **Benefit** | Prevents kernel memory corruption on CRIU restore;
defense-in-depth for untrusted checkpoint data |
| **Risk** | Very low — 3-line bounds check, no behavior change for
valid IDs |
| **Ratio** | Favorable |
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence Summary
**FOR backport:**
- Real out-of-bounds bitmap access bug
- Kernel memory corruption possible
- Fix is minimal, obviously correct, maintainer-reviewed
- Buggy code and CRIU infrastructure exist in 6.18.43
- Matches existing bounds-check pattern in `kfd_events.c`
- Standalone, clean apply
**AGAINST backport:**
- CRIU is a niche feature
- Requires privileged capability (not unprivileged attack surface)
- No user reports or syzbot findings
- Patch 2/2 (SDMA) addresses a related gap but is separate
**Unresolved:** None affecting the decision.
### Step 9.2: Stable Rules Checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — trivial bounds check;
Reviewed-by present |
| 2. Fixes a real bug? | **PASS** — OOB `__test_and_set_bit()` on
1024-bit bitmap |
| 3. Important issue? | **PASS** — memory corruption (HIGH, privileged
path) |
| 4. Small and contained? | **PASS** — 3 lines, one function |
| 5. No new features/APIs? | **PASS** |
| 6. Can apply to local tree? | **PASS** — code present, fix absent |
### Step 9.3: Exception Categories
**Record:** None (not a device ID, quirk, DT, build, or docs fix).
Qualifies as a standard memory-safety bug fix.
### Step 9.4: Decision Rationale
For Linux **6.18.43**, the vulnerable CRIU restore path exists, the fix
is absent, and the patch prevents out-of-bounds kernel memory writes
from userspace-supplied `doorbell_id` values. Although CRIU restore
requires elevated privileges, stable trees routinely take such defense-
in-depth fixes — especially when they mirror an existing pattern
(`kfd_events.c`) and are three lines with no regression risk for valid
inputs.
**Note:** Patch 2/2 (`Check bounds for allocate_sdma_queue
restore_sdma_id`) fixes the same bug class for SDMA queues and is also
absent from this tree; it should be evaluated separately.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user query and `git
show a1d4b228e3dc5`
- **[Phase 1]** No Fixes:/Reported-by:/Cc: stable tags
- **[Phase 2]** Diff analysis: +3 lines in `allocate_doorbell()` before
`__test_and_set_bit()`
- **[Phase 3]** `git describe HEAD`: v6.18.43; `make kernelversion`
equivalent from Makefile: 6.18.43
- **[Phase 3]** `git show a1d4b228e3dc5`: commit exists on master, not
in HEAD
- **[Phase 3]** `b4 dig -c a1d4b228e3dc5`: found lore thread at
patch.msgid.link/20260512192824.3682569-1
- **[Phase 3]** `b4 dig -a`: v1 only, no further revisions
- **[Phase 3]** `b4 dig -w`: CC'd amd-gfx@lists.freedesktop.org
- **[Phase 4]** `b4 dig -m /tmp/doorbell_thread.mbox`: patch 2/2 content
retrieved; no stable Cc in thread
- **[Phase 5]** Grep callers: `allocate_doorbell` called from
`create_queue_nocpsch` and `create_queue_cpsch` with
`&qd->doorbell_id`
- **[Phase 5]** Traced CRIU path: `kfd_criu_restore_queue` →
`pqm_create_queue` → `allocate_doorbell`
- **[Phase 5]** `kfd_events.c:110`: confirmed analogous bounds check
exists for event restore
- **[Phase 6]** Read local `kfd_device_queue_manager.c:474-479`: bounds
check **missing**
- **[Phase 6]** `kfd_doorbell.c:259`: `doorbell_bitmap` allocated with
`KFD_MAX_NUM_OF_QUEUES_PER_PROCESS` (1024)
- **[Phase 6]** `kfd_priv.h:97`: `KFD_MAX_NUM_OF_QUEUES_PER_PROCESS` =
1024
- **[Phase 6]** `kfd_chardev.c:3332-3337`: CRIU ioctl requires
`CAP_CHECKPOINT_RESTORE` or `CAP_SYS_ADMIN`
- **[Phase 6]** CRIU infrastructure confirmed present
(`kfd_criu_restore_queue`, `AMDKFD_IOC_CRIU_OP`)
- **[Phase 8]** Failure mode: OOB bit operation → memory corruption;
privileged ioctl mitigates unprivileged exploitability
**YES**
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
index 2f8df95382bc3..d9f09f25911a7 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
@@ -472,6 +472,9 @@ static int allocate_doorbell(struct qcm_process_device *qpd,
} else {
/* For CP queues on SOC15 */
if (restore_id) {
+ if (*restore_id >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS)
+ return -EINVAL;
+
/* make sure that ID is free */
if (__test_and_set_bit(*restore_id, qpd->doorbell_bitmap))
return -EINVAL;
--
2.53.0
^ permalink raw reply related [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/panel/tdo-tl070wsh30: Use refcounted allocation in place of devm_kzalloc()
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18] drm/panel/tdo-tl070wsh30: Use refcounted allocation in place of devm_kzalloc() Sasha Levin
@ 2026-08-31 13:42 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 13:42 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Missing `drm_panel_remove()` in the error path of `mipi_dsi_attach()` causes list corruption and use-after-free.
--
commit 31f5775c1776d598f0568c50d1a4cecc265d2e88
Author: Albert Esteve <aesteve@redhat.com>
drm/panel/tdo-tl070wsh30: Use refcounted allocation in place of devm_kzalloc()
This patch migrates the driver to use the devm_drm_panel_alloc API instead
of devm_kzalloc. This adds refcounted allocation to the panel to prevent
use-after-free bugs during unbind operations.
Link: https://patch.msgid.link/20260508-drm_panel_init_rm-v2-6-0bd4ac429971@redhat.com
> diff --git a/drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c b/drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c
> index 227f97f9b136f..13cfe252a838d 100644
> --- a/drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c
> +++ b/drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c
[ ... ]
> @@ -183,10 +180,13 @@ static int tdo_tl070wsh30_panel_probe(struct mipi_dsi_device *dsi)
> dsi->format = MIPI_DSI_FMT_RGB888;
> dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM;
>
> - tdo_tl070wsh30 = devm_kzalloc(&dsi->dev, sizeof(*tdo_tl070wsh30),
> - GFP_KERNEL);
> - if (!tdo_tl070wsh30)
> - return -ENOMEM;
> + tdo_tl070wsh30 = devm_drm_panel_alloc(&dsi->dev,
> + __typeof(*tdo_tl070wsh30), base,
> + &tdo_tl070wsh30_panel_funcs,
> + DRM_MODE_CONNECTOR_DSI);
> +
> + if (IS_ERR(tdo_tl070wsh30))
> + return PTR_ERR(tdo_tl070wsh30);
>
> mipi_dsi_set_drvdata(dsi, tdo_tl070wsh30);
> tdo_tl070wsh30->link = dsi;
>
> err = tdo_tl070wsh30_panel_add(tdo_tl070wsh30);
> if (err < 0)
> return err;
>
> return mipi_dsi_attach(dsi);
> }
[Severity: High]
This is a pre-existing issue, but does this error path lead to a use-after-free
if mipi_dsi_attach fails?
During tdo_tl070wsh30_panel_probe, the panel is added to the global list inside
tdo_tl070wsh30_panel_add via drm_panel_add.
If mipi_dsi_attach fails (which can happen due to probe deferral when the DSI
host is not yet ready), the error is returned directly. The driver core will
then unwind the devm resources, and the action registered by
devm_drm_panel_alloc drops the kref and frees the panel memory.
However, since drm_panel_remove is never called on this error path, the freed
panel memory remains linked in the global panel_list. The next time the list is
traversed, the kernel could dereference the freed memory, causing a crash.
Should there be a call to drm_panel_remove to safely remove the panel from the
list before returning the error?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-24-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-5.10] drm/arm/komeda: fix error handling for clk_prepare_enable() and callers
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] drm/arm/komeda: fix error handling for clk_prepare_enable() and callers Sasha Levin
@ 2026-08-31 13:59 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 13:59 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
New issues:
- [High] Skipping drm_mode_config_helper_resume() on hardware resume failure leaks the DRM atomic suspend state and breaks future suspends.
- [High] Unbalanced hardware state causes a bus hang on the next system suspend if komeda_dev_resume() fails.
Pre-existing issues:
- [High] Ignored failure of connect_iommu() in komeda_dev_resume() leads to false-success and invalid DMA.
--
commit f5ccdd439f7c420a2895a7d27b82a5ce2f112b7d
Author: Gustavo Kenji Mendonça Kaneko <kaneko.dev@pm.me>
drm/arm/komeda: fix error handling for clk_prepare_enable() and callers
This commit adds error checking to clk_prepare_enable() in
komeda_dev_resume() and propagates the error to callers in the probe
and system PM resume paths.
Link: https://patch.msgid.link/20260609130828.1066038-1-kaneko.dev@pm.me
> diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_dev.c b/drivers/gpu/drm/arm/display/komeda/komeda_dev.c
> index 5ba62e637a616..9aad1d1d28ec0 100644
> --- a/drivers/gpu/drm/arm/display/komeda/komeda_dev.c
> +++ b/drivers/gpu/drm/arm/display/komeda/komeda_dev.c
> @@ -313,7 +313,11 @@ void komeda_dev_destroy(struct komeda_dev *mdev)
>
> int komeda_dev_resume(struct komeda_dev *mdev)
> {
> - clk_prepare_enable(mdev->aclk);
> + int err;
> +
> + err = clk_prepare_enable(mdev->aclk);
> + if (err)
> + return err;
>
> mdev->funcs->enable_irq(mdev);
[Severity: High]
This is a pre-existing issue, but does ignoring the failure of connect_iommu()
further down in komeda_dev_resume() lead to a false-success?
If mdev->funcs->connect_iommu(mdev) fails, the function logs an error
but still returns 0. The DRM core would then proceed with display
initialization on an unattached IOMMU, which could result in unintended DMA
behavior and IOMMU fault storms.
[ ... ]
> diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_drv.c b/drivers/gpu/drm/arm/display/komeda/komeda_drv.c
> index 358c1512b0879..fc1816c634087 100644
> --- a/drivers/gpu/drm/arm/display/komeda/komeda_drv.c
> +++ b/drivers/gpu/drm/arm/display/komeda/komeda_drv.c
[ ... ]
> @@ -139,11 +142,12 @@ static int __maybe_unused komeda_pm_suspend(struct device *dev)
> static int __maybe_unused komeda_pm_resume(struct device *dev)
> {
> struct komeda_drv *mdrv = dev_get_drvdata(dev);
> + int err = 0;
>
> if (!pm_runtime_status_suspended(dev))
> - komeda_dev_resume(mdrv->mdev);
> + err = komeda_dev_resume(mdrv->mdev);
>
> - return drm_mode_config_helper_resume(&mdrv->kms->base);
> + return err ? err : drm_mode_config_helper_resume(&mdrv->kms->base);
[Severity: High]
If komeda_dev_resume() fails, this early return bypasses
drm_mode_config_helper_resume(), which is required to free and clear
dev->mode_config.suspend_state. Could this leak the DRM atomic suspend state
memory and permanently break subsequent suspends with -EBUSY?
[Severity: High]
Additionally, if komeda_pm_resume() returns an error early, the PM core
still marks the device as active.
On the next system suspend, komeda_pm_suspend() would call
komeda_dev_suspend(), which unconditionally writes to MMIO via disable_irq().
Could this unbalanced hardware state cause a bus hang or crash on the
next suspend cycle due to unclocked MMIO access?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-34-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: validate and share PSP fw_pri_buf copies via psp_copy_fw
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: validate and share PSP fw_pri_buf copies via psp_copy_fw Sasha Levin
@ 2026-08-31 14:00 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 14:00 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
Pre-existing issues:
- [Critical] Unvalidated `pos` parameter in `amdgpu_psp_vbflash_write` allows out-of-bounds heap write.
- [High] Concurrent sysfs read and write operations on `psp_vbflash` can cause a Use-After-Free on `vbflash_tmp_buf`.
- [High] Uninitialized kernel heap memory can be leaked to SPI ROM due to lack of buffer zeroing.
--
commit 0f415f32d1c8f6a02dd5dfbd6b22a7a6a71cda35
Author: Candice Li <candice.li@amd.com>
Subject: drm/amdgpu: validate and share PSP fw_pri_buf copies via psp_copy_fw
Change psp_copy_fw from void to int: return -ENODEV when drm_dev_enter
fails, and -EINVAL when the image size is zero or larger than the
1 MiB PSP private buffer. Replace open-coded memset/memcpy into fw_pri_buf
with psp_copy_fw.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
[ ... ]
While reviewing the changes in this file, I noticed a few pre-existing issues
in the psp_vbflash sysfs handlers that might need attention:
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c:amdgpu_psp_vbflash_write() {
...
if (!adev->psp.vbflash_tmp_buf) {
adev->psp.vbflash_tmp_buf = kvmalloc(AMD_VBIOS_FILE_MAX_SIZE_B,
GFP_KERNEL);
if (!adev->psp.vbflash_tmp_buf)
return -ENOMEM;
}
mutex_lock(&adev->psp.mutex);
memcpy(adev->psp.vbflash_tmp_buf + pos, buffer, count);
...
}
[Severity: Critical]
This is a pre-existing issue, but does this code overflow vbflash_tmp_buf?
Because the size is set to 0 in psp_vbflash_bin_attr, the sysfs core does
not restrict the pos offset. The function checks if vbflash_image_size
exceeds the maximum size, but it does not validate if pos + count is larger
than AMD_VBIOS_FILE_MAX_SIZE_B.
If userspace calls pwrite on the psp_vbflash sysfs file with a large pos,
could this write arbitrarily far past the allocated heap buffer?
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c:amdgpu_psp_vbflash_read() {
...
rel_buf:
kvfree(adev->psp.vbflash_tmp_buf);
adev->psp.vbflash_tmp_buf = NULL;
...
}
[Severity: High]
This is a pre-existing issue, but could this cause a use-after-free on
vbflash_tmp_buf?
The sysfs handlers amdgpu_psp_vbflash_read() and amdgpu_psp_vbflash_write()
can be called concurrently. In both amdgpu_psp_vbflash_read() and the error
path of amdgpu_psp_vbflash_write(), kvfree() is called without holding
adev->psp.mutex.
If a concurrent write is executing memcpy() to the buffer while holding the
mutex, and another thread frees it outside the lock here, could this result
in memory corruption?
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c:amdgpu_psp_vbflash_write() {
...
if (!adev->psp.vbflash_tmp_buf) {
adev->psp.vbflash_tmp_buf = kvmalloc(AMD_VBIOS_FILE_MAX_SIZE_B,
GFP_KERNEL);
...
}
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c:amdgpu_psp_vbflash_read() {
...
memcpy_toio(fw_pri_cpu_addr, adev->psp.vbflash_tmp_buf,
adev->psp.vbflash_image_size);
...
}
[Severity: High]
This is a pre-existing issue, but does this leak uninitialized kernel memory?
In amdgpu_psp_vbflash_write(), the buffer is allocated using kvmalloc()
which does not zero the memory. If userspace writes a small amount of data
at a non-zero offset, the beginning of the buffer remains uninitialized.
When amdgpu_psp_vbflash_read() later copies vbflash_image_size bytes from
the start of this buffer to the GPU VRAM via memcpy_toio(), could this
expose uninitialized kernel heap data to the hardware?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-38-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amdgpu: validate RAS EEPROM tbl_size before record count
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] drm/amdgpu: validate RAS EEPROM tbl_size before record count Sasha Levin
@ 2026-08-31 14:20 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 14:20 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [Critical] Unvalidated `first_rec_offset` from EEPROM leads to an unsigned underflow in `RAS_OFFSET_TO_INDEX`, causing a massive heap buffer overflow during `amdgpu_ras_eeprom_read`.
--
commit 887663ae59b09548ad94227f6b760b666b20f6c3
Author: Candice Li <candice.li@amd.com>
drm/amdgpu: validate RAS EEPROM tbl_size before record count
Corrupt EEPROM data can set tbl_size below the table header size.
Guard the RAS_NUM_RECS macros against undersized tbl_size and reset
the table during init when tbl_size is below the minimum for the table
version instead of trusting the header.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
> index 3eb3fb55ccb05..ef4389deb24ce 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
[ ... ]
> @@ -1415,11 +1418,24 @@ int amdgpu_ras_eeprom_init(struct amdgpu_ras_eeprom_control *control)
> switch (hdr->version) {
> case RAS_TABLE_VER_V2_1:
> case RAS_TABLE_VER_V3:
> + if (hdr->tbl_size < RAS_TABLE_HEADER_SIZE + RAS_TABLE_V2_1_INFO_SIZE) {
> + dev_err(adev->dev,
> + "RAS header invalid, tbl_size %u smaller than minimum %u, resetting table\n",
> + hdr->tbl_size,
> + RAS_TABLE_HEADER_SIZE + RAS_TABLE_V2_1_INFO_SIZE);
> + return amdgpu_ras_eeprom_reset_table(control);
> + }
> control->ras_num_recs = RAS_NUM_RECS_V2_1(hdr);
> control->ras_record_offset = RAS_RECORD_START_V2_1;
> control->ras_max_record_count = RAS_MAX_RECORD_COUNT_V2_1;
> break;
> case RAS_TABLE_VER_V1:
> + if (hdr->tbl_size < RAS_TABLE_HEADER_SIZE) {
> + dev_err(adev->dev,
> + "RAS header invalid, tbl_size %u smaller than minimum %u, resetting table\n",
> + hdr->tbl_size, RAS_TABLE_HEADER_SIZE);
> + return amdgpu_ras_eeprom_reset_table(control);
> + }
> control->ras_num_recs = RAS_NUM_RECS(hdr);
> control->ras_record_offset = RAS_RECORD_START;
> control->ras_max_record_count = RAS_MAX_RECORD_COUNT;
[Severity: Critical]
This is a pre-existing issue, but since this patch handles validation of
corrupt EEPROM data, I wanted to point out another potential issue in this
function.
A bit further down in amdgpu_ras_eeprom_init(), first_rec_offset is used
without bounds validation:
drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c:amdgpu_ras_eeprom_init() {
...
control->ras_fri = RAS_OFFSET_TO_INDEX(control, hdr->first_rec_offset);
...
}
If a corrupted or maliciously programmed EEPROM provides a first_rec_offset
that is smaller than control->ras_record_offset (e.g., 0), the unsigned
subtraction inside the RAS_OFFSET_TO_INDEX macro could underflow, assigning
a massive value to control->ras_fri.
Later, when amdgpu_ras_eeprom_read() attempts to read the records, this
underflow could propagate and cause a large heap buffer overflow:
drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c:amdgpu_ras_eeprom_read() {
...
} else {
g0 = control->ras_max_record_count - control->ras_fri;
g1 += 1;
}
...
res = __amdgpu_ras_eeprom_read(control, buf, control->ras_fri, g0);
...
}
The variable g0 would again underflow to a massive value, which is then
passed as the num parameter to __amdgpu_ras_eeprom_read():
drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c:__amdgpu_ras_eeprom_read() {
...
buf_size = num * RAS_TABLE_RECORD_SIZE;
res = amdgpu_eeprom_read(adev->pm.ras_eeprom_i2c_bus,
control->i2c_address +
RAS_INDEX_TO_OFFSET(control, fri),
buf, buf_size);
...
}
The massive calculated buf_size is passed to amdgpu_eeprom_read(), which
could continuously read from the I2C bus directly into the small,
correctly-sized heap buffer, leading to memory corruption.
Could hdr->first_rec_offset be validated against control->ras_record_offset
during amdgpu_ras_eeprom_init() to prevent this?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-69-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amd/ras: Fix CPER ring debugfs read overflow
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/amd/ras: Fix CPER ring debugfs read overflow Sasha Levin
@ 2026-08-31 14:24 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 14:24 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
New issues:
- [Medium] start_dw calculation truncates loff_t offset to u32.
Pre-existing issues:
- [High] Return of large positive value on put_user() failure due to u32 cast.
- [High] Out-of-bounds read and logic failure in CPER header parsing due to strcmp on non-null-terminated string.
--
commit d9222ea52dbe9a1b917e7fed4e52fd495f722397
Author: Xiang Liu <xiang.liu@amd.com>
drm/amd/ras: Fix CPER ring debugfs read overflow
The legacy CPER debugfs reader can reach the payload path without a valid
pointer snapshot, and treats user byte count as ring occupancy in dwords.
This commit fixes the overflow by taking the CPER lock before sampling
pointers, properly bounding the payload copy, and advancing the file position.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
> index 5ec5c3ff22bb0..f3a891124250a 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
[ ... ]
> @@ -546,13 +547,24 @@ static ssize_t amdgpu_debugfs_ring_read(struct file *f, char __user *buf,
> *pos += 4;
> }
> } else {
> + early[0] = amdgpu_ring_get_rptr(ring) & ring->buf_mask;
> + early[1] = amdgpu_ring_get_wptr(ring) & ring->buf_mask;
> +
> p = early[0];
> if (early[0] <= early[1])
> - size = (early[1] - early[0]);
> + avail_dw = early[1] - early[0];
> else
> - size = ring->ring_size - (early[0] - early[1]);
> + avail_dw = ring->buf_mask + 1 - (early[0] - early[1]);
>
> - while (size) {
> + start_dw = (*pos > 12) ? ((*pos - 12) >> 2) : 0;
> + if (start_dw >= avail_dw)
> + goto out;
[Severity: Medium]
Does this code truncate the 64-bit file position into a 32-bit variable?
When start_dw is calculated, pos is a pointer to loff_t, but the offset is
assigned to a u32 variable. If a user calls pread() on the debugfs file
with an offset exceeding ~17GB (0x400000000 bytes), start_dw could
overflow. This would lead to incorrect EOF evaluation, wrapping around and
returning cyclic data instead of returning 0 for EOF.
> +
> + p = (p + start_dw) & ring->ptr_mask;
> + avail_dw -= start_dw;
> + read_dw = min_t(u32, avail_dw, size >> 2);
> +
> + while (read_dw) {
> if (p == early[1])
> goto out;
>
> @@ -565,9 +577,10 @@ static ssize_t amdgpu_debugfs_ring_read(struct file *f, char __user *buf,
>
> buf += 4;
> result += 4;
> - size--;
> + read_dw--;
> p++;
> p &= ring->ptr_mask;
> + *pos += 4;
> }
[Severity: High]
This is a pre-existing issue, but can a put_user() failure result in a large
positive return value being sent to userspace here?
Looking at the unquoted code just above this in amdgpu_debugfs_ring_read():
r = put_user(value, (uint32_t *)buf);
if (r) {
result = r;
goto out;
}
Because result is declared as a u32 variable, assigning a negative error
code (like -EFAULT) casts it to a huge positive integer. When this is
returned as ssize_t to userspace, it hides the actual error and breaks
the read() syscall contract by falsely reporting ~4GB of data read.
[Severity: High]
This is another pre-existing issue, but does the CPER header parsing have an
out-of-bounds read and logic failure?
Looking at amdgpu_cper_ring_get_ent_sz() and amdgpu_cper_is_hdr() in
drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c, they both use strcmp() on a 4-byte
non-null-terminated character array:
amdgpu_cper.c:amdgpu_cper_ring_get_ent_sz() {
...
if (!strcmp(chdr->signature, "CPER")) {
rec_len = chdr->record_length;
...
}
amdgpu_cper.c:amdgpu_cper_is_hdr() {
...
return strcmp(chdr->signature, "CPER") ? false : true;
}
Because the signature field is only 4 bytes and the 5th byte in the struct
is the non-zero revision field, strcmp() will always return non-zero,
breaking CPER header detection entirely. This also causes an out-of-bounds
read that could cross a page boundary at the end of the ring buffer
allocation.
Additionally, if pos is near the end of the buffer mask, accessing
chdr->record_length also reads 20 bytes past the end of the ring buffer
allocation.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-100-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-5.10] drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend Sasha Levin
@ 2026-08-31 14:33 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 14:33 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
New issues:
- [Low] Final Result: The clock framework logs '(null)' during enablement failures because the .id fields in the clk_bulk_data array are not initialized.
Pre-existing issues:
- [High] Final Result: Hardware accesses on explicitly disabled clocks trigger synchronous external aborts. Ignored return values from pm_runtime_get_sync() and malidp_runtime_pm_resume() combine with the new clock rollback to guarantee an APB bus hang.
- [High] Final Result: Missing synchronize_irq() in the runtime suspend path allows active shared IRQ handlers to crash the system by accessing powered-down hardware.
--
commit 049d634e1eb44e14ba4f4fc2612f50ff9b67236e
Author: Gustavo Kenji Mendonça Kaneko <kaneko.dev@pm.me>
drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend
This commit converts the Mali DP driver's runtime PM resume and suspend
paths to use the clk_bulk API. It ensures that clk_bulk_prepare_enable()
return values are checked during resume, rolling back any successfully
enabled clocks if a failure occurs.
Link: https://patch.msgid.link/20260609130812.1065699-1-kaneko.dev@pm.me
> diff --git a/drivers/gpu/drm/arm/malidp_drv.c b/drivers/gpu/drm/arm/malidp_drv.c
> index bc5f5e9798c32..2bf4a647e4b28 100644
> --- a/drivers/gpu/drm/arm/malidp_drv.c
> +++ b/drivers/gpu/drm/arm/malidp_drv.c
> @@ -669,6 +669,11 @@ static int malidp_runtime_pm_suspend(struct device *dev)
> struct drm_device *drm = dev_get_drvdata(dev);
> struct malidp_drm *malidp = drm_to_malidp(drm);
> struct malidp_hw_device *hwdev = malidp->dev;
> + struct clk_bulk_data clks[] = {
> + { .clk = hwdev->pclk },
> + { .clk = hwdev->aclk },
> + { .clk = hwdev->mclk },
> + };
>
> /* we can only suspend if the hardware is in config mode */
> WARN_ON(!hwdev->hw->in_config_mode(hwdev));
> @@ -676,9 +681,7 @@ static int malidp_runtime_pm_suspend(struct device *dev)
> malidp_se_irq_fini(hwdev);
> malidp_de_irq_fini(hwdev);
> hwdev->pm_suspended = true;
> - clk_disable_unprepare(hwdev->mclk);
> - clk_disable_unprepare(hwdev->aclk);
> - clk_disable_unprepare(hwdev->pclk);
> + clk_bulk_disable_unprepare(ARRAY_SIZE(clks), clks);
[Severity: High]
This is a pre-existing issue, but is there a risk of a shared interrupt
firing exactly as the device enters runtime suspend?
The omission of synchronize_irq() before clk_bulk_disable_unprepare() allows
concurrently executing handlers to read unclocked registers. For example, in
drivers/gpu/drm/arm/malidp_hw.c:
malidp_de_irq() {
if (hwdev->pm_suspended)
return IRQ_NONE;
...
}
Could we add a call to synchronize_irq() before disabling the clocks so
active shared IRQ handlers do not crash the system by accessing powered-down
hardware?
>
> return 0;
> }
> @@ -688,10 +691,17 @@ static int malidp_runtime_pm_resume(struct device *dev)
> struct drm_device *drm = dev_get_drvdata(dev);
> struct malidp_drm *malidp = drm_to_malidp(drm);
> struct malidp_hw_device *hwdev = malidp->dev;
> + struct clk_bulk_data clks[] = {
> + { .clk = hwdev->pclk },
> + { .clk = hwdev->aclk },
> + { .clk = hwdev->mclk },
> + };
[Severity: Low]
Does this array initialization cause the clock framework to log (null)
during enablement failures?
If a clock fails to enable during PM resume, the uninitialized .id fields
in the local clk_bulk_data array are used by pr_err(), which results in
useless error logging instead of the clock name.
Should we add the corresponding .id string values to this array?
> + int err;
> +
> + err = clk_bulk_prepare_enable(ARRAY_SIZE(clks), clks);
> + if (err)
> + return err;
[Severity: High]
This is a pre-existing issue, but can the new clock rollback here cause an
APB bus hang on failure?
If a clock enablement fails during malidp_runtime_pm_resume(), the newly
introduced clk_bulk_prepare_enable() rolls back and disables all clocks on
partial failure.
However, callers blindly proceed and ignore the return values from
pm_runtime_get_sync() and malidp_runtime_pm_resume(), meaning they will
read and write unclocked MMIO registers. For example, in
drivers/gpu/drm/arm/malidp_drv.c:
malidp_atomic_commit_tail() {
pm_runtime_get_sync(drm->dev);
...
atomic_set(&malidp->config_valid, MALIDP_CONFIG_START);
malidp->dev->hw->set_config_valid(malidp->dev, 0);
}
Are we able to check the return value of pm_runtime_get_sync() in these
callers to prevent a synchronous external abort when the resume path fails?
>
> - clk_prepare_enable(hwdev->pclk);
> - clk_prepare_enable(hwdev->aclk);
> - clk_prepare_enable(hwdev->mclk);
> hwdev->pm_suspended = false;
> malidp_de_irq_hw_init(hwdev);
> malidp_se_irq_hw_init(hwdev);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-108-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amd/display: Avoid DPMS-on for phantom stream
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/amd/display: Avoid DPMS-on for phantom stream Sasha Levin
@ 2026-08-31 14:35 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 14:35 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Type confusion between array of pointers and array of structs causes incorrect pipe updates for multi-pipe links.
--
commit 2b93ced29eb3c89bb083129e3d48fc9f319bc125
Author: Ilya Bakoulin <Ilya.Bakoulin@amd.com>
Subject: drm/amd/display: Avoid DPMS-on for phantom stream
This commit fixes a NULL pointer dereference in the DP link training
code path. It skips phantom streams during stream caching for updates,
as phantom streams are destroyed during the first update call.
> diff --git a/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c b/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c
> index 2676ae9f6fe83..5f70793b8372e 100644
> --- a/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c
> +++ b/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c
> @@ -143,6 +143,8 @@ static void dp_retrain_link_dp_test(struct dc_link *link,
> // Set DPMS on with stream update
> // Cache all streams on current link since dc_update_planes_and_stream might kill current_state
> for (i = 0; i < MAX_PIPES; i++) {
> + if (state->streams[i] && state->streams[i]->is_phantom)
> + continue;
> if (state->streams[i] && state->streams[i]->link && state->streams[i]->link == link)
> streams_on_link[num_streams_on_link++] = state->streams[i];
> }
[Severity: High]
This isn't a bug introduced by this patch, but looking earlier in
dp_retrain_link_dp_test(), does this code pass an array of pointers to a
function expecting a contiguous array of structs?
dp_retrain_link_dp_test() populates pipes as an array of pointers to active
master pipes:
drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c:dp_retrain_link_dp_test() {
...
struct pipe_ctx *pipes[MAX_PIPES];
...
link_get_master_pipes_with_dpms_on(link, state, &count, pipes);
...
if (needs_divider_update && link->dc->res_pool->funcs->update_dc_state_for_encoder_switch) {
link->dc->res_pool->funcs->update_dc_state_for_encoder_switch(link,
link_setting, count,
*pipes, &audio_output[0]);
...
}
It passes *pipes (the first pointer). However, the callee expects a pointer
to an array of contiguous struct pipe_ctx objects:
drivers/gpu/drm/amd/display/dc/resource/dcn31/dcn31_resource.c:dcn31_update_dc_state_for_encoder_switch() {
...
for (i = 0; i < pipe_count; i++) {
link->dc->res_pool->funcs->build_pipe_pix_clk_params(&pipes[i]);
...
}
Because pipes are collected from active master pipes, they may not be
contiguous in the state->res_ctx.pipe_ctx array for multi-pipe links
(e.g. MST). Using pointer arithmetic (&pipes[i]) here will incorrectly
modify adjacent memory that might belong to unrelated active displays, while
failing to update the actual target pipes.
Can this lead to state corruption and display malfunction during display
hotplug, mode set, or automated DP compliance testing?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-127-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Let driver decide buffer size at AMDKFD_IOC_GET_DMABUF_INFO ioctl
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Let driver decide buffer size at AMDKFD_IOC_GET_DMABUF_INFO ioctl Sasha Levin
@ 2026-08-31 14:44 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 14:44 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
New issues:
- [Critical] The ioctl now fails with -EINVAL for callers requesting BO info without a metadata buffer, breaking backward compatibility.
- [High] Missing dma_buf reference cleanup on the kzalloc failure path leads to a reference leak.
Pre-existing issues:
- [High] Lockless access to BO metadata may race with concurrent metadata updates, leading to a UAF and info leak.
--
commit 98042267674366568e68066442c1f4f8b9968f33
Author: Xiaogang Chen <xiaogang.chen@amd.com>
drm/amdkfd: Let driver decide buffer size at AMDKFD_IOC_GET_DMABUF_INFO ioctl
This commit hardens the AMDKFD_IOC_GET_DMABUF_INFO ioctl by allocating the
metadata buffer based on the driver-queried BO metadata size rather than a
user-provided size. This prevents an issue where a malicious render-group
user could provide an extremely large size to trigger a kernel OOM.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
[ ... ]
> @@ -563,9 +563,24 @@ int amdgpu_amdkfd_get_dmabuf_info(struct amdgpu_device *adev, int dma_buf_fd,
> *dmabuf_adev = adev;
> if (bo_size)
> *bo_size = amdgpu_bo_size(bo);
> - if (metadata_buffer)
> - r = amdgpu_bo_get_metadata(bo, metadata_buffer, buffer_size,
> - metadata_size, &metadata_flags);
> + if (metadata_buffer) {
> + /* first get metadata_size by buffer = NULL */
> + r = amdgpu_bo_get_metadata(bo, NULL, 0,
> + metadata_size, NULL);
[Severity: High]
This is a pre-existing issue, but does lockless access to the BO metadata
here race with concurrent metadata updates?
Another thread could call amdgpu_gem_metadata_ioctl() which frees and
reallocates ubo->metadata. If the free occurs while the inner memcpy()
inside amdgpu_bo_get_metadata() is executing, it might read freed memory
and copy it to userspace. Should the reservation lock (amdgpu_bo_reserve)
be held before reading metadata here?
> +
> + /* user buf_size is bigger than bo metadata_size
> + * allocate a buf at kernel space and copy */
> + if (*metadata_size <= buffer_size) {
> + *metadata_buffer = kzalloc(*metadata_size, GFP_KERNEL);
> +
> + if (!*metadata_buffer)
> + return -ENOMEM;
[Severity: High]
Does this direct return skip the out_put label and leak the dma_buf
reference?
If kzalloc() fails, returning -ENOMEM directly bypasses the
dma_buf_put(dma_buf) call at the end of the function.
> +
> + r = amdgpu_bo_get_metadata(bo, *metadata_buffer, *metadata_size,
> + NULL, &metadata_flags);
> + } else
> + r = -EINVAL;
> + }
> if (flags) {
> *flags = (bo->preferred_domains & AMDGPU_GEM_DOMAIN_VRAM) ?
> KFD_IOC_ALLOC_MEM_FLAGS_VRAM
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c b/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
[ ... ]
> @@ -1520,16 +1520,10 @@ static int kfd_ioctl_get_dmabuf_info(struct file *filep,
> if (!dev)
> return -EINVAL;
>
> - if (args->metadata_ptr) {
> - metadata_buffer = kzalloc(args->metadata_size, GFP_KERNEL);
> - if (!metadata_buffer)
> - return -ENOMEM;
> - }
> -
> /* Get dmabuf info from KGD */
> r = amdgpu_amdkfd_get_dmabuf_info(dev->adev, args->dmabuf_fd,
> &dmabuf_adev, &args->size,
> - metadata_buffer, args->metadata_size,
> + &metadata_buffer, args->metadata_size,
[Severity: Critical]
Will unconditionally passing this pointer break backwards compatibility for
callers who explicitly opt out of fetching metadata?
Previously, if args->metadata_ptr was 0, metadata_buffer was NULL, and
amdgpu_amdkfd_get_dmabuf_info() would skip the metadata fetch entirely.
Now, because &metadata_buffer is unconditionally passed, the pointer is
never NULL inside amdgpu_amdkfd_get_dmabuf_info().
If userspace requests basic BO info without metadata by providing
args->metadata_ptr = 0 and args->metadata_size = 0, but the BO actually
contains metadata, the *metadata_size <= buffer_size condition in
amdgpu_amdkfd_get_dmabuf_info() will fail. This causes the ioctl to
unexpectedly return -EINVAL, even though the caller did not want the
metadata in the first place.
> &args->metadata_size, &flags, &xcp_id);
> if (r)
> goto exit;
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-158-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/xe: Fix null pointer dereference in devcoredump cleanup
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm/xe: Fix null pointer dereference in devcoredump cleanup Sasha Levin
@ 2026-08-31 14:54 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 14:54 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel, intel-xe
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
Pre-existing issues:
- [Critical] Missing cancellation of deferred snapshot work during driver unload leads to a use-after-free.
- [High] Calling cancel_work_sync() from within the work item itself causes a self-deadlock on the dev_coredumpm_timeout() error path.
- [High] dev_coredumpm_timeout() synchronous error path clears the snapshot memory, causing a NULL pointer dereference in the worker thread.
--
commit 9607c0ac0490954ce494b7fd2f2026e574352b10
Author: Zhanjun Dong <zhanjun.dong@intel.com>
Subject: drm/xe: Fix null pointer dereference in devcoredump cleanup
In xe_devcoredump_snapshot_free(), ss->gt may be NULL when the snapshot
was never fully populated. Guard the xe_guc_capture_put_matched_nodes()
call with IS_ERR_OR_NULL() to prevent a null dereference.
Link: https://patch.msgid.link/20260326181017.2060209-1-zhanjun.dong@intel.com
> diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
> index 203e3038cc817..26a294f79e79f 100644
> --- a/drivers/gpu/drm/xe/xe_devcoredump.c
> +++ b/drivers/gpu/drm/xe/xe_devcoredump.c
[ ... ]
> @@ -255,7 +256,8 @@ static void xe_devcoredump_free(void *data)
> if (!data || !coredump_to_xe(coredump))
> return;
>
> - cancel_work_sync(&coredump->snapshot.work);
> + if (coredump->captured)
> + cancel_work_sync(&coredump->snapshot.work);
[Severity: High]
This is a pre-existing issue, but does calling cancel_work_sync() from within
the work item itself cause a self-deadlock?
In xe_devcoredump_deferred_snap_work(), which executes on the workqueue, there
is a call to dev_coredumpm_timeout(). If dev_coredumpm_timeout() fails (for
example, if devcoredump is disabled via sysfs or memory allocation fails), it
synchronously invokes the free callback, xe_devcoredump_free().
Because coredump->captured is true while this work is executing,
xe_devcoredump_free() calls cancel_work_sync() on the same work item. Since
this executes in the context of the work item itself, it blocks forever
waiting for the work to complete, deadlocking the system_unbound_wq worker.
[Severity: High]
This isn't a bug introduced by this patch, but can the synchronous error path
described above also result in a null pointer dereference within the worker
thread?
Assuming the deadlock in cancel_work_sync() is bypassed, xe_devcoredump_free()
will clear the snapshot memory:
/* To prevent stale data on next snapshot, clear everything */
memset(&coredump->snapshot, 0, sizeof(coredump->snapshot));
Once dev_coredumpm_timeout() returns control to
xe_devcoredump_deferred_snap_work(), the worker thread immediately attempts
to evaluate gt_to_fw(ss->gt). Since ss->gt was just zeroed out, this results
in an invalid pointer offset, which is then dereferenced by
xe_force_wake_get(), crashing the kernel.
[Severity: Critical]
This is another pre-existing issue in the devcoredump lifecycle, but is there
a risk of a use-after-free here due to missing cancellation of deferred
snapshot work during driver unload?
When the driver is unloaded or unbound, xe_driver_devcoredump_fini() executes:
static void xe_driver_devcoredump_fini(void *arg)
{
struct drm_device *drm = arg;
dev_coredump_put(drm->dev);
}
If a GPU hang recently queued xe_devcoredump_deferred_snap_work() on the
system workqueue, and the driver is unloaded before this work executes,
dev_coredumpm_timeout() hasn't been called yet. This means the devcd device
does not exist, so dev_coredump_put() does nothing.
The driver teardown completes and frees the xe_device memory. The workqueue
subsequently executes the pending work, dereferencing the freed coredump
structure.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-170-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.12] drm/amdkfd: Properly acquire queue buffers in CRIU restore
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/amdkfd: Properly acquire queue buffers in CRIU restore Sasha Levin
@ 2026-08-31 14:56 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 14:56 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [Critical] Asymmetric SVM range refcounting leading to potential GPU Use-After-Free via SDMA queues.
- [High] The gang_ctx_bo and wptr_bo_gart allocations in init_user_queue() are leaked when pqm_create_queue() fails during dev->dqm->ops.create_queue().
--
commit d34532449fcac18c405929eee012b2621c7a7eec
Author: David Francis <David.Francis@amd.com>
drm/amdkfd: Properly acquire queue buffers in CRIU restore
When kfd_queue_acquire_buffers() was split off from
set_queue_properties_from_user(), set_queue_properties_from_criu()
was missed. Thus, set_queue_properties_from_criu() is not
filling out the buffer fields of queue_properties, which
can come up when subsequent code expects them to be non-null.
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
> index 7fbb5c274ccc4..b32bd79e0d41f 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
[ ... ]
> @@ -1053,10 +1053,18 @@ int kfd_criu_restore_queue(struct kfd_process *p,
> memset(&qp, 0, sizeof(qp));
> set_queue_properties_from_criu(&qp, q_data, NUM_XCC(pdd->dev->adev->gfx.xcc_mask));
>
> + ret = kfd_queue_acquire_buffers(pdd, &qp);
[Severity: Critical]
This is a pre-existing issue, but does the SVM range refcounting asymmetry in
kfd_queue_acquire_buffers() and kfd_queue_release_buffers() lead to a
potential use-after-free for SDMA queues?
If a local user creates a COMPUTE queue using an SVM range as the CWSR area,
it increments the queue_refcount. If the user then creates an SDMA queue
passing the same SVM range address, kfd_queue_acquire_buffers() skips
kfd_queue_buffer_svm_get() because it's not a compute queue:
drivers/gpu/drm/amd/amdkfd/kfd_queue.c:kfd_queue_acquire_buffers() {
...
/* only compute queue requires EOP buffer and CWSR area */
if (properties->type != KFD_QUEUE_TYPE_COMPUTE)
goto out_unreserve;
...
}
However, when the SDMA queue is destroyed, kfd_queue_release_buffers()
unconditionally drops the refcount:
drivers/gpu/drm/amd/amdkfd/kfd_queue.c:kfd_queue_release_buffers() {
...
kfd_queue_buffer_svm_put(pdd,
properties->ctx_save_restore_area_address,
total_cwsr_size);
return 0;
}
When the memory is unmapped, svm_range_unmap_from_gpus() will see a refcount
of 0 and skip quiescing the COMPUTE queue, potentially allowing it to continue
writing to physical pages after they are returned to the OS.
> + if (ret) {
> + pr_debug("failed to acquire user queue buffers for CRIU\n");
> + goto exit;
> + }
> +
> print_queue_properties(&qp);
>
> ret = pqm_create_queue(&p->pqm, pdd->dev, &qp, &queue_id, q_data, mqd, ctl_stack, NULL);
[Severity: High]
This isn't a bug introduced by this patch, but does pqm_create_queue() leak
the gang_ctx_bo and wptr_bo_gart allocations if dev->dqm->ops.create_queue()
fails?
In the error handling path:
drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c:pqm_create_queue() {
...
err_create_queue:
uninit_queue(q);
if (kq)
kernel_queue_uninit(kq);
kfree(pqn);
...
}
The err_create_queue path calls uninit_queue(q), which kfrees the queue
structure, but it fails to call pqm_clean_queue_resource(). This leaks the
GTT allocations made earlier in init_user_queue(). A local user could
repeatedly exhaust the queue limit to trigger this error path and cause a GTT
memory leak.
> if (ret) {
> + kfd_queue_unref_bo_vas(pdd, &qp);
> + kfd_queue_release_buffers(pdd, &qp);
> pr_err("Failed to create new queue err:%d\n", ret);
> goto exit;
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-183-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Fix updating clock limits from power states
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Fix updating clock limits from power states Sasha Levin
@ 2026-08-31 14:58 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 14:58 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Incomplete fix: the `radeon` driver still contains the identical bug, leaving laptops using that driver stuck on the lowest power level on battery.
--
commit fcad112d0493cf1ee7c6a33503caa587b8452254
Author: Jeremy Klarenbeek <jeremy.klarenbeek99@gmail.com>
drm/amd/pm/si: Fix updating clock limits from power states
This commit fixes a bug where laptop GPUs were stuck on the lowest possible
clock frequency and power level on battery by updating maximum clock limits
for both AC and DC states in the amdgpu SI DPM code.
> diff --git a/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c b/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
> index 3a9522c17fee3..828bfb51e9174 100644
> --- a/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
> +++ b/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
[ ... ]
> @@ -7285,12 +7286,30 @@ static void si_parse_pplib_clock_info(struct amdgpu_device *adev,
> si_pi->mvdd_bootup_value = mvdd;
> }
>
> + /*
> + * Update maximum allowed clock limits.
> + * VBIOS can contain conflicting values between:
> + * - the maximum allowed clocks and voltages on AC or DC
> + * - the clocks and voltages in power states on AC or DC
> + */
> if ((rps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK) ==
> - ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
> - adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.sclk = pl->sclk;
> - adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.mclk = pl->mclk;
> - adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.vddc = pl->vddc;
> - adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.vddci = pl->vddci;
> + ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE)
> + limits = &adev->pm.dpm.dyn_state.max_clock_voltage_on_ac;
> + else if ((rps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK) ==
> + ATOM_PPLIB_CLASSIFICATION_UI_BATTERY)
> + limits = &adev->pm.dpm.dyn_state.max_clock_voltage_on_dc;
> + else
> + limits = NULL;
> +
> + if (limits) {
> + if (pl->sclk > limits->sclk)
> + limits->sclk = pl->sclk;
> + if (pl->mclk > limits->mclk)
> + limits->mclk = pl->mclk;
> + if (pl->vddc > limits->vddc)
> + limits->vddc = pl->vddc;
> + if (pl->vddci > limits->vddci)
> + limits->vddci = pl->vddci;
> }
> }
[Severity: High]
This isn't a bug introduced by this patch, but does the radeon driver need
this exact same fix?
Looking at drivers/gpu/drm/radeon/si_dpm.c in si_parse_pplib_clock_info()
and drivers/gpu/drm/radeon/ni_dpm.c in ni_parse_pplib_clock_info(), they
both still contain the older, unpatched logic that unconditionally
overwrites AC limits and completely ignores DC/BATTERY limits:
if ((rps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK) ==
ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
rdev->pm.dpm.dyn_state.max_clock_voltage_on_ac.sclk = pl->sclk;
rdev->pm.dpm.dyn_state.max_clock_voltage_on_ac.mclk = pl->mclk;
rdev->pm.dpm.dyn_state.max_clock_voltage_on_ac.vddc = pl->vddc;
rdev->pm.dpm.dyn_state.max_clock_voltage_on_ac.vddci = pl->vddci;
}
Since the radeon driver is often the default for SI (GCN 1.0) and earlier
GPUs, affected laptops (like those with the FirePro W4170M or Radeon HD
8790M) might still get stuck on the lowest power level on battery when
using that driver.
Would it make sense to port this fix back to the radeon driver as well?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-205-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-5.10] drm/gma500: return errors from Oaktrail HDMI I2C reads
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/gma500: return errors from Oaktrail HDMI I2C reads Sasha Levin
@ 2026-08-31 15:04 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:04 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
New issues:
- [High] Returning early from `xfer_read()` on timeout or signal abandons the active hardware I2C transaction and leaves `i2c_dev->msg` as a dangling pointer, leading to a Use-After-Free and memory corruption.
Pre-existing issues:
- [High] `hdmi_i2c_read()` unconditionally writes 64 bytes to `msg->buf` without checking the requested transfer length (`msg->len`), allowing hardware to overflow the I2C message buffer.
- [High] In the module teardown path, `i2c_dev` is freed before the shared IRQ handler is unregistered, causing a Use-After-Free if an interrupt fires.
--
commit 605dc1b5dc9a1628f90b0022526c86a3c3636916
Author: Pengpeng Hou <pengpeng@iscas.ac.cn>
drm/gma500: return errors from Oaktrail HDMI I2C reads
This commit modifies xfer_read() to return -ETIMEDOUT or negative error codes
on timeout or signal instead of ignoring them. It also updates
oaktrail_hdmi_i2c_access() to propagate the first transfer error instead of
reporting a successful message count.
Link: https://patch.msgid.link/20260625003240.6923-1-pengpeng@iscas.ac.cn
> diff --git a/drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c b/drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c
> --- a/drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c
> +++ b/drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c
> @@ -106,9 +107,14 @@ static int xfer_read(struct i2c_adapter *adap, struct i2c_msg *pmsg)
> HDMI_WRITE(HDMI_HI2CHCR, temp);
> HDMI_READ(HDMI_HI2CHCR);
>
> - while (i2c_dev->status != I2C_TRANSACTION_DONE)
> - wait_for_completion_interruptible_timeout(&i2c_dev->complete,
> + while (i2c_dev->status != I2C_TRANSACTION_DONE) {
> + ret = wait_for_completion_interruptible_timeout(&i2c_dev->complete,
> 10 * HZ);
> + if (ret < 0)
> + return ret;
> + if (!ret)
> + return -ETIMEDOUT;
> + }
[Severity: High]
Does returning early here abandon the active hardware I2C transaction and
leave i2c_dev->msg as a dangling pointer?
If wait_for_completion_interruptible_timeout() returns early due to a
timeout or signal, xfer_read() returns the error without clearing
HI2C_ENABLE_TRANSACTION on the hardware or setting i2c_dev->msg to NULL.
oaktrail_hdmi_i2c_access() disables the device IRQ and returns the error,
freeing the user buffer.
If the hardware finishes the transaction in the background, a subsequent I2C
transfer calls hdmi_i2c_irq_enable(), unmasking the interrupt before
xfer_read() updates i2c_dev->msg.
The pending interrupt fires immediately, and hdmi_i2c_read() dereferences the
stale i2c_dev->msg pointer, overwriting freed memory.
[ ... ]
While reviewing this code, I noticed a couple of pre-existing issues in
drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c:
[Severity: High]
This is a pre-existing issue, but does hdmi_i2c_read() unconditionally write
64 bytes to msg->buf without checking the requested transfer length?
drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c:hdmi_i2c_read() {
...
for (i = 0; i < 0x10; i++) {
temp = HDMI_READ(HDMI_HI2CRDB0 + (i * 4));
memcpy(buf + (offset + i * 4), &temp, 4);
}
...
}
If a user issues an I2C_RDWR ioctl with a read message where msg->len is less
than 64 (e.g., 1 byte), the I2C core allocates a smaller buffer for msg->buf.
When the hardware fires the FULL interrupt, hdmi_i2c_read() reads 4 bytes per
iteration and copies 64 bytes to msg->buf, which could overflow the allocated
buffer bounds and corrupt adjacent heap memory.
[Severity: High]
This is a pre-existing issue, but is there a use-after-free race condition in
the module teardown path?
drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c:oaktrail_hdmi_i2c_exit() {
...
i2c_dev = hdmi_dev->i2c_dev;
kfree(i2c_dev);
free_irq(dev->irq, hdmi_dev);
...
}
The teardown logic frees i2c_dev before unregistering the shared interrupt
handler.
Since the IRQ is registered with IRQF_SHARED, if another device sharing the
IRQ line fires an interrupt before free_irq() runs,
oaktrail_hdmi_i2c_handler() executes and dereferences i2c_dev->complete on
the freed structure.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-219-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/imagination: Don't timeout job if its fence has been signaled
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] drm/imagination: Don't timeout job if its fence has been signaled Sasha Levin
@ 2026-08-31 15:13 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:13 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] Calling `dma_fence_is_signaled(s_job->s_fence->parent)` can result in a NULL pointer dereference because the parent fence may not be initialized when the timeout handler is invoked.
--
commit 3504f98145fc1193c182b77188d8026b264fe31f
Author: Brajesh Gupta <brajesh.gupta@imgtec.com>
drm/imagination: Don't timeout job if its fence has been signaled
This commit adds a check in the timeout handler to verify if the job's
fence has been signaled. This prevents unnecessary hang recovery when the
job has already completed.
Link: https://patch.msgid.link/20260519-b4-context_reset-v2-2-931018a7131d@imgtec.com
> diff --git a/drivers/gpu/drm/imagination/pvr_queue.c b/drivers/gpu/drm/imagination/pvr_queue.c
> index fc415dd0d7a73..8d5629ea3e520 100644
> --- a/drivers/gpu/drm/imagination/pvr_queue.c
> +++ b/drivers/gpu/drm/imagination/pvr_queue.c
[ ... ]
> @@ -814,6 +816,9 @@ pvr_queue_timedout_job(struct drm_sched_job *s_job)
> struct pvr_job *job;
> u32 job_count = 0;
>
> + if (dma_fence_is_signaled(s_job->s_fence->parent))
> + return DRM_GPU_SCHED_STAT_NO_HANG;
> +
[Severity: High]
Can this result in a NULL pointer dereference?
In drivers/gpu/drm/imagination/pvr_queue.c:pvr_queue_timedout_job(), if the
timeout worker executes concurrently while the driver's run_job() callback is
still blocked (e.g., due to power management or firmware delays),
drm_sched_fence_scheduled() will not have executed yet.
In that scenario, s_job->s_fence->parent is uninitialized and remains NULL.
Passing this uninitialized parent pointer directly to dma_fence_is_signaled()
would unconditionally dereference it, which could cause a regression if a
timeout fires before job submission completes.
> dev_err(sched->dev, "Job timeout\n");
>
> /* Before we stop the scheduler, make sure the queue is out of any list, so
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-239-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-5.15] host1x: bus: Fix missing ops null check in error teardown
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.15] host1x: bus: Fix missing ops null check in error teardown Sasha Levin
@ 2026-08-31 15:13 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:13 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] host1x_device_exit() aborts traversal on first error, leaving remaining clients initialized and leaking resources.
--
commit 341e3b2b98688fedc7268fa3fee081e01848b232
Author: shayderrr <darknessshayder@gmail.com>
host1x: bus: Fix missing ops null check in error teardown
In host1x_device_init(), the error teardown paths do not check client->ops
before dereferencing it, which can result in a null pointer dereference.
This patch adds the missing client->ops check in both the teardown and
teardown_late labels.
Link: https://patch.msgid.link/20260517170456.84927-1-darknessshayder@gmail.com
> diff --git a/drivers/gpu/host1x/bus.c b/drivers/gpu/host1x/bus.c
> index 344cc9e741c13..ffbf0ba4d602f 100644
> --- a/drivers/gpu/host1x/bus.c
> +++ b/drivers/gpu/host1x/bus.c
> @@ -221,7 +221,7 @@ int host1x_device_init(struct host1x_device *device)
>
> teardown:
> list_for_each_entry_continue_reverse(client, &device->clients, list)
> - if (client->ops->exit)
> + if (client->ops && client->ops->exit)
> client->ops->exit(client);
>
> /* reset client to end of list for late teardown */
> @@ -229,7 +229,7 @@ int host1x_device_init(struct host1x_device *device)
>
> teardown_late:
> list_for_each_entry_continue_reverse(client, &device->clients, list)
> - if (client->ops->late_exit)
> + if (client->ops && client->ops->late_exit)
> client->ops->late_exit(client);
>
> mutex_unlock(&device->clients_lock);
This is a pre-existing issue, but I noticed a potential problem in the closely
related host1x_device_exit() function while reviewing this patch:
drivers/gpu/host1x/bus.c:host1x_device_exit() {
...
list_for_each_entry_reverse(client, &device->clients, list) {
if (client->ops && client->ops->exit) {
err = client->ops->exit(client);
if (err < 0) {
dev_err(&device->dev,
"failed to cleanup %s: %d\n",
dev_name(client->dev), err);
mutex_unlock(&device->clients_lock);
return err;
}
}
}
...
}
[Severity: High]
If any client's exit() callback returns an error, this early return inside the
loop skips the teardown for all remaining clients. Does this leave hardware
active, leak syncpts, and leave iommu mappings dangling, which could crash the
system upon further teardown?
A similar issue exists a few lines lower in the late_exit() loop:
drivers/gpu/host1x/bus.c:host1x_device_exit() {
...
list_for_each_entry_reverse(client, &device->clients, list) {
if (client->ops && client->ops->late_exit) {
err = client->ops->late_exit(client);
if (err < 0) {
dev_err(&device->dev, "failed to late cleanup %s: %d\n",
dev_name(client->dev), err);
mutex_unlock(&device->clients_lock);
return err;
}
}
}
...
}
[Severity: High]
Similarly, does this early return inside the late_exit() loop abort the
traversal and leak resources for remaining clients?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-242-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Don't schedule thermal work when queue isn't initialized
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Don't schedule thermal work when queue isn't initialized Sasha Levin
@ 2026-08-31 15:16 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:16 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] Scheduling an uninitialized thermal workqueue in kv_dpm_process_interrupt triggers a kernel panic when amdgpu.dpm=0.
- [High] Scheduling an uninitialized thermal workqueue in cik_irq_process triggers a kernel panic when radeon.dpm=0.
--
commit 8aa1c10862ca264ac27db63ef5b31d5ef1328d80
Author: Timur Kristóf <timur.kristof@gmail.com>
drm/amd/pm/si: Don't schedule thermal work when queue isn't initialized
When DPM is turned off with the amdgpu.dpm=0 module parameter, the thermal
work queue isn't initialized so we shouldn't schedule any work on it.
> diff --git a/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c b/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
> --- a/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
> +++ b/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
> @@ -7659,7 +7659,7 @@ static int si_dpm_process_interrupt(struct amdgpu_device *adev,
> break;
> }
>
> - if (queue_thermal)
> + if (queue_thermal && amdgpu_dpm)
> schedule_work(&adev->pm.dpm.thermal.work);
[Severity: High]
This is a pre-existing issue, and not a bug introduced by this patch, but
does the same uninitialized workqueue crash also happen in kv_dpm.c?
Looking at kv_dpm_process_interrupt() in
drivers/gpu/drm/amd/pm/legacy-dpm/kv_dpm.c, it still has the unguarded
schedule_work call:
if (queue_thermal)
schedule_work(&adev->pm.dpm.thermal.work);
And similar to the issue you fixed in si_dpm.c, kv_dpm_sw_init() skips the
INIT_WORK call when DPM is disabled:
if (amdgpu_dpm == 0)
return 0;
INIT_WORK(&adev->pm.dpm.thermal.work, amdgpu_dpm_thermal_work_handler);
If a thermal interrupt fires on KV/CI hardware while booted with
amdgpu.dpm=0, wouldn't this queue a zero-initialized work struct and attempt
to execute a NULL function pointer? Should the same amdgpu_dpm guard be
added to kv_dpm_process_interrupt()?
[Severity: High]
This is also a pre-existing issue, but it looks like the radeon driver
might share the exact same vulnerability in cik.c.
In drivers/gpu/drm/radeon/radeon_pm.c, radeon_pm_init() skips INIT_WORK
when DPM is disabled, falling back to the old method:
if (rdev->pm.pm_method == PM_METHOD_DPM)
return radeon_pm_init_dpm(rdev);
else
return radeon_pm_init_old(rdev);
But cik_irq_process() in drivers/gpu/drm/radeon/cik.c unconditionally
schedules the work if a thermal interrupt arrives:
if (queue_thermal)
schedule_work(&rdev->pm.dpm.thermal.work);
If a user boots with radeon.dpm=0 on CIK hardware and a thermal interrupt
triggers, could this result in the same workqueue panic? Does
cik_irq_process() need a rdev->pm.dpm_enabled guard added to its
schedule_work call?
>
> return 0;
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-251-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.12] drm/mediatek: dsi: Add compatible for mt8167-dsi
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] drm/mediatek: dsi: Add compatible for mt8167-dsi Sasha Levin
@ 2026-08-31 15:22 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:22 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] Uninitialized wait queue usage leads to NULL pointer dereference.
- [High] Missing drvdata initialization before component bind leads to NULL pointer dereference.
--
commit 1c9b9cfe82b003fd952c66b9a2f9e8fa689477ee
Author: Luca Leonardo Scorcia <l.scorcia@gmail.com>
drm/mediatek: dsi: Add compatible for mt8167-dsi
This commit adds the mediatek,mt8167-dsi compatible string to the MediaTek
DSI controller driver. It allows the driver to probe on MT8167 hardware using
the existing MT2701 driver data.
Link: https://patchwork.kernel.org/project/dri-devel/patch/20260505214541.333657-3-l.scorcia@gmail.com/
> diff --git a/drivers/gpu/drm/mediatek/mtk_dsi.c b/drivers/gpu/drm/mediatek/mtk_dsi.c
> index 0e2bcd5f67b76..b04936d4511b4 100644
> --- a/drivers/gpu/drm/mediatek/mtk_dsi.c
> +++ b/drivers/gpu/drm/mediatek/mtk_dsi.c
> @@ -1307,6 +1307,7 @@ static const struct mtk_dsi_driver_data mt8188_dsi_driver_data = {
>
> static const struct of_device_id mtk_dsi_of_match[] = {
> { .compatible = "mediatek,mt2701-dsi", .data = &mt2701_dsi_driver_data },
> + { .compatible = "mediatek,mt8167-dsi", .data = &mt2701_dsi_driver_data },
[Severity: High]
This is a pre-existing issue, but enabling this driver on new hardware might
expose an uninitialized wait queue usage in drivers/gpu/drm/mediatek/mtk_dsi.c
that leads to a NULL pointer dereference.
In mtk_dsi_probe(), mipi_dsi_host_register() and devm_request_irq() are called
before the wait queue is initialized:
ret = devm_request_irq(&pdev->dev, irq_num, mtk_dsi_irq, ...);
if (ret) {
...
}
init_waitqueue_head(&dsi->irq_wait_queue);
If a child panel driver probes synchronously when mipi_dsi_host_register() is
called and sends a DSI command (for instance, to read the panel ID), it
triggers mtk_dsi_host_transfer(). This calls mtk_dsi_wait_for_irq_done(),
which uses wait_event_interruptible_timeout() on the zero-initialized wait
queue. This dereferences the NULL next pointer of the wait queue head, causing
a crash.
Alternatively, if an interrupt fires early, mtk_dsi_irq() calls
wake_up_interruptible() on the same uninitialized wait queue.
Could the initialization of dsi->irq_wait_queue be moved before
mipi_dsi_host_register() and devm_request_irq() to prevent this?
[Severity: High]
This isn't a bug introduced by this patch, but missing drvdata initialization
before the component bind can also lead to a NULL pointer dereference.
In mtk_dsi_probe(), the DSI host is registered before drvdata is set:
ret = mipi_dsi_host_register(&dsi->host);
...
platform_set_drvdata(pdev, dsi);
Registering the DSI host causes child devices to be probed synchronously. The
child's probe function calls mipi_dsi_attach(), which invokes
mtk_dsi_host_attach(). This function calls component_add(). If mtk_dsi is the
last component to register, it triggers the DRM master to bind all components,
invoking mtk_dsi_bind().
However, mtk_dsi_bind() tries to use drvdata:
struct mtk_dsi *dsi = dev_get_drvdata(dev);
ret = mtk_dsi_encoder_init(drm, dsi);
Because platform_set_drvdata() hasn't been called yet, dev_get_drvdata()
returns NULL, leading to a crash in mtk_dsi_encoder_init().
Would it be possible to call platform_set_drvdata() before
mipi_dsi_host_register() to avoid this race?
> { .compatible = "mediatek,mt8173-dsi", .data = &mt8173_dsi_driver_data },
> { .compatible = "mediatek,mt8183-dsi", .data = &mt8183_dsi_driver_data },
> { .compatible = "mediatek,mt8186-dsi", .data = &mt8186_dsi_driver_data },
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-262-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amdgpu: cap ATOM command table nesting depth
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] drm/amdgpu: cap ATOM command table nesting depth Sasha Levin
@ 2026-08-31 15:24 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:24 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
Pre-existing issues:
- [Critical] Out-of-bounds stack/heap access due to unvalidated `ps_shift` causing negative `ps_size`.
- [Critical] Integer overflow in `ATOM_ARG_FB` bounds check allows out-of-bounds memory corruption.
- [Medium] The command table loop timeout mechanism in `atom_op_jump` can be trivially defeated by a multi-jump loop.
- [Low] The `debug_depth` counter leaks permanently when the execution of a command table is aborted.
--
commit 0c77b7dbed85cb54e1624a76d5ddd1e7608f6557
Author: Candice Li <candice.li@amd.com>
drm/amdgpu: cap ATOM command table nesting depth
Cap nesting at 32 levels with execute_depth and return -ELOOP when exceeded.
> diff --git a/drivers/gpu/drm/amd/amdgpu/atom.c b/drivers/gpu/drm/amd/amdgpu/atom.c
> index 7a063e44d4298..639649ef6dd03 100644
> --- a/drivers/gpu/drm/amd/amdgpu/atom.c
> +++ b/drivers/gpu/drm/amd/amdgpu/atom.c
> @@ -59,6 +59,9 @@
>
> #define ATOM_CMD_TIMEOUT_SEC 20
>
> +/* Limit ATOM command table recursion (calltable) to avoid kernel stack overflow. */
> +#define ATOM_EXECUTE_MAX_DEPTH 32
> +
[Severity: Critical]
This is a pre-existing issue, but can this lead to an out-of-bounds access?
In atom_op_calltable(), the size calculation could evaluate to a negative
integer:
drivers/gpu/drm/amd/amdgpu/atom.c:atom_op_calltable() {
...
r = amdgpu_atom_execute_table_locked(ctx->ctx, idx, ctx->ps + ctx->ps_shift,
ctx->ps_size - ctx->ps_shift);
...
}
If a crafted VBIOS provides a large ps_shift value, ctx->ps_size - ctx->ps_shift
will be negative. When passed as params_size into
amdgpu_atom_execute_table_locked(), this negative value propagates.
Later, in atom_put_dst(), this negative size is promoted to a large unsigned
integer, which would bypass the bounds check:
drivers/gpu/drm/amd/amdgpu/atom.c:atom_put_dst() {
...
if (idx >= ctx->ps_size) {
...
}
Could this be leveraged for out-of-bounds reads or writes on the stack or heap?
[Severity: Critical]
This is a pre-existing issue, but does this bounds check have an integer
overflow vulnerability?
If a crafted VBIOS sets fb_base to a value near UINT32_MAX, the addition in
the ATOM_ARG_FB bounds check can overflow:
drivers/gpu/drm/amd/amdgpu/atom.c:atom_put_dst() {
...
if ((gctx->fb_base + (idx * 4)) > gctx->scratch_size_bytes) {
...
}
If gctx->fb_base + (idx * 4) overflows into a small positive number, it passes
the bounds check. The subsequent memory access uses the original huge fb_base:
drivers/gpu/drm/amd/amdgpu/atom.c:atom_put_dst() {
...
gctx->scratch[(gctx->fb_base / 4) + idx] = val;
...
}
Can this lead to out-of-bounds memory corruption?
[Severity: Medium]
This is a pre-existing issue, but can the command table loop timeout be easily
defeated?
The timeout mechanism in atom_op_jump() resets the tracker when the script jumps
to a different instruction:
drivers/gpu/drm/amd/amdgpu/atom.c:atom_op_jump() {
...
} else {
ctx->last_jump = ctx->start + target;
ctx->last_jump_jiffies = jiffies;
}
...
}
If a VBIOS script uses multiple jump instructions in a loop (for example,
jumping between A and B), ctx->last_jump == (ctx->start + target) will always
be false. This forces the execution into the else block, continuously resetting
the 20-second timeout tracker.
Could this allow a multi-jump loop to hang the driver indefinitely, causing a
denial of service?
[ ... ]
> @@ -1285,6 +1295,7 @@ static int amdgpu_atom_execute_table_locked(struct atom_context *ctx, int index,
> free:
> if (ws)
> kfree(ectx.ws);
> + ctx->execute_depth--;
[Severity: Low]
This is a pre-existing issue, but does the debug_depth counter leak when an
execution is aborted?
In amdgpu_atom_execute_table_locked(), if ectx.abort becomes true, the code
jumps directly to the free label:
if (ectx.abort) {
...
goto free;
}
Because the free label is located after the debug_depth--; statement, the
counter is never decremented on this error path. When amdgpu_atom_debug is
enabled, could this cause unbounded indentation in debug logs over time?
> return ret;
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-274-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-5.10] drm/amd/display: Fix CRC open failure during active rendering
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/display: Fix CRC open failure during active rendering Sasha Levin
@ 2026-08-31 15:24 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:24 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] Incomplete Fix / Uninitialized Return Value leaking positive jiffies to VFS
- [High] Resource leak due to missing `drm_crtc_vblank_put()` on error paths
--
commit 4554672736d3ae3e68d6ba478384d8757a136c1f
Author: Tom Chung <chiahsuan.chung@amd.com>
Date: Mon Aug 31 13:24:53 2026 +0000
drm/amd/display: Fix CRC open failure during active rendering
This commit changes the wait_for_completion_interruptible_timeout() handling
to treat a positive return value (remaining jiffies) as success, 0 as timeout,
and negative as an error.
> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
> index e20aa74380665..596a97092e0dd 100644
> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
> @@ -584,8 +584,13 @@ int amdgpu_dm_crtc_set_crc_source(struct drm_crtc *crtc, const char *src_name)
> */
> ret = wait_for_completion_interruptible_timeout(
> &commit->hw_done, 10 * HZ);
> - if (ret)
> + if (ret < 0)
> + goto cleanup;
> +
> + if (ret == 0) {
> + ret = -ETIMEDOUT;
> goto cleanup;
> + }
> }
>
> enable = amdgpu_dm_is_valid_crc_source(source);
[Severity: High]
This isn't a bug introduced by this patch, but
wait_for_completion_interruptible_timeout() returns the positive remaining
jiffies on success. Since ret is not explicitly reset to 0 here, it can retain
this positive value.
If the condition !enabled && enable evaluates to false later in the function,
ret is never overwritten to 0 by drm_crtc_vblank_get(). This leaves the
function returning the unmodified positive ret value to the VFS caller.
Returning a positive value from a VFS open() operation triggers a
WARN_ON_ONCE(error > 0) in do_dentry_open(), which causes a kernel panic if
panic_on_warn is enabled.
Should ret be explicitly reset to 0 upon success to prevent leaking positive
jiffies to the VFS layer?
[ ... ]
> /*
> * Reading the CRC requires the vblank interrupt handler to be
> * enabled. Keep a reference until CRC capture stops.
> */
> enabled = amdgpu_dm_is_valid_crc_source(cur_crc_src);
> if (!enabled && enable) {
> ret = drm_crtc_vblank_get(crtc);
> if (ret)
> goto cleanup;
> }
>
> #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
> /* Reset secure_display when we change crc source from debugfs */
> amdgpu_dm_set_crc_window_default(crtc, crtc_state->stream);
> #endif
>
> if (amdgpu_dm_crtc_configure_crc_source(crtc, crtc_state, source)) {
> ret = -EINVAL;
> goto cleanup;
> }
>
> if (!enabled && enable) {
> if (dm_is_crc_source_dprx(source)) {
> if (drm_dp_start_crc(aux, crtc)) {
> DRM_DEBUG_DRIVER("dp start crc failed\n");
> ret = -EINVAL;
> goto cleanup;
> }
> }
[Severity: High]
This is a pre-existing issue, but does this error path leak the vblank
reference?
If amdgpu_dm_crtc_configure_crc_source() or drm_dp_start_crc() fail, the code
jumps to the cleanup label without calling drm_crtc_vblank_put() to balance
the reference successfully acquired earlier via drm_crtc_vblank_get(). This
can permanently leak a CRTC vblank reference count, preventing the display
subsystem from entering low-power states.
Should drm_crtc_vblank_put() be called on these error paths before jumping to
cleanup?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-265-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amd/display: Fix 8K Mode Not Parsed by EDID
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] drm/amd/display: Fix 8K Mode Not Parsed by EDID Sasha Levin
@ 2026-08-31 15:25 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:25 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] Ignoring the return value of `drm_edid_connector_update()` leads to a slab-out-of-bounds read during `memmove` if the update fails and the connector retains a previously larger EDID blob.
--
commit f834146b80d7916aeba3bf8175e4f9717ecbf6f3
Author: Fangzhi Zuo <Jerry.Zuo@amd.com>
drm/amd/display: Fix 8K Mode Not Parsed by EDID
This commit fixes 8K mode parsing by changing the way the EDID length is
determined. Instead of using the raw extension block count, it now relies
on the length of the property blob updated by drm_edid_connector_update()
to copy the full EDID into the sink's raw_edid buffer.
> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
> index d0f770dd0a956..c2de763d621d3 100644
> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
> @@ -1031,11 +1031,25 @@ enum dc_edid_status dm_helpers_read_local_edid(
> continue;
>
> edid = drm_edid_raw(drm_edid); // FIXME: Get rid of drm_edid_raw()
> - if (!edid ||
> - edid->extensions >= sizeof(sink->dc_edid.raw_edid) / EDID_LENGTH)
> + /*
> + * Use the length of the EDID property blob populated by
> + * drm_edid_connector_update() above. It reflects the true number
> + * of EDID blocks, including any HDMI Forum EDID Extension Override
> + * Data Block (HF-EEODB) count, which the raw byte 0x7e extension
> + * count can hide (e.g. HDMI 8K sinks).
> + */
> + if (!edid || !connector->edid_blob_ptr ||
> + connector->edid_blob_ptr->length > sizeof(sink->dc_edid.raw_edid))
> return EDID_BAD_INPUT;
>
> - sink->dc_edid.length = EDID_LENGTH * (edid->extensions + 1);
> + /*
> + * FIXME: amdgpu_dm today does not consider the HF-EEODB, which
> + * may contain additional mode info for sinks. This is a
> + * workaround until dc_edid is refactored out from DC into
> + * amdgpu_dm's ownership, allowing amdgpu_dm to use drm_edid
> + * directly
> + */
> + sink->dc_edid.length = connector->edid_blob_ptr->length;
> memmove(sink->dc_edid.raw_edid, (uint8_t *)edid, sink->dc_edid.length);
[Severity: High]
Can this lead to a slab-out-of-bounds read if drm_edid_connector_update()
fails?
Earlier in dm_helpers_read_local_edid(), the code updates the connector:
drm_edid_connector_update(connector, drm_edid);
The return value of this update is ignored. If a monitor was previously
connected with a large EDID (e.g., 512 bytes), and a subsequent probe
reads a smaller EDID (e.g., 128 bytes), this update might fail due to a
memory allocation failure.
If it fails, connector->edid_blob_ptr will retain its previous 512-byte
size. Because 512 is less than sizeof(sink->dc_edid.raw_edid), the checks
above will pass.
The code will then proceed to the memmove() and use the stale 512-byte
length to copy from the newly allocated, smaller 128-byte edid buffer,
causing a read out of bounds.
Should the return value of drm_edid_connector_update() be checked, or
should we ensure the length is retrieved directly from the current
drm_edid before doing the copy?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-264-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amd/ras: reset CPER ring on corrupt entry size
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] drm/amd/ras: reset CPER ring on corrupt entry size Sasha Levin
@ 2026-08-31 15:40 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:40 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
Pre-existing issues:
- [High] Using `strcmp` on a non-null-terminated `char[4]` array causes out-of-bounds reads and relies on adjacent zero bytes.
- [High] Out-of-bounds memory read when CPER headers wrap around the end of the ring buffer.
- [High] Incorrect read pointer calculation during CPER ring overflow recovery causes random pointer jumps and can skip valid records.
- [High] Truncation in ring pointer arithmetic causes overlapping memory writes and severe data corruption when encountering corrupted old records.
--
commit f138b5a4c4364a5846a5ccacfcb8f7aaf6be9542
Author: Xiang Liu <xiang.liu@amd.com>
drm/amd/ras: reset CPER ring on corrupt entry size
This commit detects when a corrupt entry size causes the read pointer update
to make no progress during cper ring overflow recovery. Instead of getting
stuck in an infinite loop while holding the ring mutex, it resets the ring
to an empty state.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c
> index 425a3e5643608..2694facb06c73 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c
> @@ -465,7 +465,7 @@ static u32 amdgpu_cper_ring_get_ent_sz(struct amdgpu_ring *ring, u64 pos)
>
> void amdgpu_cper_ring_write(struct amdgpu_ring *ring, void *src, int count)
> {
> - u64 pos, wptr_old, rptr;
> + u64 pos, wptr_old, rptr, next_rptr;
> int rec_cnt_dw = count >> 2;
> u32 chunk, ent_sz;
[Severity: High]
This is a pre-existing issue, but could the truncation in the ring pointer
arithmetic result in overlapping memory writes when old, corrupted records
are encountered?
In amdgpu_cper_ring_write(), new data writes are chunked based on the
ent_sz (record size) of the old, to-be-overwritten data:
drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c:amdgpu_cper_ring_write() {
...
ent_sz = amdgpu_cper_ring_get_ent_sz(ring, ring->wptr);
chunk = umin(ent_sz, count);
memcpy(&ring->ring[ring->wptr], s, chunk);
ring->wptr += (chunk >> 2);
ring->wptr &= ring->ptr_mask;
...
}
If the old data is corrupted, ent_sz (and thus chunk) can be an arbitrary
value not aligned to 4 bytes. memcpy() copies chunk bytes, but
ring->wptr += (chunk >> 2) advances the pointer in dwords, truncating the
remainder.
For example, if chunk is 5, wptr advances by 1 dword. Will the next
iteration's memcpy start at the new wptr, overlapping and overwriting the
5th byte that was just written? If chunk < 4, does wptr advance by 0,
repeatedly overwriting the exact same dword?
[ ... ]
> @@ -506,9 +506,19 @@ void amdgpu_cper_ring_write(struct amdgpu_ring *ring, void *src, int count)
>
> do {
> ent_sz = amdgpu_cper_ring_get_ent_sz(ring, pos);
[Severity: High]
This is a pre-existing issue, but are out-of-bounds reads possible here
when calling amdgpu_cper_ring_get_ent_sz() and amdgpu_cper_is_hdr()?
When encountering garbage cper data (e.g., during overflow recovery or
reading uninitialized memory), those functions call strcmp() on
chdr->signature:
drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c:amdgpu_cper_is_hdr() {
...
chdr = (struct cper_hdr *)&(ring->ring[pos]);
return strcmp(chdr->signature, "CPER") ? false : true;
}
Since signature is a char[4] with no null terminator, strcmp() will
continue reading memory. If the struct happens to reside at the very end
of the buffer, could this read into unmapped memory and cause a page
fault?
[Severity: High]
This is a pre-existing issue, but can these direct struct pointer casts
cause out-of-bounds memory reads when cper headers wrap around the end of
the ring buffer?
The writer seamlessly splits records across the ring boundary using
memcpy():
drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c:amdgpu_cper_ring_write() {
...
memcpy(&ring->ring[ring->wptr], s, chunk);
...
}
However, amdgpu_cper_ring_get_ent_sz() casts the direct pointer and reads
fields that might be past the end of the buffer:
drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c:amdgpu_cper_ring_get_ent_sz() {
...
chdr = (struct cper_hdr *)&(ring->ring[pos]);
...
if (!strcmp(chdr->signature, "CPER")) {
rec_len = chdr->record_length;
goto calc;
}
}
If pos is very close to the end of the buffer (e.g., < 5 dwords
remaining), does dereferencing chdr->record_length at offset 20 read past
the end of the allocated ring->ring array?
> + next_rptr = rptr;
> + if (ent_sz >= sizeof(u32))
> + next_rptr = (rptr + (ent_sz >> 2)) & ring->ptr_mask;
[Severity: High]
This is a pre-existing issue, but might this logic incorrectly add a
size/distance offset derived from pos to the unrelated and stale pointer
rptr?
When the cper ring overflows, the recovery loop sets pos to locate the
oldest un-overwritten data, and gets its size via ent_sz.
However, instead of advancing pos by this size, it adds ent_sz to rptr
(the original read pointer, which is completely unrelated to pos and
points somewhere in the middle of the overwritten region).
Does this mathematically meaningless addition corrupt the read pointer and
cause valid records to be skipped?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-317-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amdgpu/userq: pin mqd and fw object bo to avoid eviction
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/amdgpu/userq: pin mqd and fw object bo to avoid eviction Sasha Levin
@ 2026-08-31 15:50 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:50 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] Missing reservation lock when calling amdgpu_bo_unpin() in amdgpu_userq_destroy_object()
--
commit a94e7fa8193fda17368d3bdb773d56e5a1abc907
Author: Sunil Khatri <sunil.khatri@amd.com>
drm/amdgpu/userq: pin mqd and fw object bo to avoid eviction
This commit pins the MQD and firmware object buffer objects to prevent
them from being evicted while user queues are active. It adds
amdgpu_bo_pin() during object creation and amdgpu_bo_unpin() during
destruction.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
> index 1add21160d218..e044feaaeb01d 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c
[ ... ]
> @@ -278,6 +284,7 @@ void amdgpu_userq_destroy_object(struct amdgpu_userq_mgr *uq_mgr,
> struct amdgpu_userq_obj *userq_obj)
> {
> amdgpu_bo_kunmap(userq_obj->obj);
> + amdgpu_bo_unpin(userq_obj->obj);
[Severity: High]
Is it safe to call amdgpu_bo_unpin() here without holding the buffer object's
reservation lock?
In amdgpu_userq_create_object(), we hold the reservation lock (via
amdgpu_bo_reserve) when calling amdgpu_bo_pin(), and when calling
amdgpu_bo_unpin() in the error path.
However, in amdgpu_userq_destroy_object(), the caller (like
mes_userq_mqd_destroy()) does not appear to reserve the buffer object before
calling this function. This means amdgpu_bo_unpin() might be executed without
the required dma_resv lock, which is needed by the internal ttm_bo_unpin()
call.
> amdgpu_bo_unref(&userq_obj->obj);
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-353-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: Use system unbound workqueue for soft IH ring
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: Use system unbound workqueue for soft IH ring Sasha Levin
@ 2026-08-31 15:53 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:53 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Missing work cancellation for soft IH ring (and ih1/ih2) causes use-after-free and NULL pointer dereference on device teardown.
--
commit b817b565b60c4bf0d6715436c240de40fe4ce255
Author: Timur Kristóf <timur.kristof@gmail.com>
drm/amdgpu: Use system unbound workqueue for soft IH ring
This commit allows the kernel to dispatch the soft IH work on other CPUs.
This prevents the soft IH ring from filling up before it starts processing
work items during retry page fault storms.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
> index 8112ffc85995e..2522285e1ab23 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
> @@ -514,7 +514,7 @@ void amdgpu_irq_delegate(struct amdgpu_device *adev,
> unsigned int num_dw)
> {
> amdgpu_ih_ring_write(adev, &adev->irq.ih_soft, entry->iv_entry, num_dw);
> - schedule_work(&adev->irq.ih_soft_work);
> + queue_work(system_unbound_wq, &adev->irq.ih_soft_work);
[Severity: High]
This isn't a bug introduced by this patch, but changing the workqueue to
system_unbound_wq removes CPU-binding, which might increase the likelihood
of the work running concurrently with the device teardown thread on SMP
systems.
During teardown, amdgpu_irq_fini_hw() frees the ring buffer and shadow
pointers via amdgpu_ih_ring_fini() without flushing or cancelling the
pending ih_soft_work:
drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c:amdgpu_irq_fini_hw() {
...
free_irq(adev->irq.irq, adev);
...
amdgpu_ih_ring_fini(adev, &adev->irq.ih_soft);
...
}
If ih_soft_work (amdgpu_ih_process) was preempted right after evaluating
that the device is not yet shutting down, and then resumes after the
teardown path has freed the ring, could it dereference the freed
ih->wptr_cpu and ih->ring?
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c:amdgpu_ih_process() {
...
if (!ih->enabled || adev->shutdown)
return -ENOENT;
/* Preempted here, teardown frees the ring */
wptr = amdgpu_ih_get_wptr(adev, ih);
...
}
Should there be a cancel_work_sync(&adev->irq.ih_soft_work) or similar
synchronization added during the teardown sequence before the ring
buffers are freed?
> }
>
> /**
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-351-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] fbdev: Wrap user-invoked calls to fb_set_var() in helper
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] fbdev: Wrap user-invoked calls to fb_set_var() in helper Sasha Levin
@ 2026-08-31 15:54 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:54 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
New issues:
- [High] sh_mobile_lcdcfb updates only the active console instead of all consoles during display reconfig, dropping the background VCs update.
Pre-existing issues:
- [High] fbcon_modechange_possible() validation can be bypassed because it is performed before fb_check_var() bounds the user-provided resolution.
- [High] Potential AB-BA deadlock between console_lock and lock_fb_info across core and driver callbacks.
- [High] The font size validation can be bypassed by spoofing `var->rotate`, causing an out-of-bounds memory access in fbcon.
--
commit 156965fbba8946918db59885f218ac2448bb25e8
Author: Thomas Zimmermann <tzimmermann@suse.de>
fbdev: Wrap user-invoked calls to fb_set_var() in helper
Handle fbcon during display updates in fb_set_var_from_user(). Check
with fbcon if the mode change is possible, update hardware state and
finally update fbcon. Update all callers.
> diff --git a/drivers/video/fbdev/core/fb_chrdev.c b/drivers/video/fbdev/core/fb_chrdev.c
> index 4ebd16b7e3b8d..54f926fb411bd 100644
> --- a/drivers/video/fbdev/core/fb_chrdev.c
> +++ b/drivers/video/fbdev/core/fb_chrdev.c
> @@ -85,11 +85,7 @@ static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
> var.activate &= ~FB_ACTIVATE_KD_TEXT;
> console_lock();
> lock_fb_info(info);
> - ret = fbcon_modechange_possible(info, &var);
> - if (!ret)
> - ret = fb_set_var(info, &var);
> - if (!ret)
> - fbcon_update_vcs(info, var.activate & FB_ACTIVATE_ALL);
> + ret = fb_set_var_from_user(info, &var);
[Severity: High]
This is a pre-existing issue, but does this lock order cause an AB-BA deadlock
between console_lock and lock_fb_info?
do_fb_ioctl() establishes the canonical lock acquisition order:
do_fb_ioctl()
console_lock();
lock_fb_info(info);
However, when do_fb_ioctl() routes to a driver's fb_ioctl hook (like
ps3fb_ioctl), lock_fb_info() is already held:
do_fb_ioctl()
lock_fb_info(info);
ret = fb->fb_ioctl(info, cmd, arg);
ps3fb_ioctl()
console_lock();
Similarly, closing the device triggers fb_release(), holding lock_fb_info()
while calling sh_mobile_lcdc_release(), which acquires console_lock().
Can concurrent ioctl or release operations trigger a system freeze here?
> diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c
> index e7e07eb2142eb..e594a69163489 100644
> --- a/drivers/video/fbdev/core/fbcon.c
> +++ b/drivers/video/fbdev/core/fbcon.c
[ ... ]
> @@ -2784,7 +2783,6 @@ int fbcon_modechange_possible(struct fb_info *info, struct fb_var_screeninfo *va
>
> return 0;
> }
> -EXPORT_SYMBOL_GPL(fbcon_modechange_possible);
[Severity: High]
This is a pre-existing issue, but can the font size validation in
fbcon_modechange_possible() be bypassed by spoofing var->rotate?
fbcon_modechange_possible() uses the user-controlled var->rotate to swap
width and height when verifying the resolution against the font size:
if (vc->vc_font.width > FBCON_SWAP(var->rotate, var->xres, var->yres) ||
vc->vc_font.height > FBCON_SWAP(var->rotate, var->yres, var->xres))
However, the actual execution logic in fbcon_modechanged() uses the internal,
trusted ops->rotate state:
cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
If a user intentionally sets var->rotate to mismatch ops->rotate, passing a
heavily undersized xres (e.g., 4) alongside a large yres, the validation
logic swaps them and approves the mode. But execution does not swap them,
resulting in 0 columns and out-of-bounds memory writes during text rendering.
> diff --git a/drivers/video/fbdev/core/fbmem.c b/drivers/video/fbdev/core/fbmem.c
> index eff757ebbed14..8950a6ba26d7d 100644
> --- a/drivers/video/fbdev/core/fbmem.c
> +++ b/drivers/video/fbdev/core/fbmem.c
[ ... ]
> @@ -346,6 +346,19 @@ fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
> }
> EXPORT_SYMBOL(fb_set_var);
>
> +int fb_set_var_from_user(struct fb_info *info, struct fb_var_screeninfo *var)
> +{
> + int ret = fbcon_modechange_possible(info, var);
> +
> + if (!ret)
> + ret = fb_set_var(info, var);
[Severity: High]
This isn't a bug introduced by this patch, but can fbcon_modechange_possible()
validation be bypassed because it is performed before fb_check_var() bounds
the user-provided resolution?
Validation happens here on the unmutated user input, before hardware
constraints are applied. However, inside fb_set_var():
ret = info->fbops->fb_check_var(var, info);
The driver may mutate var bounds downwards to fit hardware constraints,
invalidating the previous font size checks.
If a user issues an ioctl with a resolution that is initially larger than the
font size, it passes validation. If the driver then rounds it down below the
font size, the undersized resolution is applied to the hardware and passed
to fbcon_update_vcs(), completely bypassing the validation and resulting in
out-of-bounds memory access in fbcon rendering.
> + if (!ret)
> + fbcon_update_vcs(info, var->activate & FB_ACTIVATE_ALL);
> +
> + return ret;
> +}
> +EXPORT_SYMBOL(fb_set_var_from_user);
> diff --git a/drivers/video/fbdev/sh_mobile_lcdcfb.c b/drivers/video/fbdev/sh_mobile_lcdcfb.c
> index dd950e4ab5ceb..6038f217ab427 100644
> --- a/drivers/video/fbdev/sh_mobile_lcdcfb.c
> +++ b/drivers/video/fbdev/sh_mobile_lcdcfb.c
[ ... ]
> @@ -1765,11 +1764,9 @@ static void sh_mobile_fb_reconfig(struct fb_info *info)
> var.height = ch->display.height;
> var.activate = FB_ACTIVATE_NOW;
>
> - if (fb_set_var(info, &var) < 0)
> + if (fb_set_var_from_user(info, &var) < 0)
> /* Couldn't reconfigure, hopefully, can continue as before */
> return;
> -
> - fbcon_update_vcs(info, true);
> }
[Severity: High]
Does this change unintentionally drop the update for background consoles during
display reconfig?
Previously, sh_mobile_fb_reconfig() explicitly updated all consoles by passing
true to fbcon_update_vcs():
fbcon_update_vcs(info, true);
By switching to fb_set_var_from_user(), the update scope relies on
var.activate & FB_ACTIVATE_ALL:
fbcon_update_vcs(info, var->activate & FB_ACTIVATE_ALL);
Since sh_mobile_fb_reconfig() hardcodes var.activate = FB_ACTIVATE_NOW (0),
the bitwise check results in false, downgrading the console update scope from
all VCs to just the foreground VC.
If the display was replaced with a smaller one via a hotplug event, background
virtual consoles will retain dimensions corresponding to the old display
resolution. Switching to a background VC later could cause fbcon to render
past the new, smaller framebuffer bounds, leading to an out-of-bounds memory
access.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-356-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.1] drm/gem: Consider GEM object reclaimable if shrinking fails
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.1] drm/gem: Consider GEM object reclaimable if shrinking fails Sasha Levin
@ 2026-08-31 15:59 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 15:59 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] msm_gem_shrinker_scan loses freed count by returning SHRINK_STOP when remaining is 0.
- [High] drm_gem_lru_scan fails to account for unscanned objects in the remaining counter, causing catastrophic early aborts.
--
commit 9ce73904f0ad62a66be5eff7808ac4a6af7edc46
Author: Boris Brezillon <boris.brezillon@collabora.com>
drm/gem: Consider GEM object reclaimable if shrinking fails
If the object wasn't moved to a different LRU after the shrink callback
returns, it means the buffer is still reclaimable. Update the remaining
counter to reflect that.
Link: https://patch.msgid.link/20260401134854.2275433-2-boris.brezillon@collabora.com
> diff --git a/drivers/gpu/drm/drm_gem.c b/drivers/gpu/drm/drm_gem.c
> index f884d155a832a..6e778939acae4 100644
> --- a/drivers/gpu/drm/drm_gem.c
> +++ b/drivers/gpu/drm/drm_gem.c
> @@ -1574,6 +1574,16 @@ drm_gem_lru_scan(struct drm_gem_lru *lru,
> */
> WARN_ON(obj->lru == &still_in_lru);
> WARN_ON(obj->lru == lru);
> + } else if (obj->lru == &still_in_lru) {
> + /*
> + * If the object wasn't moved and wasn't shrunk either,
> + * it's still remaining as reclaimable. Note that
> + * obj->lru is supposed to be checked with the LRU lock
> + * held for an accurate result, but we don't care about
> + * accuracy here. Worst thing that could happen is an
> + * extra scan.
> + */
> + *remaining += obj->size >> PAGE_SHIFT;
[Severity: High]
This isn't a bug introduced by this patch, but does this manual accumulation
fully fix the remaining counter?
In drivers/gpu/drm/drm_gem.c:drm_gem_lru_scan(), when the shrinker
successfully frees enough objects to satisfy nr_to_scan, the loop
terminates early:
while (freed < nr_to_scan) {
...
}
The objects still left in lru->list are never scanned, and their sizes are
not added to *remaining. If no objects failed to shrink before the loop
terminated, *remaining stays 0.
This missing count triggers a severe pre-existing issue in
drivers/gpu/drm/msm/msm_gem_shrinker.c:msm_gem_shrinker_scan():
return (freed > 0 && remaining > 0) ? freed : SHRINK_STOP;
When remaining is incorrectly 0, this logic swallows the freed count by
returning SHRINK_STOP. The core VM shrinker then drops the count of freed
pages, causing under-reporting of reclaimed memory which can mislead
kswapd and trigger premature OOM.
Should lru->count + still_in_lru.count be added to *remaining before returning
from drm_gem_lru_scan(), rather than manually accumulating sizes inside the
loop?
> }
>
> dma_resv_unlock(obj->resv);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-357-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Fix OOB memory exposure in get_wave_state()
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Fix OOB memory exposure in get_wave_state() Sasha Levin
@ 2026-08-31 16:12 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:12 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Unclamped `m->cp_hqd_cntl_stack_size` in `checkpoint_mqd` paths allows heap buffer overflow and kernel memory leak.
--
commit 5f7a303c0f081c68cdc169627eeb4062bb061165
Author: Sunday Clement <Sunday.Clement@amd.com>
drm/amdkfd: Fix OOB memory exposure in get_wave_state()
This commit fixes an out-of-bounds memory exposure in get_wave_state() by
clamping the attacker-controlled cp_hqd_cntl_stack_size and offset values
from the MQD. The fix ensures that copy_to_user() does not read beyond the
allocated kernel buffer object.
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
> index f2dee320fada4..e3a33a92b1799 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
[ ... ]
While this patch fixes the out-of-bounds read in get_wave_state(), I noticed a
similar pattern in the checkpointing paths further down in the file.
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c:get_checkpoint_info() {
struct v9_mqd *m = get_mqd(mqd);
*ctl_stack_size = m->cp_hqd_cntl_stack_size * NUM_XCC(mm->dev->xcc_mask);
}
[Severity: High]
This is a pre-existing issue, but does this calculate the buffer allocation
size using an untrusted, unclamped field from XCC 0? Could an attacker with
CAP_CHECKPOINT_RESTORE use a maliciously crafted MQD payload during
AMDKFD_IOC_CRIU_OP to cause an under-allocation here?
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c:checkpoint_mqd() {
...
memcpy(ctl_stack_dst, ctl_stack, m->cp_hqd_cntl_stack_size);
}
[Severity: High]
This is a pre-existing issue, but could this perform an unbounded read from
the kernel BO and an unbounded write into the heap buffer based on the
unclamped attacker-controlled size?
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c:checkpoint_mqd_v9_4_3() {
...
for (xcc = 0; xcc < NUM_XCC(mm->dev->xcc_mask); xcc++) {
m = get_mqd(mqd + size * xcc);
checkpoint_mqd(mm, m,
(uint8_t *)mqd_dst + sizeof(*m) * xcc,
(uint8_t *)ctl_stack_dst + m->cp_hqd_cntl_stack_size * xcc);
}
}
[Severity: High]
This is a pre-existing issue, but in multi-XCC environments (e.g., v9.4.3),
if a subsequent XCC has a much larger cp_hqd_cntl_stack_size than XCC 0, does
passing this unverified size to the memcpy wrapper trigger a heap overflow?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-392-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: fix buffer overflow during vBIOS update
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: fix buffer overflow during vBIOS update Sasha Levin
@ 2026-08-31 16:16 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:16 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
Pre-existing issues:
- [High] Incorrect accumulation of vbflash_image_size allows out-of-bounds reads and uninitialized memory disclosure.
- [High] Missing mutex locking during vbflash_tmp_buf allocation, access, and freeing leads to Use-After-Free, double frees, and memory leaks.
- [High] TOCTOU race condition on vbflash_image_size leads to an out-of-bounds write into VRAM.
- [Medium] Unhandled cleanup of vbflash_tmp_buf causes a 16MB memory leak on driver teardown.
--
commit 8e4215e84ef10c9caba9352b46954259d8b626c5
Author: Shiwu Zhang <shiwu.zhang@amd.com>
drm/amdgpu: fix buffer overflow during vBIOS update
This commit clamps the buffer position for writing by setting the bin
attribute to the maximum buffer size. This allows the VFS layer to block
out-of-bounds access.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
> @@ -4272,7 +4272,7 @@ static ssize_t amdgpu_psp_vbflash_read(struct file *filp, struct kobject *kobj,
> */
> static const struct bin_attribute psp_vbflash_bin_attr = {
> .attr = {.name = "psp_vbflash", .mode = 0660},
> - .size = 0,
> + .size = AMD_VBIOS_FILE_MAX_SIZE_B,
> .write = amdgpu_psp_vbflash_write,
> .read = amdgpu_psp_vbflash_read,
> };
While reviewing this fix, I noticed a few pre-existing issues in the functions
referenced by this sysfs attribute.
[Severity: High]
This isn't a bug introduced by this patch, but does amdgpu_psp_vbflash_write()
incorrectly accumulate the byte count instead of tracking a high-water mark?
If a user with access to the sysfs node writes 16MB twice at pos 0, the first
write passes the VFS checks and sets the size to 16MB. The second write also
passes because 16MB > 16MB is false, setting the accumulated size to 32MB:
amdgpu_psp_vbflash_write() {
...
memcpy(adev->psp.vbflash_tmp_buf + pos, buffer, count);
adev->psp.vbflash_image_size += count;
...
}
Later, when reading, it uses this oversized vbflash_image_size:
amdgpu_psp_vbflash_read() {
...
memcpy_toio(fw_pri_cpu_addr, adev->psp.vbflash_tmp_buf,
adev->psp.vbflash_image_size);
...
}
Could this result in a heap out-of-bounds read that copies sensitive kernel
data into the VRAM buffer?
[Severity: High]
This is a pre-existing issue, but is there a missing mutex around the buffer
allocation, access, and freeing?
Sysfs write and read functions can execute concurrently. In
amdgpu_psp_vbflash_write(), the buffer is allocated and freed outside of
adev->psp.mutex:
amdgpu_psp_vbflash_write() {
if (pos >= AMD_VBIOS_FILE_MAX_SIZE_B) {
kvfree(adev->psp.vbflash_tmp_buf);
...
}
...
if (!adev->psp.vbflash_tmp_buf) {
adev->psp.vbflash_tmp_buf = kvmalloc(...);
...
}
Meanwhile, concurrent threads might be executing memcpy in write or
memcpy_toio in read. Could one thread trigger a size-limit error and free the
buffer while another is actively copying to or from it, leading to a
use-after-free?
[Severity: High]
This isn't a bug introduced by this patch, but is there a TOCTOU race
condition on vbflash_image_size in amdgpu_psp_vbflash_read()?
The function performs lockless reads of vbflash_image_size. First it sizes
the VRAM buffer:
amdgpu_psp_vbflash_read() {
...
ret = amdgpu_bo_create_kernel(adev, adev->psp.vbflash_image_size,
... &fw_pri_cpu_addr);
...
}
And then it uses vbflash_image_size again for the copy:
amdgpu_psp_vbflash_read() {
...
memcpy_toio(fw_pri_cpu_addr, adev->psp.vbflash_tmp_buf,
adev->psp.vbflash_image_size);
...
}
If a concurrent sysfs write increments vbflash_image_size between these two
reads, will memcpy_toio copy more bytes than the BO can hold and write past
the end of the allocated VRAM buffer?
[Severity: Medium]
This is a pre-existing issue, but does this code leak the 16MB buffer on
driver teardown?
If a user stages a firmware update by writing to the sysfs node but never
triggers the read, the buffer remains allocated. When the driver is unbound,
teardown functions like psp_sw_fini() do not appear to check for or free
vbflash_tmp_buf:
psp_sw_fini() {
...
/* missing kvfree(adev->psp.vbflash_tmp_buf) here? */
...
}
Can this result in a memory leak every time the device is unbound?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-406-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Unwind debug trap enable on copy_to_user failure
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Unwind debug trap enable on copy_to_user failure Sasha Levin
@ 2026-08-31 16:30 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:30 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
New issues:
- [Critical] The patch introduces a Use-After-Free vulnerability by failing to set `target->debugger_process = NULL` during error unwind, leaving a dangling pointer.
Pre-existing issues:
- [High] Permanent reference leak of a `kfd_process` due to a race condition between `KFD_IOC_DBG_TRAP_ENABLE` and target process termination.
--
commit 8dd55ae921073df4d72c79c03882687ae0f9c626
Author: Yongqiang Sun <Yongqiang.Sun@amd.com>
drm/amdkfd: Unwind debug trap enable on copy_to_user failure
This patch adds cleanup logic to the copy_to_user failure path in
kfd_dbg_trap_enable() to undo partial setup, including releasing the
debug event file and decrementing the debugged process count.
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_debug.c b/drivers/gpu/drm/amd/amdkfd/kfd_debug.c
> index ba99e0f258aee..5a9435dcd839b 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_debug.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_debug.c
> @@ -812,6 +812,12 @@ int kfd_dbg_trap_enable(struct kfd_process *target, uint32_t fd,
>
> if (copy_to_user(runtime_info, (void *)&target->runtime_info, copy_size)) {
> kfd_dbg_trap_deactivate(target, false, 0);
> + fput(target->dbg_ev_file);
> + target->dbg_ev_file = NULL;
> + if (target->debugger_process)
> + atomic_dec(&target->debugger_process->debugged_process_count);
[Severity: Critical]
Does this error path leave target->debugger_process as a dangling pointer?
In kfd_chardev.c:kfd_ioc_dbg_trap(), the target's debugger_process is set
before calling kfd_dbg_trap_enable():
if (target != p)
target->debugger_process = p;
r = kfd_dbg_trap_enable(target, ...);
When kfd_dbg_trap_enable() fails and unwinds, it decrements the
debugged_process_count but does not set target->debugger_process to NULL.
If the debugger process then exits, its cleanup routine will skip this target
(because debugged_process_count is 0), and the debugger's kfd_process struct
will be freed.
If the target process later attempts to self-debug by calling
KFD_IOC_DBG_TRAP_ENABLE on itself, kfd_ioc_dbg_trap() will bypass overwriting
the dangling pointer because target == p:
if (target != p)
target->debugger_process = p;
Then kfd_dbg_trap_enable() will execute:
if (target->debugger_process)
atomic_inc(&target->debugger_process->debugged_process_count);
Could this sequence lead to a use-after-free and memory corruption?
Should target->debugger_process be set to NULL on this error path?
> + target->debug_trap_enabled = false;
> + kfd_unref_process(target);
> r = -EFAULT;
> }
>
[Severity: High]
This is a pre-existing issue, but does kfd_ioc_dbg_trap() have a race condition
with target process termination that can leak a kfd_process reference?
If KFD_IOC_DBG_TRAP_ENABLE starts and blocks on mutex_lock(&target->mutex),
and the target process simultaneously terminates, the target's mmu_notifier
release triggers and removes it from the global hash table:
kfd_process_notifier_release()
hash_del_rcu(&p->kfd_processes);
Then it calls kfd_dbg_trap_disable() without holding target->mutex:
kfd_process_notifier_release_internal()
p->mm = NULL;
kfd_dbg_trap_disable(p);
Since ENABLE hasn't completed, debug_trap_enabled is false, and disable
returns immediately.
When ENABLE finally acquires the mutex, it succeeds, sets
debug_trap_enabled = true, and takes an extra kref on the target:
kfd_chardev.c:kfd_ioc_dbg_trap()
r = kfd_dbg_trap_enable(target, ...);
When the debugger process eventually exits, its cleanup iterates over
kfd_processes_table to detach targets. Because the target was already removed
via hash_del_rcu(), the debugger fails to find it.
Since kfd_dbg_trap_disable() is never called for this target again, does this
permanently leak the extra kref taken by ENABLE, along with all associated
GPU resources?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-439-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: fix UAF race in destroy_queue_cpsch
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: fix UAF race in destroy_queue_cpsch Sasha Levin
@ 2026-08-31 16:36 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:36 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
New issues:
- [High] Bypassing the is_being_destroyed check allows a concurrent thread to improperly clear the flag, reopening the use-after-free window.
Pre-existing issues:
- [High] q->mqd is unconditionally freed in destroy_queue_cpsch() even if the function fails with a non-timeout error, leading to a UAF in subsequent operations like update_queue, and permanent memory leaks of the queue structure.
--
commit ea1b656c30dda08f56333e614c63a751ee2e05bd
Author: Alysa Liu <Alysa.Liu@amd.com>
Date: Mon Aug 31 13:27:54 2026 +0000
drm/amdkfd: fix UAF race in destroy_queue_cpsch
wait_on_destroy_queue() drops locks to wait for queue resume, allowing
a concurrent destroy to free the queue. Use is_being_destroyed flag to
serialize destruction.
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
> index 6e7bc983fc0b6..910722be71000 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
> @@ -2500,6 +2500,9 @@ static int wait_on_destroy_queue(struct device_queue_manager *dqm,
> if (pdd->qpd.is_debug)
> return ret;
>
> + if (q->properties.is_being_destroyed)
> + return -EBUSY;
> +
[Severity: High]
Is it possible for a concurrent thread to bypass the is_being_destroyed
check if is_debug becomes true?
If Thread A drops locks to wait in wait_event_interruptible(),
is_being_destroyed remains true. If a debugger attaches and is_debug becomes
true, Thread B calling wait_on_destroy_queue() will return early here and
skip the is_being_destroyed check.
> q->properties.is_being_destroyed = true;
>
> if (pdd->process->debug_trap_enabled && q->properties.is_suspended) {
[ ... ]
> @@ -2605,7 +2611,7 @@ static int destroy_queue_cpsch(struct device_queue_manager *dqm,
> return retval;
[Severity: High]
This is a pre-existing issue, but does this unconditionally free q->mqd even
if an error is returned earlier in this function?
If hardware unmap fails (e.g., -ENOMEM from execute_queues_cpsch or -EINVAL
from remove_queue_mes), destroy_queue_cpsch() still calls free_mqd() and
returns the error.
pqm_destroy_queue() receives this error and skips uninit_queue(), leaving the
queue in the active list with a dangling q->mqd pointer. A subsequent
KFD_IOC_UPDATE_QUEUE ioctl will then dereference the freed q->mqd in
update_queue():
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c:update_queue() {
...
mqd_mgr->update_mqd(mqd_mgr, q->mqd, &q->properties, minfo);
...
}
>
> failed_try_destroy_debugged_queue:
> -
> + q->properties.is_being_destroyed = false;
[Severity: High]
Will unconditionally clearing the flag here re-introduce the use-after-free
race?
If Thread B bypassed the is_being_destroyed check in wait_on_destroy_queue()
due to is_debug becoming true, it will take this error path and clear the
flag. Thread A is still waiting, but its protection is now lost, allowing
Thread C to free the queue before Thread A wakes up.
> dqm_unlock(dqm);
> return retval;
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-446-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds for allocate_sdma_queue restore_sdma_id
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds for allocate_sdma_queue restore_sdma_id Sasha Levin
@ 2026-08-31 16:43 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:43 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] Missing bounds check on user-supplied restore_id in allocate_doorbell can lead to a heap out-of-bounds write.
- [High] Validation bypass in `kfd_ioctl_create_queue` when a device has no SDMA engines, leading to an infinite loop and out-of-bounds memory access.
--
commit f2095bccc592ac2c6dbb0b7629acce3bdd15ede4
Author: David Francis <David.Francis@amd.com>
drm/amdkfd: Check bounds for allocate_sdma_queue restore_sdma_id
The allocate_sdma_queue function lacked bounds checking for a user-specified
SDMA queue ID during CRIU restore. This patch adds checks to ensure the ID
is less than the maximum number of queues, preventing out-of-bounds access.
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
> index 6e7bc983fc0b6..842720811599e 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
[ ... ]
> @@ -1622,6 +1625,9 @@ static int allocate_sdma_queue(struct device_queue_manager *dqm,
> return -ENOMEM;
> }
> if (restore_sdma_id) {
> + if (*restore_sdma_id >= get_num_xgmi_sdma_queues(dqm))
> + return -EINVAL;
> +
> /* Re-use existing sdma_id */
> if (!test_bit(*restore_sdma_id, dqm->xgmi_sdma_bitmap)) {
> dev_err(dev, "SDMA queue already in use\n");
[Severity: High]
This isn't a bug introduced by this patch, but there is a validation bypass in
kfd_ioctl_create_queue() when a device has no SDMA engines, which can lead to
an infinite loop and out-of-bounds memory access here in allocate_sdma_queue().
If an unprivileged user calls kfd_ioctl_create_queue() requesting
KFD_QUEUE_TYPE_SDMA_BY_ENG_ID on a device with 0 SDMA engines, both
kfd_get_num_sdma_engines() and kfd_get_num_xgmi_sdma_engines() evaluate to 0.
This makes max_sdma_eng_id in kfd_ioctl_create_queue() evaluate to -1:
drivers/gpu/drm/amd/amdkfd/kfd_chardev.c:kfd_ioctl_create_queue() {
...
int max_sdma_eng_id = kfd_get_num_sdma_engines(dev) +
kfd_get_num_xgmi_sdma_engines(dev) - 1;
if (q_properties.sdma_engine_id > max_sdma_eng_id) {
err = -EINVAL;
...
}
Due to integer promotion, -1 is cast to 0xFFFFFFFF, bypassing the validation.
Execution then continues down to allocate_sdma_queue(), where the user-supplied
sdma_engine_id is assigned to the int variable start_engine:
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c:allocate_sdma_queue() {
...
start_engine = q->properties.sdma_engine_id - eng_offset;
for (i = start_engine; i < num_queues; i += num_engines) {
if (!test_bit(i, is_xgmi ? dqm->xgmi_sdma_bitmap : dqm->sdma_bitmap))
continue;
...
}
With num_queues == 0 and num_engines == 0, if the user-supplied sdma_engine_id
is negative when cast to int (e.g., -2147483648), start_engine becomes negative.
The condition (i < 0) is true and the loop becomes infinite (i += 0). The
test_bit() function is then called with the negative index, leading to an
out-of-bounds memory access.
Could we add a check to ensure max_sdma_eng_id is >= 0 before doing the bounds
check in kfd_ioctl_create_queue()?
[Severity: High]
This is a pre-existing issue, but this patch seems to have missed the
equivalent bounds check for allocate_doorbell().
A user process utilizing the KFD CRIU restore ioctl can provide a malicious
queue data structure with an arbitrarily large doorbell_id. When
create_queue_cpsch() calls allocate_doorbell(), this user-controlled ID
is passed as restore_id without validation:
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c:allocate_doorbell() {
...
if (__test_and_set_bit(*restore_id, qpd->doorbell_bitmap))
return -EINVAL;
...
}
Since *restore_id isn't checked against KFD_MAX_NUM_OF_QUEUES_PER_PROCESS,
this results in a heap out-of-bounds write on the dynamically allocated
qpd->doorbell_bitmap array. This path is reachable via the KFD_IOC_CRIU_OP
ioctl which requires CAP_CHECKPOINT_RESTORE or CAP_SYS_ADMIN.
Is there a companion patch that adds the missing bounds check for
allocate_doorbell() as well?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-473-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.12] drm/nouveau/bios: skip the IFR header if present
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] drm/nouveau/bios: skip the IFR header if present Sasha Levin
@ 2026-08-31 16:44 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:44 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
- [High] Unvalidated `offset` parsed from the IFR header is used directly for MMIO reads, potentially causing out-of-bounds memory accesses and kernel panics.
- [High] Unvalidated alignments for `data_size`, `offset`, and `pci_rom_offset` can cause unaligned MMIO reads, triggering alignment faults.
- [Low] Use of undeclared function/macro 'kzalloc_obj' causes a build failure.
--
commit 9d4cb5f612195048e40857e29840a031219f8e6b
Author: Timur Tabi <ttabi@nvidia.com>
drm/nouveau/bios: skip the IFR header if present
This commit adds logic to parse the Init-from-ROM (IFR) header on GPUs
like GA100, adjusting PROM reads to skip the header and reach the PCI
Expansion ROM image. It handles version 1, 2, and 3 IFR headers by
reading offsets and validating the PCI ROM signature.
Link: https://patch.msgid.link/20260430223838.2530778-9-ttabi@nvidia.com
> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c b/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c
> index 39144ceb117b4..9e171b1bad732 100644
> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c
> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c
[ ... ]
> @@ -24,34 +24,126 @@
>
> #include <subdev/pci.h>
>
> +#define NV_PBUS_IFR_FMT_FIXED0_SIGNATURE_VALUE 0x4947564E /* "NVGI" */
> +#define NV_ROM_DIRECTORY_IDENTIFIER 0x44524652 /* "RFRD" */
> +
> +struct priv {
> + struct nvkm_device *device;
> + u32 pci_rom_offset;
> +};
[ ... ]
> static u32
> nvbios_prom_read(void *data, u32 offset, u32 length, struct nvkm_bios *bios)
> {
> - struct nvkm_device *device = data;
> + struct priv *priv = data;
> + struct nvkm_device *device = priv->device;
> u32 i;
> - if (offset + length <= 0x00100000) {
> - for (i = offset; i < offset + length; i += 4)
> - *(u32 *)&bios->data[i] = nvkm_rd32(device, 0x300000 + i);
> - return length;
> - }
> - return 0;
> +
> + /* Make sure we don't try to read past the end of data[] */
> + if (offset + length > bios->size)
> + return 0;
> +
> + /* Make sure the read falls within the 1MB PROM window */
> + if (offset + priv->pci_rom_offset + length > 0x00100000)
> + return 0;
> +
> + for (i = offset; i < offset + length; i += 4)
> + *(u32 *)&bios->data[i] = nvkm_rd32(device, 0x300000 + priv->pci_rom_offset + i);
[Severity: High]
Is it possible for priv->pci_rom_offset to be unaligned here?
Since nvkm_rd32() performs a 32-bit MMIO read, an unaligned offset parsed
from the untrusted VBIOS could trigger an Alignment Fault (data abort) on
strictly aligned architectures like ARM/ARM64.
> + return length;
> }
[ ... ]
> static void *
> nvbios_prom_init(struct nvkm_bios *bios, const char *name)
> {
> struct nvkm_device *device = bios->subdev.device;
> + struct priv *priv;
> + u32 fixed0;
> +
> + /* There is no PROM on NV4x iGPUs */
> if (device->card_type == NV_40 && device->chipset >= 0x4c)
> return ERR_PTR(-ENODEV);
> +
> + priv = kzalloc_obj(*priv);
[Severity: Low]
Does this code build correctly? It looks like kzalloc_obj is an undeclared
macro or function, which breaks the build. Should this be a call to
kzalloc(sizeof(*priv), GFP_KERNEL) instead?
> + if (!priv)
> + return ERR_PTR(-ENOMEM);
> +
> + /* Disable the PCI ROM shadow so that we can read PROM. */
> nvkm_pci_rom_shadow(device->pci, false);
> - return device;
> +
> + /*
> + * Check for an IFR header. If present, parse it to find the actual PCI ROM header.
> + *
> + * The IFR header is documented in Documentation/gpu/nova/core/vbios.rst
> + */
> + fixed0 = nvkm_rd32(device, 0x300000);
> + if (fixed0 == NV_PBUS_IFR_FMT_FIXED0_SIGNATURE_VALUE) {
> + u32 fixed1 = nvkm_rd32(device, 0x300004);
> + u8 version = (fixed1 >> 8) & 0xff;
> + u32 fixed2, data_size, offset, signature;
> +
> + switch (version) {
> + case 1:
> + case 2:
> + data_size = (fixed1 >> 16) & 0x7fff;
> + priv->pci_rom_offset = nvkm_rd32(device, 0x300000 + data_size + 4);
[Severity: High]
Could this read trigger an unaligned MMIO access?
The data_size is extracted directly from the header without alignment checks.
If it is not a multiple of 4, adding it to the base address will cause an
unaligned 32-bit read, triggering an Alignment Fault on architectures like
ARM/ARM64.
> + break;
> + case 3:
> + fixed2 = nvkm_rd32(device, 0x300008);
> + data_size = fixed2 & 0x000fffff;
> +
> + /* ROM directory offset */
> + offset = nvkm_rd32(device, 0x300000 + data_size) + 4096;
> +
> + signature = nvkm_rd32(device, 0x300000 + offset);
[Severity: High]
Can this lead to an out-of-bounds MMIO read or unaligned access?
The offset value is parsed directly from the IFR header and used immediately
as an index for nvkm_rd32(). If the device provides a malformed or malicious
offset (e.g., 0x0F000000), the read could fall completely outside the
device->pri mapping, triggering a synchronous external abort and a kernel
panic.
Additionally, there appear to be no checks ensuring the offset is 4-byte
aligned, which carries the same alignment fault risk as data_size above.
> + if (signature != NV_ROM_DIRECTORY_IDENTIFIER) {
> + nvkm_error(&bios->subdev, "could not find IFR ROM directory\n");
> + goto fail;
> + }
> +
> + priv->pci_rom_offset = nvkm_rd32(device, 0x300000 + offset + 8);
[Severity: High]
Could this subsequent MMIO read also fail for the same reasons? It relies
on the unvalidated offset value.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-478-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.1] drm/amd/pm: bound pp_dpm_set_pp_table() memcpy
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] drm/amd/pm: bound pp_dpm_set_pp_table() memcpy Sasha Levin
@ 2026-08-31 16:46 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:46 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Lockless read of pp_table in sysfs read path leads to a data race and potential Use-After-Free.
--
commit cc5f41b8e67512361c9df1ffb3561029e8d4a97e
Author: Asad Kamal <asad.kamal@amd.com>
drm/amd/pm: bound pp_dpm_set_pp_table() memcpy
This commit adds a bounds check to pp_dpm_set_pp_table() to prevent a heap
overflow when uploading a powerplay table via sysfs. It rejects writes where
the provided size exceeds soft_pp_table_size.
> diff --git a/drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c b/drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c
> --- a/drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c
> +++ b/drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c
> @@ -665,6 +665,9 @@ static int pp_dpm_set_pp_table(void *handle, const char *buf, size_t size)
> if (!hwmgr || !hwmgr->pm_en)
> return -EINVAL;
>
> + if (size > hwmgr->soft_pp_table_size)
> + return -EINVAL;
> +
> if (!hwmgr->hardcode_pp_table) {
> hwmgr->hardcode_pp_table = kmemdup(hwmgr->soft_pp_table,
> hwmgr->soft_pp_table_size,
> GFP_KERNEL);
> if (!hwmgr->hardcode_pp_table)
> return ret;
> }
>
> memcpy(hwmgr->hardcode_pp_table, buf, size);
[Severity: High]
This is a pre-existing issue, but does this sysfs write path race with
concurrent readers?
Looking at the sysfs read path in amdgpu_get_pp_table() in
drivers/gpu/drm/amd/pm/amdgpu_pm.c, the table is read locklessly after briefly
holding the mutex to fetch the pointer:
drivers/gpu/drm/amd/pm/amdgpu_pm.c:amdgpu_get_pp_table() {
...
mutex_lock(&adev->pm.mutex);
size = amdgpu_dpm_get_pp_table(adev, &table);
mutex_unlock(&adev->pm.mutex);
if (size >= PAGE_SIZE)
return -EIO;
memcpy(buf, table, size);
...
}
If a privileged user concurrently writes a new table via sysfs, this write
path in pp_dpm_set_pp_table() executes memcpy() and mutates the buffer while
the reader is copying it, resulting in corrupted data to userspace.
Furthermore, in the SMU path, this race can result in a use-after-free. If a
larger table is written concurrently, the old table is freed:
drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c:smu_sys_set_pp_table() {
...
kfree(smu_table->hardcode_pptable);
smu_table->hardcode_pptable = kzalloc(size, GFP_KERNEL);
...
}
Since the reader in amdgpu_get_pp_table() continues to execute
memcpy(buf, table, size) using the now-freed pointer without holding any
locks, can this lead to kernel memory corruption or an information leak?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-496-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: check find_first_zero_bit before __set_bit on kfd->doorbell_bitmap
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: check find_first_zero_bit before __set_bit on kfd->doorbell_bitmap Sasha Levin
@ 2026-08-31 16:48 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:48 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] kfd_get_kernel_doorbell returns an out-of-bounds memory pointer when inx >= PAGE_SIZE / 8 (e.g. inx >= 512 for 4K pages) despite the newly added limit check.
- [High] Unconditional `inx *= 2` scaling causes the CPU doorbell mapping to desynchronize from the hardware offset for pre-SOC15 devices where doorbell_size is 4 bytes.
--
commit 894bc38c1ebdc7976cba92108cb9d3988e5b0bcd
Author: Xiaogang Chen <xiaogang.chen@amd.com>
drm/amdkfd: check find_first_zero_bit before __set_bit on kfd->doorbell_bitmap
This commit fixes an issue where the doorbell bitmap could be written
out-of-bounds by moving the bounds check to occur before the __set_bit
operation.
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c b/drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c
> index 05c74887fd6fd..fdcf7f2d1b5b4 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_doorbell.c
> @@ -153,14 +153,16 @@ void __iomem *kfd_get_kernel_doorbell(struct kfd_dev *kfd,
> u32 inx;
>
> mutex_lock(&kfd->doorbell_mutex);
> +
> inx = find_first_zero_bit(kfd->doorbell_bitmap, PAGE_SIZE / sizeof(u32));
> + if (inx >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS) {
[Severity: High]
This is a pre-existing issue, but does this bounds check adequately protect
the final pointer calculation from overflowing the allocation?
KFD_MAX_NUM_OF_QUEUES_PER_PROCESS is 1024. If we look at how inx is used
later in kfd_get_kernel_doorbell():
inx *= 2;
...
return kfd->doorbell_kernel_ptr + inx;
If inx is 512 or greater (but less than 1024), multiplying it by 2 yields an
index of 1024 or more. Since the doorbell allocation is PAGE_SIZE (4096
bytes, or 1024 u32 elements), returning kfd->doorbell_kernel_ptr + inx
results in an out-of-bounds memory pointer and potential memory corruption
upon write.
> + mutex_unlock(&kfd->doorbell_mutex);
> + return NULL;
> + }
>
> __set_bit(inx, kfd->doorbell_bitmap);
> mutex_unlock(&kfd->doorbell_mutex);
>
> - if (inx >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS)
> - return NULL;
> -
> *doorbell_off = amdgpu_doorbell_index_on_bar(kfd->adev,
> kfd->doorbells,
> inx,
[Severity: High]
This isn't a bug introduced by this patch, but does the unconditional scaling
of inx cause the CPU doorbell mapping to desynchronize from the hardware
offset for legacy devices?
Immediately following this context in kfd_get_kernel_doorbell():
*doorbell_off = amdgpu_doorbell_index_on_bar(kfd->adev,
kfd->doorbells,
inx,
kfd->device_info.doorbell_size);
inx *= 2;
The hardware offset calculation via amdgpu_doorbell_index_on_bar() uses
the device-specific doorbell sizes (e.g. 4 bytes on pre-SOC15 devices).
However, the CPU virtual pointer applies a hardcoded multiplication by 2
(advancing by 8 bytes unconditionally).
Can this lead to hardware functionality loss or device hangs on legacy
pre-SOC15 devices?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-498-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/amd/pm: Check SMUv13.0.6/12 metrics integrity
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] drm/amd/pm: Check SMUv13.0.6/12 metrics integrity Sasha Levin
@ 2026-08-31 16:51 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:51 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
New issues:
- [High] The patch corrupts the metrics cache on failure by overwriting it with poisoned data without invalidating the cache timestamp, allowing subsequent callers to read poisoned data as valid.
Pre-existing issues:
- [High] The return value of `smu_v13_0_6_setup_driver_pptable()` is ignored, which can lead to zero-initialized clock frequencies being used as valid DPM levels if the metrics table fetch fails.
--
commit 6701a9c70e1205aa9e17d45906aef05c0bfc8e8f
Author: Lijo Lazar <lijo.lazar@amd.com>
drm/amd/pm: Check SMUv13.0.6/12 metrics integrity
Check if data fetch is proper by matching the first few bytes against
0xFFs. If 0xFFs, that means data couldn't be read properly.
[ Upstream commit 6fc63d80c01a480e3d2c98620f07d46e5bcfc85a ]
> diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
> index 285cf79796939..c47beb75377ec 100644
> --- a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
> +++ b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
> @@ -768,6 +768,10 @@ int smu_v13_0_6_get_metrics_table(struct smu_context *smu, void *metrics_table,
> amdgpu_asic_invalidate_hdp(smu->adev, NULL);
> memcpy(smu_table->metrics_table, table->cpu_addr, table_size);
>
> + if (!memchr_inv(smu_table->metrics_table, 0xff,
> + min(16, table_size)))
> + return -EHWPOISON;
> +
[Severity: High]
Does this error path leave the metrics cache poisoned?
If a caller (e.g., smu_v13_0_6_get_pm_metrics()) fetches the metrics table with
bypass_cache = true, and the fetch fails this new integrity check, it will
return -EHWPOISON. However, smu_table->metrics_table will already be overwritten
with the poisoned (0xff) data, while smu_table->metrics_time remains unchanged.
If a subsequent caller (e.g., smu_v13_0_6_get_gpu_metrics()) then requests
metrics with bypass_cache = false within the 1ms window of the old timestamp,
will it skip the fetch, copy the poisoned data, and return success?
> smu_table->metrics_time = jiffies;
> }
>
[Severity: High]
This is a pre-existing issue, but can the ignored return value of
smu_v13_0_6_setup_driver_pptable() cause zero-initialized clock frequencies to
be used as valid DPM levels if the metrics table fetch fails?
Looking at smu_v13_0_6_set_default_dpm_table(), the return value of
smu_v13_0_6_setup_driver_pptable() is ignored:
drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c:smu_v13_0_6_set_default_dpm_table() {
...
smu_v13_0_6_setup_driver_pptable(smu);
...
}
If the metrics table fetch fails (e.g., due to the new integrity check returning
-EHWPOISON), setup_driver_pptable() returns an error without populating the
pptable structure.
Because the return value is ignored, the caller iterates over the
zero-initialized pptable and populates the DPM clock tables with 0 MHz:
drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c:smu_v13_0_6_set_default_dpm_table() {
...
for (j = 0; j < ARRAY_SIZE(dpm_map); j++) {
...
dpm_table->count = levels;
for (i = 0; i < dpm_table->count; ++i) {
dpm_table->dpm_levels[i].value =
dpm_map[j].freq_table[i];
dpm_table->dpm_levels[i].enabled = true;
}
...
}
...
}
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-482-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amdkfd: fix SMI event cross-process information leak
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdkfd: fix SMI event cross-process information leak Sasha Levin
@ 2026-08-31 16:54 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 16:54 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] Kernel panic due to NULL pointer dereferences in amdgpu_vm_get_task_info_vm() and amdgpu_vm_fini() when vm->task_info allocation fails.
- [High] Potential Use-After-Free of amdgpu_vm in amdgpu_vm_get_task_info_pasid.
--
commit ac56a0fa84d860ce75aeb92f4bc1e57cf68cb0d2
Author: Yongqiang Sun <Yongqiang.Sun@amd.com>
drm/amdkfd: fix SMI event cross-process information leak
This commit fixes a cross-process information leak by passing the target
process PID into kfd_smi_event_add() for system-wide events. This ensures
that the existing per-client filter properly restricts delivery to the
owning process instead of bypassing the filter with a PID of 0.
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c b/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
> index a499449fcb068..d6e737ab10076 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
> @@ -254,8 +254,10 @@ void kfd_smi_event_update_vmfault(struct kfd_node *dev, uint16_t pasid)
> if (task_info) {
[Severity: High]
This isn't a regression introduced by this patch, but can the retrieval of
task_info just above this line lead to a Use-After-Free of the amdgpu_vm
pointer?
In the call to amdgpu_vm_get_task_info_pasid(), it retrieves the vm pointer
from the pasids xarray and immediately drops the lock before passing the bare
pointer to amdgpu_vm_get_task_info_vm():
amdgpu_vm_get_task_info_pasid() {
...
return amdgpu_vm_get_task_info_vm(
amdgpu_vm_get_vm_from_pasid(adev, pasid));
}
If the owning process concurrently exits and amdgpu_vm_fini() is called,
the vm could be freed between dropping the xarray lock and dereferencing
the pointer in amdgpu_vm_get_task_info_vm(). This could be triggered via
concurrent VM fault interrupts and process teardown.
> /* Report VM faults from user applications, not retry from kernel */
> if (task_info->task.pid)
> - kfd_smi_event_add(0, dev, KFD_SMI_EVENT_VMFAULT, KFD_EVENT_FMT_VMFAULT(
> - task_info->task.pid, task_info->task.comm));
> + kfd_smi_event_add(task_info->tgid, dev,
> + KFD_SMI_EVENT_VMFAULT,
> + KFD_EVENT_FMT_VMFAULT(task_info->task.pid,
> + task_info->task.comm));
> amdgpu_vm_put_task_info(task_info);
> }
> }
[ ... ]
> @@ -356,7 +358,7 @@ void kfd_smi_event_process(struct kfd_process_device *pdd, bool start)
> task_info = amdgpu_vm_get_task_info_vm(avm);
[Severity: High]
This is a pre-existing regression, but can this call result in a kernel panic
due to a NULL pointer dereference?
Looking at amdgpu_vm_get_task_info_vm(), it checks if the vm pointer is valid
but unconditionally accesses vm->task_info:
amdgpu_vm_get_task_info_vm() {
...
if (vm) {
ti = vm->task_info;
kref_get(&vm->task_info->refcount);
}
return ti;
}
If the memory allocation fails during initialization in amdgpu_vm_init(), the
error is logged but execution continues:
amdgpu_vm_init() {
...
r = amdgpu_vm_create_task_info(vm);
if (r)
dev_dbg(adev->dev, "Failed to create task info for VM\n");
...
}
This leaves the vm->task_info pointer as NULL, which will cause a crash when
kref_get() is called here.
Additionally, this missing NULL check can cause another dereference during
VM destruction in amdgpu_vm_fini() when formatting the warning message:
amdgpu_vm_fini() {
...
dev_warn(adev->dev,
"VM memory stats for proc %s(%d) task %s(%d) is non-zero when fini\n",
ti->process_name, ti->task.pid, ti->task.comm, ti->tgid);
...
}
>
> if (task_info) {
> - kfd_smi_event_add(0, pdd->dev,
> + kfd_smi_event_add(task_info->tgid, pdd->dev,
> start ? KFD_SMI_EVENT_PROCESS_START :
> KFD_SMI_EVENT_PROCESS_END,
> KFD_EVENT_FMT_PROCESS(task_info->task.pid,
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-514-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/panel: jadard-jd9365da-h3: set prepare_prev_first
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.6] drm/panel: jadard-jd9365da-h3: set prepare_prev_first Sasha Levin
@ 2026-08-31 17:11 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 17:11 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
New issues:
- [High] Setting `prepare_prev_first` reverses the bridge enable/disable order, causing the DSI host to drive data lanes high (LP-11) before the panel is powered on, which violates hardware power sequences.
Pre-existing issues:
- [High] The panel is published to the system via `drm_panel_add()` before critical internal state is initialized.
--
commit a792999b217c12abcec671639b930a3ece58774e
Author: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
drm/panel: jadard-jd9365da-h3: set prepare_prev_first
Sending DSI commands from the prepare() callback requires DSI link to be
up at that point. Set the .prepare_prev_first flag to let these panels work
with the DSI hosts which don't power on the link in their .mode_set callback.
Link: https://patch.msgid.link/20260413-waveshare-dsi-touch-v3-13-3aeb53022c32@oss.qualcomm.com
> diff --git a/drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c b/drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
> index 5c2530598ddb9..9e5287829b952 100644
> --- a/drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
> +++ b/drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
> @@ -1157,6 +1157,8 @@ static int jadard_dsi_probe(struct mipi_dsi_device *dsi)
> if (ret)
> return ret;
>
> + jadard->panel.prepare_prev_first = true;
> +
[Severity: High]
Does setting this flag reverse the expected hardware power sequences?
When the display is enabled, the DRM bridge core will respect this flag by
calling the host's pre_enable before the panel's prepare. This forces the
host PHY to power up and drive the DSI lanes to LP-11. Then jadard_prepare()
enables the vccio and vdd regulators.
This sequence is reversed during disable, with jadard_unprepare() disabling
regulators while the host is still driving LP-11.
Could driving I/O pins on unpowered silicon cause hardware latch-up and
potential permanent damage to the panel?
> drm_panel_add(&jadard->panel);
[Severity: High]
This is a pre-existing issue, but does calling drm_panel_add() here publish
the panel before critical internal state is initialized?
drm_panel_add() makes the panel visible globally. A concurrent thread (e.g., a
display controller driver probe in another workqueue or returning from
EPROBE_DEFER) can immediately acquire the panel and call its callbacks.
If a callback like jadard_get_modes() is invoked, it unconditionally
dereferences jadard->desc. Since jadard->desc is initialized in the lines
following this drm_panel_add() call, could this lead to a NULL pointer
dereference and kernel panic?
>
> mipi_dsi_set_drvdata(dsi, jadard);
> jadard->dsi = dsi;
> jadard->desc = desc;
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-577-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amdgpu: Bound GPIO I2C table entry count from VBIOS
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu: Bound GPIO I2C table entry count from VBIOS Sasha Levin
@ 2026-08-31 17:14 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 17:14 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
Pre-existing issues:
- [High] Out-of-bounds read in VBIOS parsing due to missing bounds checks on `data_offset` against `bios_size`.
- [High] Memory and resource leak of `struct amdgpu_i2c_chan` objects and I2C adapters during driver teardown.
- [High] Unchecked VBIOS size subtraction causes unsigned underflow and unconstrained loops in other ATOM parser functions.
--
commit 07534aa5f05a4ba05838a80933016849ebced1e1
Author: Candice Li <candice.li@amd.com>
drm/amdgpu: Bound GPIO I2C table entry count from VBIOS
This commit caps the parsed GPIO I2C table entry count to AMDGPU_MAX_I2C_BUS
to prevent array overruns and unbounded iteration on corrupt VBIOS metadata.
[ Upstream commit a99cd231cd924b7160fecb9fb3a94b801522323b ]
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c
> index 763f2b8dcf13a..b8f7e3a18d324 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c
[ ... ]
> @@ -127,8 +141,7 @@ void amdgpu_atombios_i2c_init(struct amdgpu_device *adev)
> if (amdgpu_atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
> i2c_info = (struct _ATOM_GPIO_I2C_INFO *)(ctx->bios + data_offset);
[Severity: High]
This isn't a bug introduced by this patch, but does this code potentially
dereference an out-of-bounds pointer if the parsed data_offset exceeds the
size of the VBIOS allocation?
If the VBIOS data is malformed and data_offset is larger than the actual
allocation, ctx->bios + data_offset could result in an out-of-bounds read
when i2c_info is dereferenced.
The unvalidated data_offset originates from:
drivers/gpu/drm/amd/amdgpu/atom.c:amdgpu_atom_parse_data_header() {
...
int offset = index * 2 + 4;
int idx = CU16(ctx->data_table + offset);
...
*data_start = idx;
return true;
}
> - num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
> - sizeof(ATOM_GPIO_I2C_ASSIGMENT);
> + num_indices = amdgpu_atombios_gpio_i2c_num_entries(size);
[ ... ]
I also noticed a pre-existing resource management issue during driver teardown:
drivers/gpu/drm/amd/amdgpu/amdgpu_i2c.c:amdgpu_i2c_create() {
...
i2c = kzalloc(sizeof(struct amdgpu_i2c_chan), GFP_KERNEL);
if (i2c == NULL)
return NULL;
...
ret = i2c_bit_add_bus(&i2c->adapter);
...
}
drivers/gpu/drm/amd/amdgpu/amdgpu_i2c.c:amdgpu_i2c_fini() {
int i;
for (i = 0; i < AMDGPU_MAX_I2C_BUS; i++)
if (adev->i2c_bus[i])
adev->i2c_bus[i] = NULL;
}
[Severity: High]
This is a pre-existing issue, but does this code leak the struct
amdgpu_i2c_chan object and the bit-banging I2C adapter registration?
When amdgpu_i2c_fini() cleans up the I2C buses, it sets adev->i2c_bus[i] to
NULL but does not appear to call kfree() on the struct amdgpu_i2c_chan, nor
does it call i2c_del_adapter() for the adapters registered with
i2c_bit_add_bus(), which aren't managed by devres.
Could this leave dangling I2C adapters and permanently leak the kzalloc'd
memory?
Another pre-existing issue in the same file involves a similar underflow:
drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c:amdgpu_atombios_lookup_gpio() {
...
if (amdgpu_atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) {
gpio_info = (struct _ATOM_GPIO_PIN_LUT *)(ctx->bios + data_offset);
num_indices = (size - sizeof(ATOM_COMMON_TABLE_HEADER)) /
sizeof(ATOM_GPIO_PIN_ASSIGNMENT);
...
}
[Severity: High]
This isn't a bug introduced by this patch, but does this code overflow
num_indices if size is less than 4 bytes?
Since size is a u16 and sizeof(ATOM_COMMON_TABLE_HEADER) is 4, a size smaller
than 4 will cause the subtraction to underflow in an unsigned context.
Could this result in a massive num_indices value, causing the subsequent loop
to read far beyond the bounds of the VBIOS allocation?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-569-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.6] drm/amd/display: Fix DPMS using partially updated pipe context
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.6] drm/amd/display: Fix DPMS using partially updated pipe context Sasha Levin
@ 2026-08-31 17:15 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 17:15 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] The patch introduces a critical indexing mismatch by using a pipe index `j` derived from the newly evaluated `context` to fetch the corresponding pipe from the old `current_state`. Because pipe topology can change dynamically between states, this leads to NULL pointer dereferences or incorrectly powering down the wrong display's hardware pipeline.
--
commit 4b109eb12ffb5f2fcc8ece3764e3caf46a2d8331
Author: Dominik Kaszewski <dominik.kaszewski@amd.com>
drm/amd/display: Fix DPMS using partially updated pipe context
DPMS functions are modified to use the pipe context from current_state
(the most recently programmed HW config) rather than the partially
updated context.
> diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
> index 5f2d5638c8191..8793383e39410 100644
> --- a/drivers/gpu/drm/amd/display/dc/core/dc.c
> +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
> @@ -3690,27 +3690,34 @@ static void commit_planes_do_stream_update(struct dc *dc,
[ ... ]
> + // DPMS should not use partially updated pipe context
> + struct pipe_ctx *dpms_pipe_ctx = &dc->current_state->res_ctx.pipe_ctx[j];
> +
[Severity: High]
Does this introduce an indexing mismatch between the old and new contexts?
The commit_planes_do_stream_update() loop iterates over the new context using
index j to find pipes for the stream being updated. However, because pipe
topology can change dynamically between states during stream updates, index j
in current_state might not map to the same stream.
> if (stream_update->dpms_off) {
> if (*stream_update->dpms_off) {
> - dc->link_srv->set_dpms_off(pipe_ctx);
> + dc->link_srv->set_dpms_off(dpms_pipe_ctx);
[Severity: High]
If pipe j belonged to a different stream in current_state due to a dynamic
reassignment, could this pass the wrong context and power down the incorrect
physical display hardware?
> /* for dpms, keep acquired resources*/
> - if (pipe_ctx->stream_res.audio && !dc->debug.az_endpoint_mute_only)
> - pipe_ctx->stream_res.audio->funcs->az_disable(pipe_ctx->stream_res.audio);
> + if (dpms_pipe_ctx->stream_res.audio && !dc->debug.az_endpoint_mute_only) {
> + struct audio *audio = dpms_pipe_ctx->stream_res.audio;
> +
> + audio->funcs->az_disable(audio);
> + }
>
> dc->optimized_required = true;
>
> } else {
> if (get_seamless_boot_stream_count(context) == 0)
> dc->hwss.prepare_bandwidth(dc, dc->current_state);
> - dc->link_srv->set_dpms_on(dc->current_state, pipe_ctx);
> + dc->link_srv->set_dpms_on(dc->current_state, dpms_pipe_ctx);
> }
> - } else if (pipe_ctx->stream->link->wa_flags.blank_stream_on_ocs_change && stream_update->output_color_space
> - && !stream->dpms_off && dc_is_dp_signal(pipe_ctx->stream->signal)) {
> + } else if (dpms_pipe_ctx->stream->link->wa_flags.blank_stream_on_ocs_change &&
> + stream_update->output_color_space &&
> + !stream->dpms_off && dc_is_dp_signal(dpms_pipe_ctx->stream->signal)) {
[Severity: High]
Could this result in a NULL pointer dereference?
If pipe j was completely unused in current_state prior to this commit,
dpms_pipe_ctx->stream will be NULL, which would lead to a kernel panic when
unconditionally dereferencing dpms_pipe_ctx->stream->link here.
> /*
> * Workaround for firmware issue in some receivers where they don't pick up
> * correct output color space unless DP link is disabled/re-enabled
> */
> - dc->link_srv->set_dpms_on(dc->current_state, pipe_ctx);
> + dc->link_srv->set_dpms_on(dc->current_state, dpms_pipe_ctx);
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-559-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18] drm/amdgpu: use atomic operation to achieve lockless serialization
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] drm/amdgpu: use atomic operation to achieve lockless serialization Sasha Levin
@ 2026-08-31 17:20 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 17:20 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] This problem wasn't introduced by this patch, but dma_fence_is_signaled_locked() is called without holding the required fence lock, leading to a severe locking violation.
--
commit e72ef6207a108e0a367f5094ba262069966bfe78
Author: Sunil Khatri <sunil.khatri@amd.com>
drm/amdgpu: use atomic operation to achieve lockless serialization
This commit fixes a race condition in amdgpu_seq64_alloc where multiple cores
could acquire the same free slot. It replaces non-atomic bit operations with
atomic test_and_set and clear operations.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c
> index a0b479d5fff19..f4be192235889 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_seq64.c
[ ... ]
This is a pre-existing issue, but I noticed a potential problem in
drivers/gpu/drm/amd/amdgpu/amdgpu_userq_fence.c:amdgpu_userq_fence_driver_set_error():
spin_lock_irqsave(&fence_drv->fence_list_lock, flags);
f = rcu_dereference_protected(&fence->base,
lockdep_is_held(&fence_drv->fence_list_lock));
if (f && !dma_fence_is_signaled_locked(f))
dma_fence_set_error(f, error);
spin_unlock_irqrestore(&fence_drv->fence_list_lock, flags);
[Severity: High]
This isn't a bug introduced by this patch, but dma_fence_is_signaled_locked()
is called here without holding the required fence lock.
Is it safe to call dma_fence_is_signaled_locked() without holding the actual
fence lock (&userq_fence->lock)?
The function may internally invoke dma_fence_signal_locked(), which modifies
the fence state and iterates over wait callbacks without protection. Could this
cause race conditions and list corruption if another thread concurrently
accesses the fence?
Could this also trigger a kernel lockdep splat because
dma_fence_signal_locked() asserts that the lock is held?
Additionally, does the preceding rcu_dereference_protected(&fence->base)
irregularly pass a non-RCU pointer to an inline struct?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-593-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
* Re: [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds on allocate_doorbell
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds on allocate_doorbell Sasha Levin
@ 2026-08-31 17:38 ` sashiko-bot
0 siblings, 0 replies; 106+ messages in thread
From: sashiko-bot @ 2026-08-31 17:38 UTC (permalink / raw)
To: Sasha Levin; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
Pre-existing issues:
- [High] Missing bounds check on user-supplied `restore_sdma_id` during CRIU restore causes out-of-bounds bit operations on `sdma_bitmap` and `xgmi_sdma_bitmap`.
- [High] Missing bounds check on restore_id causes out-of-bounds array access to page_slots array during CRIU event restore.
- [High] Memory leak of gang_ctx_bo and wptr_bo_gart when queue creation fails.
- [Medium] User-triggerable WARN(1) by supplying an invalid queue type during CRIU restore.
--
commit 075dbb15b0e52c82ca15eafa0439de9c1173bea4
Author: David Francis <David.Francis@amd.com>
drm/amdkfd: Check bounds on allocate_doorbell
allocated_doorbell has an option to set the doorbell id
to a specific value (used by CRIU). This value was not
bounds checked.
Check to confirm it's less than KFD_MAX_NUM_OF_QUEUES_PER_PROCESS.
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
> index 6e7bc983fc0b6..394ed3d3ce26a 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
> @@ -472,6 +472,9 @@ static int allocate_doorbell(struct qcm_process_device *qpd,
> } else {
> /* For CP queues on SOC15 */
> if (restore_id) {
> + if (*restore_id >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS)
> + return -EINVAL;
> +
> /* make sure that ID is free */
> if (__test_and_set_bit(*restore_id, qpd->doorbell_bitmap))
> return -EINVAL;
[Severity: High]
This isn't a bug introduced by this patch, but does the same missing bounds
check issue exist in allocate_sdma_queue() for restore_sdma_id?
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c:allocate_sdma_queue() {
...
if (restore_sdma_id) {
/* Re-use existing sdma_id */
if (!test_bit(*restore_sdma_id, dqm->sdma_bitmap)) {
dev_err(dev, "SDMA queue already in use\n");
return -EBUSY;
}
clear_bit(*restore_sdma_id, dqm->sdma_bitmap);
...
}
And also further down in the same function for the xgmi_sdma_bitmap?
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c:allocate_sdma_queue() {
...
if (restore_sdma_id) {
/* Re-use existing sdma_id */
if (!test_bit(*restore_sdma_id, dqm->xgmi_sdma_bitmap)) {
dev_err(dev, "SDMA queue already in use\n");
return -EBUSY;
}
clear_bit(*restore_sdma_id, dqm->xgmi_sdma_bitmap);
...
}
Since restore_sdma_id is provided by userspace during a CRIU restore via
kfd_criu_restore_queue()->pqm_create_queue()->create_queue_cpsch(), can an
out-of-bounds ID cause out-of-bounds memory read and write operations on the
statically sized sdma_bitmap arrays?
[Severity: High]
This is a pre-existing issue, but is there a similar missing bounds check
for restore_id during CRIU event restore?
drivers/gpu/drm/amd/amdkfd/kfd_events.c:allocate_event_notification_slot() {
...
if (restore_id) {
id = idr_alloc(&p->event_idr, ev, *restore_id, *restore_id + 1,
GFP_KERNEL);
}
...
ev->event_id = id;
page_slots(p->signal_page)[id] = UNSIGNALED_EVENT_SLOT;
...
}
During CRIU restore, kfd_criu_restore_event() passes the userspace-supplied
restore_id to create_signal_event()->allocate_event_notification_slot().
If restore_id is >= KFD_SIGNAL_EVENT_LIMIT, will this cause an out-of-bounds
write to the page_slots array?
[Severity: High]
This is a pre-existing issue, but does this code leak the gang_ctx_bo and
wptr_bo_gart when queue creation fails?
drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c:init_user_queue() {
...
retval = amdgpu_amdkfd_alloc_gtt_mem(dev->adev,
AMDGPU_MES_GANG_CTX_SIZE,
&(*q)->gang_ctx_bo,
&(*q)->gang_ctx_gpu_addr,
&(*q)->gang_ctx_cpu_ptr,
false);
...
}
If dev->dqm->ops.create_queue() subsequently fails (for example, due to an
invalid doorbell ID being rejected by your new bounds check), we jump to the
err_create_queue path:
drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c:pqm_create_queue() {
...
err_create_queue:
uninit_queue(q);
if (kq)
kernel_queue_uninit(kq);
kfree(pqn);
...
}
Because pqm_clean_queue_resource() is not called here, will this result in a
permanent leak of the MES GPU memory allocations? A privileged user could
potentially trigger this path repeatedly by passing invalid doorbell IDs
during CRIU restore.
[Severity: Medium]
This is a pre-existing issue, but can a user trigger a kernel WARN by
supplying an invalid queue type during CRIU restore?
drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c:pqm_create_queue() {
...
switch (type) {
...
default:
WARN(1, "Invalid queue type %d", type);
retval = -EINVAL;
}
...
}
Since kfd_criu_restore_queue() copies the queue type from the userspace
q_data, could a malicious checkpoint file hit this WARN(1)? If a system
runs with panic_on_warn enabled, could this translate into a denial of
service?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831133314.4125787-635-sashal@kernel.org?part=1
^ permalink raw reply [flat|nested] 106+ messages in thread
end of thread, other threads:[~2026-08-31 17:38 UTC | newest]
Thread overview: 106+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260831133314.4125787-1-sashal@kernel.org>
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18] drm/panel/tdo-tl070wsh30: Use refcounted allocation in place of devm_kzalloc() Sasha Levin
2026-08-31 13:42 ` sashiko-bot
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] drm/arm/komeda: fix error handling for clk_prepare_enable() and callers Sasha Levin
2026-08-31 13:59 ` sashiko-bot
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: validate and share PSP fw_pri_buf copies via psp_copy_fw Sasha Levin
2026-08-31 14:00 ` sashiko-bot
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm: rz-du: Ensure correct suspend/resume ordering with VSP Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Check for sharpening case when calculating max vtaps for scaler Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] drm/amdgpu: validate RAS EEPROM tbl_size before record count Sasha Levin
2026-08-31 14:20 ` sashiko-bot
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/amd/ras: Fix CPER ring debugfs read overflow Sasha Levin
2026-08-31 14:24 ` sashiko-bot
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend Sasha Levin
2026-08-31 14:33 ` sashiko-bot
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add AUO B133HAN06.6 and BOE NV133FHM-N4F V8.0 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] drm/amd/display: Avoid DPMS-on for phantom stream Sasha Levin
2026-08-31 14:35 ` sashiko-bot
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] drm/panel: simple: Add AM-1280800W8TZQW-T00H Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/panel: Enable GPIOLIB for panels which uses functions from it Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Let driver decide buffer size at AMDKFD_IOC_GET_DMABUF_INFO ioctl Sasha Levin
2026-08-31 14:44 ` sashiko-bot
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Initialize dsc_caps to 0 Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] drm/bridge: tc358768: Set pre_enable_prev_first for reverse order Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm/xe: Fix null pointer dereference in devcoredump cleanup Sasha Levin
2026-08-31 14:54 ` sashiko-bot
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/imagination: Populate FW common context ID before passing to the FW Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm: renesas: rzg2l_mipi_dsi: Fix deassert/assert of CMN_RSTB signal Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] drm/amdkfd: Properly acquire queue buffers in CRIU restore Sasha Levin
2026-08-31 14:56 ` sashiko-bot
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: flush pending RCU callbacks on module unload Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add CSW PNB601LS1-2 and LGD LP116WHA-SPB1 Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Fix updating clock limits from power states Sasha Levin
2026-08-31 14:58 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/gma500: return errors from Oaktrail HDMI I2C reads Sasha Levin
2026-08-31 15:04 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] drm/imagination: Don't timeout job if its fence has been signaled Sasha Levin
2026-08-31 15:13 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.15] host1x: bus: Fix missing ops null check in error teardown Sasha Levin
2026-08-31 15:13 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/pm/si: Don't schedule thermal work when queue isn't initialized Sasha Levin
2026-08-31 15:16 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] fbcon: don't suspend/resume when vc is graphics mode Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] drm/mediatek: dsi: Add compatible for mt8167-dsi Sasha Levin
2026-08-31 15:22 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] drm/amd/display: Fix 8K Mode Not Parsed by EDID Sasha Levin
2026-08-31 15:25 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] drm/amd/display: Fix CRC open failure during active rendering Sasha Levin
2026-08-31 15:24 ` sashiko-bot
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.15] drm/gud: Add RCade Display Adapter VID/PID pair Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] drm/amdgpu: cap ATOM command table nesting depth Sasha Levin
2026-08-31 15:24 ` sashiko-bot
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.6] drm/nouveau/gsp: add SEC2 to GA100 chip table Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] drm/amd/ras: reset CPER ring on corrupt entry size Sasha Levin
2026-08-31 15:40 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] fbdev: pm2fb: unwind WC setup on probe failure Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: Use system unbound workqueue for soft IH ring Sasha Levin
2026-08-31 15:53 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/amdgpu/userq: pin mqd and fw object bo to avoid eviction Sasha Levin
2026-08-31 15:50 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] fbdev: Wrap user-invoked calls to fb_set_var() in helper Sasha Levin
2026-08-31 15:54 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.1] drm/gem: Consider GEM object reclaimable if shrinking fails Sasha Levin
2026-08-31 15:59 ` sashiko-bot
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/amdgpu: check and drop invalid bad page records Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add BOE NT140WHM-N4T, BOE NT140WHM-T05, BOE NV140FHM-N40 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Fix OOB memory exposure in get_wave_state() Sasha Levin
2026-08-31 16:12 ` sashiko-bot
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdgpu: fix buffer overflow during vBIOS update Sasha Levin
2026-08-31 16:16 ` sashiko-bot
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: harden FRU PIA parsing with bounded helpers Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: Unwind debug trap enable on copy_to_user failure Sasha Levin
2026-08-31 16:30 ` sashiko-bot
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: fix UAF race in destroy_queue_cpsch Sasha Levin
2026-08-31 16:36 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] drm/amdgpu: Prefer ROM BAR for default VGA device Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add AUO B140XTN07.5, AUO B140HAK03.5, AUO B116XTN02.3, AUO B140XTK02.4, AUO B140HAN07.7 Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds for allocate_sdma_queue restore_sdma_id Sasha Levin
2026-08-31 16:43 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] drm/nouveau/bios: skip the IFR header if present Sasha Levin
2026-08-31 16:44 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] drm/amd/pm: Check SMUv13.0.6/12 metrics integrity Sasha Levin
2026-08-31 16:51 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] drm/amdgpu: avoid integer overflow in VA range check Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] drm/amd/pm: bound pp_dpm_set_pp_table() memcpy Sasha Levin
2026-08-31 16:46 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] drm/amdkfd: check find_first_zero_bit before __set_bit on kfd->doorbell_bitmap Sasha Levin
2026-08-31 16:48 ` sashiko-bot
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] drm/amdgpu/ras: add ras_suspend callback and use it for cp_ecc_error_irq Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdkfd: fix SMI event cross-process information leak Sasha Levin
2026-08-31 16:54 ` sashiko-bot
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu: add first record offset check Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.6] drm/amd/display: Fix DPMS using partially updated pipe context Sasha Levin
2026-08-31 17:15 ` sashiko-bot
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] drm/amd/display: Find link encoder for flexible DIG mapping cases Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu/pm: fix SmartShift bias sysfs store PM refcount on parse error Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/panel-edp: Add LG LP129WT232166 panel Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] drm/amdgpu: Bound GPIO I2C table entry count from VBIOS Sasha Levin
2026-08-31 17:14 ` sashiko-bot
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.6] drm/panel: jadard-jd9365da-h3: set prepare_prev_first Sasha Levin
2026-08-31 17:11 ` sashiko-bot
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] drm/amdgpu: use atomic operation to achieve lockless serialization Sasha Levin
2026-08-31 17:20 ` sashiko-bot
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] drm/dp: Add DSC virtual DPCD quirk for Realtek MST branch device Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] drm/xe/guc: Add support for NO_RESPONSE_BUSY in CTB Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-6.1] drm/amdkfd: Check bounds on allocate_doorbell Sasha Levin
2026-08-31 17:38 ` sashiko-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox