dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: "Gustavo Kenji Mendonça Kaneko" <kaneko.dev@pm.me>,
	"Liviu Dudau" <liviu.dudau@arm.com>,
	"Sasha Levin" <sashal@kernel.org>,
	maarten.lankhorst@linux.intel.com, mripard@kernel.org,
	tzimmermann@suse.de, airlied@gmail.com, simona@ffwll.ch,
	dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18-5.10] drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend
Date: Mon, 31 Aug 2026 09:22:16 -0400	[thread overview]
Message-ID: <20260831133314.4125787-108-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>

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


  parent reply	other threads:[~2026-08-31 13:37 UTC|newest]

Thread overview: 106+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [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 ` Sasha Levin [this message]
2026-08-31 14:33   ` [PATCH AUTOSEL 6.18-5.10] drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend 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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260831133314.4125787-108-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=airlied@gmail.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=kaneko.dev@pm.me \
    --cc=linux-kernel@vger.kernel.org \
    --cc=liviu.dudau@arm.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=simona@ffwll.ch \
    --cc=stable@vger.kernel.org \
    --cc=tzimmermann@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox