Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 00/14] intel: igt_draw and intel_bufops improvements
@ 2024-10-04 10:41 Ville Syrjala
  2024-10-04 10:41 ` [PATCH i-g-t 01/14] lib/igt_draw: Use void* where appopriate Ville Syrjala
                   ` (22 more replies)
  0 siblings, 23 replies; 47+ messages in thread
From: Ville Syrjala @ 2024-10-04 10:41 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Bunch of improvements to igt_draw and intel_bufops:
- full 8bpp and 64bpp support
- hook in all gen2/gen3 tile layouts
- pread/pwrite fallback in intel_bufops for !WC systems
- new gem_draw test to validate igt_draw mmap cpu/wc and pwrite
  support w/o display limitations getting in the way

Ville Syrjälä (14):
  lib/igt_draw: Use void* where appopriate
  lib/igt_draw: Extend the API to support 64bpp colors
  lib/igt_draw: Support 64bpp int the mmap/pwrite paths
  lib/igt_draw: Support 8bpp int the mmap/pwrite paths
  lib/igt_draw: Use function pointers for the linear<->tiled conversion
  lib/igt_draw: Add support for gen2 and i915 tiling layouts
  lib/igt_draw: Add 64bpp support to the XY_FAST_COLOR_BLT path
  lib/igt_draw: Add 64bpp support for the non-XY_FAST_COLOR_BLT path
  lib/intel_bufops: Add support for gen2 and i915 tiling layouts
  lib/intel_bufops: Provide pread/pwrite based fallback when we don't
    have WC
  lib/rendercopy: Use igt_require() to validate gen2/3 surface size
  tests/kms_draw_crc: Test 64bpp
  lib/igt_aux: Add igt_ror() and igt_rol()
  tests/gem_draw: Test igt_draw without kms

 lib/igt_aux.h              |   7 +
 lib/igt_draw.c             | 266 ++++++++++++++++++++++++++-----------
 lib/igt_draw.h             |   6 +-
 lib/intel_bufops.c         | 151 +++++++++++++++------
 lib/intel_reg.h            |   2 +
 lib/rendercopy_i830.c      |   8 +-
 lib/rendercopy_i915.c      |   8 +-
 tests/intel/gem_draw.c     | 235 ++++++++++++++++++++++++++++++++
 tests/intel/kms_draw_crc.c |  19 ++-
 tests/meson.build          |   1 +
 10 files changed, 574 insertions(+), 129 deletions(-)
 create mode 100644 tests/intel/gem_draw.c

-- 
2.45.2


^ permalink raw reply	[flat|nested] 47+ messages in thread

end of thread, other threads:[~2024-11-18 14:50 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-04 10:41 [PATCH i-g-t 00/14] intel: igt_draw and intel_bufops improvements Ville Syrjala
2024-10-04 10:41 ` [PATCH i-g-t 01/14] lib/igt_draw: Use void* where appopriate Ville Syrjala
2024-10-29 14:44   ` Juha-Pekka Heikkila
2024-10-04 10:41 ` [PATCH i-g-t 02/14] lib/igt_draw: Extend the API to support 64bpp colors Ville Syrjala
2024-10-22 16:04   ` Kamil Konieczny
2024-10-04 10:41 ` [PATCH i-g-t 03/14] lib/igt_draw: Support 64bpp int the mmap/pwrite paths Ville Syrjala
2024-10-22 15:55   ` Kamil Konieczny
2024-10-04 10:41 ` [PATCH i-g-t 04/14] lib/igt_draw: Support 8bpp " Ville Syrjala
2024-10-22 15:54   ` Kamil Konieczny
2024-10-04 10:41 ` [PATCH i-g-t 05/14] lib/igt_draw: Use function pointers for the linear<->tiled conversion Ville Syrjala
2024-11-12  9:59   ` Juha-Pekka Heikkilä
2024-10-04 10:41 ` [PATCH i-g-t 06/14] lib/igt_draw: Add support for gen2 and i915 tiling layouts Ville Syrjala
2024-11-12 16:08   ` Juha-Pekka Heikkilä
2024-10-04 10:41 ` [PATCH i-g-t 07/14] lib/igt_draw: Add 64bpp support to the XY_FAST_COLOR_BLT path Ville Syrjala
2024-10-29 15:02   ` Juha-Pekka Heikkila
2024-10-04 10:41 ` [PATCH i-g-t 08/14] lib/igt_draw: Add 64bpp support for the non-XY_FAST_COLOR_BLT path Ville Syrjala
2024-11-18 14:42   ` Juha-Pekka Heikkilä
2024-10-04 10:41 ` [PATCH i-g-t 09/14] lib/intel_bufops: Add support for gen2 and i915 tiling layouts Ville Syrjala
2024-10-04 10:41 ` [PATCH i-g-t 10/14] lib/intel_bufops: Provide pread/pwrite based fallback when we don't have WC Ville Syrjala
2024-10-22 15:51   ` Kamil Konieczny
2024-10-24 16:20   ` [PATCH i-g-t v2 " Ville Syrjala
2024-10-04 10:41 ` [PATCH i-g-t 11/14] lib/rendercopy: Use igt_require() to validate gen2/3 surface size Ville Syrjala
2024-10-22 16:21   ` Kamil Konieczny
2024-10-04 10:41 ` [PATCH i-g-t 12/14] tests/kms_draw_crc: Test 64bpp Ville Syrjala
2024-11-18 14:50   ` Juha-Pekka Heikkilä
2024-10-04 10:41 ` [PATCH i-g-t 13/14] lib/igt_aux: Add igt_ror() and igt_rol() Ville Syrjala
2024-10-22 15:52   ` Kamil Konieczny
2024-10-04 10:41 ` [PATCH i-g-t 14/14] tests/gem_draw: Test igt_draw without kms Ville Syrjala
2024-10-11 10:43   ` [PATCH i-g-t v2 " Ville Syrjala
2024-10-22 16:30     ` Kamil Konieczny
2024-10-23 12:21       ` Ville Syrjälä
2024-10-07 15:39 ` ✗ GitLab.Pipeline: warning for intel: igt_draw and intel_bufops improvements Patchwork
2024-10-10 19:41   ` Ville Syrjälä
2024-10-11  6:37     ` Zbigniew Kempczyński
2024-10-11  7:42       ` Kamil Konieczny
2024-10-11 10:25       ` Ville Syrjälä
2024-10-11  7:00     ` Zbigniew Kempczyński
2024-10-11  8:01       ` Piecielska, Katarzyna
2024-10-11 10:15       ` Ville Syrjälä
2024-10-11 15:23 ` ✓ Fi.CI.BAT: success for intel: igt_draw and intel_bufops improvements (rev2) Patchwork
2024-10-11 16:01 ` ✓ CI.xeBAT: " Patchwork
2024-10-11 19:55 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-12  9:01 ` ✗ Fi.CI.IGT: " Patchwork
2024-10-24 18:03 ` ✓ Fi.CI.BAT: success for intel: igt_draw and intel_bufops improvements (rev3) Patchwork
2024-10-24 18:37 ` ✓ CI.xeBAT: " Patchwork
2024-10-24 20:53 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-25 22:48 ` ✗ CI.xeFULL: " Patchwork

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