* [PATCH 0/2] HuC Update for BXT
@ 2018-12-07 18:28 Anusha
2018-12-07 18:28 ` [PATCH 1/2] drm/i915/huc: Update the HuC version " Anusha
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Anusha @ 2018-12-07 18:28 UTC (permalink / raw)
To: intel-gfx
The following changes since commit 1baa34868b2c0a004dc595b20678145e3fff83e7:
Merge branch 'nxp_mc' of https://github.com/NXP/linux-firmware (2018-10-26 08:13:19 -0400)
are available in the Git repository at:
git://anongit.freedesktop.org/drm/drm-firmware BXT_HUC
for you to fetch changes up to 69f153bbc2c44eb581c1f8c7cecd4d878e4e727a:
firmware/huc/bxt: Add huC Update for BXT (2018-11-28 10:33:57 -0800)
----------------------------------------------------------------
Anusha Srivatsa (1):
firmware/huc/bxt: Add huC Update for BXT
WHENCE | 3 +++
i915/bxt_huc_ver01_8_2893.bin | Bin 0 -> 146880 bytes
2 files changed, 3 insertions(+)
create mode 100644 i915/bxt_huc_ver01_8_2893.bin
Anusha Srivatsa (2):
firmware/huc/BXT: Update the HuC version
HAX enable HuC for CI
drivers/gpu/drm/i915/i915_params.h | 2 +-
drivers/gpu/drm/i915/intel_huc_fw.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
--
2.19.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH 1/2] drm/i915/huc: Update the HuC version for BXT 2018-12-07 18:28 [PATCH 0/2] HuC Update for BXT Anusha @ 2018-12-07 18:28 ` Anusha 2018-12-10 21:58 ` Rodrigo Vivi 2018-12-07 18:28 ` [PATCH 2/2] HAX Enable HuC testing without GuC submission Anusha ` (2 subsequent siblings) 3 siblings, 1 reply; 6+ messages in thread From: Anusha @ 2018-12-07 18:28 UTC (permalink / raw) To: intel-gfx; +Cc: Rodrigo Vivi From: Anusha Srivatsa <anusha.srivatsa@intel.com> We have an update for HuC for BXT. Load the latest version. v2: Change the subject. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com> --- drivers/gpu/drm/i915/intel_huc_fw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_huc_fw.c b/drivers/gpu/drm/i915/intel_huc_fw.c index f93d2384d482..9612227b3c44 100644 --- a/drivers/gpu/drm/i915/intel_huc_fw.c +++ b/drivers/gpu/drm/i915/intel_huc_fw.c @@ -23,8 +23,8 @@ */ #define BXT_HUC_FW_MAJOR 01 -#define BXT_HUC_FW_MINOR 07 -#define BXT_BLD_NUM 1398 +#define BXT_HUC_FW_MINOR 8 +#define BXT_BLD_NUM 2893 #define SKL_HUC_FW_MAJOR 01 #define SKL_HUC_FW_MINOR 07 -- 2.19.2 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] drm/i915/huc: Update the HuC version for BXT 2018-12-07 18:28 ` [PATCH 1/2] drm/i915/huc: Update the HuC version " Anusha @ 2018-12-10 21:58 ` Rodrigo Vivi 0 siblings, 0 replies; 6+ messages in thread From: Rodrigo Vivi @ 2018-12-10 21:58 UTC (permalink / raw) To: Anusha; +Cc: intel-gfx On Fri, Dec 07, 2018 at 10:28:39AM -0800, Anusha wrote: > From: Anusha Srivatsa <anusha.srivatsa@intel.com> > > We have an update for HuC for BXT. > Load the latest version. > > v2: Change the subject. > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com> > --- > drivers/gpu/drm/i915/intel_huc_fw.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/intel_huc_fw.c b/drivers/gpu/drm/i915/intel_huc_fw.c > index f93d2384d482..9612227b3c44 100644 > --- a/drivers/gpu/drm/i915/intel_huc_fw.c > +++ b/drivers/gpu/drm/i915/intel_huc_fw.c > @@ -23,8 +23,8 @@ > */ > > #define BXT_HUC_FW_MAJOR 01 > -#define BXT_HUC_FW_MINOR 07 > -#define BXT_BLD_NUM 1398 > +#define BXT_HUC_FW_MINOR 8 > +#define BXT_BLD_NUM 2893 Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> (but holding on fw availability in some master branch) > > #define SKL_HUC_FW_MAJOR 01 > #define SKL_HUC_FW_MINOR 07 > -- > 2.19.2 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 2/2] HAX Enable HuC testing without GuC submission 2018-12-07 18:28 [PATCH 0/2] HuC Update for BXT Anusha 2018-12-07 18:28 ` [PATCH 1/2] drm/i915/huc: Update the HuC version " Anusha @ 2018-12-07 18:28 ` Anusha 2018-12-07 19:07 ` ✓ Fi.CI.BAT: success for HuC Update for BXT (rev2) Patchwork 2018-12-08 3:34 ` ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Anusha @ 2018-12-07 18:28 UTC (permalink / raw) To: intel-gfx From: Michal Wajdeczko <michal.wajdeczko@intel.com> This will let the driver decide where GuC can be used Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> --- drivers/gpu/drm/i915/i915_params.h | 2 +- drivers/gpu/drm/i915/intel_uc.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/i915_params.h b/drivers/gpu/drm/i915/i915_params.h index 7e56c516c815..c681537bcb92 100644 --- a/drivers/gpu/drm/i915/i915_params.h +++ b/drivers/gpu/drm/i915/i915_params.h @@ -45,7 +45,7 @@ struct drm_printer; param(int, disable_power_well, -1) \ param(int, enable_ips, 1) \ param(int, invert_brightness, 0) \ - param(int, enable_guc, 0) \ + param(int, enable_guc, -1) \ param(int, guc_log_level, -1) \ param(char *, guc_firmware_path, NULL) \ param(char *, huc_firmware_path, NULL) \ diff --git a/drivers/gpu/drm/i915/intel_uc.c b/drivers/gpu/drm/i915/intel_uc.c index b34c318b238d..4cc42e0645f3 100644 --- a/drivers/gpu/drm/i915/intel_uc.c +++ b/drivers/gpu/drm/i915/intel_uc.c @@ -64,6 +64,9 @@ static int __get_platform_enable_guc(struct drm_i915_private *i915) /* Any platform specific fine-tuning can be done here */ + /* HAX: Do not enable GuC submission in auto mode */ + enable_guc &= ~ENABLE_GUC_SUBMISSION; + return enable_guc; } -- 2.19.2 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for HuC Update for BXT (rev2) 2018-12-07 18:28 [PATCH 0/2] HuC Update for BXT Anusha 2018-12-07 18:28 ` [PATCH 1/2] drm/i915/huc: Update the HuC version " Anusha 2018-12-07 18:28 ` [PATCH 2/2] HAX Enable HuC testing without GuC submission Anusha @ 2018-12-07 19:07 ` Patchwork 2018-12-08 3:34 ` ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2018-12-07 19:07 UTC (permalink / raw) To: Anusha; +Cc: intel-gfx == Series Details == Series: HuC Update for BXT (rev2) URL : https://patchwork.freedesktop.org/series/53776/ State : success == Summary == CI Bug Log - changes from CI_DRM_5288 -> Patchwork_11053 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/53776/revisions/2/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_11053: ### IGT changes ### #### Warnings #### * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c: - {fi-kbl-7567u}: SKIP -> PASS +33 Known issues ------------ Here are the changes found in Patchwork_11053 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_create@basic-files: - fi-bsw-kefka: PASS -> DMESG-FAIL [fdo#108656] * igt@i915_module_load@reload: - fi-blb-e6850: PASS -> INCOMPLETE [fdo#107718] * {igt@runner@aborted}: - fi-bsw-kefka: NOTRUN -> FAIL [fdo#108656] #### Possible fixes #### * igt@i915_module_load@reload-with-fault-injection: - {fi-kbl-7567u}: DMESG-WARN [fdo#105602] / [fdo#108529] -> PASS +1 * igt@i915_selftest@live_contexts: - fi-bsw-n3050: DMESG-FAIL [fdo#108656] -> PASS * igt@kms_frontbuffer_tracking@basic: - fi-hsw-peppy: DMESG-WARN [fdo#102614] -> PASS * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: - fi-cfl-8109u: INCOMPLETE [fdo#106070] / [fdo#108126] -> PASS * igt@pm_rpm@module-reload: - {fi-kbl-7567u}: DMESG-WARN [fdo#108529] -> PASS {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614 [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602 [fdo#106070]: https://bugs.freedesktop.org/show_bug.cgi?id=106070 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#108126]: https://bugs.freedesktop.org/show_bug.cgi?id=108126 [fdo#108529]: https://bugs.freedesktop.org/show_bug.cgi?id=108529 [fdo#108656]: https://bugs.freedesktop.org/show_bug.cgi?id=108656 Participating hosts (50 -> 44) ------------------------------ Missing (6): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 Build changes ------------- * Linux: CI_DRM_5288 -> Patchwork_11053 CI_DRM_5288: cf6669d4c0e52b024d8aea90fbe2c80841e67e59 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4743: edb2db2cf2b6665d7ba3fa9117263302f6307a4f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_11053: 19692ff6e9fca3f5771de8f308fab00b412d66d7 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 19692ff6e9fc HAX Enable HuC testing without GuC submission e4c10064cd1a drm/i915/huc: Update the HuC version for BXT == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_11053/ _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.IGT: success for HuC Update for BXT (rev2) 2018-12-07 18:28 [PATCH 0/2] HuC Update for BXT Anusha ` (2 preceding siblings ...) 2018-12-07 19:07 ` ✓ Fi.CI.BAT: success for HuC Update for BXT (rev2) Patchwork @ 2018-12-08 3:34 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2018-12-08 3:34 UTC (permalink / raw) To: Srivatsa, Anusha; +Cc: intel-gfx == Series Details == Series: HuC Update for BXT (rev2) URL : https://patchwork.freedesktop.org/series/53776/ State : success == Summary == CI Bug Log - changes from CI_DRM_5288_full -> Patchwork_11053_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with Patchwork_11053_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_11053_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_11053_full: ### IGT changes ### #### Warnings #### * igt@pm_rc6_residency@rc6-accuracy: - shard-apl: PASS -> SKIP Known issues ------------ Here are the changes found in Patchwork_11053_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_busy@extended-modeset-hang-newfb-render-a: - shard-skl: NOTRUN -> DMESG-WARN [fdo#107956] +1 * igt@kms_ccs@pipe-a-crc-sprite-planes-basic: - shard-glk: PASS -> FAIL [fdo#108145] * igt@kms_ccs@pipe-b-crc-primary-rotation-180: - {shard-iclb}: NOTRUN -> FAIL [fdo#107725] * igt@kms_chv_cursor_fail@pipe-b-256x256-bottom-edge: - shard-skl: NOTRUN -> FAIL [fdo#104671] +1 * igt@kms_color@pipe-b-ctm-green-to-red: - shard-skl: NOTRUN -> FAIL [fdo#107201] * igt@kms_cursor_crc@cursor-128x128-onscreen: - shard-skl: NOTRUN -> FAIL [fdo#103232] * igt@kms_cursor_crc@cursor-256x85-sliding: - shard-glk: PASS -> FAIL [fdo#103232] +1 * igt@kms_cursor_crc@cursor-64x21-onscreen: - shard-apl: PASS -> FAIL [fdo#103232] * igt@kms_cursor_crc@cursor-64x64-sliding: - {shard-iclb}: NOTRUN -> FAIL [fdo#103232] +1 * igt@kms_cursor_crc@cursor-64x64-suspend: - shard-apl: PASS -> FAIL [fdo#103191] / [fdo#103232] * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled: - shard-skl: PASS -> FAIL [fdo#108472] * igt@kms_draw_crc@draw-method-xrgb8888-render-untiled: - shard-skl: PASS -> FAIL [fdo#103184] * igt@kms_flip@flip-vs-expired-vblank: - shard-apl: PASS -> FAIL [fdo#102887] / [fdo#105363] * igt@kms_flip@modeset-vs-vblank-race: - shard-glk: PASS -> FAIL [fdo#103060] * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-apl: PASS -> FAIL [fdo#103167] * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite: - shard-skl: PASS -> FAIL [fdo#103167] / [fdo#105682] * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-skl: NOTRUN -> FAIL [fdo#105683] * igt@kms_frontbuffer_tracking@fbc-suspend: - {shard-iclb}: PASS -> INCOMPLETE [fdo#107713] * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-skl: PASS -> FAIL [fdo#103167] +2 * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc: - {shard-iclb}: PASS -> DMESG-WARN [fdo#107724] / [fdo#108336] +1 * igt@kms_plane@pixel-format-pipe-b-planes: - shard-skl: NOTRUN -> DMESG-WARN [fdo#106885] * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc: - shard-skl: PASS -> FAIL [fdo#107815] / [fdo#108145] * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-skl: NOTRUN -> FAIL [fdo#107815] / [fdo#108145] * igt@kms_plane_alpha_blend@pipe-c-alpha-transparant-fb: - shard-skl: NOTRUN -> FAIL [fdo#108145] +1 * igt@kms_plane_multiple@atomic-pipe-c-tiling-yf: - shard-apl: PASS -> FAIL [fdo#103166] +2 * igt@kms_psr@no_drrs: - {shard-iclb}: PASS -> FAIL [fdo#108341] * {igt@kms_rotation_crc@multiplane-rotation-cropping-top}: - shard-glk: PASS -> DMESG-WARN [fdo#105763] / [fdo#106538] * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - {shard-iclb}: PASS -> DMESG-WARN [fdo#107724] +1 * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-kbl: PASS -> INCOMPLETE [fdo#103665] * igt@pm_rpm@gem-execbuf-stress: - shard-skl: PASS -> INCOMPLETE [fdo#107803] / [fdo#107807] #### Possible fixes #### * igt@gem_eio@in-flight-suspend: - {shard-iclb}: INCOMPLETE [fdo#107713] -> PASS +1 * igt@kms_busy@extended-pageflip-hang-newfb-render-a: - shard-apl: DMESG-WARN [fdo#107956] -> PASS * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-a: - shard-kbl: DMESG-WARN [fdo#107956] -> PASS * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-c: - shard-glk: DMESG-WARN [fdo#107956] -> PASS - {shard-iclb}: DMESG-WARN [fdo#107956] -> PASS +1 * igt@kms_color@pipe-b-degamma: - shard-skl: FAIL [fdo#104782] -> PASS * igt@kms_flip@dpms-vs-vblank-race: - shard-kbl: FAIL [fdo#103060] -> PASS * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-apl: FAIL [fdo#103167] -> PASS * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-glk: FAIL [fdo#103167] -> PASS * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - {shard-iclb}: FAIL [fdo#103167] -> PASS +2 * {igt@kms_plane@pixel-format-pipe-c-planes-source-clamping}: - shard-glk: FAIL [fdo#108948] -> PASS * igt@kms_plane@plane-position-covered-pipe-c-planes: - {shard-iclb}: FAIL [fdo#103166] -> PASS +1 * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-apl: FAIL [fdo#108145] -> PASS * igt@kms_plane_multiple@atomic-pipe-c-tiling-yf: - shard-glk: FAIL [fdo#103166] -> PASS * igt@kms_rmfb@close-fd: - {shard-iclb}: DMESG-WARN [fdo#107724] -> PASS +1 * igt@kms_setmode@basic: - shard-kbl: FAIL [fdo#99912] -> PASS * igt@perf@invalid-open-flags: - shard-skl: INCOMPLETE -> PASS * igt@pm_rpm@debugfs-forcewake-user: - shard-skl: INCOMPLETE [fdo#107807] -> PASS +1 * igt@pm_rpm@system-suspend-execbuf: - shard-skl: INCOMPLETE [fdo#104108] / [fdo#107807] -> PASS #### Warnings #### * igt@i915_suspend@shrink: - shard-skl: INCOMPLETE [fdo#106886] -> DMESG-WARN [fdo#108784] * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - {shard-iclb}: FAIL [fdo#103167] -> DMESG-FAIL [fdo#107724] * igt@kms_plane_multiple@atomic-pipe-a-tiling-yf: - {shard-iclb}: FAIL [fdo#103166] -> DMESG-WARN [fdo#107724] / [fdo#108336] * {igt@kms_rotation_crc@multiplane-rotation-cropping-top}: - shard-kbl: DMESG-FAIL [fdo#108950] -> DMESG-WARN [fdo#105604] {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102887]: https://bugs.freedesktop.org/show_bug.cgi?id=102887 [fdo#103060]: https://bugs.freedesktop.org/show_bug.cgi?id=103060 [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103184]: https://bugs.freedesktop.org/show_bug.cgi?id=103184 [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108 [fdo#104671]: https://bugs.freedesktop.org/show_bug.cgi?id=104671 [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105604]: https://bugs.freedesktop.org/show_bug.cgi?id=105604 [fdo#105682]: https://bugs.freedesktop.org/show_bug.cgi?id=105682 [fdo#105683]: https://bugs.freedesktop.org/show_bug.cgi?id=105683 [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763 [fdo#106538]: https://bugs.freedesktop.org/show_bug.cgi?id=106538 [fdo#106885]: https://bugs.freedesktop.org/show_bug.cgi?id=106885 [fdo#106886]: https://bugs.freedesktop.org/show_bug.cgi?id=106886 [fdo#107201]: https://bugs.freedesktop.org/show_bug.cgi?id=107201 [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#107803]: https://bugs.freedesktop.org/show_bug.cgi?id=107803 [fdo#107807]: https://bugs.freedesktop.org/show_bug.cgi?id=107807 [fdo#107815]: https://bugs.freedesktop.org/show_bug.cgi?id=107815 [fdo#107956]: https://bugs.freedesktop.org/show_bug.cgi?id=107956 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#108336]: https://bugs.freedesktop.org/show_bug.cgi?id=108336 [fdo#108341]: https://bugs.freedesktop.org/show_bug.cgi?id=108341 [fdo#108472]: https://bugs.freedesktop.org/show_bug.cgi?id=108472 [fdo#108784]: https://bugs.freedesktop.org/show_bug.cgi?id=108784 [fdo#108948]: https://bugs.freedesktop.org/show_bug.cgi?id=108948 [fdo#108950]: https://bugs.freedesktop.org/show_bug.cgi?id=108950 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Build changes ------------- * Linux: CI_DRM_5288 -> Patchwork_11053 CI_DRM_5288: cf6669d4c0e52b024d8aea90fbe2c80841e67e59 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4743: edb2db2cf2b6665d7ba3fa9117263302f6307a4f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_11053: 19692ff6e9fca3f5771de8f308fab00b412d66d7 @ 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_11053/ _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-12-10 21:58 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-12-07 18:28 [PATCH 0/2] HuC Update for BXT Anusha 2018-12-07 18:28 ` [PATCH 1/2] drm/i915/huc: Update the HuC version " Anusha 2018-12-10 21:58 ` Rodrigo Vivi 2018-12-07 18:28 ` [PATCH 2/2] HAX Enable HuC testing without GuC submission Anusha 2018-12-07 19:07 ` ✓ Fi.CI.BAT: success for HuC Update for BXT (rev2) Patchwork 2018-12-08 3:34 ` ✓ Fi.CI.IGT: " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.