Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] HuC Update for BXT
@ 2018-11-30 19:05 Anusha
  2018-11-30 19:05 ` [PATCH 1/2] firmware/huc/BXT: Update the HuC version Anusha
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Anusha @ 2018-11-30 19:05 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] 5+ messages in thread

* [PATCH 1/2] firmware/huc/BXT: Update the HuC version
  2018-11-30 19:05 [PATCH 0/2] HuC Update for BXT Anusha
@ 2018-11-30 19:05 ` Anusha
  2018-11-30 19:05 ` [PATCH 2/2] HAX enable HuC for CI Anusha
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Anusha @ 2018-11-30 19:05 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.

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.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

* [PATCH 2/2] HAX enable HuC for CI
  2018-11-30 19:05 [PATCH 0/2] HuC Update for BXT Anusha
  2018-11-30 19:05 ` [PATCH 1/2] firmware/huc/BXT: Update the HuC version Anusha
@ 2018-11-30 19:05 ` Anusha
  2018-11-30 19:30 ` ✗ Fi.CI.CHECKPATCH: warning for HuC Update for BXT Patchwork
  2018-11-30 19:54 ` ✗ Fi.CI.BAT: failure " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Anusha @ 2018-11-30 19:05 UTC (permalink / raw)
  To: intel-gfx

From: Anusha Srivatsa <anusha.srivatsa@intel.com>

Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
---
 drivers/gpu/drm/i915/i915_params.h | 2 +-
 1 file changed, 1 insertion(+), 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) \
-- 
2.19.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

* ✗ Fi.CI.CHECKPATCH: warning for HuC Update for BXT
  2018-11-30 19:05 [PATCH 0/2] HuC Update for BXT Anusha
  2018-11-30 19:05 ` [PATCH 1/2] firmware/huc/BXT: Update the HuC version Anusha
  2018-11-30 19:05 ` [PATCH 2/2] HAX enable HuC for CI Anusha
@ 2018-11-30 19:30 ` Patchwork
  2018-11-30 19:54 ` ✗ Fi.CI.BAT: failure " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2018-11-30 19:30 UTC (permalink / raw)
  To: Anusha; +Cc: intel-gfx

== Series Details ==

Series: HuC Update for BXT
URL   : https://patchwork.freedesktop.org/series/53332/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
70d9dcefa690 firmware/huc/BXT: Update the HuC version
a68b5ec5b667 HAX enable HuC for CI
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one

total: 0 errors, 1 warnings, 0 checks, 8 lines checked

_______________________________________________
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: failure for HuC Update for BXT
  2018-11-30 19:05 [PATCH 0/2] HuC Update for BXT Anusha
                   ` (2 preceding siblings ...)
  2018-11-30 19:30 ` ✗ Fi.CI.CHECKPATCH: warning for HuC Update for BXT Patchwork
@ 2018-11-30 19:54 ` Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2018-11-30 19:54 UTC (permalink / raw)
  To: Anusha; +Cc: intel-gfx

== Series Details ==

Series: HuC Update for BXT
URL   : https://patchwork.freedesktop.org/series/53332/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_5236 -> Patchwork_10982
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_10982 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_10982, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/53332/revisions/1/mbox/

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_10982:

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live_execlists:
    - fi-skl-6700hq:      PASS -> DMESG-WARN

  * igt@i915_selftest@live_hangcheck:
    - fi-whl-u:           PASS -> DMESG-FAIL

  * {igt@runner@aborted}:
    - fi-skl-6700hq:      NOTRUN -> FAIL

  
Known issues
------------

  Here are the changes found in Patchwork_10982 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_pipe_crc_basic@read-crc-pipe-b-frame-sequence:
    - fi-byt-clapper:     PASS -> FAIL [fdo#103191] / [fdo#107362]

  
#### Possible fixes ####

  * igt@gem_ctx_create@basic-files:
    - fi-bsw-kefka:       DMESG-FAIL [fdo#108656] -> PASS

  * igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence:
    - fi-byt-clapper:     FAIL [fdo#103191] / [fdo#107362] -> PASS

  * igt@prime_vgem@basic-fence-flip:
    - fi-gdg-551:         DMESG-FAIL [fdo#103182] -> PASS

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103182]: https://bugs.freedesktop.org/show_bug.cgi?id=103182
  [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
  [fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362
  [fdo#108656]: https://bugs.freedesktop.org/show_bug.cgi?id=108656


Participating hosts (48 -> 43)
------------------------------

  Additional (1): fi-pnv-d510 
  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_5236 -> Patchwork_10982

  CI_DRM_5236: f9cd6a3ffb4400071d46dd123347802c1422d9da @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_4736: 285ebfb3b7adc56586031afa5150c4e5ad40c229 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_10982: a68b5ec5b6671c7f587a077d89fd7e34d07ea4e5 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

a68b5ec5b667 HAX enable HuC for CI
70d9dcefa690 firmware/huc/BXT: Update the HuC version

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_10982/
_______________________________________________
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:[~2018-11-30 19:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-30 19:05 [PATCH 0/2] HuC Update for BXT Anusha
2018-11-30 19:05 ` [PATCH 1/2] firmware/huc/BXT: Update the HuC version Anusha
2018-11-30 19:05 ` [PATCH 2/2] HAX enable HuC for CI Anusha
2018-11-30 19:30 ` ✗ Fi.CI.CHECKPATCH: warning for HuC Update for BXT Patchwork
2018-11-30 19:54 ` ✗ Fi.CI.BAT: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox