* [PATCH 0/1] drm/i915/display/psr: PSR2 DC3CO fix
@ 2026-06-30 8:59 Dibin Moolakadan Subrahmanian
2026-06-30 8:59 ` [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame Dibin Moolakadan Subrahmanian
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-06-30 8:59 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: animesh.manna, uma.shankar
On Xe3P, DC3CO entry during an active frame can leave the pipe in a
bad state and does not recover well.
Set CHICKEN_DCPR_4 bit 24 to inform DMC to block DC3CO entry.
Dibin Moolakadan Subrahmanian (1):
drm/i915/display/psr: Block DC3CO entry during active frame
.../gpu/drm/i915/display/intel_display_regs.h | 3 +++
drivers/gpu/drm/i915/display/intel_psr.c | 16 ++++++++++++++++
2 files changed, 19 insertions(+)
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame 2026-06-30 8:59 [PATCH 0/1] drm/i915/display/psr: PSR2 DC3CO fix Dibin Moolakadan Subrahmanian @ 2026-06-30 8:59 ` Dibin Moolakadan Subrahmanian 2026-07-01 5:45 ` Kandpal, Suraj ` (2 more replies) 2026-06-30 9:32 ` ✓ CI.KUnit: success for drm/i915/display/psr: PSR2 DC3CO fix Patchwork ` (2 subsequent siblings) 3 siblings, 3 replies; 9+ messages in thread From: Dibin Moolakadan Subrahmanian @ 2026-06-30 8:59 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: animesh.manna, uma.shankar On Xe3P onwards, when PSR2 is enabled on a panel that does not support Early Transport, DC3CO can be entered in the middle of an active frame. This prevents the pipe from completing the frame and leaves it in a bad state that does not recover well, causing visible corruption on screen. Set CHICKEN_DCPR_4 bit 24 in the PSR2 enable path when Early Transport is not in use, to notify DMC to prevent DC3CO entry. BSpec: 71483 Signed-off-by: Dibin Moolakadan Subrahmanian <dibin.moolakadan.subrahmanian@intel.com> --- .../gpu/drm/i915/display/intel_display_regs.h | 3 +++ drivers/gpu/drm/i915/display/intel_psr.c | 16 ++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/drivers/gpu/drm/i915/display/intel_display_regs.h b/drivers/gpu/drm/i915/display/intel_display_regs.h index 39e50423132f..754bb9b188b6 100644 --- a/drivers/gpu/drm/i915/display/intel_display_regs.h +++ b/drivers/gpu/drm/i915/display/intel_display_regs.h @@ -1747,6 +1747,9 @@ #define XELPD_CHICKEN_DCPR_3 _MMIO(0x46438) #define DMD_RSP_TIMEOUT_DISABLE REG_BIT(19) +#define XE3LPD_CHICKEN_DCPR_4 _MMIO(0x454a0) +#define DCPR4_BLOCK_DC3CO_ACTIVE_FRAME REG_BIT(24) + #define SKL_DFSM _MMIO(0x51000) #define SKL_DFSM_DISPLAY_PM_DISABLE (1 << 27) #define SKL_DFSM_DISPLAY_HDCP_DISABLE (1 << 25) diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c index 911afb9cb24e..ad6ece3ce04d 100644 --- a/drivers/gpu/drm/i915/display/intel_psr.c +++ b/drivers/gpu/drm/i915/display/intel_psr.c @@ -2103,6 +2103,18 @@ static void intel_psr_enable_source(struct intel_dp *intel_dp, else if (display->platform.alderlake_p) intel_de_rmw(display, CLKGATE_DIS_MISC, 0, CLKGATE_DIS_MISC_DMASC_GATING_DIS); + + /* + * HSD: 14026643300 + * On Xe3P+, restrict DC3CO entry during active frame when PSR2 is + * enabled without panel Early Transport; required to avoid pipe bad state. + * DMC honours CHICKEN_DCPR_4 bit 24 to block DC3CO entry during active frame. + */ + if (HAS_DC3CO(display) && + !intel_dp->psr.panel_replay_enabled && + !intel_dp->psr.su_region_et_enabled) + intel_de_rmw(display, XE3LPD_CHICKEN_DCPR_4, + 0, DCPR4_BLOCK_DC3CO_ACTIVE_FRAME); } /* Wa_16025596647 */ @@ -2344,6 +2356,10 @@ static void intel_psr_disable_locked(struct intel_dp *intel_dp) else if (display->platform.alderlake_p) intel_de_rmw(display, CLKGATE_DIS_MISC, CLKGATE_DIS_MISC_DMASC_GATING_DIS, 0); + + if (HAS_DC3CO(display)) + intel_de_rmw(display, XE3LPD_CHICKEN_DCPR_4, + DCPR4_BLOCK_DC3CO_ACTIVE_FRAME, 0); } if (intel_dp_is_edp(intel_dp)) -- 2.43.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame 2026-06-30 8:59 ` [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame Dibin Moolakadan Subrahmanian @ 2026-07-01 5:45 ` Kandpal, Suraj 2026-07-01 6:32 ` Dibin Moolakadan Subrahmanian 2026-08-07 4:20 ` kernel test robot 2026-08-08 1:54 ` kernel test robot 2 siblings, 1 reply; 9+ messages in thread From: Kandpal, Suraj @ 2026-07-01 5:45 UTC (permalink / raw) To: Dibin Moolakadan Subrahmanian, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Manna, Animesh, Shankar, Uma > Subject: [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active > frame Only drm/i915/psr should be enough as prefix > > On Xe3P onwards, when PSR2 is enabled on a panel that does not support Early > Transport, DC3CO can be entered in the middle of an active frame. This > prevents the pipe from completing the frame and leaves it in a bad state that > does not recover well, causing visible corruption on screen. > > Set CHICKEN_DCPR_4 bit 24 in the PSR2 enable path when Early Transport is > not in use, to notify DMC to prevent DC3CO entry. > > BSpec: 71483 Add 75253 here too > Signed-off-by: Dibin Moolakadan Subrahmanian > <dibin.moolakadan.subrahmanian@intel.com> > --- > .../gpu/drm/i915/display/intel_display_regs.h | 3 +++ > drivers/gpu/drm/i915/display/intel_psr.c | 16 ++++++++++++++++ > 2 files changed, 19 insertions(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_display_regs.h > b/drivers/gpu/drm/i915/display/intel_display_regs.h > index 39e50423132f..754bb9b188b6 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_regs.h > +++ b/drivers/gpu/drm/i915/display/intel_display_regs.h > @@ -1747,6 +1747,9 @@ > #define XELPD_CHICKEN_DCPR_3 _MMIO(0x46438) > #define DMD_RSP_TIMEOUT_DISABLE REG_BIT(19) > > +#define XE3LPD_CHICKEN_DCPR_4 _MMIO(0x454a0) This should be XE3P_CHICKEN_DCPR_4 > +#define DCPR4_BLOCK_DC3CO_ACTIVE_FRAME REG_BIT(24) > + > #define SKL_DFSM _MMIO(0x51000) > #define SKL_DFSM_DISPLAY_PM_DISABLE (1 << 27) > #define SKL_DFSM_DISPLAY_HDCP_DISABLE (1 << 25) > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > b/drivers/gpu/drm/i915/display/intel_psr.c > index 911afb9cb24e..ad6ece3ce04d 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -2103,6 +2103,18 @@ static void intel_psr_enable_source(struct intel_dp > *intel_dp, > else if (display->platform.alderlake_p) > intel_de_rmw(display, CLKGATE_DIS_MISC, 0, > CLKGATE_DIS_MISC_DMASC_GATING_DIS); > + > + /* > + * HSD: 14026643300 This can be WA: <WA no.> > + * On Xe3P+, restrict DC3CO entry during active frame when > PSR2 is > + * enabled without panel Early Transport; required to avoid > pipe bad state. > + * DMC honours CHICKEN_DCPR_4 bit 24 to block DC3CO entry > during active frame. > + */ > + if (HAS_DC3CO(display) && We can do away with HAS_DC3CO and just use the intel_display_wa framework Check intel_display_wa.c intel_display_wa.h as reference. > + !intel_dp->psr.panel_replay_enabled && > + !intel_dp->psr.su_region_et_enabled) > + intel_de_rmw(display, XE3LPD_CHICKEN_DCPR_4, > + 0, DCPR4_BLOCK_DC3CO_ACTIVE_FRAME); > } > > /* Wa_16025596647 */ > @@ -2344,6 +2356,10 @@ static void intel_psr_disable_locked(struct intel_dp > *intel_dp) > else if (display->platform.alderlake_p) > intel_de_rmw(display, CLKGATE_DIS_MISC, > CLKGATE_DIS_MISC_DMASC_GATING_DIS, > 0); > + > + if (HAS_DC3CO(display)) > + intel_de_rmw(display, XE3LPD_CHICKEN_DCPR_4, > + DCPR4_BLOCK_DC3CO_ACTIVE_FRAME, 0); Ditto. Regards, Suraj Kandpal > } > > if (intel_dp_is_edp(intel_dp)) > -- > 2.43.0 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame 2026-07-01 5:45 ` Kandpal, Suraj @ 2026-07-01 6:32 ` Dibin Moolakadan Subrahmanian 0 siblings, 0 replies; 9+ messages in thread From: Dibin Moolakadan Subrahmanian @ 2026-07-01 6:32 UTC (permalink / raw) To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Manna, Animesh, Shankar, Uma On 7/1/2026 11:15 AM, Kandpal, Suraj wrote: >> Subject: [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active >> frame > Only drm/i915/psr should be enough as prefix Thanks for the review. I'll remove it in the next version. >> On Xe3P onwards, when PSR2 is enabled on a panel that does not support Early >> Transport, DC3CO can be entered in the middle of an active frame. This >> prevents the pipe from completing the frame and leaves it in a bad state that >> does not recover well, causing visible corruption on screen. >> >> Set CHICKEN_DCPR_4 bit 24 in the PSR2 enable path when Early Transport is >> not in use, to notify DMC to prevent DC3CO entry. >> >> BSpec: 71483 > Add 75253 here too Will add this in the next version. >> Signed-off-by: Dibin Moolakadan Subrahmanian >> <dibin.moolakadan.subrahmanian@intel.com> >> --- >> .../gpu/drm/i915/display/intel_display_regs.h | 3 +++ >> drivers/gpu/drm/i915/display/intel_psr.c | 16 ++++++++++++++++ >> 2 files changed, 19 insertions(+) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_display_regs.h >> b/drivers/gpu/drm/i915/display/intel_display_regs.h >> index 39e50423132f..754bb9b188b6 100644 >> --- a/drivers/gpu/drm/i915/display/intel_display_regs.h >> +++ b/drivers/gpu/drm/i915/display/intel_display_regs.h >> @@ -1747,6 +1747,9 @@ >> #define XELPD_CHICKEN_DCPR_3 _MMIO(0x46438) >> #define DMD_RSP_TIMEOUT_DISABLE REG_BIT(19) >> >> +#define XE3LPD_CHICKEN_DCPR_4 _MMIO(0x454a0) > This should be XE3P_CHICKEN_DCPR_4 Will correct this in the next version. > >> +#define DCPR4_BLOCK_DC3CO_ACTIVE_FRAME REG_BIT(24) >> + >> #define SKL_DFSM _MMIO(0x51000) >> #define SKL_DFSM_DISPLAY_PM_DISABLE (1 << 27) >> #define SKL_DFSM_DISPLAY_HDCP_DISABLE (1 << 25) >> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c >> b/drivers/gpu/drm/i915/display/intel_psr.c >> index 911afb9cb24e..ad6ece3ce04d 100644 >> --- a/drivers/gpu/drm/i915/display/intel_psr.c >> +++ b/drivers/gpu/drm/i915/display/intel_psr.c >> @@ -2103,6 +2103,18 @@ static void intel_psr_enable_source(struct intel_dp >> *intel_dp, >> else if (display->platform.alderlake_p) >> intel_de_rmw(display, CLKGATE_DIS_MISC, 0, >> CLKGATE_DIS_MISC_DMASC_GATING_DIS); >> + >> + /* >> + * HSD: 14026643300 > This can be WA: <WA no.> > >> + * On Xe3P+, restrict DC3CO entry during active frame when >> PSR2 is >> + * enabled without panel Early Transport; required to avoid >> pipe bad state. >> + * DMC honours CHICKEN_DCPR_4 bit 24 to block DC3CO entry >> during active frame. >> + */ >> + if (HAS_DC3CO(display) && > We can do away with HAS_DC3CO and just use the intel_display_wa framework > Check intel_display_wa.c intel_display_wa.h as reference. > > Agreed,will add14026643300 to the intel_display_wa framework and use that here. >> + !intel_dp->psr.panel_replay_enabled && >> + !intel_dp->psr.su_region_et_enabled) >> + intel_de_rmw(display, XE3LPD_CHICKEN_DCPR_4, >> + 0, DCPR4_BLOCK_DC3CO_ACTIVE_FRAME); >> } >> >> /* Wa_16025596647 */ >> @@ -2344,6 +2356,10 @@ static void intel_psr_disable_locked(struct intel_dp >> *intel_dp) >> else if (display->platform.alderlake_p) >> intel_de_rmw(display, CLKGATE_DIS_MISC, >> CLKGATE_DIS_MISC_DMASC_GATING_DIS, >> 0); >> + >> + if (HAS_DC3CO(display)) >> + intel_de_rmw(display, XE3LPD_CHICKEN_DCPR_4, >> + DCPR4_BLOCK_DC3CO_ACTIVE_FRAME, 0); > Ditto. > > Regards, > Suraj Kandpal > >> } >> >> if (intel_dp_is_edp(intel_dp)) >> -- >> 2.43.0 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame 2026-06-30 8:59 ` [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame Dibin Moolakadan Subrahmanian 2026-07-01 5:45 ` Kandpal, Suraj @ 2026-08-07 4:20 ` kernel test robot 2026-08-08 1:54 ` kernel test robot 2 siblings, 0 replies; 9+ messages in thread From: kernel test robot @ 2026-08-07 4:20 UTC (permalink / raw) To: Dibin Moolakadan Subrahmanian, intel-gfx, intel-xe Cc: oe-kbuild-all, animesh.manna, uma.shankar Hi Dibin, kernel test robot noticed the following build errors: [auto build test ERROR on drm-i915/for-linux-next-fixes] [also build test ERROR on linus/master v7.2-rc6] [cannot apply to drm-i915/for-linux-next drm-tip/drm-tip next-20260806] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Dibin-Moolakadan-Subrahmanian/drm-i915-display-psr-Block-DC3CO-entry-during-active-frame/20260807-084438 base: https://gitlab.freedesktop.org/drm/i915/kernel.git for-linux-next-fixes patch link: https://lore.kernel.org/r/20260630085928.1317279-2-dibin.moolakadan.subrahmanian%40intel.com patch subject: [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame config: parisc-allmodconfig (https://download.01.org/0day-ci/archive/20260807/202608071251.Vu1OuiIn-lkp@intel.com/config) compiler: hppa-linux-gcc (GCC) 16.1.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260807/202608071251.Vu1OuiIn-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202608071251.Vu1OuiIn-lkp@intel.com/ All errors (new ones prefixed by >>): drivers/gpu/drm/i915/display/intel_psr.c: In function 'intel_psr_enable_source': >> drivers/gpu/drm/i915/display/intel_psr.c:2201:21: error: implicit declaration of function 'HAS_DC3CO'; did you mean 'HAS_DSC'? [-Wimplicit-function-declaration] 2201 | if (HAS_DC3CO(display) && | ^~~~~~~~~ | HAS_DSC vim +2201 drivers/gpu/drm/i915/display/intel_psr.c 2081 2082 static void intel_psr_enable_source(struct intel_dp *intel_dp, 2083 const struct intel_crtc_state *crtc_state) 2084 { 2085 struct intel_display *display = to_intel_display(intel_dp); 2086 enum transcoder cpu_transcoder = intel_dp->psr.transcoder; 2087 u32 mask = 0; 2088 2089 /* 2090 * Only HSW and BDW have PSR AUX registers that need to be setup. 2091 * SKL+ use hardcoded values PSR AUX transactions 2092 */ 2093 if (DISPLAY_VER(display) < 9) 2094 hsw_psr_setup_aux(intel_dp); 2095 2096 /* 2097 * Per Spec: Avoid continuous PSR exit by masking MEMUP and HPD also 2098 * mask LPSP to avoid dependency on other drivers that might block 2099 * runtime_pm besides preventing other hw tracking issues now we 2100 * can rely on frontbuffer tracking. 2101 * 2102 * From bspec prior LunarLake: 2103 * Only PSR_MASK[Mask FBC modify] and PSR_MASK[Mask Hotplug] are used in 2104 * panel replay mode. 2105 * 2106 * From bspec beyod LunarLake: 2107 * Panel Replay on DP: No bits are applicable 2108 * Panel Replay on eDP: All bits are applicable 2109 */ 2110 if (DISPLAY_VER(display) < 20 || intel_dp_is_edp(intel_dp)) 2111 mask = EDP_PSR_DEBUG_MASK_HPD; 2112 2113 if (intel_dp_is_edp(intel_dp)) { 2114 mask |= EDP_PSR_DEBUG_MASK_MEMUP; 2115 2116 /* 2117 * For some unknown reason on HSW non-ULT (or at least on 2118 * Dell Latitude E6540) external displays start to flicker 2119 * when PSR is enabled on the eDP. SR/PC6 residency is much 2120 * higher than should be possible with an external display. 2121 * As a workaround leave LPSP unmasked to prevent PSR entry 2122 * when external displays are active. 2123 */ 2124 if (DISPLAY_VER(display) >= 8 || display->platform.haswell_ult) 2125 mask |= EDP_PSR_DEBUG_MASK_LPSP; 2126 2127 if (DISPLAY_VER(display) < 20) 2128 mask |= EDP_PSR_DEBUG_MASK_MAX_SLEEP; 2129 2130 /* 2131 * No separate pipe reg write mask on hsw/bdw, so have to unmask all 2132 * registers in order to keep the CURSURFLIVE tricks working :( 2133 */ 2134 if (IS_DISPLAY_VER(display, 9, 10)) 2135 mask |= EDP_PSR_DEBUG_MASK_DISP_REG_WRITE; 2136 2137 /* allow PSR with sprite enabled */ 2138 if (display->platform.haswell) 2139 mask |= EDP_PSR_DEBUG_MASK_SPRITE_ENABLE; 2140 } 2141 2142 intel_de_write(display, psr_debug_reg(display, cpu_transcoder), mask); 2143 2144 psr_irq_control(intel_dp); 2145 2146 /* 2147 * TODO: if future platforms supports DC3CO in more than one 2148 * transcoder, EXITLINE will need to be unset when disabling PSR 2149 */ 2150 if (intel_dp->psr.dc3co_exitline) 2151 intel_de_rmw(display, 2152 TRANS_EXITLINE(display, cpu_transcoder), 2153 EXITLINE_MASK, 2154 intel_dp->psr.dc3co_exitline << EXITLINE_SHIFT | EXITLINE_ENABLE); 2155 2156 if (HAS_PSR_HW_TRACKING(display) && HAS_PSR2_SEL_FETCH(display)) 2157 intel_de_rmw(display, CHICKEN_PAR1_1, IGNORE_PSR2_HW_TRACKING, 2158 intel_dp->psr.psr2_sel_fetch_enabled ? 2159 IGNORE_PSR2_HW_TRACKING : 0); 2160 2161 /* 2162 * Wa_16013835468 2163 * Wa_14015648006 2164 */ 2165 wm_optimization_wa(intel_dp, crtc_state); 2166 2167 if (intel_dp->psr.sel_update_enabled) { 2168 if (DISPLAY_VER(display) == 9) 2169 intel_de_rmw(display, CHICKEN_TRANS(display, cpu_transcoder), 0, 2170 PSR2_VSC_ENABLE_PROG_HEADER | 2171 PSR2_ADD_VERTICAL_LINE_COUNT); 2172 2173 /* 2174 * Wa_16014451276:adlp,mtl[a0,b0] 2175 * All supported adlp panels have 1-based X granularity, this may 2176 * cause issues if non-supported panels are used. 2177 */ 2178 if (!intel_dp->psr.panel_replay_enabled && 2179 (IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, STEP_B0) || 2180 display->platform.alderlake_p)) 2181 intel_de_rmw(display, CHICKEN_TRANS(display, cpu_transcoder), 2182 0, ADLP_1_BASED_X_GRANULARITY); 2183 2184 /* Wa_16012604467:adlp,mtl[a0,b0] */ 2185 if (!intel_dp->psr.panel_replay_enabled && 2186 IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, STEP_B0)) 2187 intel_de_rmw(display, 2188 MTL_CLKGATE_DIS_TRANS(display, cpu_transcoder), 2189 0, 2190 MTL_CLKGATE_DIS_TRANS_DMASC_GATING_DIS); 2191 else if (display->platform.alderlake_p) 2192 intel_de_rmw(display, CLKGATE_DIS_MISC, 0, 2193 CLKGATE_DIS_MISC_DMASC_GATING_DIS); 2194 2195 /* 2196 * HSD: 14026643300 2197 * On Xe3P+, restrict DC3CO entry during active frame when PSR2 is 2198 * enabled without panel Early Transport; required to avoid pipe bad state. 2199 * DMC honours CHICKEN_DCPR_4 bit 24 to block DC3CO entry during active frame. 2200 */ > 2201 if (HAS_DC3CO(display) && 2202 !intel_dp->psr.panel_replay_enabled && 2203 !intel_dp->psr.su_region_et_enabled) 2204 intel_de_rmw(display, XE3LPD_CHICKEN_DCPR_4, 2205 0, DCPR4_BLOCK_DC3CO_ACTIVE_FRAME); 2206 } 2207 2208 /* Wa_16025596647 */ 2209 if ((DISPLAY_VER(display) == 20 || 2210 IS_DISPLAY_VERx100_STEP(display, 3000, STEP_A0, STEP_B0)) && 2211 !intel_dp->psr.panel_replay_enabled) 2212 intel_dmc_block_pkgc(display, intel_dp->psr.pipe, true); 2213 2214 intel_alpm_configure(intel_dp, crtc_state); 2215 2216 if (HAS_PSR_TRANS_PUSH_FRAME_CHANGE(display)) 2217 intel_vrr_psr_frame_change_enable(crtc_state); 2218 } 2219 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame 2026-06-30 8:59 ` [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame Dibin Moolakadan Subrahmanian 2026-07-01 5:45 ` Kandpal, Suraj 2026-08-07 4:20 ` kernel test robot @ 2026-08-08 1:54 ` kernel test robot 2 siblings, 0 replies; 9+ messages in thread From: kernel test robot @ 2026-08-08 1:54 UTC (permalink / raw) To: Dibin Moolakadan Subrahmanian, intel-gfx, intel-xe Cc: llvm, oe-kbuild-all, animesh.manna, uma.shankar Hi Dibin, kernel test robot noticed the following build errors: [auto build test ERROR on drm-i915/for-linux-next-fixes] [also build test ERROR on linus/master v7.2-rc6] [cannot apply to drm-i915/for-linux-next drm-tip/drm-tip next-20260807] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Dibin-Moolakadan-Subrahmanian/drm-i915-display-psr-Block-DC3CO-entry-during-active-frame/20260807-084438 base: https://gitlab.freedesktop.org/drm/i915/kernel.git for-linux-next-fixes patch link: https://lore.kernel.org/r/20260630085928.1317279-2-dibin.moolakadan.subrahmanian%40intel.com patch subject: [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame config: arm-randconfig-004-20260808 (https://download.01.org/0day-ci/archive/20260808/202608080957.dic8Vi4s-lkp@intel.com/config) compiler: clang version 24.0.0git (https://github.com/llvm/llvm-project 12df34b8469b8095359de8c249cb1b2753fadeea) rustc: rustc 1.96.0 (ac68faa20 2026-05-25) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260808/202608080957.dic8Vi4s-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202608080957.dic8Vi4s-lkp@intel.com/ All errors (new ones prefixed by >>): >> drivers/gpu/drm/i915/display/intel_psr.c:2201:7: error: call to undeclared function 'HAS_DC3CO'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 2201 | if (HAS_DC3CO(display) && | ^ drivers/gpu/drm/i915/display/intel_psr.c:2430:7: error: call to undeclared function 'HAS_DC3CO'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 2430 | if (HAS_DC3CO(display)) | ^ 2 errors generated. vim +/HAS_DC3CO +2201 drivers/gpu/drm/i915/display/intel_psr.c 2081 2082 static void intel_psr_enable_source(struct intel_dp *intel_dp, 2083 const struct intel_crtc_state *crtc_state) 2084 { 2085 struct intel_display *display = to_intel_display(intel_dp); 2086 enum transcoder cpu_transcoder = intel_dp->psr.transcoder; 2087 u32 mask = 0; 2088 2089 /* 2090 * Only HSW and BDW have PSR AUX registers that need to be setup. 2091 * SKL+ use hardcoded values PSR AUX transactions 2092 */ 2093 if (DISPLAY_VER(display) < 9) 2094 hsw_psr_setup_aux(intel_dp); 2095 2096 /* 2097 * Per Spec: Avoid continuous PSR exit by masking MEMUP and HPD also 2098 * mask LPSP to avoid dependency on other drivers that might block 2099 * runtime_pm besides preventing other hw tracking issues now we 2100 * can rely on frontbuffer tracking. 2101 * 2102 * From bspec prior LunarLake: 2103 * Only PSR_MASK[Mask FBC modify] and PSR_MASK[Mask Hotplug] are used in 2104 * panel replay mode. 2105 * 2106 * From bspec beyod LunarLake: 2107 * Panel Replay on DP: No bits are applicable 2108 * Panel Replay on eDP: All bits are applicable 2109 */ 2110 if (DISPLAY_VER(display) < 20 || intel_dp_is_edp(intel_dp)) 2111 mask = EDP_PSR_DEBUG_MASK_HPD; 2112 2113 if (intel_dp_is_edp(intel_dp)) { 2114 mask |= EDP_PSR_DEBUG_MASK_MEMUP; 2115 2116 /* 2117 * For some unknown reason on HSW non-ULT (or at least on 2118 * Dell Latitude E6540) external displays start to flicker 2119 * when PSR is enabled on the eDP. SR/PC6 residency is much 2120 * higher than should be possible with an external display. 2121 * As a workaround leave LPSP unmasked to prevent PSR entry 2122 * when external displays are active. 2123 */ 2124 if (DISPLAY_VER(display) >= 8 || display->platform.haswell_ult) 2125 mask |= EDP_PSR_DEBUG_MASK_LPSP; 2126 2127 if (DISPLAY_VER(display) < 20) 2128 mask |= EDP_PSR_DEBUG_MASK_MAX_SLEEP; 2129 2130 /* 2131 * No separate pipe reg write mask on hsw/bdw, so have to unmask all 2132 * registers in order to keep the CURSURFLIVE tricks working :( 2133 */ 2134 if (IS_DISPLAY_VER(display, 9, 10)) 2135 mask |= EDP_PSR_DEBUG_MASK_DISP_REG_WRITE; 2136 2137 /* allow PSR with sprite enabled */ 2138 if (display->platform.haswell) 2139 mask |= EDP_PSR_DEBUG_MASK_SPRITE_ENABLE; 2140 } 2141 2142 intel_de_write(display, psr_debug_reg(display, cpu_transcoder), mask); 2143 2144 psr_irq_control(intel_dp); 2145 2146 /* 2147 * TODO: if future platforms supports DC3CO in more than one 2148 * transcoder, EXITLINE will need to be unset when disabling PSR 2149 */ 2150 if (intel_dp->psr.dc3co_exitline) 2151 intel_de_rmw(display, 2152 TRANS_EXITLINE(display, cpu_transcoder), 2153 EXITLINE_MASK, 2154 intel_dp->psr.dc3co_exitline << EXITLINE_SHIFT | EXITLINE_ENABLE); 2155 2156 if (HAS_PSR_HW_TRACKING(display) && HAS_PSR2_SEL_FETCH(display)) 2157 intel_de_rmw(display, CHICKEN_PAR1_1, IGNORE_PSR2_HW_TRACKING, 2158 intel_dp->psr.psr2_sel_fetch_enabled ? 2159 IGNORE_PSR2_HW_TRACKING : 0); 2160 2161 /* 2162 * Wa_16013835468 2163 * Wa_14015648006 2164 */ 2165 wm_optimization_wa(intel_dp, crtc_state); 2166 2167 if (intel_dp->psr.sel_update_enabled) { 2168 if (DISPLAY_VER(display) == 9) 2169 intel_de_rmw(display, CHICKEN_TRANS(display, cpu_transcoder), 0, 2170 PSR2_VSC_ENABLE_PROG_HEADER | 2171 PSR2_ADD_VERTICAL_LINE_COUNT); 2172 2173 /* 2174 * Wa_16014451276:adlp,mtl[a0,b0] 2175 * All supported adlp panels have 1-based X granularity, this may 2176 * cause issues if non-supported panels are used. 2177 */ 2178 if (!intel_dp->psr.panel_replay_enabled && 2179 (IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, STEP_B0) || 2180 display->platform.alderlake_p)) 2181 intel_de_rmw(display, CHICKEN_TRANS(display, cpu_transcoder), 2182 0, ADLP_1_BASED_X_GRANULARITY); 2183 2184 /* Wa_16012604467:adlp,mtl[a0,b0] */ 2185 if (!intel_dp->psr.panel_replay_enabled && 2186 IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, STEP_B0)) 2187 intel_de_rmw(display, 2188 MTL_CLKGATE_DIS_TRANS(display, cpu_transcoder), 2189 0, 2190 MTL_CLKGATE_DIS_TRANS_DMASC_GATING_DIS); 2191 else if (display->platform.alderlake_p) 2192 intel_de_rmw(display, CLKGATE_DIS_MISC, 0, 2193 CLKGATE_DIS_MISC_DMASC_GATING_DIS); 2194 2195 /* 2196 * HSD: 14026643300 2197 * On Xe3P+, restrict DC3CO entry during active frame when PSR2 is 2198 * enabled without panel Early Transport; required to avoid pipe bad state. 2199 * DMC honours CHICKEN_DCPR_4 bit 24 to block DC3CO entry during active frame. 2200 */ > 2201 if (HAS_DC3CO(display) && 2202 !intel_dp->psr.panel_replay_enabled && 2203 !intel_dp->psr.su_region_et_enabled) 2204 intel_de_rmw(display, XE3LPD_CHICKEN_DCPR_4, 2205 0, DCPR4_BLOCK_DC3CO_ACTIVE_FRAME); 2206 } 2207 2208 /* Wa_16025596647 */ 2209 if ((DISPLAY_VER(display) == 20 || 2210 IS_DISPLAY_VERx100_STEP(display, 3000, STEP_A0, STEP_B0)) && 2211 !intel_dp->psr.panel_replay_enabled) 2212 intel_dmc_block_pkgc(display, intel_dp->psr.pipe, true); 2213 2214 intel_alpm_configure(intel_dp, crtc_state); 2215 2216 if (HAS_PSR_TRANS_PUSH_FRAME_CHANGE(display)) 2217 intel_vrr_psr_frame_change_enable(crtc_state); 2218 } 2219 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for drm/i915/display/psr: PSR2 DC3CO fix 2026-06-30 8:59 [PATCH 0/1] drm/i915/display/psr: PSR2 DC3CO fix Dibin Moolakadan Subrahmanian 2026-06-30 8:59 ` [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame Dibin Moolakadan Subrahmanian @ 2026-06-30 9:32 ` Patchwork 2026-06-30 10:38 ` ✓ Xe.CI.BAT: " Patchwork 2026-06-30 23:23 ` ✓ Xe.CI.FULL: " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-06-30 9:32 UTC (permalink / raw) To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe == Series Details == Series: drm/i915/display/psr: PSR2 DC3CO fix URL : https://patchwork.freedesktop.org/series/169491/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [09:29:34] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [09:29:47] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25 ../drivers/gpu/drm/xe/xe_pt.c:1418:13: warning: ‘xe_pt_svm_userptr_notifier_lock’ defined but not used [-Wunused-function] 1418 | static void xe_pt_svm_userptr_notifier_lock(struct xe_vm *vm) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [09:30:49] Starting KUnit Kernel (1/1)... [09:30:49] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [09:30:49] ================== guc_buf (11 subtests) =================== [09:30:49] [PASSED] test_smallest [09:30:50] [PASSED] test_largest [09:30:50] [PASSED] test_granular [09:30:50] [PASSED] test_unique [09:30:50] [PASSED] test_overlap [09:30:50] [PASSED] test_reusable [09:30:50] [PASSED] test_too_big [09:30:50] [PASSED] test_flush [09:30:50] [PASSED] test_lookup [09:30:50] [PASSED] test_data [09:30:50] [PASSED] test_class [09:30:50] ===================== [PASSED] guc_buf ===================== [09:30:50] =================== guc_dbm (7 subtests) =================== [09:30:50] [PASSED] test_empty [09:30:50] [PASSED] test_default [09:30:50] ======================== test_size ======================== [09:30:50] [PASSED] 4 [09:30:50] [PASSED] 8 [09:30:50] [PASSED] 32 [09:30:50] [PASSED] 256 [09:30:50] ==================== [PASSED] test_size ==================== [09:30:50] ======================= test_reuse ======================== [09:30:50] [PASSED] 4 [09:30:50] [PASSED] 8 [09:30:50] [PASSED] 32 [09:30:50] [PASSED] 256 [09:30:50] =================== [PASSED] test_reuse ==================== [09:30:50] =================== test_range_overlap ==================== [09:30:50] [PASSED] 4 [09:30:50] [PASSED] 8 [09:30:50] [PASSED] 32 [09:30:50] [PASSED] 256 [09:30:50] =============== [PASSED] test_range_overlap ================ [09:30:50] =================== test_range_compact ==================== [09:30:50] [PASSED] 4 [09:30:50] [PASSED] 8 [09:30:50] [PASSED] 32 [09:30:50] [PASSED] 256 [09:30:50] =============== [PASSED] test_range_compact ================ [09:30:50] ==================== test_range_spare ===================== [09:30:50] [PASSED] 4 [09:30:50] [PASSED] 8 [09:30:50] [PASSED] 32 [09:30:50] [PASSED] 256 [09:30:50] ================ [PASSED] test_range_spare ================= [09:30:50] ===================== [PASSED] guc_dbm ===================== [09:30:50] =================== guc_idm (6 subtests) =================== [09:30:50] [PASSED] bad_init [09:30:50] [PASSED] no_init [09:30:50] [PASSED] init_fini [09:30:50] [PASSED] check_used [09:30:50] [PASSED] check_quota [09:30:50] [PASSED] check_all [09:30:50] ===================== [PASSED] guc_idm ===================== [09:30:50] ================== no_relay (3 subtests) =================== [09:30:50] [PASSED] xe_drops_guc2pf_if_not_ready [09:30:50] [PASSED] xe_drops_guc2vf_if_not_ready [09:30:50] [PASSED] xe_rejects_send_if_not_ready [09:30:50] ==================== [PASSED] no_relay ===================== [09:30:50] ================== pf_relay (14 subtests) ================== [09:30:50] [PASSED] pf_rejects_guc2pf_too_short [09:30:50] [PASSED] pf_rejects_guc2pf_too_long [09:30:50] [PASSED] pf_rejects_guc2pf_no_payload [09:30:50] [PASSED] pf_fails_no_payload [09:30:50] [PASSED] pf_fails_bad_origin [09:30:50] [PASSED] pf_fails_bad_type [09:30:50] [PASSED] pf_txn_reports_error [09:30:50] [PASSED] pf_txn_sends_pf2guc [09:30:50] [PASSED] pf_sends_pf2guc [09:30:50] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:30:50] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:30:50] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:30:50] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:30:50] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:30:50] ==================== [PASSED] pf_relay ===================== [09:30:50] ================== vf_relay (3 subtests) =================== [09:30:50] [PASSED] vf_rejects_guc2vf_too_short [09:30:50] [PASSED] vf_rejects_guc2vf_too_long [09:30:50] [PASSED] vf_rejects_guc2vf_no_payload [09:30:50] ==================== [PASSED] vf_relay ===================== [09:30:50] ================ pf_gt_config (9 subtests) ================= [09:30:50] [PASSED] fair_contexts_1vf [09:30:50] [PASSED] fair_doorbells_1vf [09:30:50] [PASSED] fair_ggtt_1vf [09:30:50] ====================== fair_vram_1vf ====================== [09:30:50] [PASSED] 3.50 GiB [09:30:50] [PASSED] 11.5 GiB [09:30:50] [PASSED] 15.5 GiB [09:30:50] [PASSED] 31.5 GiB [09:30:50] [PASSED] 63.5 GiB [09:30:50] [PASSED] 1.91 GiB [09:30:50] ================== [PASSED] fair_vram_1vf ================== [09:30:50] ================ fair_vram_1vf_admin_only ================= [09:30:50] [PASSED] 3.50 GiB [09:30:50] [PASSED] 11.5 GiB [09:30:50] [PASSED] 15.5 GiB [09:30:50] [PASSED] 31.5 GiB [09:30:50] [PASSED] 63.5 GiB [09:30:50] [PASSED] 1.91 GiB [09:30:50] ============ [PASSED] fair_vram_1vf_admin_only ============= [09:30:50] ====================== fair_contexts ====================== [09:30:50] [PASSED] 1 VF [09:30:50] [PASSED] 2 VFs [09:30:50] [PASSED] 3 VFs [09:30:50] [PASSED] 4 VFs [09:30:50] [PASSED] 5 VFs [09:30:50] [PASSED] 6 VFs [09:30:50] [PASSED] 7 VFs [09:30:50] [PASSED] 8 VFs [09:30:50] [PASSED] 9 VFs [09:30:50] [PASSED] 10 VFs [09:30:50] [PASSED] 11 VFs [09:30:50] [PASSED] 12 VFs [09:30:50] [PASSED] 13 VFs [09:30:50] [PASSED] 14 VFs [09:30:50] [PASSED] 15 VFs [09:30:50] [PASSED] 16 VFs [09:30:50] [PASSED] 17 VFs [09:30:50] [PASSED] 18 VFs [09:30:50] [PASSED] 19 VFs [09:30:50] [PASSED] 20 VFs [09:30:50] [PASSED] 21 VFs [09:30:50] [PASSED] 22 VFs [09:30:50] [PASSED] 23 VFs [09:30:50] [PASSED] 24 VFs [09:30:50] [PASSED] 25 VFs [09:30:50] [PASSED] 26 VFs [09:30:50] [PASSED] 27 VFs [09:30:50] [PASSED] 28 VFs [09:30:50] [PASSED] 29 VFs [09:30:50] [PASSED] 30 VFs [09:30:50] [PASSED] 31 VFs [09:30:50] [PASSED] 32 VFs [09:30:50] [PASSED] 33 VFs [09:30:50] [PASSED] 34 VFs [09:30:50] [PASSED] 35 VFs [09:30:50] [PASSED] 36 VFs [09:30:50] [PASSED] 37 VFs [09:30:50] [PASSED] 38 VFs [09:30:50] [PASSED] 39 VFs [09:30:50] [PASSED] 40 VFs [09:30:50] [PASSED] 41 VFs [09:30:50] [PASSED] 42 VFs [09:30:50] [PASSED] 43 VFs [09:30:50] [PASSED] 44 VFs [09:30:50] [PASSED] 45 VFs [09:30:50] [PASSED] 46 VFs [09:30:50] [PASSED] 47 VFs [09:30:50] [PASSED] 48 VFs [09:30:50] [PASSED] 49 VFs [09:30:50] [PASSED] 50 VFs [09:30:50] [PASSED] 51 VFs [09:30:50] [PASSED] 52 VFs [09:30:50] [PASSED] 53 VFs [09:30:50] [PASSED] 54 VFs [09:30:50] [PASSED] 55 VFs [09:30:50] [PASSED] 56 VFs [09:30:50] [PASSED] 57 VFs [09:30:50] [PASSED] 58 VFs [09:30:50] [PASSED] 59 VFs [09:30:50] [PASSED] 60 VFs [09:30:50] [PASSED] 61 VFs [09:30:50] [PASSED] 62 VFs [09:30:50] [PASSED] 63 VFs [09:30:50] ================== [PASSED] fair_contexts ================== [09:30:50] ===================== fair_doorbells ====================== [09:30:50] [PASSED] 1 VF [09:30:50] [PASSED] 2 VFs [09:30:50] [PASSED] 3 VFs [09:30:50] [PASSED] 4 VFs [09:30:50] [PASSED] 5 VFs [09:30:50] [PASSED] 6 VFs [09:30:50] [PASSED] 7 VFs [09:30:50] [PASSED] 8 VFs [09:30:50] [PASSED] 9 VFs [09:30:50] [PASSED] 10 VFs [09:30:50] [PASSED] 11 VFs [09:30:50] [PASSED] 12 VFs [09:30:50] [PASSED] 13 VFs [09:30:50] [PASSED] 14 VFs [09:30:50] [PASSED] 15 VFs [09:30:50] [PASSED] 16 VFs [09:30:50] [PASSED] 17 VFs [09:30:50] [PASSED] 18 VFs [09:30:50] [PASSED] 19 VFs [09:30:50] [PASSED] 20 VFs [09:30:50] [PASSED] 21 VFs [09:30:50] [PASSED] 22 VFs [09:30:50] [PASSED] 23 VFs [09:30:50] [PASSED] 24 VFs [09:30:50] [PASSED] 25 VFs [09:30:50] [PASSED] 26 VFs [09:30:50] [PASSED] 27 VFs [09:30:50] [PASSED] 28 VFs [09:30:50] [PASSED] 29 VFs [09:30:50] [PASSED] 30 VFs [09:30:50] [PASSED] 31 VFs [09:30:50] [PASSED] 32 VFs [09:30:50] [PASSED] 33 VFs [09:30:50] [PASSED] 34 VFs [09:30:50] [PASSED] 35 VFs [09:30:50] [PASSED] 36 VFs [09:30:50] [PASSED] 37 VFs [09:30:50] [PASSED] 38 VFs [09:30:50] [PASSED] 39 VFs [09:30:50] [PASSED] 40 VFs [09:30:50] [PASSED] 41 VFs [09:30:50] [PASSED] 42 VFs [09:30:50] [PASSED] 43 VFs [09:30:50] [PASSED] 44 VFs [09:30:50] [PASSED] 45 VFs [09:30:50] [PASSED] 46 VFs [09:30:50] [PASSED] 47 VFs [09:30:50] [PASSED] 48 VFs [09:30:50] [PASSED] 49 VFs [09:30:50] [PASSED] 50 VFs [09:30:50] [PASSED] 51 VFs [09:30:50] [PASSED] 52 VFs [09:30:50] [PASSED] 53 VFs [09:30:50] [PASSED] 54 VFs [09:30:50] [PASSED] 55 VFs [09:30:50] [PASSED] 56 VFs [09:30:50] [PASSED] 57 VFs [09:30:50] [PASSED] 58 VFs [09:30:50] [PASSED] 59 VFs [09:30:50] [PASSED] 60 VFs [09:30:50] [PASSED] 61 VFs [09:30:50] [PASSED] 62 VFs [09:30:50] [PASSED] 63 VFs [09:30:50] ================= [PASSED] fair_doorbells ================== [09:30:50] ======================== fair_ggtt ======================== [09:30:50] [PASSED] 1 VF [09:30:50] [PASSED] 2 VFs [09:30:50] [PASSED] 3 VFs [09:30:50] [PASSED] 4 VFs [09:30:50] [PASSED] 5 VFs [09:30:50] [PASSED] 6 VFs [09:30:50] [PASSED] 7 VFs [09:30:50] [PASSED] 8 VFs [09:30:50] [PASSED] 9 VFs [09:30:50] [PASSED] 10 VFs [09:30:50] [PASSED] 11 VFs [09:30:50] [PASSED] 12 VFs [09:30:50] [PASSED] 13 VFs [09:30:50] [PASSED] 14 VFs [09:30:50] [PASSED] 15 VFs [09:30:50] [PASSED] 16 VFs [09:30:50] [PASSED] 17 VFs [09:30:50] [PASSED] 18 VFs [09:30:50] [PASSED] 19 VFs [09:30:50] [PASSED] 20 VFs [09:30:50] [PASSED] 21 VFs [09:30:50] [PASSED] 22 VFs [09:30:50] [PASSED] 23 VFs [09:30:50] [PASSED] 24 VFs [09:30:50] [PASSED] 25 VFs [09:30:50] [PASSED] 26 VFs [09:30:50] [PASSED] 27 VFs [09:30:50] [PASSED] 28 VFs [09:30:50] [PASSED] 29 VFs [09:30:50] [PASSED] 30 VFs [09:30:50] [PASSED] 31 VFs [09:30:50] [PASSED] 32 VFs [09:30:50] [PASSED] 33 VFs [09:30:50] [PASSED] 34 VFs [09:30:50] [PASSED] 35 VFs [09:30:50] [PASSED] 36 VFs [09:30:50] [PASSED] 37 VFs [09:30:50] [PASSED] 38 VFs [09:30:50] [PASSED] 39 VFs [09:30:50] [PASSED] 40 VFs [09:30:50] [PASSED] 41 VFs [09:30:50] [PASSED] 42 VFs [09:30:50] [PASSED] 43 VFs [09:30:50] [PASSED] 44 VFs [09:30:50] [PASSED] 45 VFs [09:30:50] [PASSED] 46 VFs [09:30:50] [PASSED] 47 VFs [09:30:50] [PASSED] 48 VFs [09:30:50] [PASSED] 49 VFs [09:30:50] [PASSED] 50 VFs [09:30:50] [PASSED] 51 VFs [09:30:50] [PASSED] 52 VFs [09:30:50] [PASSED] 53 VFs [09:30:50] [PASSED] 54 VFs [09:30:50] [PASSED] 55 VFs [09:30:50] [PASSED] 56 VFs [09:30:50] [PASSED] 57 VFs [09:30:50] [PASSED] 58 VFs [09:30:50] [PASSED] 59 VFs [09:30:50] [PASSED] 60 VFs [09:30:50] [PASSED] 61 VFs [09:30:50] [PASSED] 62 VFs [09:30:50] [PASSED] 63 VFs [09:30:50] ==================== [PASSED] fair_ggtt ==================== [09:30:50] ======================== fair_vram ======================== [09:30:50] [PASSED] 1 VF [09:30:50] [PASSED] 2 VFs [09:30:50] [PASSED] 3 VFs [09:30:50] [PASSED] 4 VFs [09:30:50] [PASSED] 5 VFs [09:30:50] [PASSED] 6 VFs [09:30:50] [PASSED] 7 VFs [09:30:50] [PASSED] 8 VFs [09:30:50] [PASSED] 9 VFs [09:30:50] [PASSED] 10 VFs [09:30:50] [PASSED] 11 VFs [09:30:50] [PASSED] 12 VFs [09:30:50] [PASSED] 13 VFs [09:30:50] [PASSED] 14 VFs [09:30:50] [PASSED] 15 VFs [09:30:50] [PASSED] 16 VFs [09:30:50] [PASSED] 17 VFs [09:30:50] [PASSED] 18 VFs [09:30:50] [PASSED] 19 VFs [09:30:50] [PASSED] 20 VFs [09:30:50] [PASSED] 21 VFs [09:30:50] [PASSED] 22 VFs [09:30:50] [PASSED] 23 VFs [09:30:50] [PASSED] 24 VFs [09:30:50] [PASSED] 25 VFs [09:30:50] [PASSED] 26 VFs [09:30:50] [PASSED] 27 VFs [09:30:50] [PASSED] 28 VFs [09:30:50] [PASSED] 29 VFs [09:30:50] [PASSED] 30 VFs [09:30:50] [PASSED] 31 VFs [09:30:50] [PASSED] 32 VFs [09:30:50] [PASSED] 33 VFs [09:30:50] [PASSED] 34 VFs [09:30:50] [PASSED] 35 VFs [09:30:50] [PASSED] 36 VFs [09:30:50] [PASSED] 37 VFs [09:30:50] [PASSED] 38 VFs [09:30:50] [PASSED] 39 VFs [09:30:50] [PASSED] 40 VFs [09:30:50] [PASSED] 41 VFs [09:30:50] [PASSED] 42 VFs [09:30:50] [PASSED] 43 VFs [09:30:50] [PASSED] 44 VFs [09:30:50] [PASSED] 45 VFs [09:30:50] [PASSED] 46 VFs [09:30:50] [PASSED] 47 VFs [09:30:50] [PASSED] 48 VFs [09:30:50] [PASSED] 49 VFs [09:30:50] [PASSED] 50 VFs [09:30:50] [PASSED] 51 VFs [09:30:50] [PASSED] 52 VFs [09:30:50] [PASSED] 53 VFs [09:30:50] [PASSED] 54 VFs [09:30:50] [PASSED] 55 VFs [09:30:50] [PASSED] 56 VFs [09:30:50] [PASSED] 57 VFs [09:30:50] [PASSED] 58 VFs [09:30:50] [PASSED] 59 VFs [09:30:50] [PASSED] 60 VFs [09:30:50] [PASSED] 61 VFs [09:30:50] [PASSED] 62 VFs [09:30:50] [PASSED] 63 VFs [09:30:50] ==================== [PASSED] fair_vram ==================== [09:30:50] ================== [PASSED] pf_gt_config =================== [09:30:50] ===================== lmtt (1 subtest) ===================== [09:30:50] ======================== test_ops ========================= [09:30:50] [PASSED] 2-level [09:30:50] [PASSED] multi-level [09:30:50] ==================== [PASSED] test_ops ===================== [09:30:50] ====================== [PASSED] lmtt ======================= [09:30:50] ================= pf_service (11 subtests) ================= [09:30:50] [PASSED] pf_negotiate_any [09:30:50] [PASSED] pf_negotiate_base_match [09:30:50] [PASSED] pf_negotiate_base_newer [09:30:50] [PASSED] pf_negotiate_base_next [09:30:50] [SKIPPED] pf_negotiate_base_older (no older minor) [09:30:50] [PASSED] pf_negotiate_base_prev [09:30:50] [PASSED] pf_negotiate_latest_match [09:30:50] [PASSED] pf_negotiate_latest_newer [09:30:50] [PASSED] pf_negotiate_latest_next [09:30:50] [SKIPPED] pf_negotiate_latest_older (no older minor) [09:30:50] [SKIPPED] pf_negotiate_latest_prev (no prev major) [09:30:50] =================== [PASSED] pf_service ==================== [09:30:50] ================= xe_guc_g2g (2 subtests) ================== [09:30:50] ============== xe_live_guc_g2g_kunit_default ============== [09:30:50] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ========== [09:30:50] ============== xe_live_guc_g2g_kunit_allmem =============== [09:30:50] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ========== [09:30:50] =================== [SKIPPED] xe_guc_g2g =================== [09:30:50] =================== xe_mocs (2 subtests) =================== [09:30:50] ================ xe_live_mocs_kernel_kunit ================ [09:30:50] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [09:30:50] ================ xe_live_mocs_reset_kunit ================= [09:30:50] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [09:30:50] ==================== [SKIPPED] xe_mocs ===================== [09:30:50] ================= xe_migrate (2 subtests) ================== [09:30:50] ================= xe_migrate_sanity_kunit ================= [09:30:50] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [09:30:50] ================== xe_validate_ccs_kunit ================== [09:30:50] ============= [SKIPPED] xe_validate_ccs_kunit ============== [09:30:50] =================== [SKIPPED] xe_migrate =================== [09:30:50] ================== xe_dma_buf (1 subtest) ================== [09:30:50] ==================== xe_dma_buf_kunit ===================== [09:30:50] ================ [SKIPPED] xe_dma_buf_kunit ================ [09:30:50] =================== [SKIPPED] xe_dma_buf =================== [09:30:50] ================= xe_bo_shrink (1 subtest) ================= [09:30:50] =================== xe_bo_shrink_kunit ==================== [09:30:50] =============== [SKIPPED] xe_bo_shrink_kunit =============== [09:30:50] ================== [SKIPPED] xe_bo_shrink ================== [09:30:50] ==================== xe_bo (2 subtests) ==================== [09:30:50] ================== xe_ccs_migrate_kunit =================== [09:30:50] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [09:30:50] ==================== xe_bo_evict_kunit ==================== [09:30:50] =============== [SKIPPED] xe_bo_evict_kunit ================ [09:30:50] ===================== [SKIPPED] xe_bo ====================== [09:30:50] ==================== args (13 subtests) ==================== [09:30:50] [PASSED] count_args_test [09:30:50] [PASSED] call_args_example [09:30:50] [PASSED] call_args_test [09:30:50] [PASSED] drop_first_arg_example [09:30:50] [PASSED] drop_first_arg_test [09:30:50] [PASSED] first_arg_example [09:30:50] [PASSED] first_arg_test [09:30:50] [PASSED] last_arg_example [09:30:50] [PASSED] last_arg_test [09:30:50] [PASSED] pick_arg_example [09:30:50] [PASSED] if_args_example [09:30:50] [PASSED] if_args_test [09:30:50] [PASSED] sep_comma_example [09:30:50] ====================== [PASSED] args ======================= [09:30:50] =================== xe_pci (3 subtests) ==================== [09:30:50] ==================== check_graphics_ip ==================== [09:30:50] [PASSED] 12.00 Xe_LP [09:30:50] [PASSED] 12.10 Xe_LP+ [09:30:50] [PASSED] 12.55 Xe_HPG [09:30:50] [PASSED] 12.60 Xe_HPC [09:30:50] [PASSED] 12.70 Xe_LPG [09:30:50] [PASSED] 12.71 Xe_LPG [09:30:50] [PASSED] 12.74 Xe_LPG+ [09:30:50] [PASSED] 20.01 Xe2_HPG [09:30:50] [PASSED] 20.02 Xe2_HPG [09:30:50] [PASSED] 20.04 Xe2_LPG [09:30:50] [PASSED] 30.00 Xe3_LPG [09:30:50] [PASSED] 30.01 Xe3_LPG [09:30:50] [PASSED] 30.03 Xe3_LPG [09:30:50] [PASSED] 30.04 Xe3_LPG [09:30:50] [PASSED] 30.05 Xe3_LPG [09:30:50] [PASSED] 35.10 Xe3p_LPG [09:30:50] [PASSED] 35.11 Xe3p_XPC [09:30:50] ================ [PASSED] check_graphics_ip ================ [09:30:50] ===================== check_media_ip ====================== [09:30:50] [PASSED] 12.00 Xe_M [09:30:50] [PASSED] 12.55 Xe_HPM [09:30:50] [PASSED] 13.00 Xe_LPM+ [09:30:50] [PASSED] 13.01 Xe2_HPM [09:30:50] [PASSED] 20.00 Xe2_LPM [09:30:50] [PASSED] 30.00 Xe3_LPM [09:30:50] [PASSED] 30.02 Xe3_LPM [09:30:50] [PASSED] 35.00 Xe3p_LPM [09:30:50] [PASSED] 35.03 Xe3p_HPM [09:30:50] ================= [PASSED] check_media_ip ================== [09:30:50] =================== check_platform_desc =================== [09:30:50] [PASSED] 0x9A60 (TIGERLAKE) [09:30:50] [PASSED] 0x9A68 (TIGERLAKE) [09:30:50] [PASSED] 0x9A70 (TIGERLAKE) [09:30:50] [PASSED] 0x9A40 (TIGERLAKE) [09:30:50] [PASSED] 0x9A49 (TIGERLAKE) [09:30:50] [PASSED] 0x9A59 (TIGERLAKE) [09:30:50] [PASSED] 0x9A78 (TIGERLAKE) [09:30:50] [PASSED] 0x9AC0 (TIGERLAKE) [09:30:50] [PASSED] 0x9AC9 (TIGERLAKE) [09:30:50] [PASSED] 0x9AD9 (TIGERLAKE) [09:30:50] [PASSED] 0x9AF8 (TIGERLAKE) [09:30:50] [PASSED] 0x4C80 (ROCKETLAKE) [09:30:50] [PASSED] 0x4C8A (ROCKETLAKE) [09:30:50] [PASSED] 0x4C8B (ROCKETLAKE) [09:30:50] [PASSED] 0x4C8C (ROCKETLAKE) [09:30:50] [PASSED] 0x4C90 (ROCKETLAKE) [09:30:50] [PASSED] 0x4C9A (ROCKETLAKE) [09:30:50] [PASSED] 0x4680 (ALDERLAKE_S) [09:30:50] [PASSED] 0x4682 (ALDERLAKE_S) [09:30:50] [PASSED] 0x4688 (ALDERLAKE_S) [09:30:50] [PASSED] 0x468A (ALDERLAKE_S) [09:30:50] [PASSED] 0x468B (ALDERLAKE_S) [09:30:50] [PASSED] 0x4690 (ALDERLAKE_S) [09:30:50] [PASSED] 0x4692 (ALDERLAKE_S) [09:30:50] [PASSED] 0x4693 (ALDERLAKE_S) [09:30:50] [PASSED] 0x46A0 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46A1 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46A2 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46A3 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46A6 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46A8 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46AA (ALDERLAKE_P) [09:30:50] [PASSED] 0x462A (ALDERLAKE_P) [09:30:50] [PASSED] 0x4626 (ALDERLAKE_P) [09:30:50] [PASSED] 0x4628 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46B0 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46B1 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46B2 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46B3 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46C0 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46C1 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46C2 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46C3 (ALDERLAKE_P) [09:30:50] [PASSED] 0x46D0 (ALDERLAKE_N) [09:30:50] [PASSED] 0x46D1 (ALDERLAKE_N) [09:30:50] [PASSED] 0x46D2 (ALDERLAKE_N) [09:30:50] [PASSED] 0x46D3 (ALDERLAKE_N) [09:30:50] [PASSED] 0x46D4 (ALDERLAKE_N) [09:30:50] [PASSED] 0xA721 (ALDERLAKE_P) [09:30:50] [PASSED] 0xA7A1 (ALDERLAKE_P) [09:30:50] [PASSED] 0xA7A9 (ALDERLAKE_P) [09:30:50] [PASSED] 0xA7AC (ALDERLAKE_P) [09:30:50] [PASSED] 0xA7AD (ALDERLAKE_P) [09:30:50] [PASSED] 0xA720 (ALDERLAKE_P) [09:30:50] [PASSED] 0xA7A0 (ALDERLAKE_P) [09:30:50] [PASSED] 0xA7A8 (ALDERLAKE_P) [09:30:50] [PASSED] 0xA7AA (ALDERLAKE_P) [09:30:50] [PASSED] 0xA7AB (ALDERLAKE_P) [09:30:50] [PASSED] 0xA780 (ALDERLAKE_S) [09:30:50] [PASSED] 0xA781 (ALDERLAKE_S) [09:30:50] [PASSED] 0xA782 (ALDERLAKE_S) [09:30:50] [PASSED] 0xA783 (ALDERLAKE_S) [09:30:50] [PASSED] 0xA788 (ALDERLAKE_S) [09:30:50] [PASSED] 0xA789 (ALDERLAKE_S) [09:30:50] [PASSED] 0xA78A (ALDERLAKE_S) [09:30:50] [PASSED] 0xA78B (ALDERLAKE_S) [09:30:50] [PASSED] 0x4905 (DG1) [09:30:50] [PASSED] 0x4906 (DG1) [09:30:50] [PASSED] 0x4907 (DG1) [09:30:50] [PASSED] 0x4908 (DG1) [09:30:50] [PASSED] 0x4909 (DG1) [09:30:50] [PASSED] 0x56C0 (DG2) [09:30:50] [PASSED] 0x56C2 (DG2) [09:30:50] [PASSED] 0x56C1 (DG2) [09:30:50] [PASSED] 0x7D51 (METEORLAKE) [09:30:50] [PASSED] 0x7DD1 (METEORLAKE) [09:30:50] [PASSED] 0x7D41 (METEORLAKE) [09:30:50] [PASSED] 0x7D67 (METEORLAKE) [09:30:50] [PASSED] 0xB640 (METEORLAKE) [09:30:50] [PASSED] 0x56A0 (DG2) [09:30:50] [PASSED] 0x56A1 (DG2) [09:30:50] [PASSED] 0x56A2 (DG2) [09:30:50] [PASSED] 0x56BE (DG2) [09:30:50] [PASSED] 0x56BF (DG2) [09:30:50] [PASSED] 0x5690 (DG2) [09:30:50] [PASSED] 0x5691 (DG2) [09:30:50] [PASSED] 0x5692 (DG2) [09:30:50] [PASSED] 0x56A5 (DG2) [09:30:50] [PASSED] 0x56A6 (DG2) [09:30:50] [PASSED] 0x56B0 (DG2) [09:30:50] [PASSED] 0x56B1 (DG2) [09:30:50] [PASSED] 0x56BA (DG2) [09:30:50] [PASSED] 0x56BB (DG2) [09:30:50] [PASSED] 0x56BC (DG2) [09:30:50] [PASSED] 0x56BD (DG2) [09:30:50] [PASSED] 0x5693 (DG2) [09:30:50] [PASSED] 0x5694 (DG2) [09:30:50] [PASSED] 0x5695 (DG2) [09:30:50] [PASSED] 0x56A3 (DG2) [09:30:50] [PASSED] 0x56A4 (DG2) [09:30:50] [PASSED] 0x56B2 (DG2) [09:30:50] [PASSED] 0x56B3 (DG2) [09:30:50] [PASSED] 0x5696 (DG2) [09:30:50] [PASSED] 0x5697 (DG2) [09:30:50] [PASSED] 0xB69 (PVC) [09:30:50] [PASSED] 0xB6E (PVC) [09:30:50] [PASSED] 0xBD4 (PVC) [09:30:50] [PASSED] 0xBD5 (PVC) [09:30:50] [PASSED] 0xBD6 (PVC) [09:30:50] [PASSED] 0xBD7 (PVC) [09:30:50] [PASSED] 0xBD8 (PVC) [09:30:50] [PASSED] 0xBD9 (PVC) [09:30:50] [PASSED] 0xBDA (PVC) [09:30:50] [PASSED] 0xBDB (PVC) [09:30:50] [PASSED] 0xBE0 (PVC) [09:30:50] [PASSED] 0xBE1 (PVC) [09:30:50] [PASSED] 0xBE5 (PVC) [09:30:50] [PASSED] 0x7D40 (METEORLAKE) [09:30:50] [PASSED] 0x7D45 (METEORLAKE) [09:30:50] [PASSED] 0x7D55 (METEORLAKE) [09:30:50] [PASSED] 0x7D60 (METEORLAKE) [09:30:50] [PASSED] 0x7DD5 (METEORLAKE) [09:30:50] [PASSED] 0x6420 (LUNARLAKE) [09:30:50] [PASSED] 0x64A0 (LUNARLAKE) [09:30:50] [PASSED] 0x64B0 (LUNARLAKE) [09:30:50] [PASSED] 0xE202 (BATTLEMAGE) [09:30:50] [PASSED] 0xE209 (BATTLEMAGE) [09:30:50] [PASSED] 0xE20B (BATTLEMAGE) [09:30:50] [PASSED] 0xE20C (BATTLEMAGE) [09:30:50] [PASSED] 0xE20D (BATTLEMAGE) [09:30:50] [PASSED] 0xE210 (BATTLEMAGE) [09:30:50] [PASSED] 0xE211 (BATTLEMAGE) [09:30:50] [PASSED] 0xE212 (BATTLEMAGE) [09:30:50] [PASSED] 0xE216 (BATTLEMAGE) [09:30:50] [PASSED] 0xE220 (BATTLEMAGE) [09:30:50] [PASSED] 0xE221 (BATTLEMAGE) [09:30:50] [PASSED] 0xE222 (BATTLEMAGE) [09:30:50] [PASSED] 0xE223 (BATTLEMAGE) [09:30:50] [PASSED] 0xB080 (PANTHERLAKE) [09:30:50] [PASSED] 0xB081 (PANTHERLAKE) [09:30:50] [PASSED] 0xB082 (PANTHERLAKE) [09:30:50] [PASSED] 0xB083 (PANTHERLAKE) [09:30:50] [PASSED] 0xB084 (PANTHERLAKE) [09:30:50] [PASSED] 0xB085 (PANTHERLAKE) [09:30:50] [PASSED] 0xB086 (PANTHERLAKE) [09:30:50] [PASSED] 0xB087 (PANTHERLAKE) [09:30:50] [PASSED] 0xB08F (PANTHERLAKE) [09:30:50] [PASSED] 0xB090 (PANTHERLAKE) [09:30:50] [PASSED] 0xB0A0 (PANTHERLAKE) [09:30:50] [PASSED] 0xB0B0 (PANTHERLAKE) [09:30:50] [PASSED] 0xFD80 (PANTHERLAKE) [09:30:50] [PASSED] 0xFD81 (PANTHERLAKE) [09:30:50] [PASSED] 0xD740 (NOVALAKE_S) [09:30:50] [PASSED] 0xD741 (NOVALAKE_S) [09:30:50] [PASSED] 0xD742 (NOVALAKE_S) [09:30:50] [PASSED] 0xD743 (NOVALAKE_S) [09:30:50] [PASSED] 0xD745 (NOVALAKE_S) [09:30:50] [PASSED] 0xD74A (NOVALAKE_S) [09:30:50] [PASSED] 0xD74B (NOVALAKE_S) [09:30:50] [PASSED] 0x674C (CRESCENTISLAND) [09:30:50] [PASSED] 0x674D (CRESCENTISLAND) [09:30:50] [PASSED] 0x674E (CRESCENTISLAND) [09:30:50] [PASSED] 0x674F (CRESCENTISLAND) [09:30:50] [PASSED] 0x6750 (CRESCENTISLAND) [09:30:50] [PASSED] 0xD750 (NOVALAKE_P) [09:30:50] [PASSED] 0xD751 (NOVALAKE_P) [09:30:50] [PASSED] 0xD752 (NOVALAKE_P) [09:30:50] [PASSED] 0xD753 (NOVALAKE_P) [09:30:50] [PASSED] 0xD754 (NOVALAKE_P) [09:30:50] [PASSED] 0xD755 (NOVALAKE_P) [09:30:50] [PASSED] 0xD756 (NOVALAKE_P) [09:30:50] [PASSED] 0xD757 (NOVALAKE_P) [09:30:50] [PASSED] 0xD75F (NOVALAKE_P) [09:30:50] =============== [PASSED] check_platform_desc =============== [09:30:50] ===================== [PASSED] xe_pci ====================== [09:30:50] ============= xe_rtp_tables_test (4 subtests) ============== [09:30:50] ================== xe_rtp_table_gt_test =================== [09:30:50] [PASSED] gt_was/14011060649 [09:30:50] [PASSED] gt_was/14011059788 [09:30:50] [PASSED] gt_was/14015795083 [09:30:50] [PASSED] gt_was/16021867713 [09:30:50] [PASSED] gt_was/14019449301 [09:30:50] [PASSED] gt_was/16028005424 [09:30:50] [PASSED] gt_was/14026578760 [09:30:50] [PASSED] gt_was/1409420604 [09:30:50] [PASSED] gt_was/1408615072 [09:30:50] [PASSED] gt_was/22010523718 [09:30:50] [PASSED] gt_was/14011006942 [09:30:50] [PASSED] gt_was/14014830051 [09:30:50] [PASSED] gt_was/18018781329 [09:30:50] [PASSED] gt_was/1509235366 [09:30:50] [PASSED] gt_was/18018781329 [09:30:50] [PASSED] gt_was/16016694945 [09:30:50] [PASSED] gt_was/14018575942 [09:30:50] [PASSED] gt_was/22016670082 [09:30:50] [PASSED] gt_was/22016670082 [09:30:50] [PASSED] gt_was/14017421178 [09:30:50] [PASSED] gt_was/16025250150 [09:30:50] [PASSED] gt_was/14021871409 [09:30:50] [PASSED] gt_was/16021865536 [09:30:50] [PASSED] gt_was/14021486841 [09:30:50] [PASSED] gt_was/14025160223 [09:30:50] [PASSED] gt_was/14026144927, 16029437861, 14026127056 [09:30:50] [PASSED] gt_was/14025635424 [09:30:50] [PASSED] gt_was/16028005424 [09:30:50] ============== [PASSED] xe_rtp_table_gt_test =============== [09:30:50] ================== xe_rtp_table_gt_test =================== [09:30:50] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable [09:30:50] [PASSED] gt_tunings/Tuning: 32B Access Enable [09:30:50] [PASSED] gt_tunings/Tuning: L3 cache [09:30:50] [PASSED] gt_tunings/Tuning: L3 cache - media [09:30:50] [PASSED] gt_tunings/Tuning: Compression Overfetch [09:30:50] [PASSED] gt_tunings/Tuning: Compression Overfetch - media [09:30:50] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 [09:30:50] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media [09:30:50] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only [09:30:50] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media [09:30:50] [PASSED] gt_tunings/Tuning: Stateless compression control [09:30:50] [PASSED] gt_tunings/Tuning: Stateless compression control - media [09:30:50] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache [09:30:50] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media [09:30:50] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB [09:30:50] ============== [PASSED] xe_rtp_table_gt_test =============== [09:30:50] ================== xe_rtp_table_oob_test ================== [09:30:50] [PASSED] oob_was/1607983814 [09:30:50] [PASSED] oob_was/16010904313 [09:30:50] [PASSED] oob_was/18022495364 [09:30:50] [PASSED] oob_was/22012773006 [09:30:50] [PASSED] oob_was/14014475959 [09:30:50] [PASSED] oob_was/22011391025 [09:30:50] [PASSED] oob_was/22012727170 [09:30:50] [PASSED] oob_was/22012727685 [09:30:50] [PASSED] oob_was/22016596838 [09:30:50] [PASSED] oob_was/18020744125 [09:30:50] [PASSED] oob_was/1409600907 [09:30:50] [PASSED] oob_was/22014953428 [09:30:50] [PASSED] oob_was/16017236439 [09:30:50] [PASSED] oob_was/14019821291 [09:30:50] [PASSED] oob_was/14015076503 [09:30:50] [PASSED] oob_was/14018913170 [09:30:50] [PASSED] oob_was/14018094691 [09:30:50] [PASSED] oob_was/18024947630 [09:30:50] [PASSED] oob_was/16022287689 [09:30:50] [PASSED] oob_was/13011645652 [09:30:50] [PASSED] oob_was/14022293748 [09:30:50] [PASSED] oob_was/22019794406 [09:30:50] [PASSED] oob_was/22019338487 [09:30:50] [PASSED] oob_was/16023588340 [09:30:50] [PASSED] oob_was/14019789679 [09:30:50] [PASSED] oob_was/14022866841 [09:30:50] [PASSED] oob_was/16021333562 [09:30:50] [PASSED] oob_was/14016712196 [09:30:50] [PASSED] oob_was/14015568240 [09:30:50] [PASSED] oob_was/18013179988 [09:30:50] [PASSED] oob_was/1508761755 [09:30:50] [PASSED] oob_was/16023105232 [09:30:50] [PASSED] oob_was/16026508708 [09:30:50] [PASSED] oob_was/14020001231 [09:30:50] [PASSED] oob_was/16023683509 [09:30:50] [PASSED] oob_was/14025515070 [09:30:50] [PASSED] oob_was/15015404425_disable [09:30:50] [PASSED] oob_was/16026007364 [09:30:50] [PASSED] oob_was/14020316580 [09:30:50] [PASSED] oob_was/14025883347 [09:30:50] [PASSED] oob_was/16029380221 [09:30:50] ============== [PASSED] xe_rtp_table_oob_test ============== [09:30:50] ================ xe_rtp_table_dev_oob_test ================ [09:30:50] [PASSED] device_oob_was/22010954014 [09:30:50] [PASSED] device_oob_was/15015404425 [09:30:50] [PASSED] device_oob_was/22019338487_display [09:30:50] [PASSED] device_oob_was/14022085890 [09:30:50] [PASSED] device_oob_was/14026539277 [09:30:50] [PASSED] device_oob_was/14026633728 [09:30:50] [PASSED] device_oob_was/14026746987 [09:30:50] [PASSED] device_oob_was/14026779378 [09:30:50] ============ [PASSED] xe_rtp_table_dev_oob_test ============ [09:30:50] =============== [PASSED] xe_rtp_tables_test ================ [09:30:50] =================== xe_rtp (3 subtests) ==================== [09:30:50] =================== xe_rtp_rules_tests ==================== [09:30:50] [PASSED] no [09:30:50] [PASSED] yes [09:30:50] [PASSED] no-and-no [09:30:50] [PASSED] no-and-yes [09:30:50] [PASSED] yes-and-no [09:30:50] [PASSED] yes-and-yes [09:30:50] [PASSED] no-or-no [09:30:50] [PASSED] no-or-yes [09:30:50] [PASSED] yes-or-no [09:30:50] [PASSED] yes-or-yes [09:30:50] [PASSED] no-yes-or-yes-no [09:30:50] [PASSED] no-yes-or-yes-yes [09:30:50] [PASSED] yes-yes-or-no-yes [09:30:50] [PASSED] yes-yes-or-yes-yes [09:30:50] [PASSED] no-no-or-yes-or-no [09:30:50] [PASSED] or [09:30:50] [PASSED] or-yes [09:30:50] [PASSED] or-no [09:30:50] [PASSED] yes-or [09:30:50] [PASSED] no-or [09:30:50] [PASSED] no-or-or-yes [09:30:50] [PASSED] yes-or-or-no [09:30:50] [PASSED] no-or-or-no [09:30:50] [PASSED] missing-context-engine-class [09:30:50] [PASSED] missing-context-engine-class-or-yes [09:30:50] [PASSED] missing-context-engine-class-or-or-yes [09:30:50] =============== [PASSED] xe_rtp_rules_tests ================ [09:30:50] =============== xe_rtp_process_to_sr_tests ================ [09:30:50] [PASSED] coalesce-same-reg [09:30:50] [PASSED] coalesce-same-reg-literal-and-func [09:30:50] [PASSED] no-match-no-add [09:30:50] [PASSED] two-regs-two-entries [09:30:50] [PASSED] clr-one-set-other [09:30:50] [PASSED] set-field [09:30:50] [PASSED] conflict-duplicate [09:30:50] [PASSED] conflict-not-disjoint [09:30:50] [PASSED] conflict-not-disjoint-literal-and-func [09:30:50] [PASSED] conflict-reg-type [09:30:50] [PASSED] bad-mcr-reg-forced-to-regular [09:30:50] [PASSED] bad-regular-reg-forced-to-mcr [09:30:50] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [09:30:50] ================== xe_rtp_process_tests =================== [09:30:50] [PASSED] active1 [09:30:50] [PASSED] active2 [09:30:50] [PASSED] active-inactive [09:30:50] [PASSED] inactive-active [09:30:50] [PASSED] inactive-active-inactive [09:30:50] [PASSED] inactive-inactive-inactive [09:30:50] ============== [PASSED] xe_rtp_process_tests =============== [09:30:50] ===================== [PASSED] xe_rtp ====================== [09:30:50] ==================== xe_wa (1 subtest) ===================== [09:30:50] ======================== xe_wa_gt ========================= [09:30:50] [PASSED] TIGERLAKE B0 [09:30:50] [PASSED] DG1 A0 [09:30:50] [PASSED] DG1 B0 [09:30:50] [PASSED] ALDERLAKE_S A0 [09:30:50] [PASSED] ALDERLAKE_S B0 [09:30:50] [PASSED] ALDERLAKE_S C0 [09:30:50] [PASSED] ALDERLAKE_S D0 [09:30:50] [PASSED] ALDERLAKE_P A0 [09:30:50] [PASSED] ALDERLAKE_P B0 [09:30:50] [PASSED] ALDERLAKE_P C0 [09:30:50] [PASSED] ALDERLAKE_S RPLS D0 [09:30:50] [PASSED] ALDERLAKE_P RPLU E0 [09:30:50] [PASSED] DG2 G10 C0 [09:30:50] [PASSED] DG2 G11 B1 [09:30:50] [PASSED] DG2 G12 A1 [09:30:50] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0 [09:30:50] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0 [09:30:50] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0 [09:30:50] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0 [09:30:50] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0 [09:30:50] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1 [09:30:50] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0 [09:30:50] ==================== [PASSED] xe_wa_gt ===================== [09:30:50] ====================== [PASSED] xe_wa ====================== [09:30:50] ============================================================ [09:30:50] Testing complete. Ran 719 tests: passed: 701, skipped: 18 [09:30:50] Elapsed time: 75.848s total, 12.098s configuring, 62.529s building, 1.190s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [09:30:51] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [09:30:55] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25 [09:31:48] Starting KUnit Kernel (1/1)... [09:31:48] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [09:31:48] ============ drm_test_pick_cmdline (2 subtests) ============ [09:31:48] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [09:31:48] =============== drm_test_pick_cmdline_named =============== [09:31:48] [PASSED] NTSC [09:31:48] [PASSED] NTSC-J [09:31:48] [PASSED] PAL [09:31:48] [PASSED] PAL-M [09:31:48] =========== [PASSED] drm_test_pick_cmdline_named =========== [09:31:48] ============== [PASSED] drm_test_pick_cmdline ============== [09:31:48] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [09:31:48] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [09:31:48] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [09:31:48] =========== drm_validate_clone_mode (2 subtests) =========== [09:31:48] ============== drm_test_check_in_clone_mode =============== [09:31:48] [PASSED] in_clone_mode [09:31:48] [PASSED] not_in_clone_mode [09:31:48] ========== [PASSED] drm_test_check_in_clone_mode =========== [09:31:48] =============== drm_test_check_valid_clones =============== [09:31:48] [PASSED] not_in_clone_mode [09:31:48] [PASSED] valid_clone [09:31:48] [PASSED] invalid_clone [09:31:48] =========== [PASSED] drm_test_check_valid_clones =========== [09:31:48] ============= [PASSED] drm_validate_clone_mode ============= [09:31:48] ============= drm_validate_modeset (1 subtest) ============= [09:31:48] [PASSED] drm_test_check_connector_changed_modeset [09:31:48] ============== [PASSED] drm_validate_modeset =============== [09:31:48] ====== drm_test_bridge_get_current_state (2 subtests) ====== [09:31:48] [PASSED] drm_test_drm_bridge_get_current_state_atomic [09:31:48] [PASSED] drm_test_drm_bridge_get_current_state_legacy [09:31:48] ======== [PASSED] drm_test_bridge_get_current_state ======== [09:31:48] ====== drm_test_bridge_helper_reset_crtc (4 subtests) ====== [09:31:48] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [09:31:48] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [09:31:48] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [09:31:48] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts [09:31:48] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [09:31:48] ============== drm_bridge_alloc (2 subtests) =============== [09:31:48] [PASSED] drm_test_drm_bridge_alloc_basic [09:31:48] [PASSED] drm_test_drm_bridge_alloc_get_put [09:31:48] ================ [PASSED] drm_bridge_alloc ================= [09:31:48] ============= drm_bridge_bus_fmt (5 subtests) ============== [09:31:48] [PASSED] drm_test_bridge_rgb_yuv_rgb [09:31:48] [PASSED] drm_test_bridge_must_convert_to_yuv444 [09:31:48] [PASSED] drm_test_bridge_hdmi_auto_rgb [09:31:48] [PASSED] drm_test_bridge_auto_first [09:31:48] [PASSED] drm_test_bridge_rgb_yuv_no_path [09:31:48] =============== [PASSED] drm_bridge_bus_fmt ================ [09:31:48] ============= drm_cmdline_parser (40 subtests) ============= [09:31:48] [PASSED] drm_test_cmdline_force_d_only [09:31:48] [PASSED] drm_test_cmdline_force_D_only_dvi [09:31:48] [PASSED] drm_test_cmdline_force_D_only_hdmi [09:31:48] [PASSED] drm_test_cmdline_force_D_only_not_digital [09:31:48] [PASSED] drm_test_cmdline_force_e_only [09:31:48] [PASSED] drm_test_cmdline_res [09:31:48] [PASSED] drm_test_cmdline_res_vesa [09:31:48] [PASSED] drm_test_cmdline_res_vesa_rblank [09:31:48] [PASSED] drm_test_cmdline_res_rblank [09:31:48] [PASSED] drm_test_cmdline_res_bpp [09:31:48] [PASSED] drm_test_cmdline_res_refresh [09:31:48] [PASSED] drm_test_cmdline_res_bpp_refresh [09:31:48] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [09:31:48] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [09:31:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [09:31:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [09:31:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [09:31:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [09:31:48] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [09:31:48] [PASSED] drm_test_cmdline_res_margins_force_on [09:31:48] [PASSED] drm_test_cmdline_res_vesa_margins [09:31:48] [PASSED] drm_test_cmdline_name [09:31:48] [PASSED] drm_test_cmdline_name_bpp [09:31:48] [PASSED] drm_test_cmdline_name_option [09:31:48] [PASSED] drm_test_cmdline_name_bpp_option [09:31:48] [PASSED] drm_test_cmdline_rotate_0 [09:31:48] [PASSED] drm_test_cmdline_rotate_90 [09:31:48] [PASSED] drm_test_cmdline_rotate_180 [09:31:48] [PASSED] drm_test_cmdline_rotate_270 [09:31:48] [PASSED] drm_test_cmdline_hmirror [09:31:48] [PASSED] drm_test_cmdline_vmirror [09:31:48] [PASSED] drm_test_cmdline_margin_options [09:31:48] [PASSED] drm_test_cmdline_multiple_options [09:31:48] [PASSED] drm_test_cmdline_bpp_extra_and_option [09:31:48] [PASSED] drm_test_cmdline_extra_and_option [09:31:48] [PASSED] drm_test_cmdline_freestanding_options [09:31:48] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [09:31:48] [PASSED] drm_test_cmdline_panel_orientation [09:31:48] ================ drm_test_cmdline_invalid ================= [09:31:48] [PASSED] margin_only [09:31:48] [PASSED] interlace_only [09:31:48] [PASSED] res_missing_x [09:31:48] [PASSED] res_missing_y [09:31:48] [PASSED] res_bad_y [09:31:48] [PASSED] res_missing_y_bpp [09:31:48] [PASSED] res_bad_bpp [09:31:48] [PASSED] res_bad_refresh [09:31:48] [PASSED] res_bpp_refresh_force_on_off [09:31:48] [PASSED] res_invalid_mode [09:31:48] [PASSED] res_bpp_wrong_place_mode [09:31:48] [PASSED] name_bpp_refresh [09:31:48] [PASSED] name_refresh [09:31:48] [PASSED] name_refresh_wrong_mode [09:31:48] [PASSED] name_refresh_invalid_mode [09:31:48] [PASSED] rotate_multiple [09:31:48] [PASSED] rotate_invalid_val [09:31:48] [PASSED] rotate_truncated [09:31:48] [PASSED] invalid_option [09:31:48] [PASSED] invalid_tv_option [09:31:48] [PASSED] truncated_tv_option [09:31:48] ============ [PASSED] drm_test_cmdline_invalid ============= [09:31:48] =============== drm_test_cmdline_tv_options =============== [09:31:48] [PASSED] NTSC [09:31:48] [PASSED] NTSC_443 [09:31:48] [PASSED] NTSC_J [09:31:48] [PASSED] PAL [09:31:48] [PASSED] PAL_M [09:31:48] [PASSED] PAL_N [09:31:48] [PASSED] SECAM [09:31:48] [PASSED] MONO_525 [09:31:48] [PASSED] MONO_625 [09:31:48] =========== [PASSED] drm_test_cmdline_tv_options =========== [09:31:48] =============== [PASSED] drm_cmdline_parser ================ [09:31:48] ========== drmm_connector_hdmi_init (20 subtests) ========== [09:31:48] [PASSED] drm_test_connector_hdmi_init_valid [09:31:48] [PASSED] drm_test_connector_hdmi_init_bpc_8 [09:31:48] [PASSED] drm_test_connector_hdmi_init_bpc_10 [09:31:48] [PASSED] drm_test_connector_hdmi_init_bpc_12 [09:31:48] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [09:31:48] [PASSED] drm_test_connector_hdmi_init_bpc_null [09:31:48] [PASSED] drm_test_connector_hdmi_init_formats_empty [09:31:48] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [09:31:48] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [09:31:48] [PASSED] supported_formats=0x9 yuv420_allowed=1 [09:31:48] [PASSED] supported_formats=0x9 yuv420_allowed=0 [09:31:48] [PASSED] supported_formats=0x5 yuv420_allowed=1 [09:31:48] [PASSED] supported_formats=0x5 yuv420_allowed=0 [09:31:48] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [09:31:48] [PASSED] drm_test_connector_hdmi_init_null_ddc [09:31:48] [PASSED] drm_test_connector_hdmi_init_null_product [09:31:48] [PASSED] drm_test_connector_hdmi_init_null_vendor [09:31:48] [PASSED] drm_test_connector_hdmi_init_product_length_exact [09:31:48] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [09:31:48] [PASSED] drm_test_connector_hdmi_init_product_valid [09:31:48] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [09:31:48] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [09:31:48] [PASSED] drm_test_connector_hdmi_init_vendor_valid [09:31:48] ========= drm_test_connector_hdmi_init_type_valid ========= [09:31:48] [PASSED] HDMI-A [09:31:48] [PASSED] HDMI-B [09:31:48] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [09:31:48] ======== drm_test_connector_hdmi_init_type_invalid ======== [09:31:48] [PASSED] Unknown [09:31:48] [PASSED] VGA [09:31:48] [PASSED] DVI-I [09:31:48] [PASSED] DVI-D [09:31:48] [PASSED] DVI-A [09:31:48] [PASSED] Composite [09:31:48] [PASSED] SVIDEO [09:31:48] [PASSED] LVDS [09:31:48] [PASSED] Component [09:31:48] [PASSED] DIN [09:31:48] [PASSED] DP [09:31:48] [PASSED] TV [09:31:48] [PASSED] eDP [09:31:48] [PASSED] Virtual [09:31:48] [PASSED] DSI [09:31:48] [PASSED] DPI [09:31:48] [PASSED] Writeback [09:31:48] [PASSED] SPI [09:31:48] [PASSED] USB [09:31:48] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [09:31:48] ============ [PASSED] drmm_connector_hdmi_init ============= [09:31:48] ============= drmm_connector_init (3 subtests) ============= [09:31:48] [PASSED] drm_test_drmm_connector_init [09:31:48] [PASSED] drm_test_drmm_connector_init_null_ddc [09:31:48] ========= drm_test_drmm_connector_init_type_valid ========= [09:31:48] [PASSED] Unknown [09:31:48] [PASSED] VGA [09:31:48] [PASSED] DVI-I [09:31:48] [PASSED] DVI-D [09:31:48] [PASSED] DVI-A [09:31:48] [PASSED] Composite [09:31:48] [PASSED] SVIDEO [09:31:48] [PASSED] LVDS [09:31:48] [PASSED] Component [09:31:48] [PASSED] DIN [09:31:48] [PASSED] DP [09:31:48] [PASSED] HDMI-A [09:31:48] [PASSED] HDMI-B [09:31:48] [PASSED] TV [09:31:48] [PASSED] eDP [09:31:48] [PASSED] Virtual [09:31:48] [PASSED] DSI [09:31:48] [PASSED] DPI [09:31:48] [PASSED] Writeback [09:31:48] [PASSED] SPI [09:31:48] [PASSED] USB [09:31:48] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [09:31:48] =============== [PASSED] drmm_connector_init =============== [09:31:48] ========= drm_connector_dynamic_init (6 subtests) ========== [09:31:48] [PASSED] drm_test_drm_connector_dynamic_init [09:31:48] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [09:31:48] [PASSED] drm_test_drm_connector_dynamic_init_not_added [09:31:48] [PASSED] drm_test_drm_connector_dynamic_init_properties [09:31:48] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [09:31:48] [PASSED] Unknown [09:31:48] [PASSED] VGA [09:31:48] [PASSED] DVI-I [09:31:48] [PASSED] DVI-D [09:31:48] [PASSED] DVI-A [09:31:48] [PASSED] Composite [09:31:48] [PASSED] SVIDEO [09:31:48] [PASSED] LVDS [09:31:48] [PASSED] Component [09:31:48] [PASSED] DIN [09:31:48] [PASSED] DP [09:31:48] [PASSED] HDMI-A [09:31:48] [PASSED] HDMI-B [09:31:48] [PASSED] TV [09:31:48] [PASSED] eDP [09:31:48] [PASSED] Virtual [09:31:48] [PASSED] DSI [09:31:48] [PASSED] DPI [09:31:48] [PASSED] Writeback [09:31:48] [PASSED] SPI [09:31:48] [PASSED] USB [09:31:48] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [09:31:48] ======== drm_test_drm_connector_dynamic_init_name ========= [09:31:48] [PASSED] Unknown [09:31:48] [PASSED] VGA [09:31:48] [PASSED] DVI-I [09:31:48] [PASSED] DVI-D [09:31:48] [PASSED] DVI-A [09:31:48] [PASSED] Composite [09:31:48] [PASSED] SVIDEO [09:31:48] [PASSED] LVDS [09:31:48] [PASSED] Component [09:31:48] [PASSED] DIN [09:31:48] [PASSED] DP [09:31:48] [PASSED] HDMI-A [09:31:48] [PASSED] HDMI-B [09:31:48] [PASSED] TV [09:31:48] [PASSED] eDP [09:31:48] [PASSED] Virtual [09:31:48] [PASSED] DSI [09:31:48] [PASSED] DPI [09:31:48] [PASSED] Writeback [09:31:48] [PASSED] SPI [09:31:48] [PASSED] USB [09:31:48] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [09:31:48] =========== [PASSED] drm_connector_dynamic_init ============ [09:31:48] ==== drm_connector_dynamic_register_early (4 subtests) ===== [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [09:31:48] ====== [PASSED] drm_connector_dynamic_register_early ======= [09:31:48] ======= drm_connector_dynamic_register (7 subtests) ======== [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_on_list [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_no_init [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [09:31:48] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [09:31:48] ========= [PASSED] drm_connector_dynamic_register ========== [09:31:48] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [09:31:48] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [09:31:48] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [09:31:48] === [PASSED] drm_connector_attach_broadcast_rgb_property === [09:31:48] ========== drm_get_tv_mode_from_name (2 subtests) ========== [09:31:48] ========== drm_test_get_tv_mode_from_name_valid =========== [09:31:48] [PASSED] NTSC [09:31:48] [PASSED] NTSC-443 [09:31:48] [PASSED] NTSC-J [09:31:48] [PASSED] PAL [09:31:48] [PASSED] PAL-M [09:31:48] [PASSED] PAL-N [09:31:48] [PASSED] SECAM [09:31:48] [PASSED] Mono [09:31:48] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [09:31:48] [PASSED] drm_test_get_tv_mode_from_name_truncated [09:31:48] ============ [PASSED] drm_get_tv_mode_from_name ============ [09:31:48] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [09:31:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [09:31:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [09:31:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [09:31:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [09:31:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [09:31:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [09:31:48] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [09:31:48] [PASSED] VIC 96 [09:31:48] [PASSED] VIC 97 [09:31:48] [PASSED] VIC 101 [09:31:48] [PASSED] VIC 102 [09:31:48] [PASSED] VIC 106 [09:31:48] [PASSED] VIC 107 [09:31:48] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [09:31:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [09:31:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [09:31:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [09:31:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [09:31:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [09:31:48] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [09:31:48] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [09:31:48] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [09:31:48] [PASSED] Automatic [09:31:48] [PASSED] Full [09:31:48] [PASSED] Limited 16:235 [09:31:48] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [09:31:48] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [09:31:48] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [09:31:48] == drm_hdmi_connector_get_output_format_name (2 subtests) == [09:31:48] === drm_test_drm_hdmi_connector_get_output_format_name ==== [09:31:48] [PASSED] RGB [09:31:48] [PASSED] YUV 4:2:0 [09:31:48] [PASSED] YUV 4:2:2 [09:31:48] [PASSED] YUV 4:4:4 [09:31:48] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [09:31:48] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [09:31:48] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [09:31:48] ============= drm_damage_helper (21 subtests) ============== [09:31:48] [PASSED] drm_test_damage_iter_no_damage [09:31:48] [PASSED] drm_test_damage_iter_no_damage_fractional_src [09:31:48] [PASSED] drm_test_damage_iter_no_damage_src_moved [09:31:48] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [09:31:48] [PASSED] drm_test_damage_iter_no_damage_not_visible [09:31:48] [PASSED] drm_test_damage_iter_no_damage_no_crtc [09:31:48] [PASSED] drm_test_damage_iter_no_damage_no_fb [09:31:48] [PASSED] drm_test_damage_iter_simple_damage [09:31:48] [PASSED] drm_test_damage_iter_single_damage [09:31:48] [PASSED] drm_test_damage_iter_single_damage_intersect_src [09:31:48] [PASSED] drm_test_damage_iter_single_damage_outside_src [09:31:48] [PASSED] drm_test_damage_iter_single_damage_fractional_src [09:31:48] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [09:31:48] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [09:31:48] [PASSED] drm_test_damage_iter_single_damage_src_moved [09:31:48] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [09:31:48] [PASSED] drm_test_damage_iter_damage [09:31:48] [PASSED] drm_test_damage_iter_damage_one_intersect [09:31:48] [PASSED] drm_test_damage_iter_damage_one_outside [09:31:48] [PASSED] drm_test_damage_iter_damage_src_moved [09:31:48] [PASSED] drm_test_damage_iter_damage_not_visible [09:31:48] ================ [PASSED] drm_damage_helper ================ [09:31:48] ============== drm_dp_mst_helper (3 subtests) ============== [09:31:48] ============== drm_test_dp_mst_calc_pbn_mode ============== [09:31:48] [PASSED] Clock 154000 BPP 30 DSC disabled [09:31:48] [PASSED] Clock 234000 BPP 30 DSC disabled [09:31:48] [PASSED] Clock 297000 BPP 24 DSC disabled [09:31:48] [PASSED] Clock 332880 BPP 24 DSC enabled [09:31:48] [PASSED] Clock 324540 BPP 24 DSC enabled [09:31:48] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [09:31:48] ============== drm_test_dp_mst_calc_pbn_div =============== [09:31:48] [PASSED] Link rate 2000000 lane count 4 [09:31:48] [PASSED] Link rate 2000000 lane count 2 [09:31:48] [PASSED] Link rate 2000000 lane count 1 [09:31:48] [PASSED] Link rate 1350000 lane count 4 [09:31:48] [PASSED] Link rate 1350000 lane count 2 [09:31:48] [PASSED] Link rate 1350000 lane count 1 [09:31:48] [PASSED] Link rate 1000000 lane count 4 [09:31:48] [PASSED] Link rate 1000000 lane count 2 [09:31:48] [PASSED] Link rate 1000000 lane count 1 [09:31:48] [PASSED] Link rate 810000 lane count 4 [09:31:48] [PASSED] Link rate 810000 lane count 2 [09:31:48] [PASSED] Link rate 810000 lane count 1 [09:31:48] [PASSED] Link rate 540000 lane count 4 [09:31:48] [PASSED] Link rate 540000 lane count 2 [09:31:48] [PASSED] Link rate 540000 lane count 1 [09:31:48] [PASSED] Link rate 270000 lane count 4 [09:31:48] [PASSED] Link rate 270000 lane count 2 [09:31:48] [PASSED] Link rate 270000 lane count 1 [09:31:48] [PASSED] Link rate 162000 lane count 4 [09:31:48] [PASSED] Link rate 162000 lane count 2 [09:31:48] [PASSED] Link rate 162000 lane count 1 [09:31:48] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [09:31:48] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [09:31:48] [PASSED] DP_ENUM_PATH_RESOURCES with port number [09:31:48] [PASSED] DP_POWER_UP_PHY with port number [09:31:48] [PASSED] DP_POWER_DOWN_PHY with port number [09:31:48] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [09:31:48] [PASSED] DP_ALLOCATE_PAYLOAD with port number [09:31:48] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [09:31:48] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [09:31:48] [PASSED] DP_QUERY_PAYLOAD with port number [09:31:48] [PASSED] DP_QUERY_PAYLOAD with VCPI [09:31:48] [PASSED] DP_REMOTE_DPCD_READ with port number [09:31:48] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [09:31:48] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [09:31:48] [PASSED] DP_REMOTE_DPCD_WRITE with port number [09:31:48] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [09:31:48] [PASSED] DP_REMOTE_DPCD_WRITE with data array [09:31:48] [PASSED] DP_REMOTE_I2C_READ with port number [09:31:48] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [09:31:48] [PASSED] DP_REMOTE_I2C_READ with transactions array [09:31:48] [PASSED] DP_REMOTE_I2C_WRITE with port number [09:31:48] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [09:31:48] [PASSED] DP_REMOTE_I2C_WRITE with data array [09:31:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [09:31:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [09:31:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [09:31:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [09:31:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [09:31:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [09:31:48] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [09:31:48] ================ [PASSED] drm_dp_mst_helper ================ [09:31:48] ================== drm_exec (7 subtests) =================== [09:31:48] [PASSED] sanitycheck [09:31:48] [PASSED] test_lock [09:31:48] [PASSED] test_lock_unlock [09:31:48] [PASSED] test_duplicates [09:31:48] [PASSED] test_prepare [09:31:48] [PASSED] test_prepare_array [09:31:48] [PASSED] test_multiple_loops [09:31:48] ==================== [PASSED] drm_exec ===================== [09:31:48] =========== drm_format_helper_test (17 subtests) =========== [09:31:48] ============== drm_test_fb_xrgb8888_to_gray8 ============== [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [09:31:48] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [09:31:48] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [09:31:48] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [09:31:48] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [09:31:48] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [09:31:48] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [09:31:48] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [09:31:48] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [09:31:48] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [09:31:48] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [09:31:48] ============== drm_test_fb_xrgb8888_to_mono =============== [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [09:31:48] ==================== drm_test_fb_swab ===================== [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ================ [PASSED] drm_test_fb_swab ================= [09:31:48] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [09:31:48] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [09:31:48] [PASSED] single_pixel_source_buffer [09:31:48] [PASSED] single_pixel_clip_rectangle [09:31:48] [PASSED] well_known_colors [09:31:48] [PASSED] destination_pitch [09:31:48] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [09:31:48] ================= drm_test_fb_clip_offset ================= [09:31:48] [PASSED] pass through [09:31:48] [PASSED] horizontal offset [09:31:48] [PASSED] vertical offset [09:31:48] [PASSED] horizontal and vertical offset [09:31:48] [PASSED] horizontal offset (custom pitch) [09:31:48] [PASSED] vertical offset (custom pitch) [09:31:48] [PASSED] horizontal and vertical offset (custom pitch) [09:31:48] ============= [PASSED] drm_test_fb_clip_offset ============= [09:31:48] =================== drm_test_fb_memcpy ==================== [09:31:48] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [09:31:48] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [09:31:48] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [09:31:48] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [09:31:48] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [09:31:48] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [09:31:48] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [09:31:48] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [09:31:48] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [09:31:48] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [09:31:48] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [09:31:48] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [09:31:48] =============== [PASSED] drm_test_fb_memcpy ================ [09:31:48] ============= [PASSED] drm_format_helper_test ============== [09:31:48] ================= drm_format (18 subtests) ================= [09:31:48] [PASSED] drm_test_format_block_width_invalid [09:31:48] [PASSED] drm_test_format_block_width_one_plane [09:31:48] [PASSED] drm_test_format_block_width_two_plane [09:31:48] [PASSED] drm_test_format_block_width_three_plane [09:31:48] [PASSED] drm_test_format_block_width_tiled [09:31:48] [PASSED] drm_test_format_block_height_invalid [09:31:48] [PASSED] drm_test_format_block_height_one_plane [09:31:48] [PASSED] drm_test_format_block_height_two_plane [09:31:48] [PASSED] drm_test_format_block_height_three_plane [09:31:48] [PASSED] drm_test_format_block_height_tiled [09:31:48] [PASSED] drm_test_format_min_pitch_invalid [09:31:48] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [09:31:48] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [09:31:48] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [09:31:48] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [09:31:48] [PASSED] drm_test_format_min_pitch_two_plane [09:31:48] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [09:31:48] [PASSED] drm_test_format_min_pitch_tiled [09:31:48] =================== [PASSED] drm_format ==================== [09:31:48] ============== drm_framebuffer (10 subtests) =============== [09:31:48] ========== drm_test_framebuffer_check_src_coords ========== [09:31:48] [PASSED] Success: source fits into fb [09:31:48] [PASSED] Fail: overflowing fb with x-axis coordinate [09:31:48] [PASSED] Fail: overflowing fb with y-axis coordinate [09:31:48] [PASSED] Fail: overflowing fb with source width [09:31:48] [PASSED] Fail: overflowing fb with source height [09:31:48] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [09:31:48] [PASSED] drm_test_framebuffer_cleanup [09:31:48] =============== drm_test_framebuffer_create =============== [09:31:48] [PASSED] ABGR8888 normal sizes [09:31:48] [PASSED] ABGR8888 max sizes [09:31:48] [PASSED] ABGR8888 pitch greater than min required [09:31:48] [PASSED] ABGR8888 pitch less than min required [09:31:48] [PASSED] ABGR8888 Invalid width [09:31:48] [PASSED] ABGR8888 Invalid buffer handle [09:31:48] [PASSED] No pixel format [09:31:48] [PASSED] ABGR8888 Width 0 [09:31:48] [PASSED] ABGR8888 Height 0 [09:31:48] [PASSED] ABGR8888 Out of bound height * pitch combination [09:31:48] [PASSED] ABGR8888 Large buffer offset [09:31:48] [PASSED] ABGR8888 Buffer offset for inexistent plane [09:31:48] [PASSED] ABGR8888 Invalid flag [09:31:48] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [09:31:48] [PASSED] ABGR8888 Valid buffer modifier [09:31:48] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [09:31:48] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [09:31:48] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [09:31:48] [PASSED] NV12 Normal sizes [09:31:48] [PASSED] NV12 Max sizes [09:31:48] [PASSED] NV12 Invalid pitch [09:31:48] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [09:31:48] [PASSED] NV12 different modifier per-plane [09:31:48] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [09:31:48] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [09:31:48] [PASSED] NV12 Modifier for inexistent plane [09:31:48] [PASSED] NV12 Handle for inexistent plane [09:31:48] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [09:31:48] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [09:31:48] [PASSED] YVU420 Normal sizes [09:31:48] [PASSED] YVU420 Max sizes [09:31:48] [PASSED] YVU420 Invalid pitch [09:31:48] [PASSED] YVU420 Different pitches [09:31:48] [PASSED] YVU420 Different buffer offsets/pitches [09:31:48] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [09:31:48] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [09:31:48] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [09:31:48] [PASSED] YVU420 Valid modifier [09:31:48] [PASSED] YVU420 Different modifiers per plane [09:31:48] [PASSED] YVU420 Modifier for inexistent plane [09:31:48] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [09:31:48] [PASSED] X0L2 Normal sizes [09:31:48] [PASSED] X0L2 Max sizes [09:31:48] [PASSED] X0L2 Invalid pitch [09:31:48] [PASSED] X0L2 Pitch greater than minimum required [09:31:48] [PASSED] X0L2 Handle for inexistent plane [09:31:48] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [09:31:48] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [09:31:48] [PASSED] X0L2 Valid modifier [09:31:48] [PASSED] X0L2 Modifier for inexistent plane [09:31:48] =========== [PASSED] drm_test_framebuffer_create =========== [09:31:48] [PASSED] drm_test_framebuffer_free [09:31:48] [PASSED] drm_test_framebuffer_init [09:31:48] [PASSED] drm_test_framebuffer_init_bad_format [09:31:48] [PASSED] drm_test_framebuffer_init_dev_mismatch [09:31:48] [PASSED] drm_test_framebuffer_lookup [09:31:48] [PASSED] drm_test_framebuffer_lookup_inexistent [09:31:48] [PASSED] drm_test_framebuffer_modifiers_not_supported [09:31:48] ================= [PASSED] drm_framebuffer ================= [09:31:48] ================ drm_gem_shmem (8 subtests) ================ [09:31:48] [PASSED] drm_gem_shmem_test_obj_create [09:31:48] [PASSED] drm_gem_shmem_test_obj_create_private [09:31:48] [PASSED] drm_gem_shmem_test_pin_pages [09:31:48] [PASSED] drm_gem_shmem_test_vmap [09:31:48] [PASSED] drm_gem_shmem_test_get_sg_table [09:31:48] [PASSED] drm_gem_shmem_test_get_pages_sgt [09:31:48] [PASSED] drm_gem_shmem_test_madvise [09:31:48] [PASSED] drm_gem_shmem_test_purge [09:31:48] ================== [PASSED] drm_gem_shmem ================== [09:31:48] === drm_atomic_helper_connector_hdmi_check (29 subtests) === [09:31:48] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [09:31:48] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [09:31:48] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [09:31:48] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [09:31:48] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [09:31:48] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [09:31:48] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [09:31:48] [PASSED] Automatic [09:31:48] [PASSED] Full [09:31:48] [PASSED] Limited 16:235 [09:31:48] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [09:31:48] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [09:31:48] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [09:31:48] [PASSED] drm_test_check_disable_connector [09:31:48] [PASSED] drm_test_check_hdmi_funcs_reject_rate [09:31:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [09:31:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [09:31:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [09:31:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [09:31:48] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [09:31:48] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [09:31:48] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [09:31:48] [PASSED] drm_test_check_output_bpc_dvi [09:31:48] [PASSED] drm_test_check_output_bpc_format_vic_1 [09:31:48] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [09:31:48] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [09:31:48] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [09:31:48] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [09:31:48] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [09:31:48] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [09:31:48] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [09:31:48] ============ drm_test_check_hdmi_color_format ============= [09:31:48] [PASSED] AUTO -> RGB [09:31:48] [PASSED] YCBCR422 -> YUV422 [09:31:48] [PASSED] YCBCR420 -> YUV420 [09:31:48] [PASSED] YCBCR444 -> YUV444 [09:31:48] [PASSED] RGB -> RGB [09:31:48] ======== [PASSED] drm_test_check_hdmi_color_format ========= [09:31:48] ======== drm_test_check_hdmi_color_format_420_only ======== [09:31:48] [PASSED] RGB should fail [09:31:49] [PASSED] YUV444 should fail [09:31:49] [PASSED] YUV422 should fail [09:31:49] [PASSED] YUV420 should work [09:31:49] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ==== [09:31:49] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [09:31:49] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [09:31:49] [PASSED] drm_test_check_broadcast_rgb_value [09:31:49] [PASSED] drm_test_check_bpc_8_value [09:31:49] [PASSED] drm_test_check_bpc_10_value [09:31:49] [PASSED] drm_test_check_bpc_12_value [09:31:49] [PASSED] drm_test_check_format_value [09:31:49] [PASSED] drm_test_check_tmds_char_value [09:31:49] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [09:31:49] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) = [09:31:49] [PASSED] drm_test_check_mode_valid [09:31:49] [PASSED] drm_test_check_mode_valid_reject [09:31:49] [PASSED] drm_test_check_mode_valid_reject_rate [09:31:49] [PASSED] drm_test_check_mode_valid_reject_max_clock [09:31:49] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock [09:31:49] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector [09:31:49] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb [09:31:49] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [09:31:49] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) = [09:31:49] [PASSED] drm_test_check_infoframes [09:31:49] [PASSED] drm_test_check_reject_avi_infoframe [09:31:49] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8 [09:31:49] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10 [09:31:49] [PASSED] drm_test_check_reject_audio_infoframe [09:31:49] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes === [09:31:49] ================= drm_managed (2 subtests) ================= [09:31:49] [PASSED] drm_test_managed_release_action [09:31:49] [PASSED] drm_test_managed_run_action [09:31:49] =================== [PASSED] drm_managed =================== [09:31:49] =================== drm_mm (6 subtests) ==================== [09:31:49] [PASSED] drm_test_mm_init [09:31:49] [PASSED] drm_test_mm_debug [09:31:49] [PASSED] drm_test_mm_align32 [09:31:49] [PASSED] drm_test_mm_align64 [09:31:49] [PASSED] drm_test_mm_lowest [09:31:49] [PASSED] drm_test_mm_highest [09:31:49] ===================== [PASSED] drm_mm ====================== [09:31:49] ============= drm_modes_analog_tv (5 subtests) ============= [09:31:49] [PASSED] drm_test_modes_analog_tv_mono_576i [09:31:49] [PASSED] drm_test_modes_analog_tv_ntsc_480i [09:31:49] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [09:31:49] [PASSED] drm_test_modes_analog_tv_pal_576i [09:31:49] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [09:31:49] =============== [PASSED] drm_modes_analog_tv =============== [09:31:49] ============== drm_plane_helper (2 subtests) =============== [09:31:49] =============== drm_test_check_plane_state ================ [09:31:49] [PASSED] clipping_simple [09:31:49] [PASSED] clipping_rotate_reflect [09:31:49] [PASSED] positioning_simple [09:31:49] [PASSED] upscaling [09:31:49] [PASSED] downscaling [09:31:49] [PASSED] rounding1 [09:31:49] [PASSED] rounding2 [09:31:49] [PASSED] rounding3 [09:31:49] [PASSED] rounding4 [09:31:49] =========== [PASSED] drm_test_check_plane_state ============ [09:31:49] =========== drm_test_check_invalid_plane_state ============ [09:31:49] [PASSED] positioning_invalid [09:31:49] [PASSED] upscaling_invalid [09:31:49] [PASSED] downscaling_invalid [09:31:49] ======= [PASSED] drm_test_check_invalid_plane_state ======== [09:31:49] ================ [PASSED] drm_plane_helper ================= [09:31:49] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [09:31:49] ====== drm_test_connector_helper_tv_get_modes_check ======= [09:31:49] [PASSED] None [09:31:49] [PASSED] PAL [09:31:49] [PASSED] NTSC [09:31:49] [PASSED] Both, NTSC Default [09:31:49] [PASSED] Both, PAL Default [09:31:49] [PASSED] Both, NTSC Default, with PAL on command-line [09:31:49] [PASSED] Both, PAL Default, with NTSC on command-line [09:31:49] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [09:31:49] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [09:31:49] ================== drm_rect (9 subtests) =================== [09:31:49] [PASSED] drm_test_rect_clip_scaled_div_by_zero [09:31:49] [PASSED] drm_test_rect_clip_scaled_not_clipped [09:31:49] [PASSED] drm_test_rect_clip_scaled_clipped [09:31:49] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [09:31:49] ================= drm_test_rect_intersect ================= [09:31:49] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [09:31:49] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [09:31:49] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [09:31:49] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [09:31:49] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [09:31:49] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [09:31:49] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [09:31:49] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [09:31:49] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [09:31:49] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [09:31:49] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [09:31:49] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [09:31:49] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [09:31:49] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [09:31:49] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [09:31:49] ============= [PASSED] drm_test_rect_intersect ============= [09:31:49] ================ drm_test_rect_calc_hscale ================ [09:31:49] [PASSED] normal use [09:31:49] [PASSED] out of max range [09:31:49] [PASSED] out of min range [09:31:49] [PASSED] zero dst [09:31:49] [PASSED] negative src [09:31:49] [PASSED] negative dst [09:31:49] ============ [PASSED] drm_test_rect_calc_hscale ============ [09:31:49] ================ drm_test_rect_calc_vscale ================ [09:31:49] [PASSED] normal use [09:31:49] [PASSED] out of max range [09:31:49] [PASSED] out of min range [09:31:49] [PASSED] zero dst [09:31:49] [PASSED] negative src [09:31:49] [PASSED] negative dst [09:31:49] ============ [PASSED] drm_test_rect_calc_vscale ============ [09:31:49] ================== drm_test_rect_rotate =================== [09:31:49] [PASSED] reflect-x [09:31:49] [PASSED] reflect-y [09:31:49] [PASSED] rotate-0 [09:31:49] [PASSED] rotate-90 [09:31:49] [PASSED] rotate-180 [09:31:49] [PASSED] rotate-270 [09:31:49] ============== [PASSED] drm_test_rect_rotate =============== [09:31:49] ================ drm_test_rect_rotate_inv ================= [09:31:49] [PASSED] reflect-x [09:31:49] [PASSED] reflect-y [09:31:49] [PASSED] rotate-0 [09:31:49] [PASSED] rotate-90 [09:31:49] [PASSED] rotate-180 [09:31:49] [PASSED] rotate-270 [09:31:49] ============ [PASSED] drm_test_rect_rotate_inv ============= [09:31:49] ==================== [PASSED] drm_rect ===================== [09:31:49] ============ drm_sysfb_modeset_test (1 subtest) ============ [09:31:49] ============ drm_test_sysfb_build_fourcc_list ============= [09:31:49] [PASSED] no native formats [09:31:49] [PASSED] XRGB8888 as native format [09:31:49] [PASSED] remove duplicates [09:31:49] [PASSED] convert alpha formats [09:31:49] [PASSED] random formats [09:31:49] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [09:31:49] ============= [PASSED] drm_sysfb_modeset_test ============== [09:31:49] ================== drm_fixp (2 subtests) =================== [09:31:49] [PASSED] drm_test_int2fixp [09:31:49] [PASSED] drm_test_sm2fixp [09:31:49] ==================== [PASSED] drm_fixp ===================== [09:31:49] ============================================================ [09:31:49] Testing complete. Ran 639 tests: passed: 639 [09:31:49] Elapsed time: 58.056s total, 4.534s configuring, 53.102s building, 0.364s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [09:31:49] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [09:31:54] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25 [09:32:13] Starting KUnit Kernel (1/1)... [09:32:13] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [09:32:13] ================= ttm_device (5 subtests) ================== [09:32:13] [PASSED] ttm_device_init_basic [09:32:13] [PASSED] ttm_device_init_multiple [09:32:13] [PASSED] ttm_device_fini_basic [09:32:13] [PASSED] ttm_device_init_no_vma_man [09:32:13] ================== ttm_device_init_pools ================== [09:32:13] [PASSED] No DMA allocations, no DMA32 required [09:32:13] [PASSED] DMA allocations, DMA32 required [09:32:13] [PASSED] No DMA allocations, DMA32 required [09:32:13] [PASSED] DMA allocations, no DMA32 required [09:32:13] ============== [PASSED] ttm_device_init_pools ============== [09:32:13] =================== [PASSED] ttm_device ==================== [09:32:13] ================== ttm_pool (8 subtests) =================== [09:32:13] ================== ttm_pool_alloc_basic =================== [09:32:13] [PASSED] One page [09:32:13] [PASSED] More than one page [09:32:13] [PASSED] Above the allocation limit [09:32:13] [PASSED] One page, with coherent DMA mappings enabled [09:32:13] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [09:32:13] ============== [PASSED] ttm_pool_alloc_basic =============== [09:32:13] ============== ttm_pool_alloc_basic_dma_addr ============== [09:32:13] [PASSED] One page [09:32:13] [PASSED] More than one page [09:32:13] [PASSED] Above the allocation limit [09:32:13] [PASSED] One page, with coherent DMA mappings enabled [09:32:13] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [09:32:13] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [09:32:13] [PASSED] ttm_pool_alloc_order_caching_match [09:32:13] [PASSED] ttm_pool_alloc_caching_mismatch [09:32:13] [PASSED] ttm_pool_alloc_order_mismatch [09:32:13] [PASSED] ttm_pool_free_dma_alloc [09:32:13] [PASSED] ttm_pool_free_no_dma_alloc [09:32:13] [PASSED] ttm_pool_fini_basic [09:32:13] ==================== [PASSED] ttm_pool ===================== [09:32:13] ================ ttm_resource (8 subtests) ================= [09:32:13] ================= ttm_resource_init_basic ================= [09:32:13] [PASSED] Init resource in TTM_PL_SYSTEM [09:32:13] [PASSED] Init resource in TTM_PL_VRAM [09:32:13] [PASSED] Init resource in a private placement [09:32:13] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [09:32:13] ============= [PASSED] ttm_resource_init_basic ============= [09:32:13] [PASSED] ttm_resource_init_pinned [09:32:13] [PASSED] ttm_resource_fini_basic [09:32:13] [PASSED] ttm_resource_manager_init_basic [09:32:13] [PASSED] ttm_resource_manager_usage_basic [09:32:13] [PASSED] ttm_resource_manager_set_used_basic [09:32:13] [PASSED] ttm_sys_man_alloc_basic [09:32:13] [PASSED] ttm_sys_man_free_basic [09:32:13] ================== [PASSED] ttm_resource =================== [09:32:13] =================== ttm_tt (15 subtests) =================== [09:32:13] ==================== ttm_tt_init_basic ==================== [09:32:13] [PASSED] Page-aligned size [09:32:13] [PASSED] Extra pages requested [09:32:13] ================ [PASSED] ttm_tt_init_basic ================ [09:32:13] [PASSED] ttm_tt_init_misaligned [09:32:13] [PASSED] ttm_tt_fini_basic [09:32:13] [PASSED] ttm_tt_fini_sg [09:32:13] [PASSED] ttm_tt_fini_shmem [09:32:13] [PASSED] ttm_tt_create_basic [09:32:13] [PASSED] ttm_tt_create_invalid_bo_type [09:32:13] [PASSED] ttm_tt_create_ttm_exists [09:32:13] [PASSED] ttm_tt_create_failed [09:32:13] [PASSED] ttm_tt_destroy_basic [09:32:13] [PASSED] ttm_tt_populate_null_ttm [09:32:13] [PASSED] ttm_tt_populate_populated_ttm [09:32:13] [PASSED] ttm_tt_unpopulate_basic [09:32:13] [PASSED] ttm_tt_unpopulate_empty_ttm [09:32:13] [PASSED] ttm_tt_swapin_basic [09:32:13] ===================== [PASSED] ttm_tt ====================== [09:32:13] =================== ttm_bo (14 subtests) =================== [09:32:13] =========== ttm_bo_reserve_optimistic_no_ticket =========== [09:32:13] [PASSED] Cannot be interrupted and sleeps [09:32:13] [PASSED] Cannot be interrupted, locks straight away [09:32:13] [PASSED] Can be interrupted, sleeps [09:32:13] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [09:32:13] [PASSED] ttm_bo_reserve_locked_no_sleep [09:32:13] [PASSED] ttm_bo_reserve_no_wait_ticket [09:32:13] [PASSED] ttm_bo_reserve_double_resv [09:32:13] [PASSED] ttm_bo_reserve_interrupted [09:32:13] [PASSED] ttm_bo_reserve_deadlock [09:32:13] [PASSED] ttm_bo_unreserve_basic [09:32:13] [PASSED] ttm_bo_unreserve_pinned [09:32:13] [PASSED] ttm_bo_unreserve_bulk [09:32:13] [PASSED] ttm_bo_fini_basic [09:32:13] [PASSED] ttm_bo_fini_shared_resv [09:32:13] [PASSED] ttm_bo_pin_basic [09:32:13] [PASSED] ttm_bo_pin_unpin_resource [09:32:13] [PASSED] ttm_bo_multiple_pin_one_unpin [09:32:13] ===================== [PASSED] ttm_bo ====================== [09:32:13] ============== ttm_bo_validate (22 subtests) =============== [09:32:13] ============== ttm_bo_init_reserved_sys_man =============== [09:32:13] [PASSED] Buffer object for userspace [09:32:13] [PASSED] Kernel buffer object [09:32:13] [PASSED] Shared buffer object [09:32:13] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [09:32:13] ============== ttm_bo_init_reserved_mock_man ============== [09:32:13] [PASSED] Buffer object for userspace [09:32:13] [PASSED] Kernel buffer object [09:32:13] [PASSED] Shared buffer object [09:32:13] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [09:32:13] [PASSED] ttm_bo_init_reserved_resv [09:32:13] ================== ttm_bo_validate_basic ================== [09:32:13] [PASSED] Buffer object for userspace [09:32:13] [PASSED] Kernel buffer object [09:32:13] [PASSED] Shared buffer object [09:32:13] ============== [PASSED] ttm_bo_validate_basic ============== [09:32:13] [PASSED] ttm_bo_validate_invalid_placement [09:32:13] ============= ttm_bo_validate_same_placement ============== [09:32:13] [PASSED] System manager [09:32:13] [PASSED] VRAM manager [09:32:13] ========= [PASSED] ttm_bo_validate_same_placement ========== [09:32:13] [PASSED] ttm_bo_validate_failed_alloc [09:32:13] [PASSED] ttm_bo_validate_pinned [09:32:13] [PASSED] ttm_bo_validate_busy_placement [09:32:13] ================ ttm_bo_validate_multihop ================= [09:32:13] [PASSED] Buffer object for userspace [09:32:13] [PASSED] Kernel buffer object [09:32:13] [PASSED] Shared buffer object [09:32:13] ============ [PASSED] ttm_bo_validate_multihop ============= [09:32:13] ========== ttm_bo_validate_no_placement_signaled ========== [09:32:13] [PASSED] Buffer object in system domain, no page vector [09:32:13] [PASSED] Buffer object in system domain with an existing page vector [09:32:13] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [09:32:13] ======== ttm_bo_validate_no_placement_not_signaled ======== [09:32:13] [PASSED] Buffer object for userspace [09:32:13] [PASSED] Kernel buffer object [09:32:13] [PASSED] Shared buffer object [09:32:13] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [09:32:13] [PASSED] ttm_bo_validate_move_fence_signaled [09:32:13] ========= ttm_bo_validate_move_fence_not_signaled ========= [09:32:13] [PASSED] Waits for GPU [09:32:13] [PASSED] Tries to lock straight away [09:32:13] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [09:32:13] [PASSED] ttm_bo_validate_swapout [09:32:13] [PASSED] ttm_bo_validate_happy_evict [09:32:13] [PASSED] ttm_bo_validate_all_pinned_evict [09:32:13] [PASSED] ttm_bo_validate_allowed_only_evict [09:32:13] [PASSED] ttm_bo_validate_deleted_evict [09:32:13] [PASSED] ttm_bo_validate_busy_domain_evict [09:32:13] [PASSED] ttm_bo_validate_evict_gutting [09:32:13] [PASSED] ttm_bo_validate_recrusive_evict [09:32:13] ================= [PASSED] ttm_bo_validate ================= [09:32:13] ============================================================ [09:32:13] Testing complete. Ran 102 tests: passed: 102 [09:32:13] Elapsed time: 24.382s total, 4.705s configuring, 19.409s building, 0.232s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/display/psr: PSR2 DC3CO fix 2026-06-30 8:59 [PATCH 0/1] drm/i915/display/psr: PSR2 DC3CO fix Dibin Moolakadan Subrahmanian 2026-06-30 8:59 ` [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame Dibin Moolakadan Subrahmanian 2026-06-30 9:32 ` ✓ CI.KUnit: success for drm/i915/display/psr: PSR2 DC3CO fix Patchwork @ 2026-06-30 10:38 ` Patchwork 2026-06-30 23:23 ` ✓ Xe.CI.FULL: " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-06-30 10:38 UTC (permalink / raw) To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 7415 bytes --] == Series Details == Series: drm/i915/display/psr: PSR2 DC3CO fix URL : https://patchwork.freedesktop.org/series/169491/ State : success == Summary == CI Bug Log - changes from xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5_BAT -> xe-pw-169491v1_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (11 -> 12) ------------------------------ Additional (1): bat-lnl-2 Known issues ------------ Here are the changes found in xe-pw-169491v1_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@write: - bat-lnl-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@fbdev@write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-lnl-2: NOTRUN -> [SKIP][2] ([Intel XE#1466] / [Intel XE#2235]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-lnl-2: NOTRUN -> [SKIP][3] ([Intel XE#2235] / [Intel XE#2482]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-connector-state: - bat-lnl-2: NOTRUN -> [SKIP][4] ([Intel XE#2235] / [Intel XE#352]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@basic: - bat-lnl-2: NOTRUN -> [SKIP][5] ([Intel XE#2235] / [Intel XE#2548] / [Intel XE#7779]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_hdmi_inject@inject-audio: - bat-lnl-2: NOTRUN -> [SKIP][6] ([Intel XE#1470] / [Intel XE#2235] / [Intel XE#2853]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-lnl-2: NOTRUN -> [SKIP][7] ([Intel XE#2235]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_psr@psr-cursor-plane-move: - bat-lnl-2: NOTRUN -> [SKIP][8] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@kms_psr@psr-cursor-plane-move.html * igt@sriov_basic@enable-vfs-autoprobe-on: - bat-lnl-2: NOTRUN -> [SKIP][9] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - bat-lnl-2: NOTRUN -> [SKIP][10] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_exec_balancer@no-exec-virtual-basic: - bat-lnl-2: NOTRUN -> [SKIP][11] ([Intel XE#7482]) +17 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@xe_exec_balancer@no-exec-virtual-basic.html * igt@xe_exec_multi_queue@many-queues-basic-smem: - bat-lnl-2: NOTRUN -> [SKIP][12] ([Intel XE#8364]) +13 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@xe_exec_multi_queue@many-queues-basic-smem.html * igt@xe_live_ktest@xe_bo: - bat-lnl-2: NOTRUN -> [SKIP][13] ([Intel XE#2229]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@xe_live_ktest@xe_bo.html * igt@xe_mmap@vram: - bat-lnl-2: NOTRUN -> [SKIP][14] ([Intel XE#1416]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xehpc: - bat-lnl-2: NOTRUN -> [SKIP][15] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-lnl-2: NOTRUN -> [SKIP][16] ([Intel XE#7590] / [Intel XE#977]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-lnl-2: NOTRUN -> [SKIP][17] ([Intel XE#2236] / [Intel XE#7590] / [Intel XE#979]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_sriov_flr@flr-vf1-clear: - bat-lnl-2: NOTRUN -> [SKIP][18] ([Intel XE#3342]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * Linux: xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5 -> xe-pw-169491v1 IGT_8988: 8988 xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5: fcc3668a0514ade35d650cb3a194e0b81b72cac5 xe-pw-169491v1: 169491v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/index.html [-- Attachment #2: Type: text/html, Size: 8810 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.FULL: success for drm/i915/display/psr: PSR2 DC3CO fix 2026-06-30 8:59 [PATCH 0/1] drm/i915/display/psr: PSR2 DC3CO fix Dibin Moolakadan Subrahmanian ` (2 preceding siblings ...) 2026-06-30 10:38 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-06-30 23:23 ` Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-06-30 23:23 UTC (permalink / raw) To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 24504 bytes --] == Series Details == Series: drm/i915/display/psr: PSR2 DC3CO fix URL : https://patchwork.freedesktop.org/series/169491/ State : success == Summary == CI Bug Log - changes from xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5_FULL -> xe-pw-169491v1_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in xe-pw-169491v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#6819] / [Intel XE#8174]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +4 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#7679]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#367]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-target-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#3432]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2724] / [Intel XE#7449]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7358]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2390] / [Intel XE#6974]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#6974]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#4354] / [Intel XE#7386]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#4156] / [Intel XE#7425]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#6126] / [Intel XE#776]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2372] / [Intel XE#7359]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2373] / [Intel XE#7448]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [PASS][19] -> [FAIL][20] ([Intel XE#301]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7061]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4141]) +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2311]) +24 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2313]) +22 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7283]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6927]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_rpm@package-g7: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#6814] / [Intel XE#7428]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1489]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7795]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2330] / [Intel XE#5813]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6503]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1729] / [Intel XE#7424]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_eudebug_online@set-breakpoint: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7636]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@xe_eudebug_online@set-breakpoint.html * igt@xe_evict@evict-mixed-threads-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#8370]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@xe_evict@evict-mixed-threads-small-multi-queue.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#8374]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#8364]) +14 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html * igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-race-nomemset: - shard-bmg: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#8159]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-bmg-9/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-race-nomemset.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-race-nomemset.html * igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset: - shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#8058]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-lnl-4/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-lnl-7/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#8378]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-rebind.html * igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue: - shard-bmg: [PASS][47] -> [ABORT][48] ([Intel XE#8007]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-bmg-9/igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-1/igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue.html * igt@xe_intel_bb@blit-reloc: - shard-lnl: [PASS][49] -> [ABORT][50] ([Intel XE#8007]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-lnl-3/igt@xe_intel_bb@blit-reloc.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-lnl-4/igt@xe_intel_bb@blit-reloc.html * igt@xe_page_reclaim@random: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7793]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@xe_page_reclaim@random.html * igt@xe_pat@pat-sw-hw-reset-compare: - shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#7695]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@xe_pat@pat-sw-hw-reset-compare.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@xe_pm@d3cold-mocs.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#944]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-6/igt@xe_query@multigpu-query-mem-usage.html #### Possible fixes #### * igt@core_hotunplug@unplug-rescan: - shard-bmg: [ABORT][55] ([Intel XE#8007]) -> [PASS][56] +1 other test pass [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-4/igt@core_hotunplug@unplug-rescan.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [FAIL][57] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-fb-recreate@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][59] ([Intel XE#6266]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate@ad-dp2-hdmi-a3.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate@ad-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][61] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][63] ([Intel XE#301]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html #### Warnings #### * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][65] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][66] ([Intel XE#301]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [INCOMPLETE][67] ([Intel XE#6819] / [Intel XE#8368]) -> [SKIP][68] ([Intel XE#2311]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-indfb-draw-render.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-bmg: [ABORT][69] ([Intel XE#7774]) -> [SKIP][70] ([Intel XE#4141]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-bmg: [SKIP][71] ([Intel XE#6281] / [Intel XE#7426]) -> [ABORT][72] ([Intel XE#8007]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5/shard-bmg-8/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/shard-bmg-7/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126 [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266 [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426 [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8058]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8058 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8174 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8368 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * Linux: xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5 -> xe-pw-169491v1 IGT_8988: 8988 xe-5307-fcc3668a0514ade35d650cb3a194e0b81b72cac5: fcc3668a0514ade35d650cb3a194e0b81b72cac5 xe-pw-169491v1: 169491v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169491v1/index.html [-- Attachment #2: Type: text/html, Size: 27184 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-08-08 1:55 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-30 8:59 [PATCH 0/1] drm/i915/display/psr: PSR2 DC3CO fix Dibin Moolakadan Subrahmanian 2026-06-30 8:59 ` [PATCH 1/1] drm/i915/display/psr: Block DC3CO entry during active frame Dibin Moolakadan Subrahmanian 2026-07-01 5:45 ` Kandpal, Suraj 2026-07-01 6:32 ` Dibin Moolakadan Subrahmanian 2026-08-07 4:20 ` kernel test robot 2026-08-08 1:54 ` kernel test robot 2026-06-30 9:32 ` ✓ CI.KUnit: success for drm/i915/display/psr: PSR2 DC3CO fix Patchwork 2026-06-30 10:38 ` ✓ Xe.CI.BAT: " Patchwork 2026-06-30 23:23 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox