public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t v25 00/22] Remove libdrm in rendercopy
Date: Mon,  3 Aug 2020 14:42:51 +0200	[thread overview]
Message-ID: <20200803124313.31162-1-zbigniew.kempczynski@intel.com> (raw)

Cleaning the code / fixing still failing tests.
Until all will be fixed patches to be squashed will be on top.

HAX is added to avoid unnecessary full runs.

v20: allowing bpp == 64 in intel_buf
     reset flags in intel_bb_reset(ibb, false)
     add intel_buf in intel_bb_emit_blt to properly pass
     EXEC_OBJECT_WRITE flag for dst buffer
v21: try full run
v22: try to fix kms_psr, isolate it in BAT run
v23: try full run
v24: change render in api_intel_bb to dynamic subtest
     print dest buffer in perf
v25: try coherent mapping on Geminilake

Dominik Grzegorzek (2):
  lib/igt_fb: Removal of libdrm dependency
  tests/gem|kms: remove libdrm dependency (batch 1)

Zbigniew Kempczyński (20):
  lib/intel_bufops: add mapping on cpu / device
  lib/intel_bufops: change in hw/sw tiling detection
  lib/intel_bufops: change stride requirements for Grantsdale
  lib/intel_batchbuffer: add new functions to support rendercopy
  lib/intel_batchbuffer: dump bb to base64
  lib/intel_batchbuffer: use canonical addresses for 48bit ppgtt
  tests/api_intel_bb: test flags are cleared on bb reset
  tests/gem_caching|partial: adopt to batch flush function cleanup
  lib/rendercopy: remove libdrm dependency
  tests/api_intel_bb: add render tests
  lib/igt_draw: remove libdrm dependency
  tests/gem|kms: remove libdrm dependency (batch 2)
  tools/intel_residency: adopt intel_residency to use bufops
  tests/perf: remove libdrm dependency for rendercopy
  fix: lib/intel_bufops: add 64bit bpp
  tests/kms_psr: trying to fix blt
  tests/api_intel_bb: just fail in BAT
  tests/perf: debug stuff
  tests/perf: use coherent mapping on non-llc platforms
  HAX: run in BAT and fail to avoid full run

 lib/Makefile.sources                  |    2 -
 lib/igt_draw.c                        |  155 ++--
 lib/igt_draw.h                        |    8 +-
 lib/igt_fb.c                          |   96 ++-
 lib/intel_aux_pgtable.c               |  325 ++++---
 lib/intel_aux_pgtable.h               |   29 +-
 lib/intel_batchbuffer.c               |  422 +++++++--
 lib/intel_batchbuffer.h               |   87 +-
 lib/intel_bufops.c                    |  170 +++-
 lib/intel_bufops.h                    |   15 +-
 lib/meson.build                       |    1 -
 lib/rendercopy.h                      |  102 +--
 lib/rendercopy_bufmgr.c               |  171 ----
 lib/rendercopy_bufmgr.h               |   28 -
 lib/rendercopy_gen4.c                 |  571 ++++++------
 lib/rendercopy_gen6.c                 |  593 +++++++------
 lib/rendercopy_gen7.c                 |  612 ++++++-------
 lib/rendercopy_gen8.c                 | 1030 ++++++++++------------
 lib/rendercopy_gen9.c                 | 1145 +++++++++++--------------
 lib/rendercopy_i830.c                 |  278 +++---
 lib/rendercopy_i915.c                 |  281 +++---
 lib/veboxcopy.h                       |    8 +-
 lib/veboxcopy_gen12.c                 |  117 ++-
 tests/i915/api_intel_bb.c             |  397 ++++++++-
 tests/i915/gem_caching.c              |    5 -
 tests/i915/gem_concurrent_all.c       |  434 +++++-----
 tests/i915/gem_partial_pwrite_pread.c |    3 -
 tests/i915/gem_ppgtt.c                |  183 ++--
 tests/i915/gem_read_read_speed.c      |  161 ++--
 tests/i915/gem_render_copy.c          |  313 +++----
 tests/i915/gem_render_copy_redux.c    |   67 +-
 tests/i915/gem_render_linear_blits.c  |   90 +-
 tests/i915/gem_render_tiled_blits.c   |   93 +-
 tests/i915/gem_stress.c               |  244 +++---
 tests/i915/perf.c                     |  662 ++++++--------
 tests/intel-ci/fast-feedback.testlist |  164 +---
 tests/kms_big_fb.c                    |   54 +-
 tests/kms_cursor_crc.c                |   63 +-
 tests/kms_draw_crc.c                  |   20 +-
 tests/kms_frontbuffer_tracking.c      |   20 +-
 tests/kms_psr.c                       |  137 +--
 tools/intel_residency.c               |   10 +-
 42 files changed, 4717 insertions(+), 4649 deletions(-)
 delete mode 100644 lib/rendercopy_bufmgr.c
 delete mode 100644 lib/rendercopy_bufmgr.h

