All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/3] Add start offset and alignment detection
@ 2021-12-30 18:26 Zbigniew Kempczyński
  2021-12-30 18:26 ` [igt-dev] [PATCH i-g-t 1/3] lib/intel_memory_region: " Zbigniew Kempczyński
                   ` (5 more replies)
  0 siblings, 6 replies; 15+ messages in thread
From: Zbigniew Kempczyński @ 2021-12-30 18:26 UTC (permalink / raw)
  To: igt-dev

Add some universal code which tries to detect kernel offset capabilities.

v2: unify cache, fix start offset iteration
    run gem_softpin@safe-alignment also on integrated
v3: move cache entry out of mutex
v4: avoid assert and skip adding to cache if there's no memory
    rename to safe-start
    verify safe start offset on each engine

Zbigniew Kempczyński (3):
  lib/intel_memory_region: Add start offset and alignment detection
  tests/i915/gem_softpin: Add safe-start test
  tests/fast-feedback.testlist: Add gem_softpin@safe-start subtest

 lib/i915/intel_memory_region.c        | 371 ++++++++++++++++++++++++++
 lib/i915/intel_memory_region.h        |   5 +
 tests/i915/gem_softpin.c              |  87 ++++++
 tests/intel-ci/fast-feedback.testlist |   1 +
 4 files changed, 464 insertions(+)

-- 
2.32.0

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t 0/3] Add start offset and alignment detection
@ 2022-01-06 10:00 Zbigniew Kempczyński
  0 siblings, 0 replies; 15+ messages in thread
From: Zbigniew Kempczyński @ 2022-01-06 10:00 UTC (permalink / raw)
  To: igt-dev

Add some universal code which tries to detect kernel offset capabilities.

v2: unify cache, fix start offset iteration
    run gem_softpin@safe-alignment also on integrated
v3: move cache entry out of mutex
v4: avoid assert and skip adding to cache if there's no memory
    rename to safe-start
    verify safe start offset on each engine
v5: fix function doc (Ashutosh)
v6: remove unnecessary initialization + rename to safe-alignment (Ashutosh)
    add 48b flag for softpin (Zbigniew)

Zbigniew Kempczyński (3):
  lib/intel_memory_region: Add start offset and alignment detection
  tests/i915/gem_softpin: Add safe-alignment test
  tests/fast-feedback.testlist: Add gem_softpin@safe-alignment subtest

 lib/i915/intel_memory_region.c        | 373 ++++++++++++++++++++++++++
 lib/i915/intel_memory_region.h        |   5 +
 tests/i915/gem_softpin.c              |  87 ++++++
 tests/intel-ci/fast-feedback.testlist |   1 +
 4 files changed, 466 insertions(+)

-- 
2.32.0

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t 0/3] Add start offset and alignment detection
@ 2022-01-05  6:49 Zbigniew Kempczyński
  0 siblings, 0 replies; 15+ messages in thread
From: Zbigniew Kempczyński @ 2022-01-05  6:49 UTC (permalink / raw)
  To: igt-dev

Add some universal code which tries to detect kernel offset capabilities.

v2: unify cache, fix start offset iteration
    run gem_softpin@safe-alignment also on integrated
v3: move cache entry out of mutex
v4: avoid assert and skip adding to cache if there's no memory
    rename to safe-start
    verify safe start offset on each engine
v5: fix function doc (Ashutosh)

Zbigniew Kempczyński (3):
  lib/intel_memory_region: Add start offset and alignment detection
  tests/i915/gem_softpin: Add safe-start test
  tests/fast-feedback.testlist: Add gem_softpin@safe-start subtest

 lib/i915/intel_memory_region.c        | 371 ++++++++++++++++++++++++++
 lib/i915/intel_memory_region.h        |   5 +
 tests/i915/gem_softpin.c              |  87 ++++++
 tests/intel-ci/fast-feedback.testlist |   1 +
 4 files changed, 464 insertions(+)

-- 
2.32.0

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t 0/3] Add start offset and alignment detection
@ 2021-12-30  8:14 Zbigniew Kempczyński
  0 siblings, 0 replies; 15+ messages in thread
