* [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature
@ 2026-06-15 11:29 Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 1/4] tools/intel_vbt_decode: store codename from VBT signature to context Jani Nikula
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Jani Nikula @ 2026-06-15 11:29 UTC (permalink / raw)
To: igt-dev, Michał Grzelak; +Cc: ville.syrjala, jani.nikula
v2 of [1]
[1] https://lore.kernel.org/r/cover.1781261899.git.jani.nikula@intel.com
Jani Nikula (3):
tools/intel_vbt_decode: store codename from VBT signature to context
lib/intel_device_info: add a helper to guess the PCI ID for a codename
tools/intel_vbt_decode: fall back to guessing PCI ID from VBT
signature
Michał Grzelak (1):
tools/vbt_decode: return 0 from get_device_id()
lib/intel_chipset.h | 1 +
lib/intel_device_info.c | 75 ++++++++++++++++++++++++++++++++++++++++
tools/intel_vbt_decode.c | 35 +++++++++++++------
3 files changed, 100 insertions(+), 11 deletions(-)
--
2.47.3
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 1/4] tools/intel_vbt_decode: store codename from VBT signature to context
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
@ 2026-06-15 11:29 ` Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 2/4] lib/intel_device_info: add a helper to guess the PCI ID for a codename Jani Nikula
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2026-06-15 11:29 UTC (permalink / raw)
To: igt-dev, Michał Grzelak; +Cc: ville.syrjala, jani.nikula
The VBT often contains something resembling a codename in the
signature. Currently, we only use it for printing a description of sorts
(the --describe option). Store the codename-ish to context for more use.
Cc: Michał Grzelak <michal.grzelak@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
tools/intel_vbt_decode.c | 29 ++++++++++++++++++++---------
1 file changed, 20 insertions(+), 9 deletions(-)
diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c
index cf7bcc5771a4..5b39e0c1c33e 100644
--- a/tools/intel_vbt_decode.c
+++ b/tools/intel_vbt_decode.c
@@ -74,6 +74,8 @@ struct context {
const struct bdb_header *bdb;
int size;
+ char codename[sizeof(((struct vbt_header *)0)->signature) + 1];
+
uint32_t devid;
int panel_type, panel_type2;
int sdvo_panel_type;
@@ -4023,31 +4025,38 @@ static bool dump_section(struct context *context, int section_id)
return true;
}
-/* print a description of the VBT of the form <bdb-version>-<vbt-signature> */
-static void print_description(struct context *context)
+/* initialize something resembling a codename based on the signature */
+static void init_codename(struct context *context)
{
const struct vbt_header *vbt = context->vbt;
- const struct bdb_header *bdb = context->bdb;
- char *desc = strndup((char *)vbt->signature, sizeof(vbt->signature));
+ char signature[sizeof(vbt->signature) + 1] = {};
char *p;
- for (p = desc + strlen(desc) - 1; p >= desc && isspace(*p); p--)
+ memcpy(signature, vbt->signature, sizeof(vbt->signature));
+
+ for (p = signature + strlen(signature) - 1; p >= signature && isspace(*p); p--)
*p = '\0';
- for (p = desc; *p; p++) {
+ for (p = signature; *p; p++) {
if (!isalnum(*p))
*p = '-';
else
*p = tolower(*p);
}
- p = desc;
+ p = signature;
if (strncmp(p, "-vbt-", 5) == 0)
p += 5;
- printf("%d-%s\n", bdb->version, p);
+ strncpy(context->codename, p, sizeof(context->codename));
+}
+
+/* print a description of the VBT of the form <bdb-version>-<vbt-signature> */
+static void print_description(struct context *context)
+{
+ const struct bdb_header *bdb = context->bdb;
- free (desc);
+ printf("%d-%s\n", bdb->version, context->codename);
}
static void dump_headers(struct context *context)
@@ -4313,6 +4322,8 @@ int main(int argc, char **argv)
context.bdb = (const struct bdb_header *)(VBIOS + bdb_off);
context.size = size;
+ init_codename(&context);
+
if (!context.devid) {
const char *devid_string = getenv("DEVICE");
if (devid_string)
--
2.47.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 2/4] lib/intel_device_info: add a helper to guess the PCI ID for a codename
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 1/4] tools/intel_vbt_decode: store codename from VBT signature to context Jani Nikula
@ 2026-06-15 11:29 ` Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 3/4] tools/vbt_decode: return 0 from get_device_id() Jani Nikula
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2026-06-15 11:29 UTC (permalink / raw)
To: igt-dev, Michał Grzelak; +Cc: ville.syrjala, jani.nikula
The struct intel_device_info contains the codenames for the
corresponding PCI device IDs. Add a reverse lookup to get a PCI ID for a
codename.
It's a bit fuzzy, though. The codenames aren't always spelled the same,
there are suffixes sometimes omitted, and you can only pick one of the
matching PCI IDs. Name the helper intel_guess_device_id() to emphasize
the point, and try increasing fuzziness in the matching to find an
appropriate struct intel_device_info.
There's nothing exact about this, and it should not be considered as
such. But it will be useful in VBT parsing.
v2: Sort includes (Kamil)
Cc: Michał Grzelak <michal.grzelak@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
lib/intel_chipset.h | 1 +
lib/intel_device_info.c | 75 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index 3fcc5b18d648..98a2a81fcffd 100644
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -103,6 +103,7 @@ struct intel_device_info {
};
const struct intel_device_info *intel_get_device_info(uint16_t devid) __attribute__((pure));
+uint16_t intel_guess_device_id(const char *codenameish) __attribute__((pure));
const struct intel_cmds_info *intel_get_cmds_info(uint16_t devid) __attribute__((pure));
unsigned intel_gen(uint16_t devid) __attribute__((pure));
diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
index da0b9f398885..ae316bfcabed 100644
--- a/lib/intel_device_info.c
+++ b/lib/intel_device_info.c
@@ -2,6 +2,7 @@
#include "pciids.h"
#include "i915_pciids_local.h"
+#include <ctype.h>
#include <strings.h> /* ffs() */
static const struct intel_device_info intel_generic_info = {
@@ -746,6 +747,80 @@ out:
return cache;
}
+static bool char_eq(char c1, char c2)
+{
+ c1 = isalnum(c1) ? tolower(c1) : '-';
+ c2 = isalnum(c2) ? tolower(c2) : '-';
+
+ return c1 == c2;
+}
+
+/*
+ * Return true if the codenames s1 and s2 match, with fuzziness.
+ *
+ * Case insensitive matching, ignoring differences in non-alnum characters. With
+ * non-zero fuzziness, accept matches up to the first non-alnum character.
+ */
+static bool codename_match(const char *s1, const char *s2, int fuzziness)
+{
+ while (*s1 && *s2 && char_eq(*s1, *s2)) {
+ s1++;
+ s2++;
+ }
+
+ /* full match */
+ if (!*s1 && !*s2)
+ return true;
+
+ /* sub-string match up to a non-alnum char */
+ if (fuzziness >=1) {
+ if (!*s1 && !isalnum(*s2))
+ return true;
+ if (!*s2 && !isalnum(*s1))
+ return true;
+ }
+
+ return false;
+}
+
+static uint16_t lookup_device_id(const char *codename, int fuzziness)
+{
+ int i;
+
+ for (i = 0; intel_device_match[i].device_id != PCI_MATCH_ANY; i++) {
+ const struct intel_device_info *info = (void *)intel_device_match[i].match_data;
+
+ if (codename_match(info->codename, codename, fuzziness))
+ return intel_device_match[i].device_id;
+ }
+
+ return 0;
+}
+
+/**
+ * intel_guess_device_id:
+ * @codenameish: something resembling a codename
+ *
+ * Based on something resembling a codename, try to fuzzy find the first PCI
+ * device ID matching the codename.
+ *
+ * Returns:
+ * PCI device ID fuzzy matching the @codenameish, or 0 if no match was found.
+ */
+uint16_t intel_guess_device_id(const char *codenameish)
+{
+ uint16_t devid;
+ int fuzziness;
+
+ for (fuzziness = 0; fuzziness < 2; fuzziness++) {
+ devid = lookup_device_id(codenameish, fuzziness);
+ if (devid)
+ return devid;
+ }
+
+ return 0;
+}
+
/**
* intel_get_cmds_info:
* @devid: pci device id
--
2.47.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 3/4] tools/vbt_decode: return 0 from get_device_id()
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 1/4] tools/intel_vbt_decode: store codename from VBT signature to context Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 2/4] lib/intel_device_info: add a helper to guess the PCI ID for a codename Jani Nikula
@ 2026-06-15 11:29 ` Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 4/4] tools/intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2026-06-15 11:29 UTC (permalink / raw)
To: igt-dev, Michał Grzelak; +Cc: ville.syrjala, jani.nikula, Kamil Konieczny
From: Michał Grzelak <michal.grzelak@intel.com>
This function returns -1 on errors and the caller checks for 0. This
leads to -1 being used as the device id. Return 0 instead of -1.
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Michał Grzelak <michal.grzelak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
tools/intel_vbt_decode.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c
index 5b39e0c1c33e..69961ce29e01 100644
--- a/tools/intel_vbt_decode.c
+++ b/tools/intel_vbt_decode.c
@@ -3702,13 +3702,13 @@ get_device_id(unsigned char *bios, int size)
int offset = (bios[0x19] << 8) + bios[0x18];
if (offset + 7 >= size)
- return -1;
+ return 0;
if (bios[offset] != 'P' ||
bios[offset+1] != 'C' ||
bios[offset+2] != 'I' ||
bios[offset+3] != 'R')
- return -1;
+ return 0;
device = (bios[offset+7] << 8) + bios[offset+6];
--
2.47.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 4/4] tools/intel_vbt_decode: fall back to guessing PCI ID from VBT signature
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (2 preceding siblings ...)
2026-06-15 11:29 ` [PATCH i-g-t v2 3/4] tools/vbt_decode: return 0 from get_device_id() Jani Nikula
@ 2026-06-15 11:29 ` Jani Nikula
2026-06-15 18:15 ` ✓ Xe.CI.BAT: success for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2026-06-15 11:29 UTC (permalink / raw)
To: igt-dev, Michał Grzelak; +Cc: ville.syrjala, jani.nikula
If the PCI ID wasn't passed on the command-line, DEVICE environment
variable, or VBIOS, fall back to guessing the device ID from the VBT
signature.
Cc: Michał Grzelak <michal.grzelak@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
tools/intel_vbt_decode.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c
index 69961ce29e01..9451a77318ae 100644
--- a/tools/intel_vbt_decode.c
+++ b/tools/intel_vbt_decode.c
@@ -4331,6 +4331,8 @@ int main(int argc, char **argv)
}
if (!context.devid)
context.devid = get_device_id(VBIOS, size);
+ if (!context.devid)
+ context.devid = intel_guess_device_id(context.codename);
if (!context.devid)
fprintf(stderr, "Warning: could not find PCI device ID!\n");
--
2.47.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (3 preceding siblings ...)
2026-06-15 11:29 ` [PATCH i-g-t v2 4/4] tools/intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
@ 2026-06-15 18:15 ` Patchwork
2026-06-15 18:39 ` ✓ i915.CI.BAT: " Patchwork
2026-06-15 19:26 ` ✗ Xe.CI.FULL: failure " Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-06-15 18:15 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 802 bytes --]
== Series Details ==
Series: intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
URL : https://patchwork.freedesktop.org/series/168428/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8964_BAT -> XEIGTPW_15368_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8964 -> IGTPW_15368
IGTPW_15368: 15368
IGT_8964: 8964
xe-5260-0984dfdee2a4f9e1922fe919a6b469e115e23360: 0984dfdee2a4f9e1922fe919a6b469e115e23360
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/index.html
[-- Attachment #2: Type: text/html, Size: 1347 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (4 preceding siblings ...)
2026-06-15 18:15 ` ✓ Xe.CI.BAT: success for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2) Patchwork
@ 2026-06-15 18:39 ` Patchwork
2026-06-15 19:26 ` ✗ Xe.CI.FULL: failure " Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-06-15 18:39 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5699 bytes --]
== Series Details ==
Series: intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
URL : https://patchwork.freedesktop.org/series/168428/
State : success
== Summary ==
CI Bug Log - changes from IGT_8964 -> IGTPW_15368
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): bat-adls-6
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15368 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][4] -> [DMESG-WARN][5] ([i915#13735]) +79 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][6] ([i915#7707]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#13735] / [i915#180])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#16361])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#5354])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][13] -> [DMESG-WARN][14] ([i915#13735] / [i915#15673] / [i915#180]) +52 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8964/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#1072] / [i915#9732]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#3555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#3291]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/bat-adls-6/igt@prime_vgem@basic-fence-read.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8964 -> IGTPW_15368
CI-20190529: 20190529
CI_DRM_18682: 0984dfdee2a4f9e1922fe919a6b469e115e23360 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15368: 15368
IGT_8964: 8964
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15368/index.html
[-- Attachment #2: Type: text/html, Size: 6867 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.FULL: failure for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
` (5 preceding siblings ...)
2026-06-15 18:39 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-06-15 19:26 ` Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-06-15 19:26 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 20127 bytes --]
== Series Details ==
Series: intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2)
URL : https://patchwork.freedesktop.org/series/168428/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8964_FULL -> XEIGTPW_15368_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15368_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15368_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15368_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pmu@gt-frequency:
- shard-bmg: [PASS][1] -> [WARN][2] +1 other test warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-4/igt@xe_pmu@gt-frequency.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@xe_pmu@gt-frequency.html
Known issues
------------
Here are the changes found in XEIGTPW_15368_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#6078])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@linear-tiling-2-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2652]) +8 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#6507])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-5/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2320]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2321] / [Intel XE#7355])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1340] / [Intel XE#7435])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-basic-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#8265]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4156] / [Intel XE#7425])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7178] / [Intel XE#7351])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#4141]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2311]) +10 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7061]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2313]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#3544] / [Intel XE#7916])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7916]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#7915]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-9/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7915]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-6/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7283])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-5/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#7340] / [Intel XE#7504])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#7340])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1489]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#3904] / [Intel XE#7342])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_sharpness_filter@filter-dpms:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6503])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-9/igt@kms_sharpness_filter@filter-dpms.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1499])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-9/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-6/igt@kms_vrr@flipline.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-5/igt@kms_vrr@flipline.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7636]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-10/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7136]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-priority:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6874]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-10/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-priority.html
* igt@xe_exec_threads@threads-multi-queue-cm-rebind:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7138]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#5694] / [Intel XE#7370])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@xe_pm@d3cold-i2c.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4733] / [Intel XE#7417])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#944])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-7/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: [FAIL][46] ([Intel XE#6078]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][48] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][49] +1 other test pass
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][50] ([Intel XE#301]) -> [PASS][51] +1 other test pass
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][52] ([Intel XE#7308]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][54] ([Intel XE#7340]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [ABORT][56] ([Intel XE#8007]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-7/igt@xe_wedged@wedged-mode-toggle.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-9/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: [SKIP][58] ([Intel XE#1424]) -> [ABORT][59] ([Intel XE#8007])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-lnl-7/igt@kms_cursor_crc@cursor-random-32x10.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-lnl-6/igt@kms_cursor_crc@cursor-random-32x10.html
- shard-bmg: [SKIP][60] ([Intel XE#2320]) -> [ABORT][61] ([Intel XE#8007])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x10.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-9/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][62] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][63] ([Intel XE#1729] / [Intel XE#7424])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8964/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8964 -> IGTPW_15368
IGTPW_15368: 15368
IGT_8964: 8964
xe-5260-0984dfdee2a4f9e1922fe919a6b469e115e23360: 0984dfdee2a4f9e1922fe919a6b469e115e23360
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15368/index.html
[-- Attachment #2: Type: text/html, Size: 22214 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-06-15 19:26 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-15 11:29 [PATCH i-g-t v2 0/4] intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 1/4] tools/intel_vbt_decode: store codename from VBT signature to context Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 2/4] lib/intel_device_info: add a helper to guess the PCI ID for a codename Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 3/4] tools/vbt_decode: return 0 from get_device_id() Jani Nikula
2026-06-15 11:29 ` [PATCH i-g-t v2 4/4] tools/intel_vbt_decode: fall back to guessing PCI ID from VBT signature Jani Nikula
2026-06-15 18:15 ` ✓ Xe.CI.BAT: success for intel_vbt_decode: fall back to guessing PCI ID from VBT signature (rev2) Patchwork
2026-06-15 18:39 ` ✓ i915.CI.BAT: " Patchwork
2026-06-15 19:26 ` ✗ Xe.CI.FULL: failure " 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.