search for: __is_device

Displaying 10 results from an estimated 10 matches for "__is_device".

2020 Mar 18
6
[PATCH i-g-t 0/4] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> Nouveau has finally gotten CRC support, hooray! Well, it's under review at least: https://patchwork.freedesktop.org/series/74804/ (it has a cover letter, but nouveau's mailing list configuration has blocked the email so I'm waiting for a moderator to fix that) So, this series adds the relevant tests for it since nvidia's CRC
2020 Mar 18
0
[PATCH i-g-t 4/4] tests: Add nouveau-crc tests
...396 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 409 insertions(+) create mode 100644 tests/nouveau_crc.c diff --git a/lib/drmtest.c b/lib/drmtest.c index 1fc39925..53c01754 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -112,6 +112,11 @@ bool is_i915_device(int fd) return __is_device(fd, "i915"); } +bool is_nouveau_device(int fd) +{ + return __is_device(fd, "nouveau"); +} + bool is_vc4_device(int fd) { return __is_device(fd, "vc4"); @@ -537,6 +542,11 @@ void igt_require_intel(int fd) igt_require(is_i915_device(fd) && has_known_inte...
2020 Apr 17
0
[PATCH i-g-t v3 5/5] tests: Add nouveau-crc tests
...397 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 410 insertions(+) create mode 100644 tests/nouveau_crc.c diff --git a/lib/drmtest.c b/lib/drmtest.c index 1fc39925..53c01754 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -112,6 +112,11 @@ bool is_i915_device(int fd) return __is_device(fd, "i915"); } +bool is_nouveau_device(int fd) +{ + return __is_device(fd, "nouveau"); +} + bool is_vc4_device(int fd) { return __is_device(fd, "vc4"); @@ -537,6 +542,11 @@ void igt_require_intel(int fd) igt_require(is_i915_device(fd) && has_known_inte...
2020 Aug 18
2
[PATCH i-g-t v4] tests: Add nouveau-crc tests
...u' | sort) <(sed "s/ /\n/g" autotools-test-list.txt | sort) test:list-undocumented-tests: dependencies: diff --git a/lib/drmtest.c b/lib/drmtest.c index c732d1dd..447f5435 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -114,6 +114,11 @@ bool is_i915_device(int fd) return __is_device(fd, "i915"); } +bool is_nouveau_device(int fd) +{ + return __is_device(fd, "nouveau"); +} + bool is_vc4_device(int fd) { return __is_device(fd, "vc4"); @@ -622,6 +627,11 @@ void igt_require_intel(int fd) igt_require(is_i915_device(fd)); } +void igt_require_...
2020 Sep 30
9
[PATCH i-g-t v5 0/5] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> Nouveau has finally gotten CRC support, and at this point that support has made its way upstream. Hooray! So, let's start adding some relevant tests for it since nvidia's CRC implementation has some rather interesting design choices that needed to be worked around. Lyude Paul (5): lib/igt_core: Fix igt_assert_fd() documentation
2020 Sep 30
0
[PATCH i-g-t v5 5/5] tests: Add nouveau-crc tests
...u' | sort) <(sed "s/ /\n/g" autotools-test-list.txt | sort) test:list-undocumented-tests: dependencies: diff --git a/lib/drmtest.c b/lib/drmtest.c index c732d1dd..447f5435 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -114,6 +114,11 @@ bool is_i915_device(int fd) return __is_device(fd, "i915"); } +bool is_nouveau_device(int fd) +{ + return __is_device(fd, "nouveau"); +} + bool is_vc4_device(int fd) { return __is_device(fd, "vc4"); @@ -622,6 +627,11 @@ void igt_require_intel(int fd) igt_require(is_i915_device(fd)); } +void igt_require_...
2020 Apr 17
10
[PATCH i-g-t v3 0/5] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> Nouveau has finally gotten CRC support, hooray! Well, it's under review at least: https://patchwork.freedesktop.org/series/74804/ (it has a cover letter, but nouveau's mailing list configuration has blocked the email so I'm waiting for a moderator to fix that) So, this series adds the relevant tests for it since nvidia's CRC
2020 Sep 29
1
[igt-dev] [PATCH i-g-t v4] tests: Add nouveau-crc tests
...gt; > test:list-undocumented-tests: > > dependencies: > > diff --git a/lib/drmtest.c b/lib/drmtest.c > > index c732d1dd..447f5435 100644 > > --- a/lib/drmtest.c > > +++ b/lib/drmtest.c > > @@ -114,6 +114,11 @@ bool is_i915_device(int fd) > > return __is_device(fd, "i915"); > > } > > > > +bool is_nouveau_device(int fd) > > +{ > > + return __is_device(fd, "nouveau"); > > +} > > + > > bool is_vc4_device(int fd) > > { > > return __is_device(fd, "vc4"); > >...
2020 Sep 28
0
[igt-dev] [PATCH i-g-t v4] tests: Add nouveau-crc tests
...autotools-test-list.txt | sort) > > test:list-undocumented-tests: > dependencies: > diff --git a/lib/drmtest.c b/lib/drmtest.c > index c732d1dd..447f5435 100644 > --- a/lib/drmtest.c > +++ b/lib/drmtest.c > @@ -114,6 +114,11 @@ bool is_i915_device(int fd) > return __is_device(fd, "i915"); > } > > +bool is_nouveau_device(int fd) > +{ > + return __is_device(fd, "nouveau"); > +} > + > bool is_vc4_device(int fd) > { > return __is_device(fd, "vc4"); > @@ -622,6 +627,11 @@ void igt_require_intel(int fd) &gt...
2020 Apr 17
5
[PATCH i-g-t v2 0/5] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> (Just forwarding this to nouveau's ml, since I completely forgot to before) Nouveau has finally gotten CRC support, hooray! Well, it's under review at least: https://patchwork.freedesktop.org/series/74804/ (it has a cover letter, but nouveau's mailing list configuration has blocked the email so I'm waiting for a moderator to fix that)