Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1427621

[PATCH v1 0/3] New debugfs API for capturing CRC of frames

From Tomeu Vizoso <tomeu.vizoso@collabora.com>
Newsgroups linux.kernel
Subject [PATCH v1 0/3] New debugfs API for capturing CRC of frames
Date 2016-06-21 13:30 +0200
Message-ID <rMs2u-5aD-11@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Hi,

this series basically takes the facility for continuously capturing CRCs
of frames from the i915 driver and into the DRM core.

The idea is that test suites such as IGT use this information to check
that frames that are expected to be identical, also have identical CRC
values.

Other drivers for hardware that can provide frame CRCs (including eDP
panels that support self-refresh) can easily implement the new callback
and provide userspace with the CRC values.

Thanks,

Tomeu


Tomeu Vizoso (3):
  drm/i915/debugfs: Move out pipe CRC code
  drm: Add API for capturing frame CRCs
  drm/i915: Use new CRC debugfs API

 drivers/gpu/drm/drm_crtc.c            |  28 +-
 drivers/gpu/drm/drm_debugfs.c         | 506 ++++++++++++++++++-
 drivers/gpu/drm/drm_internal.h        |  10 +
 drivers/gpu/drm/i915/Makefile         |   2 +-
 drivers/gpu/drm/i915/i915_debugfs.c   | 892 +---------------------------------
 drivers/gpu/drm/i915/i915_dma.c       |   2 -
 drivers/gpu/drm/i915/i915_drv.h       |  21 -
 drivers/gpu/drm/i915/i915_irq.c       |  39 +-
 drivers/gpu/drm/i915/intel_display.c  |   3 +
 drivers/gpu/drm/i915/intel_drv.h      |   5 +
 drivers/gpu/drm/i915/intel_pipe_crc.c | 556 +++++++++++++++++++++
 include/drm/drmP.h                    |   5 +
 include/drm/drm_crtc.h                |  72 +++
 13 files changed, 1181 insertions(+), 960 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/intel_pipe_crc.c

-- 
2.5.5

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v1 0/3] New debugfs API for capturing CRC of frames Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2016-06-21 13:30 +0200
  [PATCH v1 3/3] drm/i915: Use new CRC debugfs API Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2016-06-21 13:30 +0200
  [PATCH v1 2/3] drm: Add API for capturing frame CRCs Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2016-06-21 14:20 +0200
    Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Thierry Reding <thierry.reding@gmail.com> - 2016-06-21 17:10 +0200
      Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2016-06-22 10:30 +0200
        Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Thierry Reding <thierry.reding@gmail.com> - 2016-06-22 15:40 +0200
          Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Daniel Vetter <daniel@ffwll.ch> - 2016-06-22 16:10 +0200
            Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Daniel Vetter <daniel@ffwll.ch> - 2016-06-22 16:40 +0200
              Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Jani Nikula <jani.nikula@linux.intel.com> - 2016-06-23 10:30 +0200
                Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2016-06-23 10:30 +0200
                Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Thierry Reding <thierry.reding@gmail.com> - 2016-06-23 10:50 +0200
                Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Daniel Vetter <daniel@ffwll.ch> - 2016-06-23 12:10 +0200
            Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Thierry Reding <thierry.reding@gmail.com> - 2016-06-22 16:50 +0200
          Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Daniel Vetter <daniel@ffwll.ch> - 2016-06-22 16:20 +0200
    Re: [PATCH v1 2/3] drm: Add API for capturing frame CRCs Daniel Vetter <daniel@ffwll.ch> - 2016-06-22 16:30 +0200

csiph-web