All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: dri-devel@lists.freedesktop.org
Cc: jani.nikula@intel.com, intel-gfx@lists.freedesktop.org,
	manasi.d.navare@intel.com, vandita.kulkarni@intel.com,
	Harry Wentland <hwentlan@amd.com>
Subject: [PATCH 0/7] drm/dsc: fixes and cleanups around rc_model_size
Date: Wed, 22 Jan 2020 15:45:06 +0200	[thread overview]
Message-ID: <cover.1579700414.git.jani.nikula@intel.com> (raw)

Make it possible to adjust the rc_model_size parameter instead of
hardcoding it all over the place. Only actually change the size for i915
DSI DSC.

Patch 3 for AMD isn't really required, but it felt like a natural
cleanup to incorporate.

Vandita, please check if this helps with the DSI DSC woes.

BR,
Jani.


Jani Nikula (7):
  drm/dsc: use rc_model_size from DSC config for PPS
  drm/dsc: add helper for calculating rc buffer size from DPCD
  drm/amd/display: use drm_dsc_dp_rc_buffer_size() to get rc buffer size
  drm/i915/dsc: configure hardware using specified rc_model_size
  drm/i915/dsc: make rc_model_size an encoder defined value
  drm/i915/bios: fill in DSC rc_model_size from VBT
  drm/i915/dsi: use VBT data for rc_model_size

 drivers/gpu/drm/amd/display/dc/dsc/dc_dsc.c | 37 ++++-----------------
 drivers/gpu/drm/drm_dsc.c                   | 30 +++++++++++++++--
 drivers/gpu/drm/i915/display/intel_bios.c   | 11 ++----
 drivers/gpu/drm/i915/display/intel_dp.c     |  8 +++++
 drivers/gpu/drm/i915/display/intel_vdsc.c   |  4 +--
 include/drm/drm_dsc.h                       |  1 +
 6 files changed, 48 insertions(+), 43 deletions(-)

-- 
2.20.1

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: Jani Nikula <jani.nikula@intel.com>
To: dri-devel@lists.freedesktop.org
Cc: jani.nikula@intel.com, intel-gfx@lists.freedesktop.org,
	Alex Deucher <alexdeucher@gmail.com>,
	Harry Wentland <hwentlan@amd.com>
Subject: [Intel-gfx] [PATCH 0/7] drm/dsc: fixes and cleanups around rc_model_size
Date: Wed, 22 Jan 2020 15:45:06 +0200	[thread overview]
Message-ID: <cover.1579700414.git.jani.nikula@intel.com> (raw)

Make it possible to adjust the rc_model_size parameter instead of
hardcoding it all over the place. Only actually change the size for i915
DSI DSC.

Patch 3 for AMD isn't really required, but it felt like a natural
cleanup to incorporate.

Vandita, please check if this helps with the DSI DSC woes.

BR,
Jani.


Jani Nikula (7):
  drm/dsc: use rc_model_size from DSC config for PPS
  drm/dsc: add helper for calculating rc buffer size from DPCD
  drm/amd/display: use drm_dsc_dp_rc_buffer_size() to get rc buffer size
  drm/i915/dsc: configure hardware using specified rc_model_size
  drm/i915/dsc: make rc_model_size an encoder defined value
  drm/i915/bios: fill in DSC rc_model_size from VBT
  drm/i915/dsi: use VBT data for rc_model_size

 drivers/gpu/drm/amd/display/dc/dsc/dc_dsc.c | 37 ++++-----------------
 drivers/gpu/drm/drm_dsc.c                   | 30 +++++++++++++++--
 drivers/gpu/drm/i915/display/intel_bios.c   | 11 ++----
 drivers/gpu/drm/i915/display/intel_dp.c     |  8 +++++
 drivers/gpu/drm/i915/display/intel_vdsc.c   |  4 +--
 include/drm/drm_dsc.h                       |  1 +
 6 files changed, 48 insertions(+), 43 deletions(-)

-- 
2.20.1

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

             reply	other threads:[~2020-01-22 13:45 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-22 13:45 Jani Nikula [this message]
2020-01-22 13:45 ` [Intel-gfx] [PATCH 0/7] drm/dsc: fixes and cleanups around rc_model_size Jani Nikula
2020-01-22 13:45 ` [PATCH 1/7] drm/dsc: use rc_model_size from DSC config for PPS Jani Nikula
2020-01-22 13:45   ` [Intel-gfx] " Jani Nikula
2020-01-22 13:45 ` [PATCH 2/7] drm/dsc: add helper for calculating rc buffer size from DPCD Jani Nikula
2020-01-22 13:45   ` [Intel-gfx] " Jani Nikula
2020-01-22 13:45 ` [PATCH 3/7] drm/amd/display: use drm_dsc_dp_rc_buffer_size() to get rc buffer size Jani Nikula
2020-01-22 13:45   ` [Intel-gfx] " Jani Nikula
2020-01-22 13:45 ` [PATCH 4/7] drm/i915/dsc: configure hardware using specified rc_model_size Jani Nikula
2020-01-22 13:45   ` [Intel-gfx] " Jani Nikula
2020-01-22 13:45 ` [PATCH 5/7] drm/i915/dsc: make rc_model_size an encoder defined value Jani Nikula
2020-01-22 13:45   ` [Intel-gfx] " Jani Nikula
2020-01-22 13:45 ` [PATCH 6/7] drm/i915/bios: fill in DSC rc_model_size from VBT Jani Nikula
2020-01-22 13:45   ` [Intel-gfx] " Jani Nikula
2020-01-22 13:45 ` [PATCH 7/7] drm/i915/dsi: use VBT data for rc_model_size Jani Nikula
2020-01-22 13:45   ` [Intel-gfx] " Jani Nikula
2020-01-22 14:03 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for drm/dsc: fixes and cleanups around rc_model_size Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1579700414.git.jani.nikula@intel.com \
    --to=jani.nikula@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=hwentlan@amd.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=manasi.d.navare@intel.com \
    --cc=vandita.kulkarni@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.