From: Zbigniew Kempczyński @ 2021-12-30  8:14 UTC (permalink / raw)
  To: igt-dev

Add some universal code which tries to detect kernel offset capabilities.

v2: unify cache, fix start offset iteration
    run gem_softpin@safe-alignment also on integrated
v3: move cache entry out of mutex

Zbigniew Kempczyński (3):
  lib/intel_memory_region: Add start offset and alignment detection
  tests/i915/gem_softpin: Add safe-alignment test
  tests/fast-feedback.testlist: Add gem_softpin@safe-alignment subtest

 lib/i915/intel_memory_region.c        | 375 ++++++++++++++++++++++++++
 lib/i915/intel_memory_region.h        |   5 +
 tests/i915/gem_softpin.c              |  66 +++++
 tests/intel-ci/fast-feedback.testlist |   1 +
 4 files changed, 447 insertions(+)

-- 
2.32.0

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t 0/3] Add start offset and alignment detection
@ 2021-12-29 19:37 Zbigniew Kempczyński
  0 siblings, 0 replies; 15+ messages in thread
From: Zbigniew Kempczyński @ 2021-12-29 19:37 UTC (permalink / raw)
  To: igt-dev

Add some universal code which tries to detect kernel offset capabilities.

v2: unify cache, fix start offset iteration
    run gem_softpin@safe-alignment also on integrated

Zbigniew Kempczyński (3):
  lib/intel_memory_region: Add start offset and alignment detection
  tests/i915/gem_softpin: Add safe-alignment test
  tests/fast-feedback.testlist: Add gem_softpin@safe-alignment subtest

 lib/i915/intel_memory_region.c        | 367 ++++++++++++++++++++++++++
 lib/i915/intel_memory_region.h        |   5 +
 tests/i915/gem_softpin.c              |  66 +++++
 tests/intel-ci/fast-feedback.testlist |   1 +
 4 files changed, 439 insertions(+)

-- 
2.32.0

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t 0/3] Add start offset and alignment detection
@ 2021-12-29 13:57 Zbigniew Kempczyński
  0 siblings, 0 replies; 15+ messages in thread
From: Zbigniew Kempczyński @ 2021-12-29 13:57 UTC (permalink / raw)
  To: igt-dev

Add some universal code which tries to detect kernel offset capabilites.

Zbigniew Kempczyński (3):
  lib/intel_memory_region: Add start offset and alignment detection
  tests/i915/gem_softpin: Add safe-alignment test
  tests/fast-feedback.testlist: Add gem_softpin@safe-alignment subtest

 lib/i915/intel_memory_region.c        | 269 ++++++++++++++++++++++++++
 lib/i915/intel_memory_region.h        |   5 +
 tests/i915/gem_softpin.c              |  70 +++++++
 tests/intel-ci/fast-feedback.testlist |   1 +
 4 files changed, 345 insertions(+)

-- 
2.32.0

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

end of thread, other threads:[~2022-01-06 10:00 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-30 18:26 [igt-dev] [PATCH i-g-t 0/3] Add start offset and alignment detection Zbigniew Kempczyński
2021-12-30 18:26 ` [igt-dev] [PATCH i-g-t 1/3] lib/intel_memory_region: " Zbigniew Kempczyński
2022-01-05  5:00   ` Dixit, Ashutosh
2022-01-05  6:44     ` Zbigniew Kempczyński
2021-12-30 18:26 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/gem_softpin: Add safe-start test Zbigniew Kempczyński
2021-12-30 18:26 ` [igt-dev] [PATCH i-g-t 3/3] tests/fast-feedback.testlist: Add gem_softpin@safe-start subtest Zbigniew Kempczyński
2022-01-04  4:41   ` Petri Latvala
2022-01-03 22:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for Add start offset and alignment detection (rev5) Patchwork
2022-01-03 23:00 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-01-04  0:11 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2022-01-06 10:00 [igt-dev] [PATCH i-g-t 0/3] Add start offset and alignment detection Zbigniew Kempczyński
2022-01-05  6:49 Zbigniew Kempczyński
2021-12-30  8:14 Zbigniew Kempczyński
2021-12-29 19:37 Zbigniew Kempczyński
2021-12-29 13:57 Zbigniew Kempczyński

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.