-- 
2.26.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

             reply	other threads:[~2020-08-03 12:43 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-03 12:42 Zbigniew Kempczyński [this message]
2020-08-03 12:42 ` [igt-dev] [PATCH i-g-t v25 01/22] lib/intel_bufops: add mapping on cpu / device Zbigniew Kempczyński
2020-08-03 12:42 ` [igt-dev] [PATCH i-g-t v25 02/22] lib/intel_bufops: change in hw/sw tiling detection Zbigniew Kempczyński
2020-08-03 12:42 ` [igt-dev] [PATCH i-g-t v25 03/22] lib/intel_bufops: change stride requirements for Grantsdale Zbigniew Kempczyński
2020-08-03 12:42 ` [igt-dev] [PATCH i-g-t v25 04/22] lib/intel_batchbuffer: add new functions to support rendercopy Zbigniew Kempczyński
2020-08-03 12:42 ` [igt-dev] [PATCH i-g-t v25 05/22] lib/intel_batchbuffer: dump bb to base64 Zbigniew Kempczyński
2020-08-03 12:42 ` [igt-dev] [PATCH i-g-t v25 06/22] lib/intel_batchbuffer: use canonical addresses for 48bit ppgtt Zbigniew Kempczyński
2020-08-03 12:42 ` [igt-dev] [PATCH i-g-t v25 07/22] tests/api_intel_bb: test flags are cleared on bb reset Zbigniew Kempczyński
2020-08-03 12:42 ` [igt-dev] [PATCH i-g-t v25 08/22] tests/gem_caching|partial: adopt to batch flush function cleanup Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 09/22] lib/rendercopy: remove libdrm dependency Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 10/22] tests/api_intel_bb: add render tests Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 11/22] lib/igt_draw: remove libdrm dependency Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 12/22] lib/igt_fb: Removal of " Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 13/22] tests/gem|kms: remove libdrm dependency (batch 1) Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 14/22] tests/gem|kms: remove libdrm dependency (batch 2) Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 15/22] tools/intel_residency: adopt intel_residency to use bufops Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 16/22] tests/perf: remove libdrm dependency for rendercopy Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 17/22] fix: lib/intel_bufops: add 64bit bpp Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 18/22] tests/kms_psr: trying to fix blt Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 19/22] tests/api_intel_bb: just fail in BAT Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 20/22] tests/perf: debug stuff Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 21/22] tests/perf: use coherent mapping on non-llc platforms Zbigniew Kempczyński
2020-08-03 12:43 ` [igt-dev] [PATCH i-g-t v25 22/22] HAX: run in BAT and fail to avoid full run Zbigniew Kempczyński
2020-08-03 13:08 ` [igt-dev] ✓ Fi.CI.BAT: success for Remove libdrm in rendercopy (rev24) Patchwork
2020-08-03 16:30 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200803124313.31162-1-zbigniew.kempczynski@intel.com \
    --to=zbigniew.kempczynski@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox