* [PATCH] drm/i915/icl: Update gamma mode mask
@ 2019-02-20 18:35 Uma Shankar
2019-02-20 18:23 ` Ville Syrjälä
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Uma Shankar @ 2019-02-20 18:35 UTC (permalink / raw)
To: intel-gfx; +Cc: ville.syrjala, maarten.lankhorst
Update gamma mode mask to consider even the 30th and 31st
bits as per hardware. Due to this state readout was masking
these bits, causing a mismatch and false warning, even though
the registers were updated correctly. This patch fixes the same.
Signed-off-by: Uma Shankar <uma.shankar@intel.com>
---
drivers/gpu/drm/i915/i915_reg.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index a5a4736..df1b844 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -7142,7 +7142,7 @@ enum {
#define GAMMA_MODE(pipe) _MMIO_PIPE(pipe, _GAMMA_MODE_A, _GAMMA_MODE_B)
#define PRE_CSC_GAMMA_ENABLE (1 << 31)
#define POST_CSC_GAMMA_ENABLE (1 << 30)
-#define GAMMA_MODE_MODE_MASK (3 << 0)
+#define GAMMA_MODE_MODE_MASK ((3 << 30) | (3 << 0))
#define GAMMA_MODE_MODE_8BIT (0 << 0)
#define GAMMA_MODE_MODE_10BIT (1 << 0)
#define GAMMA_MODE_MODE_12BIT (2 << 0)
--
1.9.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] drm/i915/icl: Update gamma mode mask 2019-02-20 18:35 [PATCH] drm/i915/icl: Update gamma mode mask Uma Shankar @ 2019-02-20 18:23 ` Ville Syrjälä 2019-02-20 18:29 ` Shankar, Uma 2019-02-20 18:53 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-02-20 22:29 ` ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Ville Syrjälä @ 2019-02-20 18:23 UTC (permalink / raw) To: Uma Shankar; +Cc: intel-gfx, ville.syrjala, maarten.lankhorst On Thu, Feb 21, 2019 at 12:05:50AM +0530, Uma Shankar wrote: > Update gamma mode mask to consider even the 30th and 31st > bits as per hardware. Due to this state readout was masking > these bits, causing a mismatch and false warning, even though > the registers were updated correctly. This patch fixes the same. > > Signed-off-by: Uma Shankar <uma.shankar@intel.com> > --- > drivers/gpu/drm/i915/i915_reg.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h > index a5a4736..df1b844 100644 > --- a/drivers/gpu/drm/i915/i915_reg.h > +++ b/drivers/gpu/drm/i915/i915_reg.h > @@ -7142,7 +7142,7 @@ enum { > #define GAMMA_MODE(pipe) _MMIO_PIPE(pipe, _GAMMA_MODE_A, _GAMMA_MODE_B) > #define PRE_CSC_GAMMA_ENABLE (1 << 31) > #define POST_CSC_GAMMA_ENABLE (1 << 30) > -#define GAMMA_MODE_MODE_MASK (3 << 0) > +#define GAMMA_MODE_MODE_MASK ((3 << 30) | (3 << 0))a IMO we should just drop the mask entirely. What we have in the state should match the entire hw register. > #define GAMMA_MODE_MODE_8BIT (0 << 0) > #define GAMMA_MODE_MODE_10BIT (1 << 0) > #define GAMMA_MODE_MODE_12BIT (2 << 0) > -- > 1.9.1 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Ville Syrjälä Intel _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915/icl: Update gamma mode mask 2019-02-20 18:23 ` Ville Syrjälä @ 2019-02-20 18:29 ` Shankar, Uma 0 siblings, 0 replies; 5+ messages in thread From: Shankar, Uma @ 2019-02-20 18:29 UTC (permalink / raw) To: Ville Syrjälä Cc: intel-gfx@lists.freedesktop.org, Syrjala, Ville, Lankhorst, Maarten >-----Original Message----- >From: Ville Syrjälä [mailto:ville.syrjala@linux.intel.com] >Sent: Wednesday, February 20, 2019 11:54 PM >To: Shankar, Uma <uma.shankar@intel.com> >Cc: intel-gfx@lists.freedesktop.org; Syrjala, Ville <ville.syrjala@intel.com>; Lankhorst, >Maarten <maarten.lankhorst@intel.com> >Subject: Re: [Intel-gfx] [PATCH] drm/i915/icl: Update gamma mode mask > >On Thu, Feb 21, 2019 at 12:05:50AM +0530, Uma Shankar wrote: >> Update gamma mode mask to consider even the 30th and 31st bits as per >> hardware. Due to this state readout was masking these bits, causing a >> mismatch and false warning, even though the registers were updated >> correctly. This patch fixes the same. >> >> Signed-off-by: Uma Shankar <uma.shankar@intel.com> >> --- >> drivers/gpu/drm/i915/i915_reg.h | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/gpu/drm/i915/i915_reg.h >> b/drivers/gpu/drm/i915/i915_reg.h index a5a4736..df1b844 100644 >> --- a/drivers/gpu/drm/i915/i915_reg.h >> +++ b/drivers/gpu/drm/i915/i915_reg.h >> @@ -7142,7 +7142,7 @@ enum { >> #define GAMMA_MODE(pipe) _MMIO_PIPE(pipe, _GAMMA_MODE_A, >_GAMMA_MODE_B) >> #define PRE_CSC_GAMMA_ENABLE (1 << 31) >> #define POST_CSC_GAMMA_ENABLE (1 << 30) >> -#define GAMMA_MODE_MODE_MASK (3 << 0) >> +#define GAMMA_MODE_MODE_MASK ((3 << 30) | (3 << 0))a > >IMO we should just drop the mask entirely. What we have in the state should match >the entire hw register. Hmm, I agree that nothing special is there which should be separated out here and entire register should ideally be matching. I will drop this mask altogether. Thanks Ville. Will refloat dropping the mask. Regards, Uma Shankar >> #define GAMMA_MODE_MODE_8BIT (0 << 0) >> #define GAMMA_MODE_MODE_10BIT (1 << 0) >> #define GAMMA_MODE_MODE_12BIT (2 << 0) >> -- >> 1.9.1 >> >> _______________________________________________ >> Intel-gfx mailing list >> Intel-gfx@lists.freedesktop.org >> https://lists.freedesktop.org/mailman/listinfo/intel-gfx > >-- >Ville Syrjälä >Intel _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/icl: Update gamma mode mask 2019-02-20 18:35 [PATCH] drm/i915/icl: Update gamma mode mask Uma Shankar 2019-02-20 18:23 ` Ville Syrjälä @ 2019-02-20 18:53 ` Patchwork 2019-02-20 22:29 ` ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2019-02-20 18:53 UTC (permalink / raw) To: intel-gfx == Series Details == Series: drm/i915/icl: Update gamma mode mask URL : https://patchwork.freedesktop.org/series/56974/ State : success == Summary == CI Bug Log - changes from CI_DRM_5640 -> Patchwork_12265 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/56974/revisions/1/mbox/ Known issues ------------ Here are the changes found in Patchwork_12265 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_cs_nop@fork-compute0: - fi-blb-e6850: NOTRUN -> SKIP [fdo#109271] +17 * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-7567u: PASS -> WARN [fdo#109380] * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c: - fi-kbl-7567u: PASS -> SKIP [fdo#109271] +31 #### Possible fixes #### * igt@i915_module_load@reload: - fi-blb-e6850: INCOMPLETE [fdo#107718] -> PASS [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109380]: https://bugs.freedesktop.org/show_bug.cgi?id=109380 Participating hosts (47 -> 40) ------------------------------ Missing (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus Build changes ------------- * Linux: CI_DRM_5640 -> Patchwork_12265 CI_DRM_5640: 0b19fce96007055baef9c5c220c8acf1ba848f4e @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4844: ee6e006202a50c5aef373c0b075027ed7177935a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_12265: ee9690da29b9c1b0a939db71fc872dccd9a7958f @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == ee9690da29b9 drm/i915/icl: Update gamma mode mask == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12265/ _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Fi.CI.IGT: success for drm/i915/icl: Update gamma mode mask 2019-02-20 18:35 [PATCH] drm/i915/icl: Update gamma mode mask Uma Shankar 2019-02-20 18:23 ` Ville Syrjälä 2019-02-20 18:53 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2019-02-20 22:29 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2019-02-20 22:29 UTC (permalink / raw) To: intel-gfx == Series Details == Series: drm/i915/icl: Update gamma mode mask URL : https://patchwork.freedesktop.org/series/56974/ State : success == Summary == CI Bug Log - changes from CI_DRM_5640_full -> Patchwork_12265_full ==================================================== Summary ------- **SUCCESS** No regressions found. Known issues ------------ Here are the changes found in Patchwork_12265_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@extended-semaphore-blt: - shard-iclb: NOTRUN -> SKIP [fdo#109275] * igt@gem_busy@extended-semaphore-bsd2: - shard-iclb: NOTRUN -> SKIP [fdo#109275] / [fdo#109276] * igt@gem_ctx_isolation@rcs0-dirty-create: - shard-iclb: NOTRUN -> SKIP [fdo#109281] +8 * igt@gem_ctx_isolation@vcs1-reset: - shard-iclb: NOTRUN -> SKIP [fdo#109276] / [fdo#109281] +2 * igt@gem_ctx_param@invalid-param-set: - shard-iclb: NOTRUN -> FAIL [fdo#109674] * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-iclb: NOTRUN -> SKIP [fdo#109313] * igt@gem_exec_params@rsvd2-dirt: - shard-iclb: NOTRUN -> SKIP [fdo#109283] * igt@gem_exec_parse@basic-rejected: - shard-iclb: NOTRUN -> SKIP [fdo#109289] +8 * igt@gem_exec_schedule@preempt-other-bsd1: - shard-iclb: NOTRUN -> SKIP [fdo#109276] +49 * igt@gem_mocs_settings@mocs-reset-ctx-render: - shard-iclb: NOTRUN -> SKIP [fdo#109287] +8 * igt@gem_mocs_settings@mocs-settings-bsd2: - shard-iclb: NOTRUN -> SKIP [fdo#109276] / [fdo#109287] * igt@gem_pwrite@huge-gtt-backwards: - shard-iclb: NOTRUN -> SKIP [fdo#109290] +5 * igt@gem_stolen@stolen-no-mmap: - shard-iclb: NOTRUN -> SKIP [fdo#109277] +4 * igt@i915_missed_irq: - shard-iclb: NOTRUN -> SKIP [fdo#109503] * igt@i915_pm_lpsp@edp-panel-fitter: - shard-iclb: NOTRUN -> SKIP [fdo#109301] * igt@i915_pm_rpm@fences-dpms: - shard-iclb: PASS -> DMESG-WARN [fdo#107724] +3 * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-iclb: PASS -> INCOMPLETE [fdo#107713] / [fdo#108840] * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-iclb: NOTRUN -> SKIP [fdo#109293] * igt@i915_query@query-topology-unsupported: - shard-iclb: NOTRUN -> SKIP [fdo#109302] * igt@i915_selftest@live_contexts: - shard-iclb: NOTRUN -> DMESG-FAIL [fdo#108569] * igt@kms_atomic_transition@6x-modeset-transitions: - shard-iclb: NOTRUN -> SKIP [fdo#109278] +19 * igt@kms_busy@extended-modeset-hang-newfb-render-c: - shard-iclb: NOTRUN -> DMESG-WARN [fdo#107956] +2 * igt@kms_busy@extended-pageflip-hang-newfb-render-b: - shard-apl: PASS -> DMESG-WARN [fdo#107956] * igt@kms_ccs@pipe-a-crc-sprite-planes-basic: - shard-iclb: NOTRUN -> FAIL [fdo#107725] +2 * igt@kms_chamelium@dp-frame-dump: - shard-iclb: NOTRUN -> SKIP [fdo#109284] +16 * igt@kms_color@pipe-a-ctm-max: - shard-iclb: NOTRUN -> FAIL [fdo#108147] * igt@kms_color@pipe-b-legacy-gamma: - shard-iclb: NOTRUN -> FAIL [fdo#104782] +4 * igt@kms_content_protection@legacy: - shard-iclb: NOTRUN -> SKIP [fdo#109300] / [fdo#109527] +1 * igt@kms_cursor_crc@cursor-128x128-dpms: - shard-apl: PASS -> FAIL [fdo#103232] * igt@kms_cursor_crc@cursor-512x512-rapid-movement: - shard-iclb: NOTRUN -> SKIP [fdo#109279] +5 * igt@kms_cursor_crc@cursor-64x21-sliding: - shard-iclb: NOTRUN -> FAIL [fdo#103232] +8 * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> SKIP [fdo#109274] +29 * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: NOTRUN -> SKIP [fdo#109349] * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-apl: PASS -> FAIL [fdo#102887] / [fdo#105363] * igt@kms_force_connector_basic@force-connector-state: - shard-iclb: NOTRUN -> SKIP [fdo#109285] * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-iclb: PASS -> FAIL [fdo#103167] +1 * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-iclb: NOTRUN -> SKIP [fdo#109280] +78 * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-apl: NOTRUN -> SKIP [fdo#109271] +13 * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> FAIL [fdo#103167] +1 * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: - shard-apl: PASS -> DMESG-WARN [fdo#108566] * igt@kms_plane@pixel-format-pipe-c-planes-source-clamping: - shard-iclb: NOTRUN -> FAIL [fdo#108948] * igt@kms_plane@plane-position-covered-pipe-c-planes: - shard-iclb: NOTRUN -> FAIL [fdo#103166] +1 * igt@kms_plane_multiple@atomic-pipe-a-tiling-x: - shard-apl: PASS -> FAIL [fdo#103166] +1 - shard-glk: PASS -> FAIL [fdo#103166] * igt@kms_plane_multiple@atomic-pipe-b-tiling-y: - shard-iclb: PASS -> FAIL [fdo#103166] +5 * igt@kms_plane_scaling@pipe-b-scaler-with-pixel-format: - shard-iclb: NOTRUN -> DMESG-WARN [fdo#107724] +5 * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: NOTRUN -> SKIP [fdo#109441] +7 * igt@kms_setmode@basic: - shard-kbl: PASS -> FAIL [fdo#99912] * igt@kms_tv_load_detect@load-detect: - shard-iclb: NOTRUN -> SKIP [fdo#109309] * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-hsw: PASS -> FAIL [fdo#104894] * igt@kms_vrr@flip-dpms: - shard-iclb: NOTRUN -> SKIP [fdo#109502] * igt@prime_nv_api@i915_self_import: - shard-iclb: NOTRUN -> SKIP [fdo#109291] +10 * igt@prime_vgem@fence-read-hang: - shard-iclb: NOTRUN -> SKIP [fdo#109295] +1 * igt@v3d_mmap@mmap-bad-handle: - shard-iclb: NOTRUN -> SKIP [fdo#109315] #### Possible fixes #### * igt@i915_pm_rpm@gem-pread: - shard-iclb: DMESG-WARN [fdo#107724] / [fdo#108654] -> PASS * igt@i915_pm_rpm@i2c: - shard-iclb: DMESG-WARN [fdo#107724] -> PASS * igt@i915_pm_rpm@pm-caching: - shard-iclb: INCOMPLETE [fdo#108840] -> PASS * igt@kms_atomic_transition@1x-modeset-transitions-nonblocking-fencing: - shard-snb: SKIP [fdo#109271] -> PASS +2 * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-a: - shard-iclb: DMESG-WARN [fdo#107956] -> PASS * igt@kms_color@pipe-b-ctm-0-75: - shard-iclb: DMESG-WARN [fdo#109624] -> PASS +8 * igt@kms_color@pipe-b-legacy-gamma: - shard-apl: FAIL [fdo#104782] -> PASS +1 * igt@kms_cursor_crc@cursor-128x42-random: - shard-apl: FAIL [fdo#103232] -> PASS * igt@kms_cursor_legacy@all-pipes-single-move: - shard-apl: INCOMPLETE [fdo#103927] -> PASS * igt@kms_fbcon_fbt@fbc: - shard-iclb: DMESG-WARN [fdo#109593] -> PASS * igt@kms_flip@flip-vs-expired-vblank: - shard-glk: FAIL [fdo#102887] / [fdo#105363] -> PASS * igt@kms_plane_multiple@atomic-pipe-a-tiling-yf: - shard-iclb: FAIL [fdo#103166] -> PASS * igt@kms_plane_multiple@atomic-pipe-c-tiling-none: - shard-glk: FAIL [fdo#103166] -> PASS * igt@kms_rotation_crc@multiplane-rotation: - shard-kbl: DMESG-FAIL [fdo#105763] -> PASS * igt@kms_setmode@basic: - shard-hsw: FAIL [fdo#99912] -> PASS #### Warnings #### * igt@kms_color@pipe-b-gamma: - shard-iclb: DMESG-FAIL [fdo#109624] -> FAIL [fdo#104782] +2 * igt@kms_color@pipe-c-ctm-max: - shard-iclb: DMESG-FAIL [fdo#109624] -> FAIL [fdo#108147] * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-kbl: DMESG-FAIL [fdo#105763] -> INCOMPLETE [fdo#103665] [fdo#102887]: https://bugs.freedesktop.org/show_bug.cgi?id=102887 [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782 [fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#107725]: https://bugs.freedesktop.org/show_bug.cgi?id=107725 [fdo#107956]: https://bugs.freedesktop.org/show_bug.cgi?id=107956 [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#108654]: https://bugs.freedesktop.org/show_bug.cgi?id=108654 [fdo#108840]: https://bugs.freedesktop.org/show_bug.cgi?id=108840 [fdo#108948]: https://bugs.freedesktop.org/show_bug.cgi?id=108948 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109275]: https://bugs.freedesktop.org/show_bug.cgi?id=109275 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109277]: https://bugs.freedesktop.org/show_bug.cgi?id=109277 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109281]: https://bugs.freedesktop.org/show_bug.cgi?id=109281 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109287]: https://bugs.freedesktop.org/show_bug.cgi?id=109287 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109301]: https://bugs.freedesktop.org/show_bug.cgi?id=109301 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502 [fdo#109503]: https://bugs.freedesktop.org/show_bug.cgi?id=109503 [fdo#109527]: https://bugs.freedesktop.org/show_bug.cgi?id=109527 [fdo#109593]: https://bugs.freedesktop.org/show_bug.cgi?id=109593 [fdo#109624]: https://bugs.freedesktop.org/show_bug.cgi?id=109624 [fdo#109674]: https://bugs.freedesktop.org/show_bug.cgi?id=109674 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (7 -> 6) ------------------------------ Missing (1): shard-skl Build changes ------------- * Linux: CI_DRM_5640 -> Patchwork_12265 CI_DRM_5640: 0b19fce96007055baef9c5c220c8acf1ba848f4e @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4844: ee6e006202a50c5aef373c0b075027ed7177935a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_12265: ee9690da29b9c1b0a939db71fc872dccd9a7958f @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12265/ _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-02-20 22:29 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-02-20 18:35 [PATCH] drm/i915/icl: Update gamma mode mask Uma Shankar 2019-02-20 18:23 ` Ville Syrjälä 2019-02-20 18:29 ` Shankar, Uma 2019-02-20 18:53 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-02-20 22:29 ` ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox