* [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display
@ 2025-02-04 13:42 Jani Nikula
2025-02-04 13:42 ` [PATCH 2/3] drm/i915/cdclk: switch to new platform checks Jani Nikula
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Jani Nikula @ 2025-02-04 13:42 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Going forward, struct intel_display is the main device data structure
for display. Switch to it.
For MISSING_CASE(), log the PCI ID instead of the platform to get rid of
the i915_drv.h dependency.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_ddi_buf_trans.c | 58 +++++++++++--------
1 file changed, 33 insertions(+), 25 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c b/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c
index 9389b295036e..a238be5bc455 100644
--- a/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c
+++ b/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c
@@ -3,13 +3,13 @@
* Copyright © 2020 Intel Corporation
*/
-#include "i915_drv.h"
+#include "i915_utils.h"
+#include "intel_cx0_phy.h"
#include "intel_ddi.h"
#include "intel_ddi_buf_trans.h"
#include "intel_de.h"
#include "intel_display_types.h"
#include "intel_dp.h"
-#include "intel_cx0_phy.h"
/* HDMI/DVI modes ignore everything but the last 2 items. So we share
* them for both DP and FDI transports, allowing those ports to
@@ -1407,10 +1407,10 @@ tgl_get_combo_buf_trans_dp(struct intel_encoder *encoder,
const struct intel_crtc_state *crtc_state,
int *n_entries)
{
- struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
+ struct intel_display *display = to_intel_display(encoder);
if (crtc_state->port_clock > 270000) {
- if (IS_TIGERLAKE_UY(dev_priv)) {
+ if (display->platform.tigerlake_uy) {
return intel_get_buf_trans(&tgl_uy_combo_phy_trans_dp_hbr2,
n_entries);
} else {
@@ -1709,59 +1709,67 @@ mtl_get_c20_buf_trans(struct intel_encoder *encoder,
void intel_ddi_buf_trans_init(struct intel_encoder *encoder)
{
- struct drm_i915_private *i915 = to_i915(encoder->base.dev);
+ struct intel_display *display = to_intel_display(encoder);
- if (DISPLAY_VER(i915) >= 14) {
+ if (DISPLAY_VER(display) >= 14) {
if (intel_encoder_is_c10phy(encoder))
encoder->get_buf_trans = mtl_get_c10_buf_trans;
else
encoder->get_buf_trans = mtl_get_c20_buf_trans;
- } else if (IS_DG2(i915)) {
+ } else if (display->platform.dg2) {
encoder->get_buf_trans = dg2_get_snps_buf_trans;
- } else if (IS_ALDERLAKE_P(i915)) {
+ } else if (display->platform.alderlake_p) {
if (intel_encoder_is_combo(encoder))
encoder->get_buf_trans = adlp_get_combo_buf_trans;
else
encoder->get_buf_trans = adlp_get_dkl_buf_trans;
- } else if (IS_ALDERLAKE_S(i915)) {
+ } else if (display->platform.alderlake_s) {
encoder->get_buf_trans = adls_get_combo_buf_trans;
- } else if (IS_ROCKETLAKE(i915)) {
+ } else if (display->platform.rocketlake) {
encoder->get_buf_trans = rkl_get_combo_buf_trans;
- } else if (IS_DG1(i915)) {
+ } else if (display->platform.dg1) {
encoder->get_buf_trans = dg1_get_combo_buf_trans;
- } else if (DISPLAY_VER(i915) >= 12) {
+ } else if (DISPLAY_VER(display) >= 12) {
if (intel_encoder_is_combo(encoder))
encoder->get_buf_trans = tgl_get_combo_buf_trans;
else
encoder->get_buf_trans = tgl_get_dkl_buf_trans;
- } else if (DISPLAY_VER(i915) == 11) {
- if (IS_JASPERLAKE(i915))
+ } else if (DISPLAY_VER(display) == 11) {
+ if (display->platform.jasperlake)
encoder->get_buf_trans = jsl_get_combo_buf_trans;
- else if (IS_ELKHARTLAKE(i915))
+ else if (display->platform.elkhartlake)
encoder->get_buf_trans = ehl_get_combo_buf_trans;
else if (intel_encoder_is_combo(encoder))
encoder->get_buf_trans = icl_get_combo_buf_trans;
else
encoder->get_buf_trans = icl_get_mg_buf_trans;
- } else if (IS_GEMINILAKE(i915) || IS_BROXTON(i915)) {
+ } else if (display->platform.geminilake || display->platform.broxton) {
encoder->get_buf_trans = bxt_get_buf_trans;
- } else if (IS_COMETLAKE_ULX(i915) || IS_COFFEELAKE_ULX(i915) || IS_KABYLAKE_ULX(i915)) {
+ } else if (display->platform.cometlake_ulx ||
+ display->platform.coffeelake_ulx ||
+ display->platform.kabylake_ulx) {
encoder->get_buf_trans = kbl_y_get_buf_trans;
- } else if (IS_COMETLAKE_ULT(i915) || IS_COFFEELAKE_ULT(i915) || IS_KABYLAKE_ULT(i915)) {
+ } else if (display->platform.cometlake_ult ||
+ display->platform.coffeelake_ult ||
+ display->platform.kabylake_ult) {
encoder->get_buf_trans = kbl_u_get_buf_trans;
- } else if (IS_COMETLAKE(i915) || IS_COFFEELAKE(i915) || IS_KABYLAKE(i915)) {
+ } else if (display->platform.cometlake ||
+ display->platform.coffeelake ||
+ display->platform.kabylake) {
encoder->get_buf_trans = kbl_get_buf_trans;
- } else if (IS_SKYLAKE_ULX(i915)) {
+ } else if (display->platform.skylake_ulx) {
encoder->get_buf_trans = skl_y_get_buf_trans;
- } else if (IS_SKYLAKE_ULT(i915)) {
+ } else if (display->platform.skylake_ult) {
encoder->get_buf_trans = skl_u_get_buf_trans;
- } else if (IS_SKYLAKE(i915)) {
+ } else if (display->platform.skylake) {
encoder->get_buf_trans = skl_get_buf_trans;
- } else if (IS_BROADWELL(i915)) {
+ } else if (display->platform.broadwell) {
encoder->get_buf_trans = bdw_get_buf_trans;
- } else if (IS_HASWELL(i915)) {
+ } else if (display->platform.haswell) {
encoder->get_buf_trans = hsw_get_buf_trans;
} else {
- MISSING_CASE(INTEL_INFO(i915)->platform);
+ struct pci_dev *pdev = to_pci_dev(display->drm->dev);
+
+ MISSING_CASE(pdev->device);
}
}
--
2.39.5
^ permalink raw reply related [flat|nested] 13+ messages in thread* [PATCH 2/3] drm/i915/cdclk: switch to new platform checks 2025-02-04 13:42 [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Jani Nikula @ 2025-02-04 13:42 ` Jani Nikula 2025-02-04 23:06 ` Rodrigo Vivi 2025-02-04 13:42 ` [PATCH 3/3] drm/i915/cx0: convert to struct intel_display based " Jani Nikula ` (5 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Jani Nikula @ 2025-02-04 13:42 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: jani.nikula Switch the IS_<PLATFORM>() checks to display->platform.<platform>, and drop a number of struct drm_i915_private pointers in the process. While at it, replace /* NOOP */; with ; /* NOOP */ to avoid a checkpatch warning on misleading indentation. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_cdclk.c | 159 +++++++++------------ 1 file changed, 68 insertions(+), 91 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c index b520231833b7..753ba3e3a0b7 100644 --- a/drivers/gpu/drm/i915/display/intel_cdclk.c +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c @@ -314,27 +314,26 @@ static unsigned int intel_hpll_vco(struct intel_display *display) [4] = 2666667, [5] = 4266667, }; - struct drm_i915_private *dev_priv = to_i915(display->drm); const unsigned int *vco_table; unsigned int vco; u8 tmp = 0; /* FIXME other chipsets? */ - if (IS_GM45(dev_priv)) + if (display->platform.gm45) vco_table = ctg_vco; - else if (IS_G45(dev_priv)) + else if (display->platform.g45) vco_table = elk_vco; - else if (IS_I965GM(dev_priv)) + else if (display->platform.i965gm) vco_table = cl_vco; - else if (IS_PINEVIEW(dev_priv)) + else if (display->platform.pineview) vco_table = pnv_vco; - else if (IS_G33(dev_priv)) + else if (display->platform.g33) vco_table = blb_vco; else return 0; - tmp = intel_de_read(display, - IS_PINEVIEW(dev_priv) || IS_MOBILE(dev_priv) ? HPLLVCO_MOBILE : HPLLVCO); + tmp = intel_de_read(display, display->platform.pineview || + display->platform.mobile ? HPLLVCO_MOBILE : HPLLVCO); vco = vco_table[tmp & 0x7]; if (vco == 0) @@ -508,7 +507,6 @@ static void gm45_get_cdclk(struct intel_display *display, static void hsw_get_cdclk(struct intel_display *display, struct intel_cdclk_config *cdclk_config) { - struct drm_i915_private *dev_priv = to_i915(display->drm); u32 lcpll = intel_de_read(display, LCPLL_CTL); u32 freq = lcpll & LCPLL_CLK_FREQ_MASK; @@ -518,7 +516,7 @@ static void hsw_get_cdclk(struct intel_display *display, cdclk_config->cdclk = 450000; else if (freq == LCPLL_CLK_FREQ_450) cdclk_config->cdclk = 450000; - else if (IS_HASWELL_ULT(dev_priv)) + else if (display->platform.haswell_ult) cdclk_config->cdclk = 337500; else cdclk_config->cdclk = 540000; @@ -535,7 +533,7 @@ static int vlv_calc_cdclk(struct intel_display *display, int min_cdclk) * Not sure what's wrong. For now use 200MHz only when all pipes * are off. */ - if (IS_VALLEYVIEW(dev_priv) && min_cdclk > freq_320) + if (display->platform.valleyview && min_cdclk > freq_320) return 400000; else if (min_cdclk > 266667) return freq_320; @@ -549,7 +547,7 @@ static u8 vlv_calc_voltage_level(struct intel_display *display, int cdclk) { struct drm_i915_private *dev_priv = to_i915(display->drm); - if (IS_VALLEYVIEW(dev_priv)) { + if (display->platform.valleyview) { if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */ return 2; else if (cdclk >= 266667) @@ -585,7 +583,7 @@ static void vlv_get_cdclk(struct intel_display *display, vlv_iosf_sb_put(dev_priv, BIT(VLV_IOSF_SB_CCK) | BIT(VLV_IOSF_SB_PUNIT)); - if (IS_VALLEYVIEW(dev_priv)) + if (display->platform.valleyview) cdclk_config->voltage_level = (val & DSPFREQGUAR_MASK) >> DSPFREQGUAR_SHIFT; else @@ -598,14 +596,14 @@ static void vlv_program_pfi_credits(struct intel_display *display) struct drm_i915_private *dev_priv = to_i915(display->drm); unsigned int credits, default_credits; - if (IS_CHERRYVIEW(dev_priv)) + if (display->platform.cherryview) default_credits = PFI_CREDIT(12); else default_credits = PFI_CREDIT(8); if (display->cdclk.hw.cdclk >= dev_priv->czclk_freq) { /* CHV suggested value is 31 or 63 */ - if (IS_CHERRYVIEW(dev_priv)) + if (display->platform.cherryview) credits = PFI_CREDIT_63; else credits = PFI_CREDIT(15); @@ -1142,7 +1140,7 @@ static void skl_set_cdclk(struct intel_display *display, * minimum 308MHz CDCLK. */ drm_WARN_ON_ONCE(display->drm, - IS_SKYLAKE(dev_priv) && vco == 8640000); + display->platform.skylake && vco == 8640000); ret = skl_pcode_request(&dev_priv->uncore, SKL_PCODE_CDCLK_CONTROL, SKL_CDCLK_PREPARE_FOR_CHANGE, @@ -1662,10 +1660,9 @@ static void icl_readout_refclk(struct intel_display *display, static void bxt_de_pll_readout(struct intel_display *display, struct intel_cdclk_config *cdclk_config) { - struct drm_i915_private *dev_priv = to_i915(display->drm); u32 val, ratio; - if (IS_DG2(dev_priv)) + if (display->platform.dg2) cdclk_config->ref = 38400; else if (DISPLAY_VER(display) >= 11) icl_readout_refclk(display, cdclk_config); @@ -2057,11 +2054,9 @@ static bool cdclk_compute_crawl_and_squash_midpoint(struct intel_display *displa static bool pll_enable_wa_needed(struct intel_display *display) { - struct drm_i915_private *dev_priv = to_i915(display->drm); - return (DISPLAY_VERx100(display) == 2000 || DISPLAY_VERx100(display) == 1400 || - IS_DG2(dev_priv)) && + display->platform.dg2) && display->cdclk.hw.vco > 0; } @@ -2069,7 +2064,6 @@ static u32 bxt_cdclk_ctl(struct intel_display *display, const struct intel_cdclk_config *cdclk_config, enum pipe pipe) { - struct drm_i915_private *i915 = to_i915(display->drm); int cdclk = cdclk_config->cdclk; int vco = cdclk_config->vco; u16 waveform; @@ -2084,7 +2078,7 @@ static u32 bxt_cdclk_ctl(struct intel_display *display, * Disable SSA Precharge when CD clock frequency < 500 MHz, * enable otherwise. */ - if ((IS_GEMINILAKE(i915) || IS_BROXTON(i915)) && + if ((display->platform.geminilake || display->platform.broxton) && cdclk >= 500000) val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE; @@ -2144,8 +2138,8 @@ static void bxt_set_cdclk(struct intel_display *display, * mailbox communication, skip * this step. */ - if (DISPLAY_VER(display) >= 14 || IS_DG2(dev_priv)) - /* NOOP */; + if (DISPLAY_VER(display) >= 14 || display->platform.dg2) + ; /* NOOP */ else if (DISPLAY_VER(display) >= 11) ret = skl_pcode_request(&dev_priv->uncore, SKL_PCODE_CDCLK_CONTROL, SKL_CDCLK_PREPARE_FOR_CHANGE, @@ -2186,7 +2180,7 @@ static void bxt_set_cdclk(struct intel_display *display, * NOOP - No Pcode communication needed for * Display versions 14 and beyond */; - else if (DISPLAY_VER(display) >= 11 && !IS_DG2(dev_priv)) + else if (DISPLAY_VER(display) >= 11 && !display->platform.dg2) ret = snb_pcode_write(&dev_priv->uncore, SKL_PCODE_CDCLK_CONTROL, cdclk_config->voltage_level); if (DISPLAY_VER(display) < 11) { @@ -2318,9 +2312,7 @@ static void bxt_cdclk_uninit_hw(struct intel_display *display) */ void intel_cdclk_init_hw(struct intel_display *display) { - struct drm_i915_private *i915 = to_i915(display->drm); - - if (DISPLAY_VER(display) >= 10 || IS_BROXTON(i915)) + if (DISPLAY_VER(display) >= 10 || display->platform.broxton) bxt_cdclk_init_hw(display); else if (DISPLAY_VER(display) == 9) skl_cdclk_init_hw(display); @@ -2335,9 +2327,7 @@ void intel_cdclk_init_hw(struct intel_display *display) */ void intel_cdclk_uninit_hw(struct intel_display *display) { - struct drm_i915_private *i915 = to_i915(display->drm); - - if (DISPLAY_VER(display) >= 10 || IS_BROXTON(i915)) + if (DISPLAY_VER(display) >= 10 || display->platform.broxton) bxt_cdclk_uninit_hw(display); else if (DISPLAY_VER(display) == 9) skl_cdclk_uninit_hw(display); @@ -2438,10 +2428,8 @@ static bool intel_cdclk_can_cd2x_update(struct intel_display *display, const struct intel_cdclk_config *a, const struct intel_cdclk_config *b) { - struct drm_i915_private *dev_priv = to_i915(display->drm); - /* Older hw doesn't have the capability */ - if (DISPLAY_VER(display) < 10 && !IS_BROXTON(dev_priv)) + if (DISPLAY_VER(display) < 10 && !display->platform.broxton) return false; /* @@ -2495,7 +2483,7 @@ static void intel_pcode_notify(struct intel_display *display, int ret; u32 update_mask = 0; - if (!IS_DG2(i915)) + if (!display->platform.dg2) return; update_mask = DISPLAY_TO_PCODE_UPDATE_MASK(cdclk, active_pipe_count, voltage_level); @@ -2681,7 +2669,6 @@ void intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state) { struct intel_display *display = to_intel_display(state); - struct drm_i915_private *i915 = to_i915(display->drm); const struct intel_cdclk_state *old_cdclk_state = intel_atomic_get_old_cdclk_state(state); const struct intel_cdclk_state *new_cdclk_state = @@ -2693,7 +2680,7 @@ intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state) &new_cdclk_state->actual)) return; - if (IS_DG2(i915)) + if (display->platform.dg2) intel_cdclk_pcode_pre_notify(state); if (new_cdclk_state->disable_pipes) { @@ -2735,7 +2722,6 @@ void intel_set_cdclk_post_plane_update(struct intel_atomic_state *state) { struct intel_display *display = to_intel_display(state); - struct drm_i915_private *i915 = to_i915(display->drm); const struct intel_cdclk_state *old_cdclk_state = intel_atomic_get_old_cdclk_state(state); const struct intel_cdclk_state *new_cdclk_state = @@ -2746,7 +2732,7 @@ intel_set_cdclk_post_plane_update(struct intel_atomic_state *state) &new_cdclk_state->actual)) return; - if (IS_DG2(i915)) + if (display->platform.dg2) intel_cdclk_pcode_post_notify(state); if (!new_cdclk_state->disable_pipes && @@ -2770,12 +2756,10 @@ static int intel_cdclk_ppc(struct intel_display *display, bool double_wide) /* max pixel rate as % of CDCLK (not accounting for PPC) */ static int intel_cdclk_guardband(struct intel_display *display) { - struct drm_i915_private *dev_priv = to_i915(display->drm); - if (DISPLAY_VER(display) >= 9 || - IS_BROADWELL(dev_priv) || IS_HASWELL(dev_priv)) + display->platform.broadwell || display->platform.haswell) return 100; - else if (IS_CHERRYVIEW(dev_priv)) + else if (display->platform.cherryview) return 95; else return 90; @@ -2878,7 +2862,7 @@ static int intel_compute_min_cdclk(struct intel_atomic_state *state) * by changing the cd2x divider (see glk_cdclk_table[]) and * thus a full modeset won't be needed then. */ - if (IS_GEMINILAKE(dev_priv) && cdclk_state->active_pipes && + if (display->platform.geminilake && cdclk_state->active_pipes && !is_power_of_2(cdclk_state->active_pipes)) min_cdclk = max(min_cdclk, 2 * 96000); @@ -3232,7 +3216,6 @@ static bool intel_cdclk_need_serialize(struct intel_display *display, const struct intel_cdclk_state *old_cdclk_state, const struct intel_cdclk_state *new_cdclk_state) { - struct drm_i915_private *i915 = to_i915(display->drm); bool power_well_cnt_changed = hweight8(old_cdclk_state->active_pipes) != hweight8(new_cdclk_state->active_pipes); bool cdclk_changed = intel_cdclk_changed(&old_cdclk_state->actual, @@ -3241,7 +3224,7 @@ static bool intel_cdclk_need_serialize(struct intel_display *display, * We need to poke hw for gen >= 12, because we notify PCode if * pipe power well count changes. */ - return cdclk_changed || (IS_DG2(i915) && power_well_cnt_changed); + return cdclk_changed || (display->platform.dg2 && power_well_cnt_changed); } int intel_modeset_calc_cdclk(struct intel_atomic_state *state) @@ -3376,11 +3359,9 @@ static int intel_compute_max_dotclk(struct intel_display *display) */ void intel_update_max_cdclk(struct intel_display *display) { - struct drm_i915_private *dev_priv = to_i915(display->drm); - if (DISPLAY_VER(display) >= 30) { display->cdclk.max_cdclk_freq = 691200; - } else if (IS_JASPERLAKE(dev_priv) || IS_ELKHARTLAKE(dev_priv)) { + } else if (display->platform.jasperlake || display->platform.elkhartlake) { if (display->cdclk.hw.ref == 24000) display->cdclk.max_cdclk_freq = 552000; else @@ -3390,9 +3371,9 @@ void intel_update_max_cdclk(struct intel_display *display) display->cdclk.max_cdclk_freq = 648000; else display->cdclk.max_cdclk_freq = 652800; - } else if (IS_GEMINILAKE(dev_priv)) { + } else if (display->platform.geminilake) { display->cdclk.max_cdclk_freq = 316800; - } else if (IS_BROXTON(dev_priv)) { + } else if (display->platform.broxton) { display->cdclk.max_cdclk_freq = 624000; } else if (DISPLAY_VER(display) == 9) { u32 limit = intel_de_read(display, SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK; @@ -3416,7 +3397,7 @@ void intel_update_max_cdclk(struct intel_display *display) max_cdclk = 308571; display->cdclk.max_cdclk_freq = skl_calc_cdclk(max_cdclk, vco); - } else if (IS_BROADWELL(dev_priv)) { + } else if (display->platform.broadwell) { /* * FIXME with extra cooling we can allow * 540 MHz for ULX and 675 Mhz for ULT. @@ -3425,15 +3406,15 @@ void intel_update_max_cdclk(struct intel_display *display) */ if (intel_de_read(display, FUSE_STRAP) & HSW_CDCLK_LIMIT) display->cdclk.max_cdclk_freq = 450000; - else if (IS_BROADWELL_ULX(dev_priv)) + else if (display->platform.broadwell_ulx) display->cdclk.max_cdclk_freq = 450000; - else if (IS_BROADWELL_ULT(dev_priv)) + else if (display->platform.broadwell_ult) display->cdclk.max_cdclk_freq = 540000; else display->cdclk.max_cdclk_freq = 675000; - } else if (IS_CHERRYVIEW(dev_priv)) { + } else if (display->platform.cherryview) { display->cdclk.max_cdclk_freq = 320000; - } else if (IS_VALLEYVIEW(dev_priv)) { + } else if (display->platform.valleyview) { display->cdclk.max_cdclk_freq = 400000; } else { /* otherwise assume cdclk is fixed */ @@ -3457,8 +3438,6 @@ void intel_update_max_cdclk(struct intel_display *display) */ void intel_update_cdclk(struct intel_display *display) { - struct drm_i915_private *dev_priv = to_i915(display->drm); - intel_cdclk_get_cdclk(display, &display->cdclk.hw); /* @@ -3467,7 +3446,7 @@ void intel_update_cdclk(struct intel_display *display) * of cdclk that generates 4MHz reference clock freq which is used to * generate GMBus clock. This will vary with the cdclk freq. */ - if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) + if (display->platform.valleyview || display->platform.cherryview) intel_de_write(display, GMBUSFREQ_VLV, DIV_ROUND_UP(display->cdclk.hw.cdclk, 1000)); } @@ -3561,7 +3540,7 @@ u32 intel_read_rawclk(struct intel_display *display) freq = cnp_rawclk(display); else if (HAS_PCH_SPLIT(dev_priv)) freq = pch_rawclk(display); - else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) + else if (display->platform.valleyview || display->platform.cherryview) freq = vlv_hrawclk(display); else if (DISPLAY_VER(display) >= 3) freq = i9xx_hrawclk(display); @@ -3742,8 +3721,6 @@ static const struct intel_cdclk_funcs i830_cdclk_funcs = { */ void intel_init_cdclk_hooks(struct intel_display *display) { - struct drm_i915_private *dev_priv = to_i915(display->drm); - if (DISPLAY_VER(display) >= 30) { display->funcs.cdclk = &xe3lpd_cdclk_funcs; display->cdclk.table = xe3lpd_cdclk_table; @@ -3756,80 +3733,80 @@ void intel_init_cdclk_hooks(struct intel_display *display) } else if (DISPLAY_VER(display) >= 14) { display->funcs.cdclk = &rplu_cdclk_funcs; display->cdclk.table = mtl_cdclk_table; - } else if (IS_DG2(dev_priv)) { + } else if (display->platform.dg2) { display->funcs.cdclk = &tgl_cdclk_funcs; display->cdclk.table = dg2_cdclk_table; - } else if (IS_ALDERLAKE_P(dev_priv)) { + } else if (display->platform.alderlake_p) { /* Wa_22011320316:adl-p[a0] */ - if (IS_ALDERLAKE_P(dev_priv) && IS_DISPLAY_STEP(dev_priv, STEP_A0, STEP_B0)) { + if (display->platform.alderlake_p && IS_DISPLAY_STEP(display, STEP_A0, STEP_B0)) { display->cdclk.table = adlp_a_step_cdclk_table; display->funcs.cdclk = &tgl_cdclk_funcs; - } else if (IS_RAPTORLAKE_U(dev_priv)) { + } else if (display->platform.alderlake_p_raptorlake_u) { display->cdclk.table = rplu_cdclk_table; display->funcs.cdclk = &rplu_cdclk_funcs; } else { display->cdclk.table = adlp_cdclk_table; display->funcs.cdclk = &tgl_cdclk_funcs; } - } else if (IS_ROCKETLAKE(dev_priv)) { + } else if (display->platform.rocketlake) { display->funcs.cdclk = &tgl_cdclk_funcs; display->cdclk.table = rkl_cdclk_table; } else if (DISPLAY_VER(display) >= 12) { display->funcs.cdclk = &tgl_cdclk_funcs; display->cdclk.table = icl_cdclk_table; - } else if (IS_JASPERLAKE(dev_priv) || IS_ELKHARTLAKE(dev_priv)) { + } else if (display->platform.jasperlake || display->platform.elkhartlake) { display->funcs.cdclk = &ehl_cdclk_funcs; display->cdclk.table = icl_cdclk_table; } else if (DISPLAY_VER(display) >= 11) { display->funcs.cdclk = &icl_cdclk_funcs; display->cdclk.table = icl_cdclk_table; - } else if (IS_GEMINILAKE(dev_priv) || IS_BROXTON(dev_priv)) { + } else if (display->platform.geminilake || display->platform.broxton) { display->funcs.cdclk = &bxt_cdclk_funcs; - if (IS_GEMINILAKE(dev_priv)) + if (display->platform.geminilake) display->cdclk.table = glk_cdclk_table; else display->cdclk.table = bxt_cdclk_table; } else if (DISPLAY_VER(display) == 9) { display->funcs.cdclk = &skl_cdclk_funcs; - } else if (IS_BROADWELL(dev_priv)) { + } else if (display->platform.broadwell) { display->funcs.cdclk = &bdw_cdclk_funcs; - } else if (IS_HASWELL(dev_priv)) { + } else if (display->platform.haswell) { display->funcs.cdclk = &hsw_cdclk_funcs; - } else if (IS_CHERRYVIEW(dev_priv)) { + } else if (display->platform.cherryview) { display->funcs.cdclk = &chv_cdclk_funcs; - } else if (IS_VALLEYVIEW(dev_priv)) { + } else if (display->platform.valleyview) { display->funcs.cdclk = &vlv_cdclk_funcs; - } else if (IS_SANDYBRIDGE(dev_priv) || IS_IVYBRIDGE(dev_priv)) { + } else if (display->platform.sandybridge || display->platform.ivybridge) { display->funcs.cdclk = &fixed_400mhz_cdclk_funcs; - } else if (IS_IRONLAKE(dev_priv)) { + } else if (display->platform.ironlake) { display->funcs.cdclk = &ilk_cdclk_funcs; - } else if (IS_GM45(dev_priv)) { + } else if (display->platform.gm45) { display->funcs.cdclk = &gm45_cdclk_funcs; - } else if (IS_G45(dev_priv)) { + } else if (display->platform.g45) { display->funcs.cdclk = &g33_cdclk_funcs; - } else if (IS_I965GM(dev_priv)) { + } else if (display->platform.i965gm) { display->funcs.cdclk = &i965gm_cdclk_funcs; - } else if (IS_I965G(dev_priv)) { + } else if (display->platform.i965g) { display->funcs.cdclk = &fixed_400mhz_cdclk_funcs; - } else if (IS_PINEVIEW(dev_priv)) { + } else if (display->platform.pineview) { display->funcs.cdclk = &pnv_cdclk_funcs; - } else if (IS_G33(dev_priv)) { + } else if (display->platform.g33) { display->funcs.cdclk = &g33_cdclk_funcs; - } else if (IS_I945GM(dev_priv)) { + } else if (display->platform.i945gm) { display->funcs.cdclk = &i945gm_cdclk_funcs; - } else if (IS_I945G(dev_priv)) { + } else if (display->platform.i945g) { display->funcs.cdclk = &fixed_400mhz_cdclk_funcs; - } else if (IS_I915GM(dev_priv)) { + } else if (display->platform.i915gm) { display->funcs.cdclk = &i915gm_cdclk_funcs; - } else if (IS_I915G(dev_priv)) { + } else if (display->platform.i915g) { display->funcs.cdclk = &i915g_cdclk_funcs; - } else if (IS_I865G(dev_priv)) { + } else if (display->platform.i865g) { display->funcs.cdclk = &i865g_cdclk_funcs; - } else if (IS_I85X(dev_priv)) { + } else if (display->platform.i85x) { display->funcs.cdclk = &i85x_cdclk_funcs; - } else if (IS_I845G(dev_priv)) { + } else if (display->platform.i845g) { display->funcs.cdclk = &i845g_cdclk_funcs; - } else if (IS_I830(dev_priv)) { + } else if (display->platform.i830) { display->funcs.cdclk = &i830_cdclk_funcs; } -- 2.39.5 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 2/3] drm/i915/cdclk: switch to new platform checks 2025-02-04 13:42 ` [PATCH 2/3] drm/i915/cdclk: switch to new platform checks Jani Nikula @ 2025-02-04 23:06 ` Rodrigo Vivi 0 siblings, 0 replies; 13+ messages in thread From: Rodrigo Vivi @ 2025-02-04 23:06 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx, intel-xe On Tue, Feb 04, 2025 at 03:42:27PM +0200, Jani Nikula wrote: > Switch the IS_<PLATFORM>() checks to display->platform.<platform>, and > drop a number of struct drm_i915_private pointers in the process. > > While at it, replace > > /* NOOP */; > > with > ; /* NOOP */ > > to avoid a checkpatch warning on misleading indentation. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_cdclk.c | 159 +++++++++------------ > 1 file changed, 68 insertions(+), 91 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c > index b520231833b7..753ba3e3a0b7 100644 > --- a/drivers/gpu/drm/i915/display/intel_cdclk.c > +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c > @@ -314,27 +314,26 @@ static unsigned int intel_hpll_vco(struct intel_display *display) > [4] = 2666667, > [5] = 4266667, > }; > - struct drm_i915_private *dev_priv = to_i915(display->drm); > const unsigned int *vco_table; > unsigned int vco; > u8 tmp = 0; > > /* FIXME other chipsets? */ > - if (IS_GM45(dev_priv)) > + if (display->platform.gm45) > vco_table = ctg_vco; > - else if (IS_G45(dev_priv)) > + else if (display->platform.g45) > vco_table = elk_vco; > - else if (IS_I965GM(dev_priv)) > + else if (display->platform.i965gm) > vco_table = cl_vco; > - else if (IS_PINEVIEW(dev_priv)) > + else if (display->platform.pineview) > vco_table = pnv_vco; > - else if (IS_G33(dev_priv)) > + else if (display->platform.g33) > vco_table = blb_vco; > else > return 0; > > - tmp = intel_de_read(display, > - IS_PINEVIEW(dev_priv) || IS_MOBILE(dev_priv) ? HPLLVCO_MOBILE : HPLLVCO); > + tmp = intel_de_read(display, display->platform.pineview || > + display->platform.mobile ? HPLLVCO_MOBILE : HPLLVCO); > > vco = vco_table[tmp & 0x7]; > if (vco == 0) > @@ -508,7 +507,6 @@ static void gm45_get_cdclk(struct intel_display *display, > static void hsw_get_cdclk(struct intel_display *display, > struct intel_cdclk_config *cdclk_config) > { > - struct drm_i915_private *dev_priv = to_i915(display->drm); > u32 lcpll = intel_de_read(display, LCPLL_CTL); > u32 freq = lcpll & LCPLL_CLK_FREQ_MASK; > > @@ -518,7 +516,7 @@ static void hsw_get_cdclk(struct intel_display *display, > cdclk_config->cdclk = 450000; > else if (freq == LCPLL_CLK_FREQ_450) > cdclk_config->cdclk = 450000; > - else if (IS_HASWELL_ULT(dev_priv)) > + else if (display->platform.haswell_ult) > cdclk_config->cdclk = 337500; > else > cdclk_config->cdclk = 540000; > @@ -535,7 +533,7 @@ static int vlv_calc_cdclk(struct intel_display *display, int min_cdclk) > * Not sure what's wrong. For now use 200MHz only when all pipes > * are off. > */ > - if (IS_VALLEYVIEW(dev_priv) && min_cdclk > freq_320) > + if (display->platform.valleyview && min_cdclk > freq_320) > return 400000; > else if (min_cdclk > 266667) > return freq_320; > @@ -549,7 +547,7 @@ static u8 vlv_calc_voltage_level(struct intel_display *display, int cdclk) > { > struct drm_i915_private *dev_priv = to_i915(display->drm); > > - if (IS_VALLEYVIEW(dev_priv)) { > + if (display->platform.valleyview) { > if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */ > return 2; > else if (cdclk >= 266667) > @@ -585,7 +583,7 @@ static void vlv_get_cdclk(struct intel_display *display, > vlv_iosf_sb_put(dev_priv, > BIT(VLV_IOSF_SB_CCK) | BIT(VLV_IOSF_SB_PUNIT)); > > - if (IS_VALLEYVIEW(dev_priv)) > + if (display->platform.valleyview) > cdclk_config->voltage_level = (val & DSPFREQGUAR_MASK) >> > DSPFREQGUAR_SHIFT; > else > @@ -598,14 +596,14 @@ static void vlv_program_pfi_credits(struct intel_display *display) > struct drm_i915_private *dev_priv = to_i915(display->drm); > unsigned int credits, default_credits; > > - if (IS_CHERRYVIEW(dev_priv)) > + if (display->platform.cherryview) > default_credits = PFI_CREDIT(12); > else > default_credits = PFI_CREDIT(8); > > if (display->cdclk.hw.cdclk >= dev_priv->czclk_freq) { > /* CHV suggested value is 31 or 63 */ > - if (IS_CHERRYVIEW(dev_priv)) > + if (display->platform.cherryview) > credits = PFI_CREDIT_63; > else > credits = PFI_CREDIT(15); > @@ -1142,7 +1140,7 @@ static void skl_set_cdclk(struct intel_display *display, > * minimum 308MHz CDCLK. > */ > drm_WARN_ON_ONCE(display->drm, > - IS_SKYLAKE(dev_priv) && vco == 8640000); > + display->platform.skylake && vco == 8640000); > > ret = skl_pcode_request(&dev_priv->uncore, SKL_PCODE_CDCLK_CONTROL, > SKL_CDCLK_PREPARE_FOR_CHANGE, > @@ -1662,10 +1660,9 @@ static void icl_readout_refclk(struct intel_display *display, > static void bxt_de_pll_readout(struct intel_display *display, > struct intel_cdclk_config *cdclk_config) > { > - struct drm_i915_private *dev_priv = to_i915(display->drm); > u32 val, ratio; > > - if (IS_DG2(dev_priv)) > + if (display->platform.dg2) > cdclk_config->ref = 38400; > else if (DISPLAY_VER(display) >= 11) > icl_readout_refclk(display, cdclk_config); > @@ -2057,11 +2054,9 @@ static bool cdclk_compute_crawl_and_squash_midpoint(struct intel_display *displa > > static bool pll_enable_wa_needed(struct intel_display *display) > { > - struct drm_i915_private *dev_priv = to_i915(display->drm); > - > return (DISPLAY_VERx100(display) == 2000 || > DISPLAY_VERx100(display) == 1400 || > - IS_DG2(dev_priv)) && > + display->platform.dg2) && > display->cdclk.hw.vco > 0; > } > > @@ -2069,7 +2064,6 @@ static u32 bxt_cdclk_ctl(struct intel_display *display, > const struct intel_cdclk_config *cdclk_config, > enum pipe pipe) > { > - struct drm_i915_private *i915 = to_i915(display->drm); > int cdclk = cdclk_config->cdclk; > int vco = cdclk_config->vco; > u16 waveform; > @@ -2084,7 +2078,7 @@ static u32 bxt_cdclk_ctl(struct intel_display *display, > * Disable SSA Precharge when CD clock frequency < 500 MHz, > * enable otherwise. > */ > - if ((IS_GEMINILAKE(i915) || IS_BROXTON(i915)) && > + if ((display->platform.geminilake || display->platform.broxton) && > cdclk >= 500000) > val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE; > > @@ -2144,8 +2138,8 @@ static void bxt_set_cdclk(struct intel_display *display, > * mailbox communication, skip > * this step. > */ > - if (DISPLAY_VER(display) >= 14 || IS_DG2(dev_priv)) > - /* NOOP */; > + if (DISPLAY_VER(display) >= 14 || display->platform.dg2) > + ; /* NOOP */ I wonder if it wouldn't be better to use parenthesis instead of this, but anyway Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > else if (DISPLAY_VER(display) >= 11) > ret = skl_pcode_request(&dev_priv->uncore, SKL_PCODE_CDCLK_CONTROL, > SKL_CDCLK_PREPARE_FOR_CHANGE, > @@ -2186,7 +2180,7 @@ static void bxt_set_cdclk(struct intel_display *display, > * NOOP - No Pcode communication needed for > * Display versions 14 and beyond > */; > - else if (DISPLAY_VER(display) >= 11 && !IS_DG2(dev_priv)) > + else if (DISPLAY_VER(display) >= 11 && !display->platform.dg2) > ret = snb_pcode_write(&dev_priv->uncore, SKL_PCODE_CDCLK_CONTROL, > cdclk_config->voltage_level); > if (DISPLAY_VER(display) < 11) { > @@ -2318,9 +2312,7 @@ static void bxt_cdclk_uninit_hw(struct intel_display *display) > */ > void intel_cdclk_init_hw(struct intel_display *display) > { > - struct drm_i915_private *i915 = to_i915(display->drm); > - > - if (DISPLAY_VER(display) >= 10 || IS_BROXTON(i915)) > + if (DISPLAY_VER(display) >= 10 || display->platform.broxton) > bxt_cdclk_init_hw(display); > else if (DISPLAY_VER(display) == 9) > skl_cdclk_init_hw(display); > @@ -2335,9 +2327,7 @@ void intel_cdclk_init_hw(struct intel_display *display) > */ > void intel_cdclk_uninit_hw(struct intel_display *display) > { > - struct drm_i915_private *i915 = to_i915(display->drm); > - > - if (DISPLAY_VER(display) >= 10 || IS_BROXTON(i915)) > + if (DISPLAY_VER(display) >= 10 || display->platform.broxton) > bxt_cdclk_uninit_hw(display); > else if (DISPLAY_VER(display) == 9) > skl_cdclk_uninit_hw(display); > @@ -2438,10 +2428,8 @@ static bool intel_cdclk_can_cd2x_update(struct intel_display *display, > const struct intel_cdclk_config *a, > const struct intel_cdclk_config *b) > { > - struct drm_i915_private *dev_priv = to_i915(display->drm); > - > /* Older hw doesn't have the capability */ > - if (DISPLAY_VER(display) < 10 && !IS_BROXTON(dev_priv)) > + if (DISPLAY_VER(display) < 10 && !display->platform.broxton) > return false; > > /* > @@ -2495,7 +2483,7 @@ static void intel_pcode_notify(struct intel_display *display, > int ret; > u32 update_mask = 0; > > - if (!IS_DG2(i915)) > + if (!display->platform.dg2) > return; > > update_mask = DISPLAY_TO_PCODE_UPDATE_MASK(cdclk, active_pipe_count, voltage_level); > @@ -2681,7 +2669,6 @@ void > intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state) > { > struct intel_display *display = to_intel_display(state); > - struct drm_i915_private *i915 = to_i915(display->drm); > const struct intel_cdclk_state *old_cdclk_state = > intel_atomic_get_old_cdclk_state(state); > const struct intel_cdclk_state *new_cdclk_state = > @@ -2693,7 +2680,7 @@ intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state) > &new_cdclk_state->actual)) > return; > > - if (IS_DG2(i915)) > + if (display->platform.dg2) > intel_cdclk_pcode_pre_notify(state); > > if (new_cdclk_state->disable_pipes) { > @@ -2735,7 +2722,6 @@ void > intel_set_cdclk_post_plane_update(struct intel_atomic_state *state) > { > struct intel_display *display = to_intel_display(state); > - struct drm_i915_private *i915 = to_i915(display->drm); > const struct intel_cdclk_state *old_cdclk_state = > intel_atomic_get_old_cdclk_state(state); > const struct intel_cdclk_state *new_cdclk_state = > @@ -2746,7 +2732,7 @@ intel_set_cdclk_post_plane_update(struct intel_atomic_state *state) > &new_cdclk_state->actual)) > return; > > - if (IS_DG2(i915)) > + if (display->platform.dg2) > intel_cdclk_pcode_post_notify(state); > > if (!new_cdclk_state->disable_pipes && > @@ -2770,12 +2756,10 @@ static int intel_cdclk_ppc(struct intel_display *display, bool double_wide) > /* max pixel rate as % of CDCLK (not accounting for PPC) */ > static int intel_cdclk_guardband(struct intel_display *display) > { > - struct drm_i915_private *dev_priv = to_i915(display->drm); > - > if (DISPLAY_VER(display) >= 9 || > - IS_BROADWELL(dev_priv) || IS_HASWELL(dev_priv)) > + display->platform.broadwell || display->platform.haswell) > return 100; > - else if (IS_CHERRYVIEW(dev_priv)) > + else if (display->platform.cherryview) > return 95; > else > return 90; > @@ -2878,7 +2862,7 @@ static int intel_compute_min_cdclk(struct intel_atomic_state *state) > * by changing the cd2x divider (see glk_cdclk_table[]) and > * thus a full modeset won't be needed then. > */ > - if (IS_GEMINILAKE(dev_priv) && cdclk_state->active_pipes && > + if (display->platform.geminilake && cdclk_state->active_pipes && > !is_power_of_2(cdclk_state->active_pipes)) > min_cdclk = max(min_cdclk, 2 * 96000); > > @@ -3232,7 +3216,6 @@ static bool intel_cdclk_need_serialize(struct intel_display *display, > const struct intel_cdclk_state *old_cdclk_state, > const struct intel_cdclk_state *new_cdclk_state) > { > - struct drm_i915_private *i915 = to_i915(display->drm); > bool power_well_cnt_changed = hweight8(old_cdclk_state->active_pipes) != > hweight8(new_cdclk_state->active_pipes); > bool cdclk_changed = intel_cdclk_changed(&old_cdclk_state->actual, > @@ -3241,7 +3224,7 @@ static bool intel_cdclk_need_serialize(struct intel_display *display, > * We need to poke hw for gen >= 12, because we notify PCode if > * pipe power well count changes. > */ > - return cdclk_changed || (IS_DG2(i915) && power_well_cnt_changed); > + return cdclk_changed || (display->platform.dg2 && power_well_cnt_changed); > } > > int intel_modeset_calc_cdclk(struct intel_atomic_state *state) > @@ -3376,11 +3359,9 @@ static int intel_compute_max_dotclk(struct intel_display *display) > */ > void intel_update_max_cdclk(struct intel_display *display) > { > - struct drm_i915_private *dev_priv = to_i915(display->drm); > - > if (DISPLAY_VER(display) >= 30) { > display->cdclk.max_cdclk_freq = 691200; > - } else if (IS_JASPERLAKE(dev_priv) || IS_ELKHARTLAKE(dev_priv)) { > + } else if (display->platform.jasperlake || display->platform.elkhartlake) { > if (display->cdclk.hw.ref == 24000) > display->cdclk.max_cdclk_freq = 552000; > else > @@ -3390,9 +3371,9 @@ void intel_update_max_cdclk(struct intel_display *display) > display->cdclk.max_cdclk_freq = 648000; > else > display->cdclk.max_cdclk_freq = 652800; > - } else if (IS_GEMINILAKE(dev_priv)) { > + } else if (display->platform.geminilake) { > display->cdclk.max_cdclk_freq = 316800; > - } else if (IS_BROXTON(dev_priv)) { > + } else if (display->platform.broxton) { > display->cdclk.max_cdclk_freq = 624000; > } else if (DISPLAY_VER(display) == 9) { > u32 limit = intel_de_read(display, SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK; > @@ -3416,7 +3397,7 @@ void intel_update_max_cdclk(struct intel_display *display) > max_cdclk = 308571; > > display->cdclk.max_cdclk_freq = skl_calc_cdclk(max_cdclk, vco); > - } else if (IS_BROADWELL(dev_priv)) { > + } else if (display->platform.broadwell) { > /* > * FIXME with extra cooling we can allow > * 540 MHz for ULX and 675 Mhz for ULT. > @@ -3425,15 +3406,15 @@ void intel_update_max_cdclk(struct intel_display *display) > */ > if (intel_de_read(display, FUSE_STRAP) & HSW_CDCLK_LIMIT) > display->cdclk.max_cdclk_freq = 450000; > - else if (IS_BROADWELL_ULX(dev_priv)) > + else if (display->platform.broadwell_ulx) > display->cdclk.max_cdclk_freq = 450000; > - else if (IS_BROADWELL_ULT(dev_priv)) > + else if (display->platform.broadwell_ult) > display->cdclk.max_cdclk_freq = 540000; > else > display->cdclk.max_cdclk_freq = 675000; > - } else if (IS_CHERRYVIEW(dev_priv)) { > + } else if (display->platform.cherryview) { > display->cdclk.max_cdclk_freq = 320000; > - } else if (IS_VALLEYVIEW(dev_priv)) { > + } else if (display->platform.valleyview) { > display->cdclk.max_cdclk_freq = 400000; > } else { > /* otherwise assume cdclk is fixed */ > @@ -3457,8 +3438,6 @@ void intel_update_max_cdclk(struct intel_display *display) > */ > void intel_update_cdclk(struct intel_display *display) > { > - struct drm_i915_private *dev_priv = to_i915(display->drm); > - > intel_cdclk_get_cdclk(display, &display->cdclk.hw); > > /* > @@ -3467,7 +3446,7 @@ void intel_update_cdclk(struct intel_display *display) > * of cdclk that generates 4MHz reference clock freq which is used to > * generate GMBus clock. This will vary with the cdclk freq. > */ > - if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) > + if (display->platform.valleyview || display->platform.cherryview) > intel_de_write(display, GMBUSFREQ_VLV, > DIV_ROUND_UP(display->cdclk.hw.cdclk, 1000)); > } > @@ -3561,7 +3540,7 @@ u32 intel_read_rawclk(struct intel_display *display) > freq = cnp_rawclk(display); > else if (HAS_PCH_SPLIT(dev_priv)) > freq = pch_rawclk(display); > - else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) > + else if (display->platform.valleyview || display->platform.cherryview) > freq = vlv_hrawclk(display); > else if (DISPLAY_VER(display) >= 3) > freq = i9xx_hrawclk(display); > @@ -3742,8 +3721,6 @@ static const struct intel_cdclk_funcs i830_cdclk_funcs = { > */ > void intel_init_cdclk_hooks(struct intel_display *display) > { > - struct drm_i915_private *dev_priv = to_i915(display->drm); > - > if (DISPLAY_VER(display) >= 30) { > display->funcs.cdclk = &xe3lpd_cdclk_funcs; > display->cdclk.table = xe3lpd_cdclk_table; > @@ -3756,80 +3733,80 @@ void intel_init_cdclk_hooks(struct intel_display *display) > } else if (DISPLAY_VER(display) >= 14) { > display->funcs.cdclk = &rplu_cdclk_funcs; > display->cdclk.table = mtl_cdclk_table; > - } else if (IS_DG2(dev_priv)) { > + } else if (display->platform.dg2) { > display->funcs.cdclk = &tgl_cdclk_funcs; > display->cdclk.table = dg2_cdclk_table; > - } else if (IS_ALDERLAKE_P(dev_priv)) { > + } else if (display->platform.alderlake_p) { > /* Wa_22011320316:adl-p[a0] */ > - if (IS_ALDERLAKE_P(dev_priv) && IS_DISPLAY_STEP(dev_priv, STEP_A0, STEP_B0)) { > + if (display->platform.alderlake_p && IS_DISPLAY_STEP(display, STEP_A0, STEP_B0)) { > display->cdclk.table = adlp_a_step_cdclk_table; > display->funcs.cdclk = &tgl_cdclk_funcs; > - } else if (IS_RAPTORLAKE_U(dev_priv)) { > + } else if (display->platform.alderlake_p_raptorlake_u) { > display->cdclk.table = rplu_cdclk_table; > display->funcs.cdclk = &rplu_cdclk_funcs; > } else { > display->cdclk.table = adlp_cdclk_table; > display->funcs.cdclk = &tgl_cdclk_funcs; > } > - } else if (IS_ROCKETLAKE(dev_priv)) { > + } else if (display->platform.rocketlake) { > display->funcs.cdclk = &tgl_cdclk_funcs; > display->cdclk.table = rkl_cdclk_table; > } else if (DISPLAY_VER(display) >= 12) { > display->funcs.cdclk = &tgl_cdclk_funcs; > display->cdclk.table = icl_cdclk_table; > - } else if (IS_JASPERLAKE(dev_priv) || IS_ELKHARTLAKE(dev_priv)) { > + } else if (display->platform.jasperlake || display->platform.elkhartlake) { > display->funcs.cdclk = &ehl_cdclk_funcs; > display->cdclk.table = icl_cdclk_table; > } else if (DISPLAY_VER(display) >= 11) { > display->funcs.cdclk = &icl_cdclk_funcs; > display->cdclk.table = icl_cdclk_table; > - } else if (IS_GEMINILAKE(dev_priv) || IS_BROXTON(dev_priv)) { > + } else if (display->platform.geminilake || display->platform.broxton) { > display->funcs.cdclk = &bxt_cdclk_funcs; > - if (IS_GEMINILAKE(dev_priv)) > + if (display->platform.geminilake) > display->cdclk.table = glk_cdclk_table; > else > display->cdclk.table = bxt_cdclk_table; > } else if (DISPLAY_VER(display) == 9) { > display->funcs.cdclk = &skl_cdclk_funcs; > - } else if (IS_BROADWELL(dev_priv)) { > + } else if (display->platform.broadwell) { > display->funcs.cdclk = &bdw_cdclk_funcs; > - } else if (IS_HASWELL(dev_priv)) { > + } else if (display->platform.haswell) { > display->funcs.cdclk = &hsw_cdclk_funcs; > - } else if (IS_CHERRYVIEW(dev_priv)) { > + } else if (display->platform.cherryview) { > display->funcs.cdclk = &chv_cdclk_funcs; > - } else if (IS_VALLEYVIEW(dev_priv)) { > + } else if (display->platform.valleyview) { > display->funcs.cdclk = &vlv_cdclk_funcs; > - } else if (IS_SANDYBRIDGE(dev_priv) || IS_IVYBRIDGE(dev_priv)) { > + } else if (display->platform.sandybridge || display->platform.ivybridge) { > display->funcs.cdclk = &fixed_400mhz_cdclk_funcs; > - } else if (IS_IRONLAKE(dev_priv)) { > + } else if (display->platform.ironlake) { > display->funcs.cdclk = &ilk_cdclk_funcs; > - } else if (IS_GM45(dev_priv)) { > + } else if (display->platform.gm45) { > display->funcs.cdclk = &gm45_cdclk_funcs; > - } else if (IS_G45(dev_priv)) { > + } else if (display->platform.g45) { > display->funcs.cdclk = &g33_cdclk_funcs; > - } else if (IS_I965GM(dev_priv)) { > + } else if (display->platform.i965gm) { > display->funcs.cdclk = &i965gm_cdclk_funcs; > - } else if (IS_I965G(dev_priv)) { > + } else if (display->platform.i965g) { > display->funcs.cdclk = &fixed_400mhz_cdclk_funcs; > - } else if (IS_PINEVIEW(dev_priv)) { > + } else if (display->platform.pineview) { > display->funcs.cdclk = &pnv_cdclk_funcs; > - } else if (IS_G33(dev_priv)) { > + } else if (display->platform.g33) { > display->funcs.cdclk = &g33_cdclk_funcs; > - } else if (IS_I945GM(dev_priv)) { > + } else if (display->platform.i945gm) { > display->funcs.cdclk = &i945gm_cdclk_funcs; > - } else if (IS_I945G(dev_priv)) { > + } else if (display->platform.i945g) { > display->funcs.cdclk = &fixed_400mhz_cdclk_funcs; > - } else if (IS_I915GM(dev_priv)) { > + } else if (display->platform.i915gm) { > display->funcs.cdclk = &i915gm_cdclk_funcs; > - } else if (IS_I915G(dev_priv)) { > + } else if (display->platform.i915g) { > display->funcs.cdclk = &i915g_cdclk_funcs; > - } else if (IS_I865G(dev_priv)) { > + } else if (display->platform.i865g) { > display->funcs.cdclk = &i865g_cdclk_funcs; > - } else if (IS_I85X(dev_priv)) { > + } else if (display->platform.i85x) { > display->funcs.cdclk = &i85x_cdclk_funcs; > - } else if (IS_I845G(dev_priv)) { > + } else if (display->platform.i845g) { > display->funcs.cdclk = &i845g_cdclk_funcs; > - } else if (IS_I830(dev_priv)) { > + } else if (display->platform.i830) { > display->funcs.cdclk = &i830_cdclk_funcs; > } > > -- > 2.39.5 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 3/3] drm/i915/cx0: convert to struct intel_display based platform checks 2025-02-04 13:42 [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Jani Nikula 2025-02-04 13:42 ` [PATCH 2/3] drm/i915/cdclk: switch to new platform checks Jani Nikula @ 2025-02-04 13:42 ` Jani Nikula 2025-02-04 23:06 ` Rodrigo Vivi 2025-02-04 18:00 ` ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Patchwork ` (4 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Jani Nikula @ 2025-02-04 13:42 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: jani.nikula Switch the IS_<PLATFORM>() checks to display->platform.<platform>, and drop a number of struct drm_i915_private pointers in the process. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_cx0_phy.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c index 48b0b9755b2b..0ff76ef10d4b 100644 --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c @@ -34,13 +34,13 @@ bool intel_encoder_is_c10phy(struct intel_encoder *encoder) { - struct drm_i915_private *i915 = to_i915(encoder->base.dev); + struct intel_display *display = to_intel_display(encoder); enum phy phy = intel_encoder_to_phy(encoder); - if (IS_PANTHERLAKE(i915) && phy == PHY_A) + if (display->platform.pantherlake && phy == PHY_A) return true; - if ((IS_LUNARLAKE(i915) || IS_METEORLAKE(i915)) && phy < PHY_C) + if ((display->platform.lunarlake || display->platform.meteorlake) && phy < PHY_C) return true; return false; @@ -3216,12 +3216,11 @@ void intel_mtl_pll_enable(struct intel_encoder *encoder, static u8 cx0_power_control_disable_val(struct intel_encoder *encoder) { struct intel_display *display = to_intel_display(encoder); - struct drm_i915_private *i915 = to_i915(encoder->base.dev); if (intel_encoder_is_c10phy(encoder)) return CX0_P2PG_STATE_DISABLE; - if ((IS_BATTLEMAGE(i915) && encoder->port == PORT_A) || + if ((display->platform.battlemage && encoder->port == PORT_A) || (DISPLAY_VER(display) >= 30 && encoder->type == INTEL_OUTPUT_EDP)) return CX0_P2PG_STATE_DISABLE; -- 2.39.5 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 3/3] drm/i915/cx0: convert to struct intel_display based platform checks 2025-02-04 13:42 ` [PATCH 3/3] drm/i915/cx0: convert to struct intel_display based " Jani Nikula @ 2025-02-04 23:06 ` Rodrigo Vivi 0 siblings, 0 replies; 13+ messages in thread From: Rodrigo Vivi @ 2025-02-04 23:06 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx, intel-xe On Tue, Feb 04, 2025 at 03:42:28PM +0200, Jani Nikula wrote: > Switch the IS_<PLATFORM>() checks to display->platform.<platform>, and > drop a number of struct drm_i915_private pointers in the process. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_cx0_phy.c | 9 ++++----- > 1 file changed, 4 insertions(+), 5 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > index 48b0b9755b2b..0ff76ef10d4b 100644 > --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c > +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > @@ -34,13 +34,13 @@ > > bool intel_encoder_is_c10phy(struct intel_encoder *encoder) > { > - struct drm_i915_private *i915 = to_i915(encoder->base.dev); > + struct intel_display *display = to_intel_display(encoder); > enum phy phy = intel_encoder_to_phy(encoder); > > - if (IS_PANTHERLAKE(i915) && phy == PHY_A) > + if (display->platform.pantherlake && phy == PHY_A) > return true; > > - if ((IS_LUNARLAKE(i915) || IS_METEORLAKE(i915)) && phy < PHY_C) > + if ((display->platform.lunarlake || display->platform.meteorlake) && phy < PHY_C) > return true; > > return false; > @@ -3216,12 +3216,11 @@ void intel_mtl_pll_enable(struct intel_encoder *encoder, > static u8 cx0_power_control_disable_val(struct intel_encoder *encoder) > { > struct intel_display *display = to_intel_display(encoder); > - struct drm_i915_private *i915 = to_i915(encoder->base.dev); > > if (intel_encoder_is_c10phy(encoder)) > return CX0_P2PG_STATE_DISABLE; > > - if ((IS_BATTLEMAGE(i915) && encoder->port == PORT_A) || > + if ((display->platform.battlemage && encoder->port == PORT_A) || > (DISPLAY_VER(display) >= 30 && encoder->type == INTEL_OUTPUT_EDP)) > return CX0_P2PG_STATE_DISABLE; > > -- > 2.39.5 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display 2025-02-04 13:42 [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Jani Nikula 2025-02-04 13:42 ` [PATCH 2/3] drm/i915/cdclk: switch to new platform checks Jani Nikula 2025-02-04 13:42 ` [PATCH 3/3] drm/i915/cx0: convert to struct intel_display based " Jani Nikula @ 2025-02-04 18:00 ` Patchwork 2025-02-04 18:20 ` ✗ i915.CI.BAT: failure " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-02-04 18:00 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display URL : https://patchwork.freedesktop.org/series/144315/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' /home/kbuild2/linux/maintainer-tools/dim: line 2106: echo: write error: Broken pipe ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.BAT: failure for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display 2025-02-04 13:42 [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Jani Nikula ` (2 preceding siblings ...) 2025-02-04 18:00 ` ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Patchwork @ 2025-02-04 18:20 ` Patchwork 2025-02-05 8:31 ` Jani Nikula 2025-02-04 23:01 ` [PATCH 1/3] " Rodrigo Vivi ` (2 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2025-02-04 18:20 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3592 bytes --] == Series Details == Series: series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display URL : https://patchwork.freedesktop.org/series/144315/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16063 -> Patchwork_144315v1 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_144315v1 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_144315v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_144315v1: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-rpls-4/igt@i915_pm_rpm@module-reload.html Known issues ------------ Here are the changes found in Patchwork_144315v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][3] -> [SKIP][4] ([i915#9197]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@dmabuf@all-tests: - bat-apl-1: [INCOMPLETE][5] ([i915#12904]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-apl-1/igt@dmabuf@all-tests.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live@workarounds: - {bat-mtlp-9}: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_16063 -> Patchwork_144315v1 CI-20190529: 20190529 CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_144315v1: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/index.html [-- Attachment #2: Type: text/html, Size: 4291 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ i915.CI.BAT: failure for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display 2025-02-04 18:20 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-02-05 8:31 ` Jani Nikula 2025-02-05 14:00 ` Ravali, JupallyX 0 siblings, 1 reply; 13+ messages in thread From: Jani Nikula @ 2025-02-05 8:31 UTC (permalink / raw) To: I915-ci-infra; +Cc: intel-gfx On Tue, 04 Feb 2025, Patchwork <patchwork@emeril.freedesktop.org> wrote: > == Series Details == > > Series: series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display > URL : https://patchwork.freedesktop.org/series/144315/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_16063 -> Patchwork_144315v1 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_144315v1 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_144315v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/index.html > > Participating hosts (43 -> 42) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in Patchwork_144315v1: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pm_rpm@module-reload: > - bat-rpls-4: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-rpls-4/igt@i915_pm_rpm@module-reload.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-rpls-4/igt@i915_pm_rpm@module-reload.html Please re-report. What's with the module reload now? BR, Jani. > > > Known issues > ------------ > > Here are the changes found in Patchwork_144315v1 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: > - bat-dg2-11: [PASS][3] -> [SKIP][4] ([i915#9197]) +3 other tests skip > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html > > > #### Possible fixes #### > > * igt@dmabuf@all-tests: > - bat-apl-1: [INCOMPLETE][5] ([i915#12904]) -> [PASS][6] +1 other test pass > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-apl-1/igt@dmabuf@all-tests.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-apl-1/igt@dmabuf@all-tests.html > > * igt@i915_selftest@live@workarounds: > - {bat-mtlp-9}: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-mtlp-9/igt@i915_selftest@live@workarounds.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 > [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 > [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 > > > Build changes > ------------- > > * Linux: CI_DRM_16063 -> Patchwork_144315v1 > > CI-20190529: 20190529 > CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux > IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > Patchwork_144315v1: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/index.html -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: ✗ i915.CI.BAT: failure for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display 2025-02-05 8:31 ` Jani Nikula @ 2025-02-05 14:00 ` Ravali, JupallyX 0 siblings, 0 replies; 13+ messages in thread From: Ravali, JupallyX @ 2025-02-05 14:00 UTC (permalink / raw) To: i915-ci-infra@lists.freedesktop.org; +Cc: intel-gfx@lists.freedesktop.org Hi, https://patchwork.freedesktop.org/series/144315/ - Re-reported. i915.CI.BAT - Re-reported. Thanks, Ravali. -----Original Message----- From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Jani Nikula Sent: 05 February 2025 14:01 To: I915-ci-infra@lists.freedesktop.org Cc: intel-gfx@lists.freedesktop.org Subject: Re: ✗ i915.CI.BAT: failure for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display On Tue, 04 Feb 2025, Patchwork <patchwork@emeril.freedesktop.org> wrote: > == Series Details == > > Series: series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display > URL : https://patchwork.freedesktop.org/series/144315/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_16063 -> Patchwork_144315v1 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_144315v1 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_144315v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/index.html > > Participating hosts (43 -> 42) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in Patchwork_144315v1: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pm_rpm@module-reload: > - bat-rpls-4: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-rpls-4/igt@i915_pm_rpm@module-reload.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-rpls-4 > /igt@i915_pm_rpm@module-reload.html Please re-report. What's with the module reload now? BR, Jani. > > > Known issues > ------------ > > Here are the changes found in Patchwork_144315v1 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: > - bat-dg2-11: [PASS][3] -> [SKIP][4] ([i915#9197]) +3 other tests skip > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html > [4]: > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-dg2-11 > /igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html > > > #### Possible fixes #### > > * igt@dmabuf@all-tests: > - bat-apl-1: [INCOMPLETE][5] ([i915#12904]) -> [PASS][6] +1 other test pass > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-apl-1/igt@dmabuf@all-tests.html > [6]: > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-apl-1/ > igt@dmabuf@all-tests.html > > * igt@i915_selftest@live@workarounds: > - {bat-mtlp-9}: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-mtlp-9/igt@i915_selftest@live@workarounds.html > [8]: > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-mtlp-9 > /igt@i915_selftest@live@workarounds.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 > [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 > [i915#9197]: > https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 > > > Build changes > ------------- > > * Linux: CI_DRM_16063 -> Patchwork_144315v1 > > CI-20190529: 20190529 > CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux > IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > Patchwork_144315v1: 34f113e9fef546134e402e7657fc47e92fba59dc @ > git://anongit.freedesktop.org/gfx-ci/linux > > == Logs == > > For more details see: > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/index.html -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display 2025-02-04 13:42 [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Jani Nikula ` (3 preceding siblings ...) 2025-02-04 18:20 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-02-04 23:01 ` Rodrigo Vivi 2025-02-05 17:56 ` Jani Nikula 2025-02-05 11:32 ` ✓ i915.CI.BAT: success for series starting with [1/3] " Patchwork 2025-02-05 15:27 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 1 reply; 13+ messages in thread From: Rodrigo Vivi @ 2025-02-04 23:01 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx, intel-xe On Tue, Feb 04, 2025 at 03:42:26PM +0200, Jani Nikula wrote: > Going forward, struct intel_display is the main device data structure > for display. Switch to it. > > For MISSING_CASE(), log the PCI ID instead of the platform to get rid of > the i915_drv.h dependency. good idea! > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > .../drm/i915/display/intel_ddi_buf_trans.c | 58 +++++++++++-------- > 1 file changed, 33 insertions(+), 25 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c b/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c > index 9389b295036e..a238be5bc455 100644 > --- a/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c > +++ b/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c > @@ -3,13 +3,13 @@ > * Copyright © 2020 Intel Corporation > */ > > -#include "i915_drv.h" \o/ Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > +#include "i915_utils.h" > +#include "intel_cx0_phy.h" > #include "intel_ddi.h" > #include "intel_ddi_buf_trans.h" > #include "intel_de.h" > #include "intel_display_types.h" > #include "intel_dp.h" > -#include "intel_cx0_phy.h" > > /* HDMI/DVI modes ignore everything but the last 2 items. So we share > * them for both DP and FDI transports, allowing those ports to > @@ -1407,10 +1407,10 @@ tgl_get_combo_buf_trans_dp(struct intel_encoder *encoder, > const struct intel_crtc_state *crtc_state, > int *n_entries) > { > - struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); > + struct intel_display *display = to_intel_display(encoder); > > if (crtc_state->port_clock > 270000) { > - if (IS_TIGERLAKE_UY(dev_priv)) { > + if (display->platform.tigerlake_uy) { > return intel_get_buf_trans(&tgl_uy_combo_phy_trans_dp_hbr2, > n_entries); > } else { > @@ -1709,59 +1709,67 @@ mtl_get_c20_buf_trans(struct intel_encoder *encoder, > > void intel_ddi_buf_trans_init(struct intel_encoder *encoder) > { > - struct drm_i915_private *i915 = to_i915(encoder->base.dev); > + struct intel_display *display = to_intel_display(encoder); > > - if (DISPLAY_VER(i915) >= 14) { > + if (DISPLAY_VER(display) >= 14) { > if (intel_encoder_is_c10phy(encoder)) > encoder->get_buf_trans = mtl_get_c10_buf_trans; > else > encoder->get_buf_trans = mtl_get_c20_buf_trans; > - } else if (IS_DG2(i915)) { > + } else if (display->platform.dg2) { > encoder->get_buf_trans = dg2_get_snps_buf_trans; > - } else if (IS_ALDERLAKE_P(i915)) { > + } else if (display->platform.alderlake_p) { > if (intel_encoder_is_combo(encoder)) > encoder->get_buf_trans = adlp_get_combo_buf_trans; > else > encoder->get_buf_trans = adlp_get_dkl_buf_trans; > - } else if (IS_ALDERLAKE_S(i915)) { > + } else if (display->platform.alderlake_s) { > encoder->get_buf_trans = adls_get_combo_buf_trans; > - } else if (IS_ROCKETLAKE(i915)) { > + } else if (display->platform.rocketlake) { > encoder->get_buf_trans = rkl_get_combo_buf_trans; > - } else if (IS_DG1(i915)) { > + } else if (display->platform.dg1) { > encoder->get_buf_trans = dg1_get_combo_buf_trans; > - } else if (DISPLAY_VER(i915) >= 12) { > + } else if (DISPLAY_VER(display) >= 12) { > if (intel_encoder_is_combo(encoder)) > encoder->get_buf_trans = tgl_get_combo_buf_trans; > else > encoder->get_buf_trans = tgl_get_dkl_buf_trans; > - } else if (DISPLAY_VER(i915) == 11) { > - if (IS_JASPERLAKE(i915)) > + } else if (DISPLAY_VER(display) == 11) { > + if (display->platform.jasperlake) > encoder->get_buf_trans = jsl_get_combo_buf_trans; > - else if (IS_ELKHARTLAKE(i915)) > + else if (display->platform.elkhartlake) > encoder->get_buf_trans = ehl_get_combo_buf_trans; > else if (intel_encoder_is_combo(encoder)) > encoder->get_buf_trans = icl_get_combo_buf_trans; > else > encoder->get_buf_trans = icl_get_mg_buf_trans; > - } else if (IS_GEMINILAKE(i915) || IS_BROXTON(i915)) { > + } else if (display->platform.geminilake || display->platform.broxton) { > encoder->get_buf_trans = bxt_get_buf_trans; > - } else if (IS_COMETLAKE_ULX(i915) || IS_COFFEELAKE_ULX(i915) || IS_KABYLAKE_ULX(i915)) { > + } else if (display->platform.cometlake_ulx || > + display->platform.coffeelake_ulx || > + display->platform.kabylake_ulx) { > encoder->get_buf_trans = kbl_y_get_buf_trans; > - } else if (IS_COMETLAKE_ULT(i915) || IS_COFFEELAKE_ULT(i915) || IS_KABYLAKE_ULT(i915)) { > + } else if (display->platform.cometlake_ult || > + display->platform.coffeelake_ult || > + display->platform.kabylake_ult) { > encoder->get_buf_trans = kbl_u_get_buf_trans; > - } else if (IS_COMETLAKE(i915) || IS_COFFEELAKE(i915) || IS_KABYLAKE(i915)) { > + } else if (display->platform.cometlake || > + display->platform.coffeelake || > + display->platform.kabylake) { > encoder->get_buf_trans = kbl_get_buf_trans; > - } else if (IS_SKYLAKE_ULX(i915)) { > + } else if (display->platform.skylake_ulx) { > encoder->get_buf_trans = skl_y_get_buf_trans; > - } else if (IS_SKYLAKE_ULT(i915)) { > + } else if (display->platform.skylake_ult) { > encoder->get_buf_trans = skl_u_get_buf_trans; > - } else if (IS_SKYLAKE(i915)) { > + } else if (display->platform.skylake) { > encoder->get_buf_trans = skl_get_buf_trans; > - } else if (IS_BROADWELL(i915)) { > + } else if (display->platform.broadwell) { > encoder->get_buf_trans = bdw_get_buf_trans; > - } else if (IS_HASWELL(i915)) { > + } else if (display->platform.haswell) { > encoder->get_buf_trans = hsw_get_buf_trans; > } else { > - MISSING_CASE(INTEL_INFO(i915)->platform); > + struct pci_dev *pdev = to_pci_dev(display->drm->dev); > + > + MISSING_CASE(pdev->device); > } > } > -- > 2.39.5 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display 2025-02-04 23:01 ` [PATCH 1/3] " Rodrigo Vivi @ 2025-02-05 17:56 ` Jani Nikula 0 siblings, 0 replies; 13+ messages in thread From: Jani Nikula @ 2025-02-05 17:56 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx, intel-xe On Tue, 04 Feb 2025, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote: > On Tue, Feb 04, 2025 at 03:42:26PM +0200, Jani Nikula wrote: >> Going forward, struct intel_display is the main device data structure >> for display. Switch to it. >> >> For MISSING_CASE(), log the PCI ID instead of the platform to get rid of >> the i915_drv.h dependency. > > good idea! > >> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> --- >> .../drm/i915/display/intel_ddi_buf_trans.c | 58 +++++++++++-------- >> 1 file changed, 33 insertions(+), 25 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c b/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c >> index 9389b295036e..a238be5bc455 100644 >> --- a/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c >> +++ b/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c >> @@ -3,13 +3,13 @@ >> * Copyright © 2020 Intel Corporation >> */ >> >> -#include "i915_drv.h" > > \o/ Indeed! > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Thanks, series pushed to din. > >> +#include "i915_utils.h" >> +#include "intel_cx0_phy.h" >> #include "intel_ddi.h" >> #include "intel_ddi_buf_trans.h" >> #include "intel_de.h" >> #include "intel_display_types.h" >> #include "intel_dp.h" >> -#include "intel_cx0_phy.h" >> >> /* HDMI/DVI modes ignore everything but the last 2 items. So we share >> * them for both DP and FDI transports, allowing those ports to >> @@ -1407,10 +1407,10 @@ tgl_get_combo_buf_trans_dp(struct intel_encoder *encoder, >> const struct intel_crtc_state *crtc_state, >> int *n_entries) >> { >> - struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); >> + struct intel_display *display = to_intel_display(encoder); >> >> if (crtc_state->port_clock > 270000) { >> - if (IS_TIGERLAKE_UY(dev_priv)) { >> + if (display->platform.tigerlake_uy) { >> return intel_get_buf_trans(&tgl_uy_combo_phy_trans_dp_hbr2, >> n_entries); >> } else { >> @@ -1709,59 +1709,67 @@ mtl_get_c20_buf_trans(struct intel_encoder *encoder, >> >> void intel_ddi_buf_trans_init(struct intel_encoder *encoder) >> { >> - struct drm_i915_private *i915 = to_i915(encoder->base.dev); >> + struct intel_display *display = to_intel_display(encoder); >> >> - if (DISPLAY_VER(i915) >= 14) { >> + if (DISPLAY_VER(display) >= 14) { >> if (intel_encoder_is_c10phy(encoder)) >> encoder->get_buf_trans = mtl_get_c10_buf_trans; >> else >> encoder->get_buf_trans = mtl_get_c20_buf_trans; >> - } else if (IS_DG2(i915)) { >> + } else if (display->platform.dg2) { >> encoder->get_buf_trans = dg2_get_snps_buf_trans; >> - } else if (IS_ALDERLAKE_P(i915)) { >> + } else if (display->platform.alderlake_p) { >> if (intel_encoder_is_combo(encoder)) >> encoder->get_buf_trans = adlp_get_combo_buf_trans; >> else >> encoder->get_buf_trans = adlp_get_dkl_buf_trans; >> - } else if (IS_ALDERLAKE_S(i915)) { >> + } else if (display->platform.alderlake_s) { >> encoder->get_buf_trans = adls_get_combo_buf_trans; >> - } else if (IS_ROCKETLAKE(i915)) { >> + } else if (display->platform.rocketlake) { >> encoder->get_buf_trans = rkl_get_combo_buf_trans; >> - } else if (IS_DG1(i915)) { >> + } else if (display->platform.dg1) { >> encoder->get_buf_trans = dg1_get_combo_buf_trans; >> - } else if (DISPLAY_VER(i915) >= 12) { >> + } else if (DISPLAY_VER(display) >= 12) { >> if (intel_encoder_is_combo(encoder)) >> encoder->get_buf_trans = tgl_get_combo_buf_trans; >> else >> encoder->get_buf_trans = tgl_get_dkl_buf_trans; >> - } else if (DISPLAY_VER(i915) == 11) { >> - if (IS_JASPERLAKE(i915)) >> + } else if (DISPLAY_VER(display) == 11) { >> + if (display->platform.jasperlake) >> encoder->get_buf_trans = jsl_get_combo_buf_trans; >> - else if (IS_ELKHARTLAKE(i915)) >> + else if (display->platform.elkhartlake) >> encoder->get_buf_trans = ehl_get_combo_buf_trans; >> else if (intel_encoder_is_combo(encoder)) >> encoder->get_buf_trans = icl_get_combo_buf_trans; >> else >> encoder->get_buf_trans = icl_get_mg_buf_trans; >> - } else if (IS_GEMINILAKE(i915) || IS_BROXTON(i915)) { >> + } else if (display->platform.geminilake || display->platform.broxton) { >> encoder->get_buf_trans = bxt_get_buf_trans; >> - } else if (IS_COMETLAKE_ULX(i915) || IS_COFFEELAKE_ULX(i915) || IS_KABYLAKE_ULX(i915)) { >> + } else if (display->platform.cometlake_ulx || >> + display->platform.coffeelake_ulx || >> + display->platform.kabylake_ulx) { >> encoder->get_buf_trans = kbl_y_get_buf_trans; >> - } else if (IS_COMETLAKE_ULT(i915) || IS_COFFEELAKE_ULT(i915) || IS_KABYLAKE_ULT(i915)) { >> + } else if (display->platform.cometlake_ult || >> + display->platform.coffeelake_ult || >> + display->platform.kabylake_ult) { >> encoder->get_buf_trans = kbl_u_get_buf_trans; >> - } else if (IS_COMETLAKE(i915) || IS_COFFEELAKE(i915) || IS_KABYLAKE(i915)) { >> + } else if (display->platform.cometlake || >> + display->platform.coffeelake || >> + display->platform.kabylake) { >> encoder->get_buf_trans = kbl_get_buf_trans; >> - } else if (IS_SKYLAKE_ULX(i915)) { >> + } else if (display->platform.skylake_ulx) { >> encoder->get_buf_trans = skl_y_get_buf_trans; >> - } else if (IS_SKYLAKE_ULT(i915)) { >> + } else if (display->platform.skylake_ult) { >> encoder->get_buf_trans = skl_u_get_buf_trans; >> - } else if (IS_SKYLAKE(i915)) { >> + } else if (display->platform.skylake) { >> encoder->get_buf_trans = skl_get_buf_trans; >> - } else if (IS_BROADWELL(i915)) { >> + } else if (display->platform.broadwell) { >> encoder->get_buf_trans = bdw_get_buf_trans; >> - } else if (IS_HASWELL(i915)) { >> + } else if (display->platform.haswell) { >> encoder->get_buf_trans = hsw_get_buf_trans; >> } else { >> - MISSING_CASE(INTEL_INFO(i915)->platform); >> + struct pci_dev *pdev = to_pci_dev(display->drm->dev); >> + >> + MISSING_CASE(pdev->device); >> } >> } >> -- >> 2.39.5 >> -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display 2025-02-04 13:42 [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Jani Nikula ` (4 preceding siblings ...) 2025-02-04 23:01 ` [PATCH 1/3] " Rodrigo Vivi @ 2025-02-05 11:32 ` Patchwork 2025-02-05 15:27 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-02-05 11:32 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3008 bytes --] == Series Details == Series: series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display URL : https://patchwork.freedesktop.org/series/144315/ State : success == Summary == CI Bug Log - changes from CI_DRM_16063 -> Patchwork_144315v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_144315v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][1] -> [FAIL][2] ([i915#13633]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][3] -> [SKIP][4] ([i915#9197]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@dmabuf@all-tests: - bat-apl-1: [INCOMPLETE][5] ([i915#12904]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-apl-1/igt@dmabuf@all-tests.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13633]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13633 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_16063 -> Patchwork_144315v1 CI-20190529: 20190529 CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_144315v1: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/index.html [-- Attachment #2: Type: text/html, Size: 3693 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display 2025-02-04 13:42 [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Jani Nikula ` (5 preceding siblings ...) 2025-02-05 11:32 ` ✓ i915.CI.BAT: success for series starting with [1/3] " Patchwork @ 2025-02-05 15:27 ` Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-02-05 15:27 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 53273 bytes --] == Series Details == Series: series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display URL : https://patchwork.freedesktop.org/series/144315/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16063_full -> Patchwork_144315v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_144315v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_144315v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (11 -> 12) ------------------------------ Additional (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_144315v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-glk8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-modeset-vs-hang@a-vga1: - shard-snb: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-snb5/igt@kms_flip@flip-vs-modeset-vs-hang@a-vga1.html Known issues ------------ Here are the changes found in Patchwork_144315v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][6] ([i915#1099]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-snb4/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_eio@throttle: - shard-mtlp: [PASS][7] -> [ABORT][8] ([i915#13193]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-3/igt@gem_eio@throttle.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-mtlp-7/igt@gem_eio@throttle.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#4812]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fence@parallel@rcs0: - shard-rkl: [PASS][10] -> [DMESG-WARN][11] ([i915#12964]) +5 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-7/igt@gem_exec_fence@parallel@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-3/igt@gem_exec_fence@parallel@rcs0.html * igt@gem_exec_fence@submit67: - shard-dg2-9: NOTRUN -> [SKIP][12] ([i915#4812]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gem_exec_fence@submit67.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#4812]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2-9: NOTRUN -> [SKIP][14] ([i915#3539] / [i915#4852]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gem_exec_flush@basic-wb-pro-default.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3539] / [i915#4852]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#3281]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2-9: NOTRUN -> [SKIP][17] ([i915#3281]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gem_exec_reloc@basic-write-wc-noreloc.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#3281]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2-9: NOTRUN -> [SKIP][19] ([i915#4860]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-y.html - shard-dg1: NOTRUN -> [SKIP][20] ([i915#4860]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_mmap_gtt@basic-small-bo-tiledy: - shard-dg2-9: NOTRUN -> [SKIP][21] ([i915#4077]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gem_mmap_gtt@basic-small-bo-tiledy.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#4077]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gem_mmap_gtt@basic-small-bo-tiledy.html * igt@gem_mmap_gtt@big-copy-xy: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4077]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@gem_mmap_gtt@big-copy-xy.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2-9: NOTRUN -> [SKIP][24] ([i915#4083]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#4083]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3282]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-snoop.html - shard-dg2-9: NOTRUN -> [SKIP][27] ([i915#3282]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pread@uncached: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3282]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-2/igt@gem_pread@uncached.html * igt@gem_pxp@display-protected-crc: - shard-dg2-9: NOTRUN -> [SKIP][29] ([i915#4270]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4270]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gem_pxp@display-protected-crc.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#5190] / [i915#8428]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#5190] / [i915#8428]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4879]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3297]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][35] +156 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-snb7/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#2856]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@secure-batches: - shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#2856]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#2527]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@gen9_exec_parse@secure-batches.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][39] -> [DMESG-FAIL][40] ([i915#12061]) +1 other test dmesg-fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-6/igt@i915_selftest@live@workarounds.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-9: NOTRUN -> [SKIP][41] ([i915#5190]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#8709]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html * igt@kms_atomic_interruptible@universal-setplane-cursor@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][43] ([i915#12964]) +2 other tests dmesg-warn [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-3/igt@kms_atomic_interruptible@universal-setplane-cursor@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#1769] / [i915#3555]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#5286]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3638]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][47] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][48] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4538] / [i915#5190]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-9: NOTRUN -> [SKIP][50] ([i915#4538] / [i915#5190]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4538]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#10307] / [i915#10434] / [i915#6095]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#10307] / [i915#6095]) +92 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#10307] / [i915#6095]) +19 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#6095]) +50 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-13/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#6095]) +12 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#6095]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#6095]) +37 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#11616] / [i915#7213]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4087]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-c-dp-3.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#11151] / [i915#7828]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#11151] / [i915#7828]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#11151] / [i915#7828]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#11151] / [i915#7828]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@srm@pipe-a-dp-3: - shard-dg2: NOTRUN -> [TIMEOUT][65] ([i915#7173]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-3.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][66] ([i915#1339] / [i915#7173]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-alpha-transparent: - shard-dg1: [PASS][67] -> [DMESG-WARN][68] ([i915#4423]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-12/igt@kms_cursor_crc@cursor-alpha-transparent.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-17/igt@kms_cursor_crc@cursor-alpha-transparent.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#13049]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#4103] / [i915#4213]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4103] / [i915#4213]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#13046] / [i915#5354]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][73] ([i915#12170]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-snb4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][74] ([i915#11968]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-snb4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3804]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#8812]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#3555] / [i915#3840]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3555] / [i915#3840]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@psr: - shard-dg2-9: NOTRUN -> [SKIP][79] ([i915#3469]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3469]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#1839]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_feature_discovery@display-4x.html - shard-dg2-9: NOTRUN -> [SKIP][82] ([i915#1839]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#8381]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences.html - shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#8381]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-dg2-9: NOTRUN -> [SKIP][85] ([i915#9934]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-rmfb.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#9934]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#3637]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@flip-vs-modeset-vs-hang: - shard-snb: NOTRUN -> [INCOMPLETE][88] ([i915#12314]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-snb5/igt@kms_flip@flip-vs-modeset-vs-hang.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [PASS][89] -> [FAIL][90] ([i915#6880]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][91] +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][92] +9 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: NOTRUN -> [FAIL][93] ([i915#6880]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3458]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3458]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#8708]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][97] ([i915#5354]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#5354]) +6 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8708]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][100] ([i915#3458]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#8708]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: [PASS][102] -> [SKIP][103] ([i915#3555] / [i915#8228]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#12394]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-FAIL][105] ([i915#12964]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#3555] / [i915#8821]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#12247] / [i915#9423]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#12247]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#3555]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#12247]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2-9: NOTRUN -> [SKIP][112] ([i915#12247] / [i915#9423]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-dg2-9: NOTRUN -> [SKIP][113] ([i915#12247]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#12247]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#12247] / [i915#6953] / [i915#9423]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#12247]) +7 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: NOTRUN -> [FAIL][117] ([i915#9295]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#9685]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][119] -> [SKIP][120] ([i915#9519]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: [PASS][121] -> [SKIP][122] ([i915#9519]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@pc8-residency: - shard-dg2-9: NOTRUN -> [SKIP][123] +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_pm_rpm@pc8-residency.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#11520]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-9: NOTRUN -> [SKIP][125] ([i915#11520]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#11520]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#11520]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#11520]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][129] ([i915#11520]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#9683]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#9732]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-pr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#1072] / [i915#9732]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_psr@fbc-pr-primary-page-flip.html * igt@kms_psr@fbc-psr-primary-render: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#1072] / [i915#9732]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@psr-suspend: - shard-dg2-9: NOTRUN -> [SKIP][134] ([i915#1072] / [i915#9732]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_psr@psr-suspend.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5289]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3555]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_vrr@negative-basic: - shard-dg2: [PASS][137] -> [SKIP][138] ([i915#3555] / [i915#9906]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-11/igt@kms_vrr@negative-basic.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#9906]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][140] ([i915#9906]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#2437]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#2437] / [i915#9412]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#2433]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-1/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][144] -> [FAIL][145] ([i915#4349]) +1 other test fail [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3708] / [i915#4077]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3708]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-2/igt@prime_vgem@fence-flip-hang.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][148] ([i915#13427]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [FAIL][150] ([i915#9561]) -> [PASS][151] +1 other test pass [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-1/igt@gem_ctx_freq@sysfs.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-6/igt@gem_ctx_freq@sysfs.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][152] ([i915#12543] / [i915#5784]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-14/igt@gem_eio@reset-stress.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-18/igt@gem_eio@reset-stress.html * igt@gem_exec_schedule@wide: - shard-tglu: [INCOMPLETE][154] ([i915#13391]) -> [PASS][155] +1 other test pass [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-2/igt@gem_exec_schedule@wide.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-4/igt@gem_exec_schedule@wide.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: [FAIL][156] -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb4/igt@gem_tiled_swapping@non-threaded.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-snb1/igt@gem_tiled_swapping@non-threaded.html - shard-tglu: [FAIL][158] ([i915#12941]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-8/igt@gem_tiled_swapping@non-threaded.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-5/igt@gem_tiled_swapping@non-threaded.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [INCOMPLETE][160] ([i915#4817]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_atomic_transition@modeset-transition: - shard-glk: [FAIL][162] ([i915#12238]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk8/igt@kms_atomic_transition@modeset-transition.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-glk2/igt@kms_atomic_transition@modeset-transition.html * igt@kms_atomic_transition@modeset-transition@2x-outputs: - shard-glk: [FAIL][164] ([i915#11859]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-glk2/igt@kms_atomic_transition@modeset-transition@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [FAIL][166] ([i915#5956]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][168] ([i915#5956]) -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][170] ([i915#13566]) -> [PASS][171] +3 other tests pass [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-tglu: [FAIL][172] ([i915#13566]) -> [PASS][173] +9 other tests pass [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-rkl: [DMESG-WARN][174] ([i915#12964]) -> [PASS][175] +4 other tests pass [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][176] ([i915#9519]) -> [PASS][177] +1 other test pass [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][178] ([i915#9519]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][180] ([i915#10393]) -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-2/igt@kms_vrr@negative-basic.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-mtlp-1/igt@kms_vrr@negative-basic.html * igt@perf_pmu@most-busy-check-all: - shard-snb: [INCOMPLETE][182] ([i915#13520]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@perf_pmu@most-busy-check-all.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-snb5/igt@perf_pmu@most-busy-check-all.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][184] ([i915#5493]) -> [DMESG-WARN][185] ([i915#5493]) +1 other test dmesg-warn [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [DMESG-FAIL][186] ([i915#12964]) -> [INCOMPLETE][187] ([i915#4817]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-2/igt@i915_suspend@sysfs-reader.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-5/igt@i915_suspend@sysfs-reader.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-dg1: [SKIP][188] ([i915#4423] / [i915#6095]) -> [SKIP][189] ([i915#6095]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-12/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-dg1-17/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-rkl: [DMESG-FAIL][190] ([i915#12964]) -> [DMESG-WARN][191] ([i915#12964]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][192] -> [FAIL][193] ([Intel XE#3098]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/shard-glk8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#11968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11968 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12170]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12170 [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543 [i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#13391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13391 [i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_16063 -> Patchwork_144315v1 CI-20190529: 20190529 CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_144315v1: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144315v1/index.html [-- Attachment #2: Type: text/html, Size: 64692 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-02-05 17:56 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-04 13:42 [PATCH 1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Jani Nikula 2025-02-04 13:42 ` [PATCH 2/3] drm/i915/cdclk: switch to new platform checks Jani Nikula 2025-02-04 23:06 ` Rodrigo Vivi 2025-02-04 13:42 ` [PATCH 3/3] drm/i915/cx0: convert to struct intel_display based " Jani Nikula 2025-02-04 23:06 ` Rodrigo Vivi 2025-02-04 18:00 ` ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/display: convert intel_ddi_buf_trans.c to struct intel_display Patchwork 2025-02-04 18:20 ` ✗ i915.CI.BAT: failure " Patchwork 2025-02-05 8:31 ` Jani Nikula 2025-02-05 14:00 ` Ravali, JupallyX 2025-02-04 23:01 ` [PATCH 1/3] " Rodrigo Vivi 2025-02-05 17:56 ` Jani Nikula 2025-02-05 11:32 ` ✓ i915.CI.BAT: success for series starting with [1/3] " Patchwork 2025-02-05 15:27 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox