* [igt-dev] [PATCH 0/2] Move dpcd_(read/write) to igt_dpcd
@ 2023-10-17 5:52 Kunal Joshi
2023-10-17 5:52 ` [igt-dev] [PATCH 1/2] lib/igt_dpcd: move dpcd_read and dpcd_write to lib Kunal Joshi
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Kunal Joshi @ 2023-10-17 5:52 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
tests can use dpcd_read and dpcd_write for many use cases
one such use case is reading crc present at below address
DP_TEST_CRC_R_CR 0x240
DP_TEST_CRC_G_Y 0x242
DP_TEST_CRC_B_CB 0x244
Kunal Joshi (2):
lib/igt_dpcd: move dpcd_read and dpcd_write to lib
lib/meson.build: Add igt_dpcd for compilation
lib/igt_dpcd.c | 104 +++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_dpcd.h | 24 +++++++++++
lib/meson.build | 5 +++
tools/dpcd_reg.c | 60 +--------------------------
4 files changed, 134 insertions(+), 59 deletions(-)
create mode 100644 lib/igt_dpcd.c
create mode 100644 lib/igt_dpcd.h
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH 1/2] lib/igt_dpcd: move dpcd_read and dpcd_write to lib 2023-10-17 5:52 [igt-dev] [PATCH 0/2] Move dpcd_(read/write) to igt_dpcd Kunal Joshi @ 2023-10-17 5:52 ` Kunal Joshi 2023-10-17 8:55 ` Kamil Konieczny 2023-10-17 5:52 ` [igt-dev] [PATCH 2/2] lib/meson.build: Add igt_dpcd for compilation Kunal Joshi ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Kunal Joshi @ 2023-10-17 5:52 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi moved dpcd_read and dpcd_write to lib/igt_dpcd v2: added copyright (swati) added comment for functions (swati) sorted headers (swati) added new function dpcd_read_buf (kunal) Cc: Swati Sharma <swati2.sharma@intel.com> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/igt_dpcd.c | 104 +++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_dpcd.h | 24 +++++++++++ tools/dpcd_reg.c | 60 +-------------------------- 3 files changed, 129 insertions(+), 59 deletions(-) create mode 100644 lib/igt_dpcd.c create mode 100644 lib/igt_dpcd.h diff --git a/lib/igt_dpcd.c b/lib/igt_dpcd.c new file mode 100644 index 000000000..edddad8c7 --- /dev/null +++ b/lib/igt_dpcd.c @@ -0,0 +1,104 @@ +/* + * Copyright © 2023 Intel Corporation +*/ + +#include "igt_dpcd.h" + +/** + * dpcd_read: + * @fd: drm_fd + * @offset: dpcd address to read + * @count: bytes to read from @offset + * + * Returns: EXIT_SUCCESS on success else errno + */ +int dpcd_read(int fd, uint32_t offset, size_t count) +{ + int ret = EXIT_SUCCESS; + uint8_t *buf = calloc(count, sizeof(uint8_t)); + ssize_t bytes_read; + + if (!buf) { + fprintf(stderr, "Can't allocate read buffer\n"); + return ENOMEM; + } + + bytes_read = pread(fd, buf, count, offset); + + if (bytes_read < 0) { + fprintf(stderr, "Failed to read - %s\n", strerror(errno)); + ret = errno; + } else { + printf("0x%04x: ", offset); + for (ssize_t i = 0; i < bytes_read; i++) { + printf(" %02x", buf[i]); + } + printf("\n"); + } + + free(buf); + return ret; +} + +/* dpcd_read_buf: + * @fd: drm_fd + * @offset: dpcd address to read + * @count: bytes to read from @offset + * @buf: buf to write read data + * + * Returns: EXIT_SUCCESS on success else errno + */ +int dpcd_read_buf(int fd, uint32_t offset, size_t count, uint8_t *buf) +{ + int ret = EXIT_SUCCESS; + *buf = calloc(count, sizeof(uint8_t)); + ssize_t bytes_read; + + if (!buf) { + fprintf(stderr, "Can't allocate read buffer\n"); + return ENOMEM; + } + + bytes_read = pread(fd, buf, count, offset); + + if (bytes_read < 0) { + fprintf(stderr, "Failed to read - %s\n", strerror(errno)); + ret = errno; + } else { + printf("0x%04x: ", offset); + for (ssize_t i = 0; i < bytes_read; i++) { + printf(" %02x", buf[i]); + } + printf("\n"); + } + + free(buf); + return ret; +} + + +/** + * dpcd_write: + * @fd: drm_fd + * @offset: dpcd address to write + * @cal : value to write + * + * Returns: EXIT_SUCCESS on success else errno + */ +int dpcd_write(int fd, uint32_t offset, uint8_t val) +{ + int ret = EXIT_SUCCESS; + ssize_t bytes_written; + + bytes_written = pwrite(fd, &val, sizeof(uint8_t), offset); + + if (bytes_written < 0) { + fprintf(stderr, "Failed to write - %s\n", strerror(errno)); + ret = errno; + } else if (bytes_written == 0) { + fprintf(stderr, "Zero bytes were written\n"); + ret = EXIT_FAILURE; + } + + return ret; +} diff --git a/lib/igt_dpcd.h b/lib/igt_dpcd.h new file mode 100644 index 000000000..a5abe900f --- /dev/null +++ b/lib/igt_dpcd.h @@ -0,0 +1,24 @@ +/* + * Copyright © 2023 Intel Corporation +*/ + +#ifndef IGT_DPCD_H +#define IGT_DPCD_H + +#include <errno.h> +#include <fcntl.h> +#include <getopt.h> +#include <limits.h> +#include <stdbool.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> + +int dpcd_read(int fd, uint32_t offset, size_t count); +int dpcd_read_buf(int fd, uint32_t offset, size_t count, + uint8_t *buf); +int dpcd_write(int fd, uint32_t offset, uint8_t val); + +#endif /* IGT_DPCD_H */ diff --git a/tools/dpcd_reg.c b/tools/dpcd_reg.c index 2761168d0..b7454cca1 100644 --- a/tools/dpcd_reg.c +++ b/tools/dpcd_reg.c @@ -25,16 +25,7 @@ * and write, so CONFIG_DRM_DP_AUX_DEV needs to be set. */ -#include <stdio.h> -#include <errno.h> -#include <string.h> -#include <stdlib.h> -#include <fcntl.h> -#include <getopt.h> -#include <stdint.h> -#include <unistd.h> -#include <limits.h> -#include <stdbool.h> +#include "igt_dpcd.h" #define MAX_DP_OFFSET 0xfffff #define DRM_AUX_MINORS 256 @@ -214,55 +205,6 @@ static int parse_opts(struct dpcd_data *dpcd, int argc, char **argv) return EXIT_SUCCESS; } -static int dpcd_read(int fd, uint32_t offset, size_t count) -{ - int ret = EXIT_SUCCESS, pret, i; - uint8_t *buf = calloc(count, sizeof(uint8_t)); - - if (!buf) { - fprintf(stderr, "Can't allocate read buffer\n"); - return ENOMEM; - } - - pret = pread(fd, buf, count, offset); - if (pret < 0) { - fprintf(stderr, "Failed to read - %s\n", strerror(errno)); - ret = errno; - goto out; - } - - if (pret < count) { - fprintf(stderr, - "Read %u byte(s), expected %zu bytes, starting at offset %x\n\n", pret, count, offset); - ret = EXIT_FAILURE; - } - - printf("0x%04x: ", offset); - for (i = 0; i < pret; i++) - printf(" %02x", *(buf + i)); - printf("\n"); - -out: - free(buf); - return ret; -} - -static int dpcd_write(int fd, uint32_t offset, uint8_t val) -{ - int ret = EXIT_SUCCESS, pret; - - pret = pwrite(fd, (const void *)&val, sizeof(uint8_t), offset); - if (pret < 0) { - fprintf(stderr, "Failed to write - %s\n", strerror(errno)); - ret = errno; - } else if (pret == 0) { - fprintf(stderr, "Zero bytes were written\n"); - ret = EXIT_FAILURE; - } - - return ret; -} - static int dpcd_dump(int fd) { size_t count; -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH 1/2] lib/igt_dpcd: move dpcd_read and dpcd_write to lib 2023-10-17 5:52 ` [igt-dev] [PATCH 1/2] lib/igt_dpcd: move dpcd_read and dpcd_write to lib Kunal Joshi @ 2023-10-17 8:55 ` Kamil Konieczny 2023-10-26 6:32 ` [igt-dev] [PATCH 1/2] lHEib/igt_dpcd: " Joshi, Kunal1 0 siblings, 1 reply; 8+ messages in thread From: Kamil Konieczny @ 2023-10-17 8:55 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Hi Kunal, On 2023-10-17 at 11:22:51 +0530, Kunal Joshi wrote: > moved dpcd_read and dpcd_write to lib/igt_dpcd - ^ s/moved/Moved/ Start with uppercase, also imho this should be "Copy" not a move, see below. > > v2: added copyright (swati) -----------------------^ Uppercase: s/swati/Swati/ > added comment for functions (swati) ---------------------------------- ^ Same here. > sorted headers (swati) --------------------- ^ Same here. > added new function dpcd_read_buf (kunal) --------------------------------------- ^ Same here, s/kunal/Kunal/ > > Cc: Swati Sharma <swati2.sharma@intel.com> > Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> > --- > lib/igt_dpcd.c | 104 +++++++++++++++++++++++++++++++++++++++++++++++ > lib/igt_dpcd.h | 24 +++++++++++ > tools/dpcd_reg.c | 60 +-------------------------- It would help if you add a useage of these new functions in actual test. > 3 files changed, 129 insertions(+), 59 deletions(-) > create mode 100644 lib/igt_dpcd.c > create mode 100644 lib/igt_dpcd.h > > diff --git a/lib/igt_dpcd.c b/lib/igt_dpcd.c > new file mode 100644 > index 000000000..edddad8c7 > --- /dev/null > +++ b/lib/igt_dpcd.c > @@ -0,0 +1,104 @@ Add at begin of file licence: // SPDX-License-Identifier: MIT > +/* > + * Copyright © 2023 Intel Corporation > +*/ > + > +#include "igt_dpcd.h" > + > +/** > + * dpcd_read: > + * @fd: drm_fd > + * @offset: dpcd address to read > + * @count: bytes to read from @offset If regs are byte/word/dword you may consider returning it's value with pointer. > + * > + * Returns: EXIT_SUCCESS on success else errno ------------------------------------------- ^ imho better -errno > + */ > +int dpcd_read(int fd, uint32_t offset, size_t count) > +{ > + int ret = EXIT_SUCCESS; > + uint8_t *buf = calloc(count, sizeof(uint8_t)); --------------- ^ This should be parameter of function. > + ssize_t bytes_read; > + > + if (!buf) { > + fprintf(stderr, "Can't allocate read buffer\n"); ---------- ^ In igt lib you should use igt_debug. > + return ENOMEM; Here better to igt_assert. > + } > + > + bytes_read = pread(fd, buf, count, offset); > + > + if (bytes_read < 0) { > + fprintf(stderr, "Failed to read - %s\n", strerror(errno)); ---------- ^ Same here, use igt_debug. > + ret = errno; > + } else { > + printf("0x%04x: ", offset); ---------- ^ Same here, use igt_debug. > + for (ssize_t i = 0; i < bytes_read; i++) { > + printf(" %02x", buf[i]); -------------- ^ Same here, use igt_debug. > + } > + printf("\n"); -------------- ^ Same here, use igt_debug. > + } > + > + free(buf); > + return ret; > +} > + > +/* dpcd_read_buf: > + * @fd: drm_fd > + * @offset: dpcd address to read > + * @count: bytes to read from @offset > + * @buf: buf to write read data > + * > + * Returns: EXIT_SUCCESS on success else errno > + */ > +int dpcd_read_buf(int fd, uint32_t offset, size_t count, uint8_t *buf) The same goes here - rewrite it as above. > +{ > + int ret = EXIT_SUCCESS; > + *buf = calloc(count, sizeof(uint8_t)); ------- ^^^ This is your param? > + ssize_t bytes_read; > + > + if (!buf) { > + fprintf(stderr, "Can't allocate read buffer\n"); > + return ENOMEM; > + } > + > + bytes_read = pread(fd, buf, count, offset); > + > + if (bytes_read < 0) { > + fprintf(stderr, "Failed to read - %s\n", strerror(errno)); > + ret = errno; > + } else { > + printf("0x%04x: ", offset); > + for (ssize_t i = 0; i < bytes_read; i++) { > + printf(" %02x", buf[i]); > + } > + printf("\n"); > + } > + > + free(buf); > + return ret; > +} > + > + > +/** > + * dpcd_write: > + * @fd: drm_fd > + * @offset: dpcd address to write > + * @cal : value to write -------^ s/cal/val/ > + * > + * Returns: EXIT_SUCCESS on success else errno ------------------------------------------- ^^ > + */ > +int dpcd_write(int fd, uint32_t offset, uint8_t val) Same here - no printf/fprintf in lib. > +{ > + int ret = EXIT_SUCCESS; > + ssize_t bytes_written; > + > + bytes_written = pwrite(fd, &val, sizeof(uint8_t), offset); > + > + if (bytes_written < 0) { > + fprintf(stderr, "Failed to write - %s\n", strerror(errno)); > + ret = errno; > + } else if (bytes_written == 0) { > + fprintf(stderr, "Zero bytes were written\n"); > + ret = EXIT_FAILURE; > + } > + > + return ret; > +} > diff --git a/lib/igt_dpcd.h b/lib/igt_dpcd.h > new file mode 100644 > index 000000000..a5abe900f > --- /dev/null > +++ b/lib/igt_dpcd.h > @@ -0,0 +1,24 @@ > +/* > + * Copyright © 2023 Intel Corporation > +*/ > + > +#ifndef IGT_DPCD_H > +#define IGT_DPCD_H > + > +#include <errno.h> > +#include <fcntl.h> > +#include <getopt.h> -------------^^^^^^ No need for this. > +#include <limits.h> > +#include <stdbool.h> > +#include <stdint.h> > +#include <stdio.h> > +#include <stdlib.h> > +#include <string.h> > +#include <unistd.h> > + > +int dpcd_read(int fd, uint32_t offset, size_t count); > +int dpcd_read_buf(int fd, uint32_t offset, size_t count, > + uint8_t *buf); > +int dpcd_write(int fd, uint32_t offset, uint8_t val); > + > +#endif /* IGT_DPCD_H */ > diff --git a/tools/dpcd_reg.c b/tools/dpcd_reg.c > index 2761168d0..b7454cca1 100644 > --- a/tools/dpcd_reg.c > +++ b/tools/dpcd_reg.c imho we should keep this tool without change as it may help in debugging. Regards, Kamil > @@ -25,16 +25,7 @@ > * and write, so CONFIG_DRM_DP_AUX_DEV needs to be set. > */ > > -#include <stdio.h> > -#include <errno.h> > -#include <string.h> > -#include <stdlib.h> > -#include <fcntl.h> > -#include <getopt.h> > -#include <stdint.h> > -#include <unistd.h> > -#include <limits.h> > -#include <stdbool.h> > +#include "igt_dpcd.h" > > #define MAX_DP_OFFSET 0xfffff > #define DRM_AUX_MINORS 256 > @@ -214,55 +205,6 @@ static int parse_opts(struct dpcd_data *dpcd, int argc, char **argv) > return EXIT_SUCCESS; > } > > -static int dpcd_read(int fd, uint32_t offset, size_t count) > -{ > - int ret = EXIT_SUCCESS, pret, i; > - uint8_t *buf = calloc(count, sizeof(uint8_t)); > - > - if (!buf) { > - fprintf(stderr, "Can't allocate read buffer\n"); > - return ENOMEM; > - } > - > - pret = pread(fd, buf, count, offset); > - if (pret < 0) { > - fprintf(stderr, "Failed to read - %s\n", strerror(errno)); > - ret = errno; > - goto out; > - } > - > - if (pret < count) { > - fprintf(stderr, > - "Read %u byte(s), expected %zu bytes, starting at offset %x\n\n", pret, count, offset); > - ret = EXIT_FAILURE; > - } > - > - printf("0x%04x: ", offset); > - for (i = 0; i < pret; i++) > - printf(" %02x", *(buf + i)); > - printf("\n"); > - > -out: > - free(buf); > - return ret; > -} > - > -static int dpcd_write(int fd, uint32_t offset, uint8_t val) > -{ > - int ret = EXIT_SUCCESS, pret; > - > - pret = pwrite(fd, (const void *)&val, sizeof(uint8_t), offset); > - if (pret < 0) { > - fprintf(stderr, "Failed to write - %s\n", strerror(errno)); > - ret = errno; > - } else if (pret == 0) { > - fprintf(stderr, "Zero bytes were written\n"); > - ret = EXIT_FAILURE; > - } > - > - return ret; > -} > - > static int dpcd_dump(int fd) > { > size_t count; > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH 1/2] lHEib/igt_dpcd: move dpcd_read and dpcd_write to lib 2023-10-17 8:55 ` Kamil Konieczny @ 2023-10-26 6:32 ` Joshi, Kunal1 0 siblings, 0 replies; 8+ messages in thread From: Joshi, Kunal1 @ 2023-10-26 6:32 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Swati Sharma, Bhanuprakash Modem Hello Kamil, On 10/17/2023 2:25 PM, Kamil Konieczny wrote: > Hi Kunal, > > On 2023-10-17 at 11:22:51 +0530, Kunal Joshi wrote: >> moved dpcd_read and dpcd_write to lib/igt_dpcd > - ^ > s/moved/Moved/ > > Start with uppercase, also imho this should be "Copy" > not a move, see below. > >> v2: added copyright (swati) > -----------------------^ > Uppercase: s/swati/Swati/ > >> added comment for functions (swati) > ---------------------------------- ^ > Same here. > >> sorted headers (swati) > --------------------- ^ > Same here. > > >> added new function dpcd_read_buf (kunal) > --------------------------------------- ^ > Same here, s/kunal/Kunal/ > >> Cc: Swati Sharma <swati2.sharma@intel.com> >> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> >> --- >> lib/igt_dpcd.c | 104 +++++++++++++++++++++++++++++++++++++++++++++++ >> lib/igt_dpcd.h | 24 +++++++++++ >> tools/dpcd_reg.c | 60 +-------------------------- > It would help if you add a useage of these new functions in > actual test. > >> 3 files changed, 129 insertions(+), 59 deletions(-) >> create mode 100644 lib/igt_dpcd.c >> create mode 100644 lib/igt_dpcd.h >> >> diff --git a/lib/igt_dpcd.c b/lib/igt_dpcd.c >> new file mode 100644 >> index 000000000..edddad8c7 >> --- /dev/null >> +++ b/lib/igt_dpcd.c >> @@ -0,0 +1,104 @@ > Add at begin of file licence: > > // SPDX-License-Identifier: MIT > >> +/* >> + * Copyright © 2023 Intel Corporation >> +*/ >> + >> +#include "igt_dpcd.h" >> + >> +/** >> + * dpcd_read: >> + * @fd: drm_fd >> + * @offset: dpcd address to read >> + * @count: bytes to read from @offset > If regs are byte/word/dword you may consider returning it's value > with pointer. > >> + * >> + * Returns: EXIT_SUCCESS on success else errno > ------------------------------------------- ^ > imho better -errno > >> + */ >> +int dpcd_read(int fd, uint32_t offset, size_t count) >> +{ >> + int ret = EXIT_SUCCESS; >> + uint8_t *buf = calloc(count, sizeof(uint8_t)); > --------------- ^ > This should be parameter of function. > >> + ssize_t bytes_read; >> + >> + if (!buf) { >> + fprintf(stderr, "Can't allocate read buffer\n"); > ---------- ^ > In igt lib you should use igt_debug. > >> + return ENOMEM; > Here better to igt_assert. > >> + } >> + >> + bytes_read = pread(fd, buf, count, offset); >> + >> + if (bytes_read < 0) { >> + fprintf(stderr, "Failed to read - %s\n", strerror(errno)); > ---------- ^ > Same here, use igt_debug. > >> + ret = errno; >> + } else { >> + printf("0x%04x: ", offset); > ---------- ^ > Same here, use igt_debug. > >> + for (ssize_t i = 0; i < bytes_read; i++) { >> + printf(" %02x", buf[i]); > -------------- ^ > Same here, use igt_debug. > >> + } >> + printf("\n"); > -------------- ^ > Same here, use igt_debug. > >> + } >> + >> + free(buf); >> + return ret; >> +} >> + >> +/* dpcd_read_buf: >> + * @fd: drm_fd >> + * @offset: dpcd address to read >> + * @count: bytes to read from @offset >> + * @buf: buf to write read data >> + * >> + * Returns: EXIT_SUCCESS on success else errno >> + */ >> +int dpcd_read_buf(int fd, uint32_t offset, size_t count, uint8_t *buf) > The same goes here - rewrite it as above. > >> +{ >> + int ret = EXIT_SUCCESS; >> + *buf = calloc(count, sizeof(uint8_t)); > ------- ^^^ > This is your param? > >> + ssize_t bytes_read; >> + >> + if (!buf) { >> + fprintf(stderr, "Can't allocate read buffer\n"); >> + return ENOMEM; >> + } >> + >> + bytes_read = pread(fd, buf, count, offset); >> + >> + if (bytes_read < 0) { >> + fprintf(stderr, "Failed to read - %s\n", strerror(errno)); >> + ret = errno; >> + } else { >> + printf("0x%04x: ", offset); >> + for (ssize_t i = 0; i < bytes_read; i++) { >> + printf(" %02x", buf[i]); >> + } >> + printf("\n"); >> + } >> + >> + free(buf); >> + return ret; >> +} >> + >> + >> +/** >> + * dpcd_write: >> + * @fd: drm_fd >> + * @offset: dpcd address to write >> + * @cal : value to write > -------^ > s/cal/val/ > >> + * >> + * Returns: EXIT_SUCCESS on success else errno > ------------------------------------------- ^^ > >> + */ >> +int dpcd_write(int fd, uint32_t offset, uint8_t val) > Same here - no printf/fprintf in lib. > >> +{ >> + int ret = EXIT_SUCCESS; >> + ssize_t bytes_written; >> + >> + bytes_written = pwrite(fd, &val, sizeof(uint8_t), offset); >> + >> + if (bytes_written < 0) { >> + fprintf(stderr, "Failed to write - %s\n", strerror(errno)); >> + ret = errno; >> + } else if (bytes_written == 0) { >> + fprintf(stderr, "Zero bytes were written\n"); >> + ret = EXIT_FAILURE; >> + } >> + >> + return ret; >> +} >> diff --git a/lib/igt_dpcd.h b/lib/igt_dpcd.h >> new file mode 100644 >> index 000000000..a5abe900f >> --- /dev/null >> +++ b/lib/igt_dpcd.h >> @@ -0,0 +1,24 @@ >> +/* >> + * Copyright © 2023 Intel Corporation >> +*/ >> + >> +#ifndef IGT_DPCD_H >> +#define IGT_DPCD_H >> + >> +#include <errno.h> >> +#include <fcntl.h> >> +#include <getopt.h> > -------------^^^^^^ > No need for this. > >> +#include <limits.h> >> +#include <stdbool.h> >> +#include <stdint.h> >> +#include <stdio.h> >> +#include <stdlib.h> >> +#include <string.h> >> +#include <unistd.h> >> + >> +int dpcd_read(int fd, uint32_t offset, size_t count); >> +int dpcd_read_buf(int fd, uint32_t offset, size_t count, >> + uint8_t *buf); >> +int dpcd_write(int fd, uint32_t offset, uint8_t val); >> + >> +#endif /* IGT_DPCD_H */ >> diff --git a/tools/dpcd_reg.c b/tools/dpcd_reg.c >> index 2761168d0..b7454cca1 100644 >> --- a/tools/dpcd_reg.c >> +++ b/tools/dpcd_reg.c > imho we should keep this tool without change as it may help in > debugging. > > Regards, > Kamil Agree, will keep tool intact just rewrite function in a useful way for tests. Does that sound ok? > >> @@ -25,16 +25,7 @@ >> * and write, so CONFIG_DRM_DP_AUX_DEV needs to be set. >> */ >> >> -#include <stdio.h> >> -#include <errno.h> >> -#include <string.h> >> -#include <stdlib.h> >> -#include <fcntl.h> >> -#include <getopt.h> >> -#include <stdint.h> >> -#include <unistd.h> >> -#include <limits.h> >> -#include <stdbool.h> >> +#include "igt_dpcd.h" >> >> #define MAX_DP_OFFSET 0xfffff >> #define DRM_AUX_MINORS 256 >> @@ -214,55 +205,6 @@ static int parse_opts(struct dpcd_data *dpcd, int argc, char **argv) >> return EXIT_SUCCESS; >> } >> >> -static int dpcd_read(int fd, uint32_t offset, size_t count) >> -{ >> - int ret = EXIT_SUCCESS, pret, i; >> - uint8_t *buf = calloc(count, sizeof(uint8_t)); >> - >> - if (!buf) { >> - fprintf(stderr, "Can't allocate read buffer\n"); >> - return ENOMEM; >> - } >> - >> - pret = pread(fd, buf, count, offset); >> - if (pret < 0) { >> - fprintf(stderr, "Failed to read - %s\n", strerror(errno)); >> - ret = errno; >> - goto out; >> - } >> - >> - if (pret < count) { >> - fprintf(stderr, >> - "Read %u byte(s), expected %zu bytes, starting at offset %x\n\n", pret, count, offset); >> - ret = EXIT_FAILURE; >> - } >> - >> - printf("0x%04x: ", offset); >> - for (i = 0; i < pret; i++) >> - printf(" %02x", *(buf + i)); >> - printf("\n"); >> - >> -out: >> - free(buf); >> - return ret; >> -} >> - >> -static int dpcd_write(int fd, uint32_t offset, uint8_t val) >> -{ >> - int ret = EXIT_SUCCESS, pret; >> - >> - pret = pwrite(fd, (const void *)&val, sizeof(uint8_t), offset); >> - if (pret < 0) { >> - fprintf(stderr, "Failed to write - %s\n", strerror(errno)); >> - ret = errno; >> - } else if (pret == 0) { >> - fprintf(stderr, "Zero bytes were written\n"); >> - ret = EXIT_FAILURE; >> - } >> - >> - return ret; >> -} >> - >> static int dpcd_dump(int fd) >> { >> size_t count; >> -- >> 2.25.1 >> ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH 2/2] lib/meson.build: Add igt_dpcd for compilation 2023-10-17 5:52 [igt-dev] [PATCH 0/2] Move dpcd_(read/write) to igt_dpcd Kunal Joshi 2023-10-17 5:52 ` [igt-dev] [PATCH 1/2] lib/igt_dpcd: move dpcd_read and dpcd_write to lib Kunal Joshi @ 2023-10-17 5:52 ` Kunal Joshi 2023-10-17 7:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Move dpcd_(read/write) to igt_dpcd (rev3) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Kunal Joshi @ 2023-10-17 5:52 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Added igt_dpcd in meson.build for compilation Cc: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/meson.build b/lib/meson.build index a7bccafc3..5e62d3eda 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -24,6 +24,7 @@ lib_sources = [ 'igt_device_scan.c', 'igt_drm_clients.h', 'igt_drm_fdinfo.c', + 'igt_dpcd.c', 'igt_aux.c', 'igt_gt.c', 'igt_halffloat.c', @@ -254,6 +255,10 @@ lib_igt_perf_build = static_library('igt_perf', lib_igt_perf = declare_dependency(link_with : lib_igt_perf_build, include_directories : inc) +lib_igt_dpcd = static_library('igt_dpcd', + ['igt_dpcd.c'], + include_directories : inc) + scan_dep = [ glib, libudev, -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Move dpcd_(read/write) to igt_dpcd (rev3) 2023-10-17 5:52 [igt-dev] [PATCH 0/2] Move dpcd_(read/write) to igt_dpcd Kunal Joshi 2023-10-17 5:52 ` [igt-dev] [PATCH 1/2] lib/igt_dpcd: move dpcd_read and dpcd_write to lib Kunal Joshi 2023-10-17 5:52 ` [igt-dev] [PATCH 2/2] lib/meson.build: Add igt_dpcd for compilation Kunal Joshi @ 2023-10-17 7:18 ` Patchwork 2023-10-17 7:37 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-10-17 9:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-10-17 7:18 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9943 bytes --] == Series Details == Series: Move dpcd_(read/write) to igt_dpcd (rev3) URL : https://patchwork.freedesktop.org/series/124248/ State : success == Summary == CI Bug Log - changes from CI_DRM_13764 -> IGTPW_10015 ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_10015 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10015, please notify your bug team (lgci.bug.filing@intel.com) 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/IGTPW_10015/index.html Participating hosts (32 -> 32) ------------------------------ Additional (1): fi-kbl-7567u Missing (1): fi-cfl-guc Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10015: ### IGT changes ### #### Warnings #### * igt@fbdev@read: - bat-kbl-2: [SKIP][1] ([fdo#109271]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/bat-kbl-2/igt@fbdev@read.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-kbl-2/igt@fbdev@read.html Known issues ------------ Here are the changes found in IGTPW_10015 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@read_all_entries: - fi-kbl-7567u: NOTRUN -> [ABORT][3] ([i915#8913]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/fi-kbl-7567u/igt@debugfs_test@read_all_entries.html * igt@gem_mmap@basic: - bat-dg1-5: NOTRUN -> [SKIP][4] ([i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@gem_mmap@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-5: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-5: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@gem_tiled_pread_basic.html - bat-adln-1: NOTRUN -> [SKIP][7] ([i915#3282]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-adln-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg1-5: NOTRUN -> [SKIP][8] ([i915#6621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][9] ([i915#4212]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][10] ([i915#4215]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-adln-1: NOTRUN -> [SKIP][11] ([i915#4213]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-adln-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg1-5: NOTRUN -> [SKIP][12] ([i915#4103] / [i915#4213]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adln-1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-adln-1/igt@kms_dsc@dsc-basic.html - bat-dg1-5: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#3840]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adln-1: NOTRUN -> [SKIP][15] ([fdo#109285]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-adln-1/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-5: NOTRUN -> [SKIP][16] ([fdo#109285]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-5: NOTRUN -> [SKIP][17] ([i915#433]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-adlp-9: NOTRUN -> [SKIP][18] ([i915#3546]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5: - bat-adlp-11: [PASS][19] -> [ABORT][20] ([i915#8668]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html * igt@kms_psr@sprite_plane_onoff: - bat-dg1-5: NOTRUN -> [SKIP][21] ([i915#1072] / [i915#4078]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-5: NOTRUN -> [SKIP][22] ([i915#3555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-dg1-5: NOTRUN -> [SKIP][23] ([i915#3708]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-dg1-5: NOTRUN -> [SKIP][24] ([i915#3708] / [i915#4077]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@prime_vgem@basic-gtt.html #### Possible fixes #### * igt@gem_exec_parallel@engines@contexts: - bat-adln-1: [INCOMPLETE][25] -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/bat-adln-1/igt@gem_exec_parallel@engines@contexts.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-adln-1/igt@gem_exec_parallel@engines@contexts.html * igt@gem_exec_parallel@engines@fds: - bat-dg1-5: [INCOMPLETE][27] -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/bat-dg1-5/igt@gem_exec_parallel@engines@fds.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-dg1-5/igt@gem_exec_parallel@engines@fds.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5: - bat-adlp-11: [ABORT][29] ([i915#8668] / [i915#9451]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][31] ([i915#8668]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8913]: https://gitlab.freedesktop.org/drm/intel/issues/8913 [i915#9451]: https://gitlab.freedesktop.org/drm/intel/issues/9451 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7541 -> IGTPW_10015 CI-20190529: 20190529 CI_DRM_13764: 144bab1697fb7757891d4b0f13b6f72a667254c3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10015: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/index.html IGT_7541: fcddb77c3f8a77020f7f3b2660a66cae27cfaa2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/index.html [-- Attachment #2: Type: text/html, Size: 11741 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Move dpcd_(read/write) to igt_dpcd (rev3) 2023-10-17 5:52 [igt-dev] [PATCH 0/2] Move dpcd_(read/write) to igt_dpcd Kunal Joshi ` (2 preceding siblings ...) 2023-10-17 7:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Move dpcd_(read/write) to igt_dpcd (rev3) Patchwork @ 2023-10-17 7:37 ` Patchwork 2023-10-17 9:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-10-17 7:37 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3228 bytes --] == Series Details == Series: Move dpcd_(read/write) to igt_dpcd (rev3) URL : https://patchwork.freedesktop.org/series/124248/ State : success == Summary == CI Bug Log - changes from XEIGT_7541_BAT -> XEIGTPW_10015_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10015_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([i915#2346]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7541/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10015/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - bat-adlp-7: [FAIL][3] ([i915#2346]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7541/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10015/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [FAIL][5] ([Intel XE#480]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7541/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10015/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html * igt@xe_exec_reset@virtual-close-fd-no-exec: - bat-pvc-2: [DMESG-WARN][7] ([Intel XE#696]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7541/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10015/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#696]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/696 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7541 -> IGTPW_10015 * Linux: xe-435-ab7cd1b4af95baba2d6ce5487d35ffda523e895d -> xe-436-9471d9e9efb920d70538445ffa07193d603b8cdb IGTPW_10015: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/index.html IGT_7541: fcddb77c3f8a77020f7f3b2660a66cae27cfaa2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-435-ab7cd1b4af95baba2d6ce5487d35ffda523e895d: ab7cd1b4af95baba2d6ce5487d35ffda523e895d xe-436-9471d9e9efb920d70538445ffa07193d603b8cdb: 9471d9e9efb920d70538445ffa07193d603b8cdb == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10015/index.html [-- Attachment #2: Type: text/html, Size: 3899 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Move dpcd_(read/write) to igt_dpcd (rev3) 2023-10-17 5:52 [igt-dev] [PATCH 0/2] Move dpcd_(read/write) to igt_dpcd Kunal Joshi ` (3 preceding siblings ...) 2023-10-17 7:37 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-10-17 9:47 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-10-17 9:47 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 78971 bytes --] == Series Details == Series: Move dpcd_(read/write) to igt_dpcd (rev3) URL : https://patchwork.freedesktop.org/series/124248/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13764_full -> IGTPW_10015_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10015_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10015_full, please notify your bug team (lgci.bug.filing@intel.com) 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/IGTPW_10015/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10015_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_parallel@fds@vcs1: - shard-dg2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@gem_exec_parallel@fds@vcs1.html - shard-dg1: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg1-12/igt@gem_exec_parallel@fds@vcs1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-19/igt@gem_exec_parallel@fds@vcs1.html * igt@kms_busy@extended-pageflip-hang-newfb@pipe-a: - shard-dg2: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg2-7/igt@kms_busy@extended-pageflip-hang-newfb@pipe-a.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-7/igt@kms_busy@extended-pageflip-hang-newfb@pipe-a.html * igt@perf_pmu@enable-race@rcs0: - shard-tglu: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-tglu-9/igt@perf_pmu@enable-race@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-9/igt@perf_pmu@enable-race@rcs0.html New tests --------- New tests have been introduced between CI_DRM_13764_full and IGTPW_10015_full: ### New IGT tests (1) ### * igt@kms_vblank@ts-continuation-modeset@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10015_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][10] ([i915#6122]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@api_intel_bb@render-ccs.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7701]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +10 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-12/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +30 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3281]) +9 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-15/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-19/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][17] ([i915#7461]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-mtlp: [PASS][18] -> [FAIL][19] ([i915#6268]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-3/igt@gem_ctx_exec@basic-nohangcheck.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][20] ([fdo#109314]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-4/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-contexts-10ms: - shard-mtlp: [PASS][24] -> [ABORT][25] ([i915#9262]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][26] -> [FAIL][27] ([i915#5784]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg2-1/igt@gem_eio@reset-stress.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#4771]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][30] ([i915#2842]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html - shard-glk: [PASS][31] -> [FAIL][32] ([i915#2842]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-14/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][34] -> [FAIL][35] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@submit67: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-18/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#7697]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-3/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_parallel@contexts@ccs0: - shard-mtlp: [PASS][41] -> [ABORT][42] ([i915#9414]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-2/igt@gem_exec_parallel@contexts@ccs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-2/igt@gem_exec_parallel@contexts@ccs0.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +12 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: NOTRUN -> [INCOMPLETE][45] ([i915#9275]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][46] ([i915#7975] / [i915#8213]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html - shard-dg1: NOTRUN -> [ABORT][47] ([i915#7975] / [i915#8213]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_lmem_swapping@heavy-multi: - shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-apl6/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-random: - shard-dg2: NOTRUN -> [INCOMPLETE][50] ([i915#2295]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-7/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@massive-random: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-4/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4565]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +13 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@gem_mmap_gtt@medium-copy-xy.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4077]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +6 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-15/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +12 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][59] ([i915#2658]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-3/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#3282]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-7/igt@gem_pwrite@basic-self.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4079]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-15/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4079]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_workarounds@suspend-resume-context: - shard-dg2: [PASS][66] -> [FAIL][67] ([fdo#103375]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg2-7/igt@gem_workarounds@suspend-resume-context.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][68] ([fdo#109289]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@chained-batch: - shard-dg1: NOTRUN -> [SKIP][69] ([fdo#109289]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-19/igt@gen7_exec_parse@chained-batch.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][70] ([fdo#109289]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-9/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@allowed-single: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#2527]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-17/igt@gen9_exec_parse@allowed-single.html - shard-glk: [PASS][72] -> [INCOMPLETE][73] ([i915#5566]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-glk3/igt@gen9_exec_parse@allowed-single.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-glk1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@gen9_exec_parse@bb-start-far.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#2527]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@secure-batches: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-7/igt@gen9_exec_parse@secure-batches.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [PASS][77] -> [FAIL][78] ([i915#7069]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-8/igt@i915_hangman@gt-engine-error@vcs0.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-8/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#6227]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@i915_module_load@load.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#7091]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][81] -> [FAIL][82] ([i915#3591]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#6621]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][84] -> [INCOMPLETE][85] ([i915#7790]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-snb5/igt@i915_pm_rps@reset.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-snb1/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#8925]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#4387]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-4/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#6245]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-15/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][89] ([fdo#109302]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-7/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][90] -> [FAIL][91] ([fdo#103375]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [FAIL][92] ([i915#8247]) +3 other tests fail [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][93] ([i915#8247]) +3 other tests fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#5286]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5286]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-12/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][96] ([fdo#111614]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][97] -> [FAIL][98] ([i915#5138]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][99] ([fdo#111615] / [i915#5286]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3638]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-15/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111614]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-3/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271]) +38 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-apl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5190]) +17 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [PASS][104] -> [FAIL][105] ([i915#3743]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-15/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5190]) +11 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][108] ([fdo#110723]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][109] ([fdo#111615]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#2705]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_big_joiner@invalid-modeset.html - shard-dg1: NOTRUN -> [SKIP][111] ([i915#2705]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-12/igt@kms_big_joiner@invalid-modeset.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4087]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][113] ([fdo#111827]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][114] ([fdo#111827]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@gamma: - shard-tglu: NOTRUN -> [SKIP][115] ([fdo#111827]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-9/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#7828]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7828]) +13 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#7828]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3299]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][120] ([i915#7173]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-apl2/igt@kms_content_protection@legacy@pipe-a-dp-1.html * igt@kms_content_protection@lic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][121] ([i915#7173]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#7118]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#3359]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3359]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3555]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3555]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4103] / [i915#4213] / [i915#5608]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4103] / [i915#4213]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-tglu: NOTRUN -> [SKIP][129] ([fdo#109274]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#111825]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][131] ([fdo#109274] / [i915#5354]) +11 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: NOTRUN -> [FAIL][132] ([i915#2346]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][133] -> [FAIL][134] ([i915#2346]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#4103] / [i915#4213]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#9226] / [i915#9261]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#9227]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#8588]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3804]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#3469]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-17/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3469]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#8381]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][144] ([fdo#109274]) +11 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#2587] / [i915#2672]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#2587] / [i915#2672]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#2672]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#2672]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#2672] / [i915#3555]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109285]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@kms_force_connector_basic@force-load-detect.html - shard-dg1: NOTRUN -> [SKIP][151] ([fdo#109285]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [FAIL][152] ([i915#6880]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#8708]) +25 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][154] ([fdo#111825]) +39 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#5354]) +43 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#8708]) +13 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: NOTRUN -> [FAIL][157] ([fdo#103375]) +1 other test fail [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#110189]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3458]) +14 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3023]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3458]) +25 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][162] ([fdo#109280]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][163] ([fdo#111825] / [i915#1825]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#6118]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8228]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8228]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-9/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8228]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8228]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#6301]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: [PASS][170] -> [INCOMPLETE][171] ([i915#180] / [i915#9392]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][172] ([i915#8292]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#5176] / [i915#9423]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#5235]) +11 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][175] ([fdo#109271]) +13 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#5235]) +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#5235]) +19 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#658]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#658]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#658]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][181] ([fdo#111068] / [i915#658]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#1072]) +8 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@kms_psr@dpms.html * igt@kms_psr@psr2_primary_page_flip: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#1072] / [i915#4078]) +6 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-14/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#5461] / [i915#658]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#4884]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#5289]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#4235]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][188] ([fdo#111615] / [i915#5289]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#4235] / [i915#5190]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][190] ([fdo#111615] / [i915#5289]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg1: [PASS][191] -> [DMESG-WARN][192] ([i915#4423]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg1-12/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-15/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3555]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#4098]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][195] -> [FAIL][196] ([IGT#2]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg2-11/igt@kms_sysfs_edid_timing.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@kms_sysfs_edid_timing.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][197] ([fdo#109309]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [PASS][198] -> [FAIL][199] ([i915#9196]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1: - shard-snb: [PASS][200] -> [FAIL][201] ([i915#9196]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-vga-1: - shard-snb: NOTRUN -> [DMESG-WARN][202] ([i915#8841]) +3 other tests dmesg-warn [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-snb6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-vga-1.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#2437]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#2436]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#7387]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@perf@global-sseu-config.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][206] ([i915#7484]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8850]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][208] ([i915#6806]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: [PASS][209] -> [FAIL][210] ([i915#5234]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#5608] / [i915#8516]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html - shard-dg1: NOTRUN -> [SKIP][212] ([i915#8516]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-19/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#8516]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#8516]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][215] ([i915#5493]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][216] ([fdo#109291]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-1/igt@prime_udl.html - shard-dg1: NOTRUN -> [SKIP][217] ([fdo#109291]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-15/igt@prime_udl.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3708]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-7/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3291] / [i915#3708]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-tglu: NOTRUN -> [SKIP][220] ([fdo#109295] / [fdo#111656]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-9/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#3708]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@prime_vgem@fence-write-hang.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-tglu: NOTRUN -> [SKIP][222] ([fdo#109315] / [i915#2575]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-3/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#2575]) +10 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2575]) +17 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#7711]) +5 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-14/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#7711]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-7/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#7711]) +11 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-6/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#2575]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-3/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][229] ([i915#7742]) -> [PASS][230] +1 other test pass [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][231] ([i915#6268]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [FAIL][233] -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg2-7/igt@gem_ctx_freq@sysfs@gt0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [FAIL][235] ([i915#2410]) -> [PASS][236] +2 other tests pass [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [FAIL][237] ([i915#7816]) -> [PASS][238] +2 other tests pass [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-3/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][239] ([i915#5784]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg1-19/igt@gem_eio@reset-stress.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [FAIL][241] ([i915#4475]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-7/igt@gem_exec_capture@pi@vcs0.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-8/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][243] ([i915#2842]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][245] ([i915#2842]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][247] ([i915#2842]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [FAIL][249] ([i915#9119]) -> [PASS][250] +4 other tests pass [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-8/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [DMESG-FAIL][251] ([i915#8962]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-8/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][253] ([i915#4936] / [i915#5493]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][255] ([i915#9353]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-6/igt@gem_userptr_blits@nohangcheck.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [FAIL][257] ([i915#8456]) -> [PASS][258] +2 other tests pass [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-5/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [FAIL][259] ([i915#7069]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-3/igt@i915_hangman@engine-engine-error@vcs0.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-4/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [FAIL][261] ([i915#3591]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][263] ([i915#5138]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][265] ([i915#2346]) -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [DMESG-WARN][267] ([i915#2017]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-2/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][269] ([i915#433]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][271] ([i915#8292]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * {igt@kms_pm_dc@dc6-dpms}: - shard-tglu: [FAIL][273] ([i915#9295]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html * {igt@kms_pm_dc@dc9-dpms}: - shard-tglu: [SKIP][275] ([i915#4281]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html * {igt@kms_pm_rpm@dpms-mode-unset-lpsp}: - shard-rkl: [SKIP][277] ([i915#9519]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1: - shard-snb: [FAIL][279] ([i915#9196]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][281] ([i915#9196]) -> [PASS][282] +1 other test pass [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_universal_plane@universal-plane-functional@pipe-a-edp-1: - shard-mtlp: [DMESG-WARN][283] ([i915#2017] / [i915#9157]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-4/igt@kms_universal_plane@universal-plane-functional@pipe-a-edp-1.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-3/igt@kms_universal_plane@universal-plane-functional@pipe-a-edp-1.html * {igt@kms_vblank@ts-continuation-modeset@pipe-a-dp-4}: - shard-dg2: [INCOMPLETE][285] -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg2-11/igt@kms_vblank@ts-continuation-modeset@pipe-a-dp-4.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg2-11/igt@kms_vblank@ts-continuation-modeset@pipe-a-dp-4.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][287] ([i915#4349]) -> [PASS][288] +3 other tests pass [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html * igt@prime_self_import@export-vs-gem_close-race: - shard-mtlp: [FAIL][289] ([i915#9399]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-mtlp-4/igt@prime_self_import@export-vs-gem_close-race.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-mtlp-2/igt@prime_self_import@export-vs-gem_close-race.html #### Warnings #### * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: [SKIP][291] ([i915#4565]) -> [SKIP][292] ([i915#4423] / [i915#4565]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-14/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][293] ([i915#3955]) -> [SKIP][294] ([fdo#110189] / [i915#3955]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-busy-flip: - shard-dg1: [SKIP][295] ([fdo#111825]) -> [SKIP][296] ([fdo#111825] / [i915#4423]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-dg1-18/igt@kms_flip@2x-busy-flip.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-dg1-14/igt@kms_flip@2x-busy-flip.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][297] ([fdo#109285] / [i915#4098]) -> [SKIP][298] ([fdo#109285]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][299] ([i915#4816]) -> [SKIP][300] ([i915#4070] / [i915#4816]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13764/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [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#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9353]: https://gitlab.freedesktop.org/drm/intel/issues/9353 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9399]: https://gitlab.freedesktop.org/drm/intel/issues/9399 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7541 -> IGTPW_10015 CI-20190529: 20190529 CI_DRM_13764: 144bab1697fb7757891d4b0f13b6f72a667254c3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10015: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/index.html IGT_7541: fcddb77c3f8a77020f7f3b2660a66cae27cfaa2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10015/index.html [-- Attachment #2: Type: text/html, Size: 93078 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-10-26 6:32 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-17 5:52 [igt-dev] [PATCH 0/2] Move dpcd_(read/write) to igt_dpcd Kunal Joshi 2023-10-17 5:52 ` [igt-dev] [PATCH 1/2] lib/igt_dpcd: move dpcd_read and dpcd_write to lib Kunal Joshi 2023-10-17 8:55 ` Kamil Konieczny 2023-10-26 6:32 ` [igt-dev] [PATCH 1/2] lHEib/igt_dpcd: " Joshi, Kunal1 2023-10-17 5:52 ` [igt-dev] [PATCH 2/2] lib/meson.build: Add igt_dpcd for compilation Kunal Joshi 2023-10-17 7:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Move dpcd_(read/write) to igt_dpcd (rev3) Patchwork 2023-10-17 7:37 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-10-17 9:47 ` [igt-dev] ✗ 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