* [Intel-gfx] [PATCH v5 0/2] HDMI2.1 PCON Misc Fixes
@ 2021-03-23 11:24 Ankit Nautiyal
2021-03-23 11:24 ` [Intel-gfx] [PATCH v5 1/2] drm/dp_helper: Define options for FRL training for HDMI2.1 PCON Ankit Nautiyal
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Ankit Nautiyal @ 2021-03-23 11:24 UTC (permalink / raw)
To: intel-gfx; +Cc: dri-devel
Patch1: Tweaks the drm_helpers for PCON configuration.
Patch2: Removes unwanted code not applicable for older platforms.
[Merged]
Patch3: Fixes condition for starting FRL link training.
rev3: Patch-1 from rev2 [Read PCON DSC ENC caps only for DPCD
rev >= 1.4] is dropped as it mixes DPCD and DP revisions.
rev4: Rebased
Ankit Nautiyal (2):
drm/dp_helper: Define options for FRL training for HDMI2.1 PCON
drm/i915/display: Configure HDMI2.1 Pcon for FRL only if Src-Ctl mode
is available
drivers/gpu/drm/drm_dp_helper.c | 24 ++++++++++++++----------
drivers/gpu/drm/i915/display/intel_dp.c | 19 +++++++++++--------
include/drm/drm_dp_helper.h | 6 ++++--
3 files changed, 29 insertions(+), 20 deletions(-)
base-commit: 8e469260b87ff08620181d86570f7ec4e41c0ef7
--
2.29.2
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 12+ messages in thread* [Intel-gfx] [PATCH v5 1/2] drm/dp_helper: Define options for FRL training for HDMI2.1 PCON 2021-03-23 11:24 [Intel-gfx] [PATCH v5 0/2] HDMI2.1 PCON Misc Fixes Ankit Nautiyal @ 2021-03-23 11:24 ` Ankit Nautiyal 2021-03-26 9:47 ` Jani Nikula 2021-03-23 11:24 ` [Intel-gfx] [PATCH v5 2/2] drm/i915/display: Configure HDMI2.1 Pcon for FRL only if Src-Ctl mode is available Ankit Nautiyal ` (4 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Ankit Nautiyal @ 2021-03-23 11:24 UTC (permalink / raw) To: intel-gfx; +Cc: dri-devel Currently the FRL training mode (Concurrent, Sequential) and training type (Normal, Extended) are not defined properly and are passed as bool values in drm_helpers for pcon configuration for FRL training. This patch: -Add register masks for Sequential and Normal FRL training options. -Fixes the drm_helpers for FRL Training configuration to use the appropriate masks. -Modifies the calls to the above drm_helpers in i915/intel_dp as per the above change. v2: Re-used the register masks for these options, instead of enum. (Ville) Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/drm_dp_helper.c | 24 ++++++++++++++---------- drivers/gpu/drm/i915/display/intel_dp.c | 10 ++++------ include/drm/drm_dp_helper.h | 6 ++++-- 3 files changed, 22 insertions(+), 18 deletions(-) diff --git a/drivers/gpu/drm/drm_dp_helper.c b/drivers/gpu/drm/drm_dp_helper.c index eedbb48815b7..cb2f53e56685 100644 --- a/drivers/gpu/drm/drm_dp_helper.c +++ b/drivers/gpu/drm/drm_dp_helper.c @@ -2635,14 +2635,16 @@ EXPORT_SYMBOL(drm_dp_pcon_is_frl_ready); * drm_dp_pcon_frl_configure_1() - Set HDMI LINK Configuration-Step1 * @aux: DisplayPort AUX channel * @max_frl_gbps: maximum frl bw to be configured between PCON and HDMI sink - * @concurrent_mode: true if concurrent mode or operation is required, - * false otherwise. + * @frl_mode: FRL Training mode, it can be either Concurrent or Sequential. + * In Concurrent Mode, the FRL link bring up can be done along with + * DP Link training. In Sequential mode, the FRL link bring up is done prior to + * the DP Link training. * * Returns 0 if success, else returns negative error code. */ int drm_dp_pcon_frl_configure_1(struct drm_dp_aux *aux, int max_frl_gbps, - bool concurrent_mode) + u8 frl_mode) { int ret; u8 buf; @@ -2651,7 +2653,7 @@ int drm_dp_pcon_frl_configure_1(struct drm_dp_aux *aux, int max_frl_gbps, if (ret < 0) return ret; - if (concurrent_mode) + if (frl_mode == DP_PCON_ENABLE_CONCURRENT_LINK) buf |= DP_PCON_ENABLE_CONCURRENT_LINK; else buf &= ~DP_PCON_ENABLE_CONCURRENT_LINK; @@ -2694,21 +2696,23 @@ EXPORT_SYMBOL(drm_dp_pcon_frl_configure_1); * drm_dp_pcon_frl_configure_2() - Set HDMI Link configuration Step-2 * @aux: DisplayPort AUX channel * @max_frl_mask : Max FRL BW to be tried by the PCON with HDMI Sink - * @extended_train_mode : true for Extended Mode, false for Normal Mode. - * In Normal mode, the PCON tries each frl bw from the max_frl_mask starting - * from min, and stops when link training is successful. In Extended mode, all - * frl bw selected in the mask are trained by the PCON. + * @frl_type : FRL training type, can be Extended, or Normal. + * In Normal FRL training, the PCON tries each frl bw from the max_frl_mask + * starting from min, and stops when link training is successful. In Extended + * FRL training, all frl bw selected in the mask are trained by the PCON. * * Returns 0 if success, else returns negative error code. */ int drm_dp_pcon_frl_configure_2(struct drm_dp_aux *aux, int max_frl_mask, - bool extended_train_mode) + u8 frl_type) { int ret; u8 buf = max_frl_mask; - if (extended_train_mode) + if (frl_type == DP_PCON_FRL_LINK_TRAIN_EXTENDED) buf |= DP_PCON_FRL_LINK_TRAIN_EXTENDED; + else + buf &= ~DP_PCON_FRL_LINK_TRAIN_EXTENDED; ret = drm_dp_dpcd_writeb(aux, DP_PCON_HDMI_LINK_CONFIG_2, buf); if (ret < 0) diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c index 1400c5b44c83..1f6f4d0c8e2d 100644 --- a/drivers/gpu/drm/i915/display/intel_dp.c +++ b/drivers/gpu/drm/i915/display/intel_dp.c @@ -2073,10 +2073,6 @@ static int intel_dp_hdmi_sink_max_frl(struct intel_dp *intel_dp) static int intel_dp_pcon_start_frl_training(struct intel_dp *intel_dp) { -#define PCON_EXTENDED_TRAIN_MODE (1 > 0) -#define PCON_CONCURRENT_MODE (1 > 0) -#define PCON_SEQUENTIAL_MODE !PCON_CONCURRENT_MODE -#define PCON_NORMAL_TRAIN_MODE !PCON_EXTENDED_TRAIN_MODE #define TIMEOUT_FRL_READY_MS 500 #define TIMEOUT_HDMI_LINK_ACTIVE_MS 1000 @@ -2110,10 +2106,12 @@ static int intel_dp_pcon_start_frl_training(struct intel_dp *intel_dp) return -ETIMEDOUT; max_frl_bw_mask = intel_dp_pcon_set_frl_mask(max_frl_bw); - ret = drm_dp_pcon_frl_configure_1(&intel_dp->aux, max_frl_bw, PCON_SEQUENTIAL_MODE); + ret = drm_dp_pcon_frl_configure_1(&intel_dp->aux, max_frl_bw, + DP_PCON_ENABLE_SEQUENTIAL_LINK); if (ret < 0) return ret; - ret = drm_dp_pcon_frl_configure_2(&intel_dp->aux, max_frl_bw_mask, PCON_NORMAL_TRAIN_MODE); + ret = drm_dp_pcon_frl_configure_2(&intel_dp->aux, max_frl_bw_mask, + DP_PCON_FRL_LINK_TRAIN_NORMAL); if (ret < 0) return ret; ret = drm_dp_pcon_frl_enable(&intel_dp->aux); diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h index 632ad7faa006..85d728f4aad0 100644 --- a/include/drm/drm_dp_helper.h +++ b/include/drm/drm_dp_helper.h @@ -1176,6 +1176,7 @@ struct drm_device; # define DP_PCON_ENABLE_MAX_BW_48GBPS 6 # define DP_PCON_ENABLE_SOURCE_CTL_MODE (1 << 3) # define DP_PCON_ENABLE_CONCURRENT_LINK (1 << 4) +# define DP_PCON_ENABLE_SEQUENTIAL_LINK (0 << 4) # define DP_PCON_ENABLE_LINK_FRL_MODE (1 << 5) # define DP_PCON_ENABLE_HPD_READY (1 << 6) # define DP_PCON_ENABLE_HDMI_LINK (1 << 7) @@ -1190,6 +1191,7 @@ struct drm_device; # define DP_PCON_FRL_BW_MASK_40GBPS (1 << 4) # define DP_PCON_FRL_BW_MASK_48GBPS (1 << 5) # define DP_PCON_FRL_LINK_TRAIN_EXTENDED (1 << 6) +# define DP_PCON_FRL_LINK_TRAIN_NORMAL (0 << 6) /* PCON HDMI LINK STATUS */ #define DP_PCON_HDMI_TX_LINK_STATUS 0x303B @@ -2154,9 +2156,9 @@ int drm_dp_get_pcon_max_frl_bw(const u8 dpcd[DP_RECEIVER_CAP_SIZE], int drm_dp_pcon_frl_prepare(struct drm_dp_aux *aux, bool enable_frl_ready_hpd); bool drm_dp_pcon_is_frl_ready(struct drm_dp_aux *aux); int drm_dp_pcon_frl_configure_1(struct drm_dp_aux *aux, int max_frl_gbps, - bool concurrent_mode); + u8 frl_mode); int drm_dp_pcon_frl_configure_2(struct drm_dp_aux *aux, int max_frl_mask, - bool extended_train_mode); + u8 frl_type); int drm_dp_pcon_reset_frl_config(struct drm_dp_aux *aux); int drm_dp_pcon_frl_enable(struct drm_dp_aux *aux); -- 2.29.2 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] [PATCH v5 1/2] drm/dp_helper: Define options for FRL training for HDMI2.1 PCON 2021-03-23 11:24 ` [Intel-gfx] [PATCH v5 1/2] drm/dp_helper: Define options for FRL training for HDMI2.1 PCON Ankit Nautiyal @ 2021-03-26 9:47 ` Jani Nikula 2021-03-26 14:59 ` Maxime Ripard 0 siblings, 1 reply; 12+ messages in thread From: Jani Nikula @ 2021-03-26 9:47 UTC (permalink / raw) To: Ankit Nautiyal, intel-gfx; +Cc: Thomas Zimmermann, Maxime Ripard, dri-devel On Tue, 23 Mar 2021, Ankit Nautiyal <ankit.k.nautiyal@intel.com> wrote: > Currently the FRL training mode (Concurrent, Sequential) and > training type (Normal, Extended) are not defined properly and > are passed as bool values in drm_helpers for pcon > configuration for FRL training. > > This patch: > -Add register masks for Sequential and Normal FRL training options. > -Fixes the drm_helpers for FRL Training configuration to use the > appropriate masks. > -Modifies the calls to the above drm_helpers in i915/intel_dp as per > the above change. > > v2: Re-used the register masks for these options, instead of enum. (Ville) > > Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Maarten, Maxime, Thomas - Can I get an ack for merging this via drm-intel-next, please? BR, Jani. > --- > drivers/gpu/drm/drm_dp_helper.c | 24 ++++++++++++++---------- > drivers/gpu/drm/i915/display/intel_dp.c | 10 ++++------ > include/drm/drm_dp_helper.h | 6 ++++-- > 3 files changed, 22 insertions(+), 18 deletions(-) > > diff --git a/drivers/gpu/drm/drm_dp_helper.c b/drivers/gpu/drm/drm_dp_helper.c > index eedbb48815b7..cb2f53e56685 100644 > --- a/drivers/gpu/drm/drm_dp_helper.c > +++ b/drivers/gpu/drm/drm_dp_helper.c > @@ -2635,14 +2635,16 @@ EXPORT_SYMBOL(drm_dp_pcon_is_frl_ready); > * drm_dp_pcon_frl_configure_1() - Set HDMI LINK Configuration-Step1 > * @aux: DisplayPort AUX channel > * @max_frl_gbps: maximum frl bw to be configured between PCON and HDMI sink > - * @concurrent_mode: true if concurrent mode or operation is required, > - * false otherwise. > + * @frl_mode: FRL Training mode, it can be either Concurrent or Sequential. > + * In Concurrent Mode, the FRL link bring up can be done along with > + * DP Link training. In Sequential mode, the FRL link bring up is done prior to > + * the DP Link training. > * > * Returns 0 if success, else returns negative error code. > */ > > int drm_dp_pcon_frl_configure_1(struct drm_dp_aux *aux, int max_frl_gbps, > - bool concurrent_mode) > + u8 frl_mode) > { > int ret; > u8 buf; > @@ -2651,7 +2653,7 @@ int drm_dp_pcon_frl_configure_1(struct drm_dp_aux *aux, int max_frl_gbps, > if (ret < 0) > return ret; > > - if (concurrent_mode) > + if (frl_mode == DP_PCON_ENABLE_CONCURRENT_LINK) > buf |= DP_PCON_ENABLE_CONCURRENT_LINK; > else > buf &= ~DP_PCON_ENABLE_CONCURRENT_LINK; > @@ -2694,21 +2696,23 @@ EXPORT_SYMBOL(drm_dp_pcon_frl_configure_1); > * drm_dp_pcon_frl_configure_2() - Set HDMI Link configuration Step-2 > * @aux: DisplayPort AUX channel > * @max_frl_mask : Max FRL BW to be tried by the PCON with HDMI Sink > - * @extended_train_mode : true for Extended Mode, false for Normal Mode. > - * In Normal mode, the PCON tries each frl bw from the max_frl_mask starting > - * from min, and stops when link training is successful. In Extended mode, all > - * frl bw selected in the mask are trained by the PCON. > + * @frl_type : FRL training type, can be Extended, or Normal. > + * In Normal FRL training, the PCON tries each frl bw from the max_frl_mask > + * starting from min, and stops when link training is successful. In Extended > + * FRL training, all frl bw selected in the mask are trained by the PCON. > * > * Returns 0 if success, else returns negative error code. > */ > int drm_dp_pcon_frl_configure_2(struct drm_dp_aux *aux, int max_frl_mask, > - bool extended_train_mode) > + u8 frl_type) > { > int ret; > u8 buf = max_frl_mask; > > - if (extended_train_mode) > + if (frl_type == DP_PCON_FRL_LINK_TRAIN_EXTENDED) > buf |= DP_PCON_FRL_LINK_TRAIN_EXTENDED; > + else > + buf &= ~DP_PCON_FRL_LINK_TRAIN_EXTENDED; > > ret = drm_dp_dpcd_writeb(aux, DP_PCON_HDMI_LINK_CONFIG_2, buf); > if (ret < 0) > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c > index 1400c5b44c83..1f6f4d0c8e2d 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp.c > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > @@ -2073,10 +2073,6 @@ static int intel_dp_hdmi_sink_max_frl(struct intel_dp *intel_dp) > > static int intel_dp_pcon_start_frl_training(struct intel_dp *intel_dp) > { > -#define PCON_EXTENDED_TRAIN_MODE (1 > 0) > -#define PCON_CONCURRENT_MODE (1 > 0) > -#define PCON_SEQUENTIAL_MODE !PCON_CONCURRENT_MODE > -#define PCON_NORMAL_TRAIN_MODE !PCON_EXTENDED_TRAIN_MODE > #define TIMEOUT_FRL_READY_MS 500 > #define TIMEOUT_HDMI_LINK_ACTIVE_MS 1000 > > @@ -2110,10 +2106,12 @@ static int intel_dp_pcon_start_frl_training(struct intel_dp *intel_dp) > return -ETIMEDOUT; > > max_frl_bw_mask = intel_dp_pcon_set_frl_mask(max_frl_bw); > - ret = drm_dp_pcon_frl_configure_1(&intel_dp->aux, max_frl_bw, PCON_SEQUENTIAL_MODE); > + ret = drm_dp_pcon_frl_configure_1(&intel_dp->aux, max_frl_bw, > + DP_PCON_ENABLE_SEQUENTIAL_LINK); > if (ret < 0) > return ret; > - ret = drm_dp_pcon_frl_configure_2(&intel_dp->aux, max_frl_bw_mask, PCON_NORMAL_TRAIN_MODE); > + ret = drm_dp_pcon_frl_configure_2(&intel_dp->aux, max_frl_bw_mask, > + DP_PCON_FRL_LINK_TRAIN_NORMAL); > if (ret < 0) > return ret; > ret = drm_dp_pcon_frl_enable(&intel_dp->aux); > diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h > index 632ad7faa006..85d728f4aad0 100644 > --- a/include/drm/drm_dp_helper.h > +++ b/include/drm/drm_dp_helper.h > @@ -1176,6 +1176,7 @@ struct drm_device; > # define DP_PCON_ENABLE_MAX_BW_48GBPS 6 > # define DP_PCON_ENABLE_SOURCE_CTL_MODE (1 << 3) > # define DP_PCON_ENABLE_CONCURRENT_LINK (1 << 4) > +# define DP_PCON_ENABLE_SEQUENTIAL_LINK (0 << 4) > # define DP_PCON_ENABLE_LINK_FRL_MODE (1 << 5) > # define DP_PCON_ENABLE_HPD_READY (1 << 6) > # define DP_PCON_ENABLE_HDMI_LINK (1 << 7) > @@ -1190,6 +1191,7 @@ struct drm_device; > # define DP_PCON_FRL_BW_MASK_40GBPS (1 << 4) > # define DP_PCON_FRL_BW_MASK_48GBPS (1 << 5) > # define DP_PCON_FRL_LINK_TRAIN_EXTENDED (1 << 6) > +# define DP_PCON_FRL_LINK_TRAIN_NORMAL (0 << 6) > > /* PCON HDMI LINK STATUS */ > #define DP_PCON_HDMI_TX_LINK_STATUS 0x303B > @@ -2154,9 +2156,9 @@ int drm_dp_get_pcon_max_frl_bw(const u8 dpcd[DP_RECEIVER_CAP_SIZE], > int drm_dp_pcon_frl_prepare(struct drm_dp_aux *aux, bool enable_frl_ready_hpd); > bool drm_dp_pcon_is_frl_ready(struct drm_dp_aux *aux); > int drm_dp_pcon_frl_configure_1(struct drm_dp_aux *aux, int max_frl_gbps, > - bool concurrent_mode); > + u8 frl_mode); > int drm_dp_pcon_frl_configure_2(struct drm_dp_aux *aux, int max_frl_mask, > - bool extended_train_mode); > + u8 frl_type); > int drm_dp_pcon_reset_frl_config(struct drm_dp_aux *aux); > int drm_dp_pcon_frl_enable(struct drm_dp_aux *aux); -- Jani Nikula, Intel Open Source Graphics Center _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] [PATCH v5 1/2] drm/dp_helper: Define options for FRL training for HDMI2.1 PCON 2021-03-26 9:47 ` Jani Nikula @ 2021-03-26 14:59 ` Maxime Ripard 2021-03-31 10:21 ` Jani Nikula 0 siblings, 1 reply; 12+ messages in thread From: Maxime Ripard @ 2021-03-26 14:59 UTC (permalink / raw) To: Jani Nikula; +Cc: Thomas Zimmermann, intel-gfx, dri-devel [-- Attachment #1.1: Type: text/plain, Size: 1125 bytes --] Hi, On Fri, Mar 26, 2021 at 11:47:58AM +0200, Jani Nikula wrote: > On Tue, 23 Mar 2021, Ankit Nautiyal <ankit.k.nautiyal@intel.com> wrote: > > Currently the FRL training mode (Concurrent, Sequential) and > > training type (Normal, Extended) are not defined properly and > > are passed as bool values in drm_helpers for pcon > > configuration for FRL training. > > > > This patch: > > -Add register masks for Sequential and Normal FRL training options. > > -Fixes the drm_helpers for FRL Training configuration to use the > > appropriate masks. > > -Modifies the calls to the above drm_helpers in i915/intel_dp as per > > the above change. > > > > v2: Re-used the register masks for these options, instead of enum. (Ville) > > > > Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Maarten, Maxime, Thomas - > > Can I get an ack for merging this via drm-intel-next, please? I was hoping that someone with either i915 or DP knowledge would comment, but the patch looks fine to me, you can go ahead I guess :) Maxime [-- Attachment #1.2: signature.asc --] [-- Type: application/pgp-signature, Size: 228 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] [PATCH v5 1/2] drm/dp_helper: Define options for FRL training for HDMI2.1 PCON 2021-03-26 14:59 ` Maxime Ripard @ 2021-03-31 10:21 ` Jani Nikula 0 siblings, 0 replies; 12+ messages in thread From: Jani Nikula @ 2021-03-31 10:21 UTC (permalink / raw) To: Maxime Ripard; +Cc: Thomas Zimmermann, intel-gfx, dri-devel On Fri, 26 Mar 2021, Maxime Ripard <maxime@cerno.tech> wrote: > Hi, > > On Fri, Mar 26, 2021 at 11:47:58AM +0200, Jani Nikula wrote: >> On Tue, 23 Mar 2021, Ankit Nautiyal <ankit.k.nautiyal@intel.com> wrote: >> > Currently the FRL training mode (Concurrent, Sequential) and >> > training type (Normal, Extended) are not defined properly and >> > are passed as bool values in drm_helpers for pcon >> > configuration for FRL training. >> > >> > This patch: >> > -Add register masks for Sequential and Normal FRL training options. >> > -Fixes the drm_helpers for FRL Training configuration to use the >> > appropriate masks. >> > -Modifies the calls to the above drm_helpers in i915/intel_dp as per >> > the above change. >> > >> > v2: Re-used the register masks for these options, instead of enum. (Ville) >> > >> > Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> >> > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> >> >> Maarten, Maxime, Thomas - >> >> Can I get an ack for merging this via drm-intel-next, please? > > I was hoping that someone with either i915 or DP knowledge would > comment, but the patch looks fine to me, you can go ahead I guess :) Thanks for the patch, review, and ack, pushed the lot to drm-intel-next. BR, Jani. -- Jani Nikula, Intel Open Source Graphics Center _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] [PATCH v5 2/2] drm/i915/display: Configure HDMI2.1 Pcon for FRL only if Src-Ctl mode is available 2021-03-23 11:24 [Intel-gfx] [PATCH v5 0/2] HDMI2.1 PCON Misc Fixes Ankit Nautiyal 2021-03-23 11:24 ` [Intel-gfx] [PATCH v5 1/2] drm/dp_helper: Define options for FRL training for HDMI2.1 PCON Ankit Nautiyal @ 2021-03-23 11:24 ` Ankit Nautiyal 2021-03-23 15:06 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for HDMI2.1 PCON Misc Fixes (rev5) Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Ankit Nautiyal @ 2021-03-23 11:24 UTC (permalink / raw) To: intel-gfx; +Cc: dri-devel Add the check if source control mode is supported by the PCON, before starting configuring PCON for FRL training, as per spec VESA DP2.0-HDMI2.1 PCON Draft-1 Sec-7. v2: Added spec details for the change. (Uma) Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> Reviewed-by: Uma Shankar <uma.shankar@intel.com> --- drivers/gpu/drm/i915/display/intel_dp.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c index 1f6f4d0c8e2d..76024452e434 100644 --- a/drivers/gpu/drm/i915/display/intel_dp.c +++ b/drivers/gpu/drm/i915/display/intel_dp.c @@ -2155,8 +2155,13 @@ void intel_dp_check_frl_training(struct intel_dp *intel_dp) { struct drm_i915_private *dev_priv = dp_to_i915(intel_dp); - /* Always go for FRL training if supported */ - if (!intel_dp_is_hdmi_2_1_sink(intel_dp) || + /* + * Always go for FRL training if: + * -PCON supports SRC_CTL_MODE (VESA DP2.0-HDMI2.1 PCON Spec Draft-1 Sec-7) + * -sink is HDMI2.1 + */ + if (!(intel_dp->dpcd[2] & DP_PCON_SOURCE_CTL_MODE) || + !intel_dp_is_hdmi_2_1_sink(intel_dp) || intel_dp->frl.is_trained) return; -- 2.29.2 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for HDMI2.1 PCON Misc Fixes (rev5) 2021-03-23 11:24 [Intel-gfx] [PATCH v5 0/2] HDMI2.1 PCON Misc Fixes Ankit Nautiyal 2021-03-23 11:24 ` [Intel-gfx] [PATCH v5 1/2] drm/dp_helper: Define options for FRL training for HDMI2.1 PCON Ankit Nautiyal 2021-03-23 11:24 ` [Intel-gfx] [PATCH v5 2/2] drm/i915/display: Configure HDMI2.1 Pcon for FRL only if Src-Ctl mode is available Ankit Nautiyal @ 2021-03-23 15:06 ` Patchwork 2021-03-23 15:33 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2021-03-23 15:06 UTC (permalink / raw) To: Ankit Nautiyal; +Cc: intel-gfx == Series Details == Series: HDMI2.1 PCON Misc Fixes (rev5) URL : https://patchwork.freedesktop.org/series/86677/ State : warning == Summary == $ dim sparse --fast origin/drm-tip Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. - +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +./drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgv_sriovmsg.h:261:49: error: static assertion failed: "amd_sriov_msg_pf2vf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c:1399:25: error: incompatible types in comparison expression (different address spaces): +drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c:1399:25: struct dma_fence * +drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c:1399:25: struct dma_fence [noderef] __rcu * +drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c:1400:17: error: incompatible types in comparison expression (different address spaces): +drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c:1400:17: struct dma_fence * +drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c:1400:17: struct dma_fence [noderef] __rcu * +drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c:1459:17: error: incompatible types in comparison expression (different address spaces): +drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c:1459:17: struct dma_fence * +drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c:1459:17: struct dma_fence [noderef] __rcu * +drivers/gpu/drm/amd/amdgpu/amdgpu_device.c:284:16: error: incompatible types in comparison expression (different type sizes): +drivers/gpu/drm/amd/amdgpu/amdgpu_device.c:284:16: unsigned long * +drivers/gpu/drm/amd/amdgpu/amdgpu_device.c:284:16: unsigned long long * +drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c:276:25: error: incompatible types in comparison expression (different address spaces): +drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c:276:25: struct dma_fence * +drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c:276:25: struct dma_fence [noderef] __rcu * +drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c:277:17: error: incompatible types in comparison expression (different address spaces): +drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c:277:17: struct dma_fence * +drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c:277:17: struct dma_fence [noderef] __rcu * +drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c:331:17: error: incompatible types in comparison expression (different address spaces): +drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c:331:17: struct dma_fence * +drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c:331:17: struct dma_fence [noderef] __rcu * +drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.h:92:56: error: marked inline, but without a definition +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/amdgv_sriovmsg.h:257:49: error: static assertion failed: "amd_sriov_msg_vf2pf_info must be 1 KB" +drivers/gpu/drm/amd/amdgpu/a _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for HDMI2.1 PCON Misc Fixes (rev5) 2021-03-23 11:24 [Intel-gfx] [PATCH v5 0/2] HDMI2.1 PCON Misc Fixes Ankit Nautiyal ` (2 preceding siblings ...) 2021-03-23 15:06 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for HDMI2.1 PCON Misc Fixes (rev5) Patchwork @ 2021-03-23 15:33 ` Patchwork 2021-03-24 12:13 ` Nautiyal, Ankit K 2021-03-24 16:09 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2021-03-25 1:37 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 1 reply; 12+ messages in thread From: Patchwork @ 2021-03-23 15:33 UTC (permalink / raw) To: Ankit Nautiyal; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 6384 bytes --] == Series Details == Series: HDMI2.1 PCON Misc Fixes (rev5) URL : https://patchwork.freedesktop.org/series/86677/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9885 -> Patchwork_19838 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_19838 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_19838, please notify your bug team 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_19838/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_19838: ### IGT changes ### #### Possible regressions #### * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html Known issues ------------ Here are the changes found in Patchwork_19838 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_prime@amd-to-i915: - fi-kbl-8809g: NOTRUN -> [DMESG-WARN][3] ([i915#2947]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@amdgpu/amd_prime@amd-to-i915.html * igt@gem_exec_suspend@basic-s0: - fi-kbl-soraka: [PASS][4] -> [INCOMPLETE][5] ([i915#155]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html * igt@gem_mmap_gtt@basic: - fi-tgl-y: [PASS][6] -> [DMESG-WARN][7] ([i915#402]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_mmap_gtt@basic.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_mmap_gtt@basic.html * igt@runner@aborted: - fi-kbl-8809g: NOTRUN -> [FAIL][8] ([i915#2947]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-kbl-8809g: [TIMEOUT][9] ([i915#3145]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html * igt@gem_exec_suspend@basic-s3: - fi-tgl-y: [DMESG-WARN][11] ([i915#2411] / [i915#402]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html * igt@gem_flink_basic@bad-flink: - fi-tgl-y: [DMESG-WARN][13] ([i915#402]) -> [PASS][14] +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_flink_basic@bad-flink.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_flink_basic@bad-flink.html * igt@i915_selftest@live@client: - fi-glk-dsi: [DMESG-FAIL][15] ([i915#3047]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-glk-dsi/igt@i915_selftest@live@client.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-glk-dsi/igt@i915_selftest@live@client.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-7500u: [DMESG-FAIL][17] ([i915#165]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.html #### Warnings #### * igt@gem_linear_blits@basic: - fi-kbl-8809g: [TIMEOUT][19] ([i915#2502] / [i915#3145]) -> [TIMEOUT][20] ([i915#3145]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-8809g/igt@gem_linear_blits@basic.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@gem_linear_blits@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2502]: https://gitlab.freedesktop.org/drm/intel/issues/2502 [i915#2947]: https://gitlab.freedesktop.org/drm/intel/issues/2947 [i915#3047]: https://gitlab.freedesktop.org/drm/intel/issues/3047 [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145 [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180 [i915#3277]: https://gitlab.freedesktop.org/drm/intel/issues/3277 [i915#3278]: https://gitlab.freedesktop.org/drm/intel/issues/3278 [i915#3283]: https://gitlab.freedesktop.org/drm/intel/issues/3283 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (48 -> 42) ------------------------------ Missing (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-icl-y fi-bdw-samus Build changes ------------- * Linux: CI_DRM_9885 -> Patchwork_19838 CI-20190529: 20190529 CI_DRM_9885: 370158d493f88d52f5aae76794228f47dd04cfe3 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6042: 529e182e30117d083ac0693011f1af04357d0115 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_19838: 120f8c9b0706eb3f52bc2185346c2f731b873a8e @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 120f8c9b0706 drm/i915/display: Configure HDMI2.1 Pcon for FRL only if Src-Ctl mode is available 873474340aaa drm/dp_helper: Define options for FRL training for HDMI2.1 PCON == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/index.html [-- Attachment #1.2: Type: text/html, Size: 7274 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for HDMI2.1 PCON Misc Fixes (rev5) 2021-03-23 15:33 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork @ 2021-03-24 12:13 ` Nautiyal, Ankit K 2021-03-24 16:26 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 12+ messages in thread From: Nautiyal, Ankit K @ 2021-03-24 12:13 UTC (permalink / raw) To: intel-gfx, lakshminarayana.vudum Hi Lakshmi, igt@kms_chamelium@hdmi-hpd-fast: * fi-icl-u2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html> This is existing issue https://gitlab.freedesktop.org/drm/intel/-/issues/2868 Regards, Ankit On 3/23/2021 9:03 PM, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* HDMI2.1 PCON Misc Fixes (rev5) > *URL:* https://patchwork.freedesktop.org/series/86677/ > <https://patchwork.freedesktop.org/series/86677/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/index.html> > > > CI Bug Log - changes from CI_DRM_9885 -> Patchwork_19838 > > > Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_19838 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_19838, please notify your bug team 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_19838/index.html > > > Possible new issues > > Here are the unknown changes that may have been introduced in > Patchwork_19838: > > > IGT changes > > > Possible regressions > > * igt@kms_chamelium@hdmi-hpd-fast: > o fi-icl-u2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html> > > > Known issues > > Here are the changes found in Patchwork_19838 that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@amdgpu/amd_prime@amd-to-i915: > > o fi-kbl-8809g: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@amdgpu/amd_prime@amd-to-i915.html> > (i915#2947 <https://gitlab.freedesktop.org/drm/intel/issues/2947>) > * > > igt@gem_exec_suspend@basic-s0: > > o fi-kbl-soraka: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html> > (i915#155 <https://gitlab.freedesktop.org/drm/intel/issues/155>) > * > > igt@gem_mmap_gtt@basic: > > o fi-tgl-y: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_mmap_gtt@basic.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_mmap_gtt@basic.html> > (i915#402 > <https://gitlab.freedesktop.org/drm/intel/issues/402>) +2 > similar issues > * > > igt@runner@aborted: > > o fi-kbl-8809g: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@runner@aborted.html> > (i915#2947 <https://gitlab.freedesktop.org/drm/intel/issues/2947>) > > > Possible fixes > > * > > igt@gem_exec_gttfill@basic: > > o fi-kbl-8809g: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html> > (i915#3145 > <https://gitlab.freedesktop.org/drm/intel/issues/3145>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html> > * > > igt@gem_exec_suspend@basic-s3: > > o fi-tgl-y: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html> > (i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411> / > i915#402 > <https://gitlab.freedesktop.org/drm/intel/issues/402>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html> > * > > igt@gem_flink_basic@bad-flink: > > o fi-tgl-y: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_flink_basic@bad-flink.html> > (i915#402 > <https://gitlab.freedesktop.org/drm/intel/issues/402>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_flink_basic@bad-flink.html> > +1 similar issue > * > > igt@i915_selftest@live@client: > > o fi-glk-dsi: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-glk-dsi/igt@i915_selftest@live@client.html> > (i915#3047 > <https://gitlab.freedesktop.org/drm/intel/issues/3047>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-glk-dsi/igt@i915_selftest@live@client.html> > * > > igt@kms_chamelium@common-hpd-after-suspend: > > o fi-kbl-7500u: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.html> > (i915#165 > <https://gitlab.freedesktop.org/drm/intel/issues/165>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.html> > > > Warnings > > * igt@gem_linear_blits@basic: > o fi-kbl-8809g: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-8809g/igt@gem_linear_blits@basic.html> > (i915#2502 > <https://gitlab.freedesktop.org/drm/intel/issues/2502> / > i915#3145 > <https://gitlab.freedesktop.org/drm/intel/issues/3145>) -> > TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@gem_linear_blits@basic.html> > (i915#3145 <https://gitlab.freedesktop.org/drm/intel/issues/3145>) > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Participating hosts (48 -> 42) > > Missing (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 > fi-icl-y fi-bdw-samus > > > Build changes > > * Linux: CI_DRM_9885 -> Patchwork_19838 > > CI-20190529: 20190529 > CI_DRM_9885: 370158d493f88d52f5aae76794228f47dd04cfe3 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGT_6042: 529e182e30117d083ac0693011f1af04357d0115 @ > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > Patchwork_19838: 120f8c9b0706eb3f52bc2185346c2f731b873a8e @ > git://anongit.freedesktop.org/gfx-ci/linux > > == Linux commits == > > 120f8c9b0706 drm/i915/display: Configure HDMI2.1 Pcon for FRL only if > Src-Ctl mode is available > 873474340aaa drm/dp_helper: Define options for FRL training for > HDMI2.1 PCON > _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for HDMI2.1 PCON Misc Fixes (rev5) 2021-03-24 12:13 ` Nautiyal, Ankit K @ 2021-03-24 16:26 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 12+ messages in thread From: Vudum, Lakshminarayana @ 2021-03-24 16:26 UTC (permalink / raw) To: Nautiyal, Ankit K, intel-gfx@lists.freedesktop.org Re-reported. -----Original Message----- From: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com> Sent: Wednesday, March 24, 2021 5:14 AM To: intel-gfx@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: Re: ✗ Fi.CI.BAT: failure for HDMI2.1 PCON Misc Fixes (rev5) Hi Lakshmi, igt@kms_chamelium@hdmi-hpd-fast: * fi-icl-u2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html> This is existing issue https://gitlab.freedesktop.org/drm/intel/-/issues/2868 Regards, Ankit On 3/23/2021 9:03 PM, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* HDMI2.1 PCON Misc Fixes (rev5) > *URL:* https://patchwork.freedesktop.org/series/86677/ > <https://patchwork.freedesktop.org/series/86677/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/index.html> > > > CI Bug Log - changes from CI_DRM_9885 -> Patchwork_19838 > > > Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_19838 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_19838, please notify your bug team 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_19838/index.html > > > Possible new issues > > Here are the unknown changes that may have been introduced in > Patchwork_19838: > > > IGT changes > > > Possible regressions > > * igt@kms_chamelium@hdmi-hpd-fast: > o fi-icl-u2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html> > > > Known issues > > Here are the changes found in Patchwork_19838 that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@amdgpu/amd_prime@amd-to-i915: > > o fi-kbl-8809g: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@amdgpu/amd_prime@amd-to-i915.html> > (i915#2947 <https://gitlab.freedesktop.org/drm/intel/issues/2947>) > * > > igt@gem_exec_suspend@basic-s0: > > o fi-kbl-soraka: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html> > (i915#155 <https://gitlab.freedesktop.org/drm/intel/issues/155>) > * > > igt@gem_mmap_gtt@basic: > > o fi-tgl-y: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_mmap_gtt@basic.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_mmap_gtt@basic.html> > (i915#402 > <https://gitlab.freedesktop.org/drm/intel/issues/402>) +2 > similar issues > * > > igt@runner@aborted: > > o fi-kbl-8809g: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@runner@aborted.html> > (i915#2947 <https://gitlab.freedesktop.org/drm/intel/issues/2947>) > > > Possible fixes > > * > > igt@gem_exec_gttfill@basic: > > o fi-kbl-8809g: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html> > (i915#3145 > <https://gitlab.freedesktop.org/drm/intel/issues/3145>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html> > * > > igt@gem_exec_suspend@basic-s3: > > o fi-tgl-y: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html> > (i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411> / > i915#402 > <https://gitlab.freedesktop.org/drm/intel/issues/402>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html> > * > > igt@gem_flink_basic@bad-flink: > > o fi-tgl-y: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_flink_basic@bad-flink.html> > (i915#402 > <https://gitlab.freedesktop.org/drm/intel/issues/402>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_flink_basic@bad-flink.html> > +1 similar issue > * > > igt@i915_selftest@live@client: > > o fi-glk-dsi: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-glk-dsi/igt@i915_selftest@live@client.html> > (i915#3047 > <https://gitlab.freedesktop.org/drm/intel/issues/3047>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-glk-dsi/igt@i915_selftest@live@client.html> > * > > igt@kms_chamelium@common-hpd-after-suspend: > > o fi-kbl-7500u: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.html> > (i915#165 > <https://gitlab.freedesktop.org/drm/intel/issues/165>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.html> > > > Warnings > > * igt@gem_linear_blits@basic: > o fi-kbl-8809g: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-8809g/igt@gem_linear_blits@basic.html> > (i915#2502 > <https://gitlab.freedesktop.org/drm/intel/issues/2502> / > i915#3145 > <https://gitlab.freedesktop.org/drm/intel/issues/3145>) -> > TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@gem_linear_blits@basic.html> > (i915#3145 <https://gitlab.freedesktop.org/drm/intel/issues/3145>) > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Participating hosts (48 -> 42) > > Missing (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 > fi-icl-y fi-bdw-samus > > > Build changes > > * Linux: CI_DRM_9885 -> Patchwork_19838 > > CI-20190529: 20190529 > CI_DRM_9885: 370158d493f88d52f5aae76794228f47dd04cfe3 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGT_6042: 529e182e30117d083ac0693011f1af04357d0115 @ > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > Patchwork_19838: 120f8c9b0706eb3f52bc2185346c2f731b873a8e @ > git://anongit.freedesktop.org/gfx-ci/linux > > == Linux commits == > > 120f8c9b0706 drm/i915/display: Configure HDMI2.1 Pcon for FRL only if > Src-Ctl mode is available > 873474340aaa drm/dp_helper: Define options for FRL training for > HDMI2.1 PCON > _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for HDMI2.1 PCON Misc Fixes (rev5) 2021-03-23 11:24 [Intel-gfx] [PATCH v5 0/2] HDMI2.1 PCON Misc Fixes Ankit Nautiyal ` (3 preceding siblings ...) 2021-03-23 15:33 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork @ 2021-03-24 16:09 ` Patchwork 2021-03-25 1:37 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2021-03-24 16:09 UTC (permalink / raw) To: Nautiyal, Ankit K; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 5986 bytes --] == Series Details == Series: HDMI2.1 PCON Misc Fixes (rev5) URL : https://patchwork.freedesktop.org/series/86677/ State : success == Summary == CI Bug Log - changes from CI_DRM_9885 -> Patchwork_19838 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/index.html Known issues ------------ Here are the changes found in Patchwork_19838 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_prime@amd-to-i915: - fi-kbl-8809g: NOTRUN -> [DMESG-WARN][1] ([i915#2947]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@amdgpu/amd_prime@amd-to-i915.html * igt@gem_exec_suspend@basic-s0: - fi-kbl-soraka: [PASS][2] -> [INCOMPLETE][3] ([i915#155]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html * igt@gem_mmap_gtt@basic: - fi-tgl-y: [PASS][4] -> [DMESG-WARN][5] ([i915#402]) +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_mmap_gtt@basic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_mmap_gtt@basic.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [PASS][6] -> [DMESG-WARN][7] ([i915#2868]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html * igt@runner@aborted: - fi-kbl-8809g: NOTRUN -> [FAIL][8] ([i915#2947]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-kbl-8809g: [TIMEOUT][9] ([i915#3145]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@gem_exec_gttfill@basic.html * igt@gem_exec_suspend@basic-s3: - fi-tgl-y: [DMESG-WARN][11] ([i915#2411] / [i915#402]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html * igt@gem_flink_basic@bad-flink: - fi-tgl-y: [DMESG-WARN][13] ([i915#402]) -> [PASS][14] +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-tgl-y/igt@gem_flink_basic@bad-flink.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-tgl-y/igt@gem_flink_basic@bad-flink.html * igt@i915_selftest@live@client: - fi-glk-dsi: [DMESG-FAIL][15] ([i915#3047]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-glk-dsi/igt@i915_selftest@live@client.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-glk-dsi/igt@i915_selftest@live@client.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-7500u: [DMESG-FAIL][17] ([i915#165]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.html #### Warnings #### * igt@gem_linear_blits@basic: - fi-kbl-8809g: [TIMEOUT][19] ([i915#2502] / [i915#3145]) -> [TIMEOUT][20] ([i915#3145]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/fi-kbl-8809g/igt@gem_linear_blits@basic.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/fi-kbl-8809g/igt@gem_linear_blits@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2502]: https://gitlab.freedesktop.org/drm/intel/issues/2502 [i915#2868]: https://gitlab.freedesktop.org/drm/intel/issues/2868 [i915#2947]: https://gitlab.freedesktop.org/drm/intel/issues/2947 [i915#3047]: https://gitlab.freedesktop.org/drm/intel/issues/3047 [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145 [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180 [i915#3277]: https://gitlab.freedesktop.org/drm/intel/issues/3277 [i915#3278]: https://gitlab.freedesktop.org/drm/intel/issues/3278 [i915#3283]: https://gitlab.freedesktop.org/drm/intel/issues/3283 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (48 -> 42) ------------------------------ Missing (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-icl-y fi-bdw-samus Build changes ------------- * Linux: CI_DRM_9885 -> Patchwork_19838 CI-20190529: 20190529 CI_DRM_9885: 370158d493f88d52f5aae76794228f47dd04cfe3 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6042: 529e182e30117d083ac0693011f1af04357d0115 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_19838: 120f8c9b0706eb3f52bc2185346c2f731b873a8e @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 120f8c9b0706 drm/i915/display: Configure HDMI2.1 Pcon for FRL only if Src-Ctl mode is available 873474340aaa drm/dp_helper: Define options for FRL training for HDMI2.1 PCON == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/index.html [-- Attachment #1.2: Type: text/html, Size: 6864 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for HDMI2.1 PCON Misc Fixes (rev5) 2021-03-23 11:24 [Intel-gfx] [PATCH v5 0/2] HDMI2.1 PCON Misc Fixes Ankit Nautiyal ` (4 preceding siblings ...) 2021-03-24 16:09 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2021-03-25 1:37 ` Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2021-03-25 1:37 UTC (permalink / raw) To: Nautiyal, Ankit K; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 30253 bytes --] == Series Details == Series: HDMI2.1 PCON Misc Fixes (rev5) URL : https://patchwork.freedesktop.org/series/86677/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9885_full -> Patchwork_19838_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_19838_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_19838_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_19838_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_parallel@fds@vecs0: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-tglb5/igt@gem_exec_parallel@fds@vecs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb6/igt@gem_exec_parallel@fds@vecs0.html Known issues ------------ Here are the changes found in Patchwork_19838_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@process: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-snb2/igt@gem_ctx_persistence@process.html * igt@gem_eio@in-flight-contexts-10ms: - shard-skl: [PASS][4] -> [TIMEOUT][5] ([i915#3063]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl7/igt@gem_eio@in-flight-contexts-10ms.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl10/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@unwedge-stress: - shard-skl: [PASS][6] -> [TIMEOUT][7] ([i915#2369] / [i915#2771] / [i915#3063]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl4/igt@gem_eio@unwedge-stress.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl10/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-apl: NOTRUN -> [FAIL][8] ([i915#2846]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-glk: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-kbl: [PASS][13] -> [FAIL][14] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-kbl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][15] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-tglb: NOTRUN -> [FAIL][16] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-bsd: - shard-tglb: NOTRUN -> [SKIP][17] ([fdo#109283]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb3/igt@gem_exec_params@no-bsd.html * igt@gem_exec_reloc@basic-parallel: - shard-apl: NOTRUN -> [TIMEOUT][18] ([i915#3183]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl7/igt@gem_exec_reloc@basic-parallel.html * igt@gem_exec_schedule@u-fairslice@rcs0: - shard-skl: [PASS][19] -> [DMESG-WARN][20] ([i915#1610] / [i915#2803]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl8/igt@gem_exec_schedule@u-fairslice@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl6/igt@gem_exec_schedule@u-fairslice@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][21] -> [SKIP][22] ([i915#2190]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-tglb8/igt@gem_huc_copy@huc-copy.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb6/igt@gem_huc_copy@huc-copy.html - shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2190]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl7/igt@gem_huc_copy@huc-copy.html * igt@gem_mmap_gtt@big-copy-xy: - shard-glk: [PASS][24] -> [FAIL][25] ([i915#307]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-glk8/igt@gem_mmap_gtt@big-copy-xy.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-glk9/igt@gem_mmap_gtt@big-copy-xy.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-iclb: [PASS][26] -> [FAIL][27] ([i915#307]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb8/igt@gem_mmap_gtt@cpuset-big-copy-xy.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb4/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_offset@clear: - shard-glk: [PASS][28] -> [FAIL][29] ([i915#1888] / [i915#3160]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-glk7/igt@gem_mmap_offset@clear.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-glk4/igt@gem_mmap_offset@clear.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][30] ([i915#3002]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl7/igt@gem_userptr_blits@input-checking.html - shard-snb: NOTRUN -> [DMESG-WARN][31] ([i915#3002]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-snb6/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@readonly-mmap-unsync@wb: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#1704]) +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb3/igt@gem_userptr_blits@readonly-mmap-unsync@wb.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][33] -> [DMESG-WARN][34] ([i915#1436] / [i915#716]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-glk6/igt@gen9_exec_parse@allowed-all.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-glk2/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_rpm@basic-rte: - shard-kbl: [PASS][35] -> [FAIL][36] ([i915#579]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-kbl3/igt@i915_pm_rpm@basic-rte.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-kbl3/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][37] -> [INCOMPLETE][38] ([i915#2782]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-snb2/igt@i915_selftest@live@hangcheck.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-snb2/igt@i915_selftest@live@hangcheck.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-skl: [PASS][39] -> [FAIL][40] ([i915#2521]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl10/igt@kms_async_flips@alternate-sync-async-flip.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl5/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_ccs@pipe-c-random-ccs-data: - shard-snb: NOTRUN -> [SKIP][41] ([fdo#109271]) +205 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-snb5/igt@kms_ccs@pipe-c-random-ccs-data.html * igt@kms_chamelium@hdmi-aspect-ratio: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#109284] / [fdo#111827]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb3/igt@kms_chamelium@hdmi-aspect-ratio.html * igt@kms_chamelium@hdmi-hpd-enable-disable-mode: - shard-snb: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +9 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-snb5/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html * igt@kms_color_chamelium@pipe-c-gamma: - shard-skl: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl9/igt@kms_color_chamelium@pipe-c-gamma.html * igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes: - shard-apl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +16 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl2/igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-sliding: - shard-tglb: NOTRUN -> [SKIP][46] ([fdo#109279]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x170-sliding.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-edp1: - shard-skl: [PASS][47] -> [DMESG-WARN][48] ([i915#1982]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl5/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-edp1.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl10/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#2672]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_tiling@flip-yf-tiled: - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111615]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb3/igt@kms_flip_tiling@flip-yf-tiled.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-skl: NOTRUN -> [SKIP][51] ([fdo#109271]) +53 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][52] ([fdo#111825]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271]) +167 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl2/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-apl: NOTRUN -> [FAIL][54] ([i915#265]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min: - shard-skl: [PASS][55] -> [FAIL][56] ([fdo#108145] / [i915#265]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][57] ([fdo#108145] / [i915#265]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl7/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html * igt@kms_plane_lowres@pipe-d-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][58] ([fdo#112054]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping: - shard-apl: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#2733]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl6/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-skl: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#658]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5: - shard-apl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#658]) +2 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][62] -> [SKIP][63] ([fdo#109441]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#2437]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl3/igt@kms_writeback@writeback-pixel-formats.html * igt@prime_nv_pcopy@test1_macro: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109291]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-tglb3/igt@prime_nv_pcopy@test1_macro.html * igt@sysfs_clients@recycle: - shard-kbl: [PASS][66] -> [FAIL][67] ([i915#3028]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-kbl7/igt@sysfs_clients@recycle.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-kbl6/igt@sysfs_clients@recycle.html * igt@sysfs_clients@split-10@bcs0: - shard-apl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#3026]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl1/igt@sysfs_clients@split-10@bcs0.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-apl: [DMESG-WARN][69] ([i915#180]) -> [PASS][70] +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-apl6/igt@gem_ctx_isolation@preservation-s3@rcs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [FAIL][71] ([i915#2842]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-kbl3/igt@gem_exec_fair@basic-pace@vecs0.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html - shard-iclb: [FAIL][73] ([i915#2842]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb3/igt@gem_exec_fair@basic-pace@vecs0.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [FAIL][75] ([i915#2849]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-glk: [DMESG-WARN][77] ([i915#118] / [i915#95]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-glk2/igt@gem_exec_whisper@basic-fds-forked-all.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-glk8/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_mmap_gtt@big-copy: - shard-skl: [FAIL][79] ([i915#307]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl9/igt@gem_mmap_gtt@big-copy.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl8/igt@gem_mmap_gtt@big-copy.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-iclb: [FAIL][81] ([i915#307]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb1/igt@gem_mmap_gtt@cpuset-big-copy-odd.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-skl: [DMESG-WARN][83] ([i915#1982]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl7/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@kms_atomic_transition@plane-all-transition-nonblocking@edp-1-pipe-b: - shard-iclb: [FAIL][85] ([i915#3168]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb4/igt@kms_atomic_transition@plane-all-transition-nonblocking@edp-1-pipe-b.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb5/igt@kms_atomic_transition@plane-all-transition-nonblocking@edp-1-pipe-b.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-iclb: [DMESG-WARN][87] ([i915#1226]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb3/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-skl: [FAIL][89] ([i915#2346]) -> [PASS][90] +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1: - shard-glk: [FAIL][91] ([i915#79]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank@a-dp1: - shard-kbl: [FAIL][93] ([i915#79]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-kbl7/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: - shard-skl: [FAIL][95] ([i915#2122]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl4/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl10/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [SKIP][97] ([fdo#109441]) -> [PASS][98] +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb5/igt@kms_psr@psr2_no_drrs.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb2/igt@kms_psr@psr2_no_drrs.html * igt@perf@polling-parameterized: - shard-glk: [FAIL][99] ([i915#1542]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-glk7/igt@perf@polling-parameterized.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-glk4/igt@perf@polling-parameterized.html * igt@sysfs_clients@fair-1@vcs: - shard-kbl: [FAIL][101] ([i915#3033]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-kbl2/igt@sysfs_clients@fair-1@vcs.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-kbl7/igt@sysfs_clients@fair-1@vcs.html * igt@sysfs_clients@recycle-many: - shard-iclb: [FAIL][103] ([i915#3028]) -> [PASS][104] +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb5/igt@sysfs_clients@recycle-many.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb2/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-10@rcs0: - shard-apl: [SKIP][105] ([fdo#109271] / [i915#3026]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-apl8/igt@sysfs_clients@sema-10@rcs0.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl1/igt@sysfs_clients@sema-10@rcs0.html * igt@sysfs_clients@split-25@vcs0: - shard-skl: [SKIP][107] ([fdo#109271]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl2/igt@sysfs_clients@split-25@vcs0.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl7/igt@sysfs_clients@split-25@vcs0.html #### Warnings #### * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-skl: [INCOMPLETE][109] ([i915#198]) -> [SKIP][110] ([fdo#109271] / [i915#658]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl10/igt@i915_pm_dc@dc3co-vpb-simulation.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl6/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-iclb: [WARN][111] ([i915#2681] / [i915#2684]) -> [WARN][112] ([i915#1804] / [i915#2684]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-iclb: [SKIP][113] ([i915#2920]) -> [SKIP][114] ([i915#658]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-0: - shard-iclb: [SKIP][115] ([i915#658]) -> [SKIP][116] ([i915#2920]) +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-iclb6/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html * igt@runner@aborted: - shard-apl: ([FAIL][117], [FAIL][118], [FAIL][119]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#2724]) -> ([FAIL][120], [FAIL][121]) ([i915#2724] / [i915#3002]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-apl6/igt@runner@aborted.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-apl8/igt@runner@aborted.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-apl6/igt@runner@aborted.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl7/igt@runner@aborted.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-apl6/igt@runner@aborted.html - shard-snb: [FAIL][122] ([i915#3002] / [i915#698]) -> ([FAIL][123], [FAIL][124], [FAIL][125]) ([i915#2292] / [i915#2426] / [i915#3002] / [i915#698]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-snb6/igt@runner@aborted.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-snb7/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-snb6/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-snb6/igt@runner@aborted.html - shard-skl: ([FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130]) ([i915#2029] / [i915#2426] / [i915#2724] / [i915#3002]) -> ([FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138]) ([i915#1814] / [i915#2029] / [i915#2426] / [i915#2724] / [i915#3002]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl2/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl2/igt@runner@aborted.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl4/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl5/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9885/shard-skl7/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl6/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl5/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl5/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl5/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl5/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl2/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl2/igt@runner@aborted.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/shard-skl10/igt@runner@aborted.html [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#1610]: https://gitlab.freedesktop.org/drm/intel/issues/1610 [i915#1704]: https://gitlab.freedesktop.org/drm/intel/issues/1704 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2292]: https://gitlab.freedesktop.org/drm/intel/issues/2292 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2369]: https://gitlab.freedesktop.org/drm/intel/issues/2369 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#2733]: https://gitlab.freedesktop.org/drm/intel/issues/2733 [i915#2771]: https://gitlab.freedesktop.org/drm/intel/issues/2771 [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782 [i915#2803]: https://gitlab.freedesktop.org/drm/intel/issues/2803 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3026]: https://gitlab.freedesktop.org/drm/intel/issues/3026 [i915#3028]: https://gitlab.freedesktop.org/drm/intel/issues/3028 [i915#3033]: https://gitlab.freedesktop.org/drm/intel/issues/3033 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#307]: https://gitlab.freedesktop.org/drm/intel/issues/307 [i915#3160]: https://gitla == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19838/index.html [-- Attachment #1.2: Type: text/html, Size: 36664 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2021-03-31 10:21 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-03-23 11:24 [Intel-gfx] [PATCH v5 0/2] HDMI2.1 PCON Misc Fixes Ankit Nautiyal 2021-03-23 11:24 ` [Intel-gfx] [PATCH v5 1/2] drm/dp_helper: Define options for FRL training for HDMI2.1 PCON Ankit Nautiyal 2021-03-26 9:47 ` Jani Nikula 2021-03-26 14:59 ` Maxime Ripard 2021-03-31 10:21 ` Jani Nikula 2021-03-23 11:24 ` [Intel-gfx] [PATCH v5 2/2] drm/i915/display: Configure HDMI2.1 Pcon for FRL only if Src-Ctl mode is available Ankit Nautiyal 2021-03-23 15:06 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for HDMI2.1 PCON Misc Fixes (rev5) Patchwork 2021-03-23 15:33 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork 2021-03-24 12:13 ` Nautiyal, Ankit K 2021-03-24 16:26 ` Vudum, Lakshminarayana 2021-03-24 16:09 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2021-03-25 1:37 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox