From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: drm/i915/psr: Add helper to get Async Video timing support in PR active Date: Sun, 12 Apr 2026 12:51:28 +1000 Message-ID: In-Reply-To: <20260408084239.1295325-17-ankit.k.nautiyal@intel.com> References: <20260408084239.1295325-1-ankit.k.nautiyal@intel.com> <20260408084239.1295325-17-ankit.k.nautiyal@intel.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Introduces `intel_psr_pr_async_video_timing_supported()`. The function reads DPCD through the connector's panel replay capabilities cache: ```c u8 *dpcd = connector->dp.panel_replay_caps.dpcd; u8 pr_support = dpcd[INTEL_PR_DPCD_INDEX(DP_PANEL_REPLAY_CAP_SUPPORT)]; u8 pr_cap = dpcd[INTEL_PR_DPCD_INDEX(DP_PANEL_REPLAY_CAP_CAPABILITY)]; ``` The logic checks that Panel Replay is supported AND that async video timing is NOT unsupported (double negative from the spec bit name `DP_PANEL_REPLAY_ASYNC_VIDEO_TIMING_NOT_SUPPORTED_IN_PR`). Missing R-b. --- Generated by Claude Code Patch Reviewer