All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] DSB enablement.
@ 2019-07-01  6:26 Animesh Manna
  2019-07-01  6:26 ` [PATCH 01/15] drm/i915/dsb: feature flag added for display state buffer Animesh Manna
                   ` (19 more replies)
  0 siblings, 20 replies; 22+ messages in thread
From: Animesh Manna @ 2019-07-01  6:26 UTC (permalink / raw)
  To: intel-gfx; +Cc: Jani Nikula, Lucas De Marchi, Michel Thierry

Display State Buffer (DSB) is hardware capability which allows
driver to batch submit HW programming.

As part of initial enablement common api created which currently used
to program gamma lut proramming.

Going forwad DSB support can be added for HDR and flip related operation.

Few changes of this patch series is not tested, sending version 1
for design review, will be testing in parallel.

HSDES: 1209978241
BSpec: 32020

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Michel Thierry <michel.thierry@intel.com>
Cc: Uma Shankar <uma.shankar@intel.com>
Cc: Shashank Sharma <shashank.sharma@intel.com>
Cc: Swati Sharma <swati2.sharma@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>

Animesh Manna (15):
  drm/i915/dsb: feature flag added for display state buffer.
  drm/i915/dsb: DSB context creation.
  drm/i915/dsb: single register write function for DSB.
  drm/i915/dsb: Added enum for reg write capability.
  drm/i915/dsb: Indexed register write function for DSB.
  drm/i915/dsb: Update i915_write to call dsb-write.
  drm/i915/dsb: Register definition of DSB registers.
  drm/i915/dsb: Check DSB engine status.
  drm/i915/dsb: functions to enable/disable DSB engine.
  drm/i915/dsb: function to trigger workload execution of DSB.
  drm/i915/dsb: function to destroy DSB context.
  drm/i915/dsb: Early prepare of dsb context.
  drm/i915/dsb: Cleanup of DSB context.
  drm/i915/dsb: Documentation for DSB.
  drm/i915/dsb: Enable gamma lut programming using DSB.

 Documentation/gpu/i915.rst                   |   9 +
 drivers/gpu/drm/i915/Makefile                |   1 +
 drivers/gpu/drm/i915/display/intel_color.c   |   4 +
 drivers/gpu/drm/i915/display/intel_display.c |  34 +++
 drivers/gpu/drm/i915/i915_drv.h              |   9 +-
 drivers/gpu/drm/i915/i915_reg.h              |  53 +++-
 drivers/gpu/drm/i915/intel_device_info.h     |   1 +
 drivers/gpu/drm/i915/intel_drv.h             |   6 +
 drivers/gpu/drm/i915/intel_dsb.c             | 305 +++++++++++++++++++
 drivers/gpu/drm/i915/intel_dsb.h             |  48 +++
 10 files changed, 460 insertions(+), 10 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/intel_dsb.c
 create mode 100644 drivers/gpu/drm/i915/intel_dsb.h

-- 
2.21.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2019-08-12  8:52 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-01  6:26 [PATCH 00/15] DSB enablement Animesh Manna
2019-07-01  6:26 ` [PATCH 01/15] drm/i915/dsb: feature flag added for display state buffer Animesh Manna
2019-07-01  6:26 ` [PATCH 02/15] drm/i915/dsb: DSB context creation Animesh Manna
2019-07-01  6:26 ` [PATCH 03/15] drm/i915/dsb: single register write function for DSB Animesh Manna
2019-07-01  6:26 ` [PATCH 04/15] drm/i915/dsb: Added enum for reg write capability Animesh Manna
2019-07-01  6:26 ` [PATCH 05/15] drm/i915/dsb: Indexed register write function for DSB Animesh Manna
2019-07-01  6:26 ` [PATCH 06/15] drm/i915/dsb: Update i915_write to call dsb-write Animesh Manna
2019-07-01  6:26 ` [PATCH 07/15] drm/i915/dsb: Register definition of DSB registers Animesh Manna
2019-07-01  6:26 ` [PATCH 08/15] drm/i915/dsb: Check DSB engine status Animesh Manna
2019-07-01  6:26 ` [PATCH 09/15] drm/i915/dsb: functions to enable/disable DSB engine Animesh Manna
2019-07-01  6:26 ` [PATCH 10/15] drm/i915/dsb: function to trigger workload execution of DSB Animesh Manna
2019-07-01  6:26 ` [PATCH 11/15] drm/i915/dsb: function to destroy DSB context Animesh Manna
2019-07-01  6:26 ` [PATCH 12/15] drm/i915/dsb: Early prepare of dsb context Animesh Manna
2019-07-01  6:26 ` [PATCH 13/15] drm/i915/dsb: Cleanup of DSB context Animesh Manna
2019-07-01  6:26 ` [PATCH 14/15] drm/i915/dsb: Documentation for DSB Animesh Manna
2019-07-01  6:26 ` [PATCH 15/15] drm/i915/dsb: Enable gamma lut programming using DSB Animesh Manna
2019-07-01  7:09 ` ✗ Fi.CI.CHECKPATCH: warning for DSB enablement Patchwork
2019-07-01  7:16 ` ✗ Fi.CI.SPARSE: " Patchwork
2019-07-01  7:39 ` ✓ Fi.CI.BAT: success " Patchwork
2019-07-01  9:05 ` ✗ Fi.CI.IGT: failure " Patchwork
2019-08-09  9:42 ` [PATCH 00/15] " Jani Nikula
2019-08-12  8:52   ` Animesh Manna

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.