* [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP tiled displays
@ 2019-08-23 0:06 Madhumitha Tolakanahalli Pradeep
2019-08-23 0:06 ` [igt-dev] [PATCH i-g-t v2 1/2] igt/tests/kms_dp_tiled_display: kms test for display port " Madhumitha Tolakanahalli Pradeep
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Madhumitha Tolakanahalli Pradeep @ 2019-08-23 0:06 UTC (permalink / raw)
To: igt-dev
Madhumitha Tolakanahalli Pradeep (2):
igt/tests/kms_dp_tiled_display: kms test for display port tiled
displays
lib/igt_kms: added tile property parser
lib/igt_kms.c | 29 +++
lib/igt_kms.h | 11 ++
tests/Makefile.sources | 1 +
tests/kms_dp_tiled_display.c | 346 +++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
5 files changed, 388 insertions(+)
create mode 100644 tests/kms_dp_tiled_display.c
--
2.17.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/2] igt/tests/kms_dp_tiled_display: kms test for display port tiled displays 2019-08-23 0:06 [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP tiled displays Madhumitha Tolakanahalli Pradeep @ 2019-08-23 0:06 ` Madhumitha Tolakanahalli Pradeep 2019-08-23 0:06 ` [igt-dev] [PATCH i-g-t v2 2/2] lib/igt_kms: added tile property parser Madhumitha Tolakanahalli Pradeep ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Madhumitha Tolakanahalli Pradeep @ 2019-08-23 0:06 UTC (permalink / raw) To: igt-dev; +Cc: madhumitha.tp, Petri Latvala This test validates the tiled DP displays to display a test pattern seamlessly across the two tiles. It validates the transcoder port sync feature on i915 to get a tearfree tiled display output. Related kernel work patches- https://patchwork.freedesktop.org/series/59837/#rev4. This test can eventually be extended to cover tiled display support on other connector types. Cc: Manasi Navare <manasi.d.navare@intel.com> Cc: Petri Latvala <petri.latvala@intel.com> Cc: Simon Ser <simon.ser@intel.com> Cc: madhumitha.tp@gmail.com Signed-off-by: Madhumitha Tolakanahalli Pradeep <madhumitha.tolakanahalli.pradeep@intel.com> --- tests/Makefile.sources | 1 + tests/kms_dp_tiled_display.c | 346 +++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 3 files changed, 348 insertions(+) create mode 100644 tests/kms_dp_tiled_display.c diff --git a/tests/Makefile.sources b/tests/Makefile.sources index c02e4d94..7561ab9b 100644 --- a/tests/Makefile.sources +++ b/tests/Makefile.sources @@ -41,6 +41,7 @@ TESTS_progs = \ kms_cursor_edge_walk \ kms_cursor_legacy \ kms_dp_dsc \ + kms_dp_tiled_display \ kms_draw_crc \ kms_fbcon_fbt \ kms_fence_pin_leak \ diff --git a/tests/kms_dp_tiled_display.c b/tests/kms_dp_tiled_display.c new file mode 100644 index 00000000..162fbdd9 --- /dev/null +++ b/tests/kms_dp_tiled_display.c @@ -0,0 +1,346 @@ +/* + * Copyright © 2018 Intel Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + * + * Authors: + * Madhumitha Tolakanahalli Pradeep + * <madhumitha.tolakanahalli.pradeep@intel.com> + * + * Display Port Tiled Display Test + * This test parses the tile information of the connectors that have TILE + * property set, sets up the framebuffer with correct offsets corresponding to + * the tile offsets and does an atomic modeset with two CRTCs for two + * connectors. Page flip event timestamp from each CRTC is collected and + * compared to make sure that they occurred in a synchronous manner. + * + * This test currently supports only horizontally tiled displays, in line with + * the displays supported by the kernel at the moment. + */ + +#include "igt.h" +#include "poll.h" +#include "drm_mode.h" +#include "drm_fourcc.h" + +IGT_TEST_DESCRIPTION("Test for Display Port Tiled Displays"); + +typedef struct { + int drm_fd; + int num_h_tiles; + igt_display_t *display; + enum igt_commit_style commit; +} data_t; + +typedef struct { + igt_output_t *output; + igt_tile_info_t tile; + igt_fb_t fb_test_pattern; + enum pipe pipe; + enum igt_commit_style commit; + drmModeConnectorPtr connector; +} data_connector_t; + +static int drm_property_is_tile(drmModePropertyPtr prop) +{ + return ((strcmp(prop->name ? prop->name : "", "TILE") ? 0 : 1) && + drm_property_type_is(prop, DRM_MODE_PROP_BLOB)); +} + +static void get_connector_tile_props(data_t *data, drmModeConnectorPtr conn, + igt_tile_info_t *tile) +{ + int i = 0; + drmModePropertyPtr prop; + drmModePropertyBlobPtr blob; + + for (i = 0; i < conn->count_props; i++) { + prop = drmModeGetProperty(data->drm_fd, conn->props[i]); + + igt_assert(prop); + + if (!drm_property_is_tile(prop)) + continue; + + blob = drmModeGetPropertyBlob(data->drm_fd, + conn->prop_values[i]); + + if (!blob) + return; + + igt_parse_connector_tile_blob(blob, tile); + break; + } + + drmModeFreeProperty(prop); + drmModeFreePropertyBlob(blob); +} + +static void get_number_of_h_tiles(data_t *data) +{ + int i; + drmModeResPtr res; + drmModeConnectorPtr connector; + igt_tile_info_t tile = {.num_h_tile = 0}; + + igt_assert(res = drmModeGetResources(data->drm_fd)); + + for (i = 0; i < res->count_connectors; i++) { + connector = drmModeGetConnectorCurrent(data->drm_fd, + res->connectors[i]); + + igt_assert(connector); + + if (!(connector->connection == DRM_MODE_CONNECTED && + connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort)) + continue; + + get_connector_tile_props(data, connector, &tile); + data->num_h_tiles = tile.num_h_tile; + break; + } + + drmModeFreeResources(res); + drmModeFreeConnector(connector); +} + +static void get_connector(data_t *data, data_connector_t *conn) +{ + int count = 0; + igt_output_t *output; + + for_each_connected_output(data->display, output) { + conn[count].connector = drmModeGetConnector(data->display->drm_fd, + output->id); + + igt_assert(conn[count].connector); + + if (!(conn[count].connector->connector_type == + DRM_MODE_CONNECTOR_DisplayPort)) + continue; + + get_connector_tile_props(data, conn[count].connector, + &conn[count].tile); + + /* Check if the connectors belong to the same tile group */ + if (count > 0) + igt_assert(conn[count].tile.tile_group_id == + conn[count-1].tile.tile_group_id); + + count++; + } +} + +static void +reset_framebuffer(int drm_fd, igt_output_t *output, igt_fb_t *fb) +{ + igt_plane_t *primary; + + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_plane_set_fb(primary, NULL); + igt_remove_fb(drm_fd, fb); +} + +static void reset_output(igt_output_t *output) +{ + igt_output_set_pipe(output, PIPE_NONE); +} + +static void test_cleanup(data_t *data, data_connector_t *conn) +{ + int count; + + for (count = 0; count < data->num_h_tiles; count++) { + if (conn[count].output) { + reset_framebuffer(data->drm_fd, conn[count].output, + &conn[count].fb_test_pattern); + reset_output(conn[count].output); + } + } + igt_display_commit2(data->display, data->commit); +} + +static void setup_mode(data_t *data, data_connector_t *conn_data) +{ + int count = 0; + enum pipe pipe; + igt_output_t *output; + + for (count = 0; count < data->num_h_tiles; count++) { + output = igt_output_from_connector(data->display, + conn_data[count].connector); + + /* + * The output is set to PIPE_NONE and then assigned a pipe. + * This is done to ensure a complete modeset occures every + * time the test is run. + */ + reset_output(output); + + for_each_pipe(data->display, pipe) { + if (count > 0 && pipe == conn_data[count-1].pipe) + continue; + + if (igt_pipe_connector_valid(pipe, output)) { + + conn_data[count].pipe = pipe; + conn_data[count].output = output; + + igt_output_set_pipe(conn_data[count].output, + conn_data[count].pipe); + break; + } + } + } + igt_display_commit_atomic(data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, + NULL); +} + +static void setup_framebuffer(data_t *data, data_connector_t *conn) +{ + int count; + igt_plane_t *primary; + + for (count = 0; count < data->num_h_tiles; count++) { + + igt_create_pattern_fb(data->drm_fd, + (conn[count].tile.tile_h_size * + data->num_h_tiles), + conn[count].tile.tile_v_size, + DRM_FORMAT_XBGR8888, + LOCAL_DRM_FORMAT_MOD_NONE, + &conn[count].fb_test_pattern); + + primary = igt_output_get_plane_type(conn[count].output, + DRM_PLANE_TYPE_PRIMARY); + + igt_plane_set_fb(primary, &conn[count].fb_test_pattern); + + igt_fb_set_size(&conn[count].fb_test_pattern, primary, + conn[count].tile.tile_h_size, + conn[count].tile.tile_v_size); + + igt_fb_set_position(&conn[count].fb_test_pattern, primary, + (conn[count].tile.tile_h_size * + conn[count].tile.tile_h_loc), + (conn[count].tile.tile_v_size * + conn[count].tile.tile_v_loc)); + + igt_plane_set_size(primary, + conn[count].tile.tile_h_size, + conn[count].tile.tile_v_size); + } +} + +static void page_flip_handler(int fd, unsigned int seq, + unsigned int tv_sec, unsigned int tv_usec, + unsigned int crtc_id, void *data) +{ + bool expr = false; + static unsigned int _tv_sec, _tv_usec; + + igt_debug("Page Flip Event received from CRTC:%d at %u:%u\n", crtc_id, + tv_sec, tv_usec); + + /* Skip the following checks for the first page flip event */ + if (_tv_sec == 0 || _tv_usec == 0) { + _tv_sec = tv_sec; + _tv_usec = tv_usec; + return; + } + + /* + * For seamless tear-free display, the page flip event timestamps + * from all the tiles should not differ by more than 10us. + */ + expr = tv_sec == _tv_sec && (abs(tv_usec - _tv_usec) < 10); + + igt_fail_on_f(!expr, "Delayed page flip event from CRTC:%d at %u:%u\n", + crtc_id, tv_sec, tv_usec); + + if (tv_sec < _tv_sec) + _tv_sec = tv_sec; + if (tv_usec < _tv_usec) + _tv_usec = tv_usec; +} + +static void wait_for_pageflip(int drm_fd) +{ + struct pollfd pfd; + drmEventContext drm_event; + + drm_event.version = 3; + drm_event.page_flip_handler2 = page_flip_handler; + + pfd.fd = drm_fd; + pfd.events = POLLIN; + pfd.revents = 0; + + poll(&pfd, 1, 1000); + if (pfd.revents & POLLIN) + drmHandleEvent(drm_fd, &drm_event); +} + +igt_main +{ + igt_display_t display; + data_connector_t *conn_data = NULL; + data_t data = {.drm_fd = 0, .num_h_tiles = 0, + .display = NULL, .commit = COMMIT_LEGACY}; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + + kmstest_set_vt_graphics_mode(); + igt_display_require(&display, data.drm_fd); + igt_display_reset(&display); + + data.display = &display; + + get_number_of_h_tiles(&data); + igt_debug("Number of Horizontal Tiles: %d\n", data.num_h_tiles); + + data.commit = data.display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY; + + if (data.num_h_tiles > 0) + conn_data = malloc(data.num_h_tiles * sizeof(data_connector_t)); + } + + igt_subtest("basic-test-pattern") { + igt_skip_on(data.num_h_tiles == 0); + igt_assert(conn_data); + + get_connector(&data, conn_data); + setup_mode(&data, conn_data); + setup_framebuffer(&data, conn_data); + igt_display_commit_atomic(data.display, DRM_MODE_ATOMIC_NONBLOCK | + DRM_MODE_PAGE_FLIP_EVENT, NULL); + wait_for_pageflip(data.drm_fd); + + test_cleanup(&data, conn_data); + } + + igt_fixture { + free(conn_data); + close(data.drm_fd); + kmstest_restore_vt_mode(); + igt_display_fini(data.display); + } +} diff --git a/tests/meson.build b/tests/meson.build index a7b2b322..50292df8 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -26,6 +26,7 @@ test_progs = [ 'kms_cursor_edge_walk', 'kms_cursor_legacy', 'kms_dp_dsc', + 'kms_dp_tiled_display', 'kms_draw_crc', 'kms_fbcon_fbt', 'kms_fence_pin_leak', -- 2.17.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/2] lib/igt_kms: added tile property parser 2019-08-23 0:06 [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP tiled displays Madhumitha Tolakanahalli Pradeep 2019-08-23 0:06 ` [igt-dev] [PATCH i-g-t v2 1/2] igt/tests/kms_dp_tiled_display: kms test for display port " Madhumitha Tolakanahalli Pradeep @ 2019-08-23 0:06 ` Madhumitha Tolakanahalli Pradeep 2019-08-23 8:15 ` Ser, Simon 2019-08-23 1:21 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] igt/tests/kms_dp_tiled_display: kms test for display port tiled displays Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Madhumitha Tolakanahalli Pradeep @ 2019-08-23 0:06 UTC (permalink / raw) To: igt-dev; +Cc: madhumitha.tp, Petri Latvala The tile property parser parses the connector tile property obtained from connector's Display ID block and set per connector. Cc: Manasi Navare <manasi.d.navare@intel.com> Cc: Petri Latvala <petri.latvala@intel.com> Cc: Simon Ser <simon.ser@intel.com> Cc: <madhumitha.tp@gmail.com> Signed-off-by: Madhumitha Tolakanahalli Pradeep <madhumitha.tolakanahalli.pradeep@intel.com> --- lib/igt_kms.c | 29 +++++++++++++++++++++++++++++ lib/igt_kms.h | 11 +++++++++++ 2 files changed, 40 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 17a7d2b6..dc0f810d 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -4515,3 +4515,32 @@ bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, return false; } + +/** + * igt_parse_connector_tile_blob: + * @blob: pointer to the connector's tile properties + * @tile: pointer to tile structure that is populated by the function + * + * Parses the connector tile blob to extract the tile information. + * The blob information is exposed from drm/drm_connector.c in the kernel. + * The format of the tile property is defined in the kernel as char tile[256] + * that consists of 8 integers that are ':' separated. + * + */ + +void igt_parse_connector_tile_blob(drmModePropertyBlobPtr blob, + igt_tile_info_t *tile) +{ + char *blob_data = blob->data; + + igt_assert(blob); + + tile->tile_group_id = atoi(strtok(blob_data, ":")); + tile->tile_is_single_monitor = atoi(strtok(NULL, ":")); + tile->num_h_tile = atoi(strtok(NULL, ":")); + tile->num_v_tile = atoi(strtok(NULL, ":")); + tile->tile_h_loc = atoi(strtok(NULL, ":")); + tile->tile_v_loc = atoi(strtok(NULL, ":")); + tile->tile_h_size = atoi(strtok(NULL, ":")); + tile->tile_v_size = atoi(strtok(NULL, ":")); +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 56481fd1..aebb4d31 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -390,6 +390,14 @@ struct igt_display { int format_mod_count; }; +typedef struct { + int tile_group_id; + bool tile_is_single_monitor; + uint8_t num_h_tile, num_v_tile; + uint8_t tile_h_loc, tile_v_loc; + uint16_t tile_h_size, tile_v_size; +} igt_tile_info_t; + void igt_display_require(igt_display_t *display, int drm_fd); void igt_display_fini(igt_display_t *display); void igt_display_reset(igt_display_t *display); @@ -834,4 +842,7 @@ static inline bool igt_vblank_before(uint32_t a, uint32_t b) return igt_vblank_after(b, a); } +void igt_parse_connector_tile_blob(drmModePropertyBlobPtr blob, + igt_tile_info_t *tile); + #endif /* __IGT_KMS_H__ */ -- 2.17.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/2] lib/igt_kms: added tile property parser 2019-08-23 0:06 ` [igt-dev] [PATCH i-g-t v2 2/2] lib/igt_kms: added tile property parser Madhumitha Tolakanahalli Pradeep @ 2019-08-23 8:15 ` Ser, Simon 0 siblings, 0 replies; 7+ messages in thread From: Ser, Simon @ 2019-08-23 8:15 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Tolakanahalli Pradeep, Madhumitha Cc: madhumitha.tp@gmail.com, Latvala, Petri On Thu, 2019-08-22 at 17:06 -0700, Madhumitha Tolakanahalli Pradeep wrote: > The tile property parser parses the connector tile property obtained > from connector's Display ID block and set per connector. > > Cc: Manasi Navare <manasi.d.navare@intel.com> > Cc: Petri Latvala <petri.latvala@intel.com> > Cc: Simon Ser <simon.ser@intel.com> > > Cc: <madhumitha.tp@gmail.com> > Signed-off-by: Madhumitha Tolakanahalli Pradeep <madhumitha.tolakanahalli.pradeep@intel.com> This patch looks good to me: Reviewed-by: Simon Ser <simon.ser@intel.com> However it should be pushed *before* patch 1 of the series "igt/tests/kms_dp_tiled_display: kms test for display port tiled displays". Can you re-order the patches? You can do so with `git rebase -i`. > --- > lib/igt_kms.c | 29 +++++++++++++++++++++++++++++ > lib/igt_kms.h | 11 +++++++++++ > 2 files changed, 40 insertions(+) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 17a7d2b6..dc0f810d 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -4515,3 +4515,32 @@ bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, > > return false; > } > + > +/** > + * igt_parse_connector_tile_blob: > + * @blob: pointer to the connector's tile properties > + * @tile: pointer to tile structure that is populated by the function > + * > + * Parses the connector tile blob to extract the tile information. > + * The blob information is exposed from drm/drm_connector.c in the kernel. > + * The format of the tile property is defined in the kernel as char tile[256] > + * that consists of 8 integers that are ':' separated. > + * > + */ > + > +void igt_parse_connector_tile_blob(drmModePropertyBlobPtr blob, > + igt_tile_info_t *tile) > +{ > + char *blob_data = blob->data; > + > + igt_assert(blob); > + > + tile->tile_group_id = atoi(strtok(blob_data, ":")); > + tile->tile_is_single_monitor = atoi(strtok(NULL, ":")); > + tile->num_h_tile = atoi(strtok(NULL, ":")); > + tile->num_v_tile = atoi(strtok(NULL, ":")); > + tile->tile_h_loc = atoi(strtok(NULL, ":")); > + tile->tile_v_loc = atoi(strtok(NULL, ":")); > + tile->tile_h_size = atoi(strtok(NULL, ":")); > + tile->tile_v_size = atoi(strtok(NULL, ":")); > +} > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 56481fd1..aebb4d31 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -390,6 +390,14 @@ struct igt_display { > int format_mod_count; > }; > > +typedef struct { > + int tile_group_id; > + bool tile_is_single_monitor; > + uint8_t num_h_tile, num_v_tile; > + uint8_t tile_h_loc, tile_v_loc; > + uint16_t tile_h_size, tile_v_size; > +} igt_tile_info_t; > + > void igt_display_require(igt_display_t *display, int drm_fd); > void igt_display_fini(igt_display_t *display); > void igt_display_reset(igt_display_t *display); > @@ -834,4 +842,7 @@ static inline bool igt_vblank_before(uint32_t a, uint32_t b) > return igt_vblank_after(b, a); > } > > +void igt_parse_connector_tile_blob(drmModePropertyBlobPtr blob, > + igt_tile_info_t *tile); > + > #endif /* __IGT_KMS_H__ */ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] igt/tests/kms_dp_tiled_display: kms test for display port tiled displays 2019-08-23 0:06 [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP tiled displays Madhumitha Tolakanahalli Pradeep 2019-08-23 0:06 ` [igt-dev] [PATCH i-g-t v2 1/2] igt/tests/kms_dp_tiled_display: kms test for display port " Madhumitha Tolakanahalli Pradeep 2019-08-23 0:06 ` [igt-dev] [PATCH i-g-t v2 2/2] lib/igt_kms: added tile property parser Madhumitha Tolakanahalli Pradeep @ 2019-08-23 1:21 ` Patchwork 2019-08-23 10:12 ` [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP " Arkadiusz Hiler 2019-08-23 18:53 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2019-08-23 1:21 UTC (permalink / raw) To: Madhumitha Tolakanahalli Pradeep; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v2,1/2] igt/tests/kms_dp_tiled_display: kms test for display port tiled displays URL : https://patchwork.freedesktop.org/series/65652/ State : success == Summary == CI Bug Log - changes from CI_DRM_6769 -> IGTPW_3373 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65652/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3373 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap_gtt@basic-short: - fi-icl-u3: [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/fi-icl-u3/igt@gem_mmap_gtt@basic-short.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/fi-icl-u3/igt@gem_mmap_gtt@basic-short.html * igt@i915_selftest@live_active: - fi-bsw-kefka: [PASS][3] -> [DMESG-WARN][4] ([fdo#111373]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/fi-bsw-kefka/igt@i915_selftest@live_active.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/fi-bsw-kefka/igt@i915_selftest@live_active.html #### Possible fixes #### * igt@i915_selftest@live_reset: - {fi-icl-dsi}: [INCOMPLETE][5] ([fdo#107713]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/fi-icl-dsi/igt@i915_selftest@live_reset.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/fi-icl-dsi/igt@i915_selftest@live_reset.html * igt@kms_frontbuffer_tracking@basic: - {fi-icl-u4}: [FAIL][7] ([fdo#103167]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/fi-icl-u4/igt@kms_frontbuffer_tracking@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/fi-icl-u4/igt@kms_frontbuffer_tracking@basic.html - fi-icl-u2: [FAIL][9] ([fdo#103167]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#111373]: https://bugs.freedesktop.org/show_bug.cgi?id=111373 Participating hosts (55 -> 48) ------------------------------ Additional (1): fi-bsw-n3050 Missing (8): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5148 -> IGTPW_3373 CI-20190529: 20190529 CI_DRM_6769: 66b20c063386eb45b5617fce6c2dca606d56a09f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3373: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/ IGT_5148: 50390dd7adaccae21cafa85b866c17606cec94c3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@kms_dp_tiled_display@basic-test-pattern == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP tiled displays 2019-08-23 0:06 [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP tiled displays Madhumitha Tolakanahalli Pradeep ` (2 preceding siblings ...) 2019-08-23 1:21 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] igt/tests/kms_dp_tiled_display: kms test for display port tiled displays Patchwork @ 2019-08-23 10:12 ` Arkadiusz Hiler 2019-08-23 18:53 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Arkadiusz Hiler @ 2019-08-23 10:12 UTC (permalink / raw) To: Madhumitha Tolakanahalli Pradeep; +Cc: igt-dev On Thu, Aug 22, 2019 at 05:06:46PM -0700, Madhumitha Tolakanahalli Pradeep wrote: > > Madhumitha Tolakanahalli Pradeep (2): > igt/tests/kms_dp_tiled_display: kms test for display port tiled > displays > lib/igt_kms: added tile property parser > > lib/igt_kms.c | 29 +++ > lib/igt_kms.h | 11 ++ > tests/Makefile.sources | 1 + > tests/kms_dp_tiled_display.c | 346 +++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 5 files changed, 388 insertions(+) > create mode 100644 tests/kms_dp_tiled_display.c https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/526888 Seems to not build with clang: clang -Itests/59830eb@@kms_dp_tiled_display@exe -Itests -I../tests -I../include/drm-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/valgrind -I/usr/include/libdrm/nouveau -Xclang -fcolor-diagnostics -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -pthread -MD -MQ 'tests/59830eb@@kms_dp_tiled_display@exe/kms_dp_tiled_display.c.o' -MF 'tests/59830eb@@kms_dp_tiled_display@exe/kms_dp_tiled_display.c.o.d' -o 'tests/59830eb@@kms_dp_tiled_display@exe/kms_dp_tiled_display.c.o' -c ../tests/kms_dp_tiled_display.c ../tests/kms_dp_tiled_display.c:63:24: error: address of array 'prop->name' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] return ((strcmp(prop->name ? prop->name : "", "TILE") ? 0 : 1) && ~~~~~~^~~~ ~ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Added tile property parser library function and IGT test for DP tiled displays 2019-08-23 0:06 [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP tiled displays Madhumitha Tolakanahalli Pradeep ` (3 preceding siblings ...) 2019-08-23 10:12 ` [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP " Arkadiusz Hiler @ 2019-08-23 18:53 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2019-08-23 18:53 UTC (permalink / raw) To: Madhumitha Tolakanahalli Pradeep; +Cc: igt-dev == Series Details == Series: Added tile property parser library function and IGT test for DP tiled displays URL : https://patchwork.freedesktop.org/series/65652/ State : success == Summary == CI Bug Log - changes from CI_DRM_6769_full -> IGTPW_3373_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65652/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3373_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_dp_tiled_display@basic-test-pattern} (NEW): - shard-iclb: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb6/igt@kms_dp_tiled_display@basic-test-pattern.html New tests --------- New tests have been introduced between CI_DRM_6769_full and IGTPW_3373_full: ### New IGT tests (1) ### * igt@kms_dp_tiled_display@basic-test-pattern: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_3373_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][2] -> [SKIP][3] ([fdo#110841]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_schedule@preempt-other-bsd1: - shard-iclb: [PASS][4] -> [SKIP][5] ([fdo#109276]) +13 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb4/igt@gem_exec_schedule@preempt-other-bsd1.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb8/igt@gem_exec_schedule@preempt-other-bsd1.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][6] -> [SKIP][7] ([fdo#111325]) +7 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@i915_selftest@live_gtt: - shard-glk: [PASS][8] -> [INCOMPLETE][9] ([fdo#103359] / [k.org#198133]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-glk8/igt@i915_selftest@live_gtt.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-glk4/igt@i915_selftest@live_gtt.html * igt@i915_suspend@forcewake: - shard-apl: [PASS][10] -> [DMESG-WARN][11] ([fdo#108566]) +4 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-apl3/igt@i915_suspend@forcewake.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-apl7/igt@i915_suspend@forcewake.html * igt@kms_atomic_interruptible@legacy-pageflip: - shard-apl: [PASS][12] -> [INCOMPLETE][13] ([fdo#103927]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-apl1/igt@kms_atomic_interruptible@legacy-pageflip.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-apl7/igt@kms_atomic_interruptible@legacy-pageflip.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-hsw: [PASS][14] -> [INCOMPLETE][15] ([fdo#103540]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-hsw1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-hsw2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-iclb: [PASS][16] -> [FAIL][17] ([fdo#103167]) +3 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-glk: [PASS][18] -> [FAIL][19] ([fdo#103167]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-glk7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html - shard-kbl: [PASS][20] -> [FAIL][21] ([fdo#103167]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html - shard-apl: [PASS][22] -> [FAIL][23] ([fdo#103167]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: [PASS][24] -> [FAIL][25] ([fdo#103166]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-x.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][26] -> [SKIP][27] ([fdo#109441]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb3/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic: - shard-apl: [PASS][28] -> [FAIL][29] ([fdo#99912]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-apl1/igt@kms_setmode@basic.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-apl8/igt@kms_setmode@basic.html #### Possible fixes #### * igt@gem_exec_parallel@contexts: - shard-hsw: [FAIL][30] ([fdo#111469]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-hsw6/igt@gem_exec_parallel@contexts.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-hsw6/igt@gem_exec_parallel@contexts.html * igt@gem_exec_schedule@preempt-other-bsd: - shard-iclb: [SKIP][32] ([fdo#111325]) -> [PASS][33] +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb4/igt@gem_exec_schedule@preempt-other-bsd.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb6/igt@gem_exec_schedule@preempt-other-bsd.html * igt@gem_exec_schedule@reorder-wide-bsd1: - shard-iclb: [SKIP][34] ([fdo#109276]) -> [PASS][35] +18 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd1.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd1.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-snb: [SKIP][36] ([fdo#109271]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-snb1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [INCOMPLETE][38] ([fdo#103927]) -> [PASS][39] +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@sysfs-reader: - shard-apl: [DMESG-WARN][40] ([fdo#108566]) -> [PASS][41] +3 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-apl1/igt@i915_suspend@sysfs-reader.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-apl3/igt@i915_suspend@sysfs-reader.html * igt@kms_busy@extended-modeset-hang-oldfb-render-a: - shard-iclb: [INCOMPLETE][42] ([fdo#107713]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb7/igt@kms_busy@extended-modeset-hang-oldfb-render-a.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb6/igt@kms_busy@extended-modeset-hang-oldfb-render-a.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][44] ([fdo#104873]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-glk: [FAIL][46] ([fdo#105363]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-kbl: [FAIL][48] ([fdo#103167] / [fdo#110378]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html - shard-apl: [FAIL][50] ([fdo#103167] / [fdo#110378]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-apl5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-iclb: [FAIL][52] ([fdo#103167]) -> [PASS][53] +5 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-iclb: [FAIL][54] ([fdo#103167] / [fdo#110378]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-kbl: [FAIL][56] ([fdo#103375]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][58] ([fdo#109642] / [fdo#111068]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb7/igt@kms_psr2_su@frontbuffer.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-iclb: [SKIP][60] ([fdo#109441]) -> [PASS][61] +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb1/igt@kms_psr@psr2_primary_mmap_gtt.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][62] ([fdo#109276]) -> [FAIL][63] ([fdo#111329]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-isolation-bsd2: - shard-iclb: [SKIP][64] ([fdo#109276]) -> [FAIL][65] ([fdo#111330]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb6/igt@gem_mocs_settings@mocs-isolation-bsd2.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb1/igt@gem_mocs_settings@mocs-isolation-bsd2.html * igt@gem_mocs_settings@mocs-reset-bsd2: - shard-iclb: [FAIL][66] ([fdo#111330]) -> [SKIP][67] ([fdo#109276]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6769/shard-iclb2/igt@gem_mocs_settings@mocs-reset-bsd2.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/shard-iclb5/igt@gem_mocs_settings@mocs-reset-bsd2.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104873]: https://bugs.freedesktop.org/show_bug.cgi?id=104873 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111469]: https://bugs.freedesktop.org/show_bug.cgi?id=111469 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (9 -> 6) ------------------------------ Missing (3): pig-skl-6260u shard-skl pig-hsw-4770r Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5148 -> IGTPW_3373 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6769: 66b20c063386eb45b5617fce6c2dca606d56a09f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3373: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/ IGT_5148: 50390dd7adaccae21cafa85b866c17606cec94c3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3373/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2019-08-23 18:53 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-08-23 0:06 [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP tiled displays Madhumitha Tolakanahalli Pradeep 2019-08-23 0:06 ` [igt-dev] [PATCH i-g-t v2 1/2] igt/tests/kms_dp_tiled_display: kms test for display port " Madhumitha Tolakanahalli Pradeep 2019-08-23 0:06 ` [igt-dev] [PATCH i-g-t v2 2/2] lib/igt_kms: added tile property parser Madhumitha Tolakanahalli Pradeep 2019-08-23 8:15 ` Ser, Simon 2019-08-23 1:21 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] igt/tests/kms_dp_tiled_display: kms test for display port tiled displays Patchwork 2019-08-23 10:12 ` [igt-dev] [PATCH i-g-t v2 0/2] Added tile property parser library function and IGT test for DP " Arkadiusz Hiler 2019-08-23 18:53 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox