[igt-dev] [PATCH i-g-t 3/9] lib: drmtest: Add helpers to check and require the VC4 driver
Lyude Paul
lyude at redhat.com
Thu Dec 6 22:55:13 UTC 2018
Reviewed-by: Lyude Paul <lyude at redhat.com>
On Thu, 2018-12-06 at 15:11 +0100, Paul Kocialkowski wrote:
> In order to add support for features specific to the VC4 driver, add
> helpers for checking and requiring the driver like it's done for the
> i915 driver.
>
> Signed-off-by: Paul Kocialkowski <paul.kocialkowski at bootlin.com>
> ---
> lib/drmtest.c | 10 ++++++++++
> lib/drmtest.h | 2 ++
> 2 files changed, 12 insertions(+)
>
> diff --git a/lib/drmtest.c b/lib/drmtest.c
> index d2aa1c19..53ea7598 100644
> --- a/lib/drmtest.c
> +++ b/lib/drmtest.c
> @@ -105,6 +105,11 @@ bool is_i915_device(int fd)
> return __is_device(fd, "i915");
> }
>
> +bool is_vc4_device(int fd)
> +{
> + return __is_device(fd, "vc4");
> +}
> +
> static bool has_known_intel_chipset(int fd)
> {
> struct drm_i915_getparam gp;
> @@ -444,3 +449,8 @@ void igt_require_intel(int fd)
> {
> igt_require(is_i915_device(fd) && has_known_intel_chipset(fd));
> }
> +
> +void igt_require_vc4(int fd)
> +{
> + igt_require(is_vc4_device(fd));
> +}
> diff --git a/lib/drmtest.h b/lib/drmtest.h
> index 96ee517e..1d11bff9 100644
> --- a/lib/drmtest.h
> +++ b/lib/drmtest.h
> @@ -78,8 +78,10 @@ int __drm_open_driver(int chipset);
> void gem_quiescent_gpu(int fd);
>
> void igt_require_intel(int fd);
> +void igt_require_vc4(int fd);
>
> bool is_i915_device(int fd);
> +bool is_vc4_device(int fd);
>
> /**
> * do_or_die:
--
Cheers,
Lyude Paul
More information about the igt-dev
mailing list