aboutsummaryrefslogtreecommitdiffstats
path: root/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/3019-drm-amd-display-Update-drm_dsc-to-reflect-native-4.2.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/3019-drm-amd-display-Update-drm_dsc-to-reflect-native-4.2.patch')
-rw-r--r--meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/3019-drm-amd-display-Update-drm_dsc-to-reflect-native-4.2.patch142
1 files changed, 142 insertions, 0 deletions
diff --git a/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/3019-drm-amd-display-Update-drm_dsc-to-reflect-native-4.2.patch b/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/3019-drm-amd-display-Update-drm_dsc-to-reflect-native-4.2.patch
new file mode 100644
index 00000000..c039b79d
--- /dev/null
+++ b/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/3019-drm-amd-display-Update-drm_dsc-to-reflect-native-4.2.patch
@@ -0,0 +1,142 @@
+From a7cf3feb831962e5808d200c19e2618be14f99de Mon Sep 17 00:00:00 2001
+From: David Francis <David.Francis@amd.com>
+Date: Tue, 4 Jun 2019 16:05:14 -0400
+Subject: [PATCH 3019/4256] drm/amd/display: Update drm_dsc to reflect native
+ 4.2.0 DSC spec
+
+[Why]
+Some parts of the DSC spec relating to 4.2.0 were not reflected in
+drm_dsc_compute_rc_parameters, causing unexpected config failures
+
+[How]
+Add nsl_bpg_offset and rbs_min computation
+
+Signed-off-by: David Francis <David.Francis@amd.com>
+Reviewed-by: Nikola Cornij <Nikola.Cornij@amd.com>
+Acked-by: Leo Li <sunpeng.li@amd.com>
+---
+ .../gpu/drm/amd/display/dc/dsc/drm_dsc_dc.c | 73 ++++++++++++++++++-
+ 1 file changed, 69 insertions(+), 4 deletions(-)
+
+diff --git a/drivers/gpu/drm/amd/display/dc/dsc/drm_dsc_dc.c b/drivers/gpu/drm/amd/display/dc/dsc/drm_dsc_dc.c
+index 67089765780b..04c6295f296e 100644
+--- a/drivers/gpu/drm/amd/display/dc/dsc/drm_dsc_dc.c
++++ b/drivers/gpu/drm/amd/display/dc/dsc/drm_dsc_dc.c
+@@ -15,6 +15,7 @@
+ #define ERANGE -1
+ #define DRM_DEBUG_KMS(msg) /* nothing */
+ #define cpu_to_be16(__x) little_to_big(__x)
++#define MAX(x, y) ((x) > (y) ? (x) : (y))
+
+ static unsigned short little_to_big(int data)
+ {
+@@ -232,6 +233,38 @@ void drm_dsc_pps_payload_pack(struct drm_dsc_picture_parameter_set *pps_payload,
+ }
+ EXPORT_SYMBOL(drm_dsc_pps_payload_pack);
+
++static int compute_offset(struct drm_dsc_config *vdsc_cfg, int pixels_per_group,
++ int groups_per_line, int grpcnt)
++{
++ int offset = 0;
++ int grpcnt_id = DIV_ROUND_UP(vdsc_cfg->initial_xmit_delay, pixels_per_group);
++
++ if (grpcnt <= grpcnt_id)
++ offset = DIV_ROUND_UP(grpcnt * pixels_per_group * vdsc_cfg->bits_per_pixel, 16);
++ else
++ offset = DIV_ROUND_UP(grpcnt_id * pixels_per_group * vdsc_cfg->bits_per_pixel, 16)
++ - (((grpcnt - grpcnt_id) * vdsc_cfg->slice_bpg_offset) >> 11);
++
++ if (grpcnt <= groups_per_line)
++ offset += grpcnt * vdsc_cfg->first_line_bpg_offset;
++ else
++ offset += groups_per_line * vdsc_cfg->first_line_bpg_offset
++ - (((grpcnt - groups_per_line) * vdsc_cfg->nfl_bpg_offset) >> 11);
++
++ if (vdsc_cfg->native_420) {
++ if (grpcnt <= groups_per_line)
++ offset -= (grpcnt * vdsc_cfg->nsl_bpg_offset) >> 11;
++ else if (grpcnt <= 2 * groups_per_line)
++ offset += (grpcnt - groups_per_line) * vdsc_cfg->second_line_bpg_offset
++ - ((groups_per_line * vdsc_cfg->nsl_bpg_offset) >> 11);
++ else
++ offset += (grpcnt - groups_per_line) * vdsc_cfg->second_line_bpg_offset
++ - (((grpcnt - groups_per_line) * vdsc_cfg->nsl_bpg_offset) >> 11);
++ }
++
++ return offset;
++}
++
+ /**
+ * drm_dsc_compute_rc_parameters() - Write rate control
+ * parameters to the dsc configuration defined in
+@@ -251,6 +284,7 @@ int drm_dsc_compute_rc_parameters(struct drm_dsc_config *vdsc_cfg)
+ unsigned long hrd_delay = 0;
+ unsigned long final_scale = 0;
+ unsigned long rbs_min = 0;
++ unsigned long max_offset = 0;
+
+ if (vdsc_cfg->native_420 || vdsc_cfg->native_422) {
+ /* Number of groups used to code each line of a slice */
+@@ -329,6 +363,17 @@ int drm_dsc_compute_rc_parameters(struct drm_dsc_config *vdsc_cfg)
+ return -ERANGE;
+ }
+
++ if (vdsc_cfg->slice_height > 2)
++ vdsc_cfg->nsl_bpg_offset = DIV_ROUND_UP((vdsc_cfg->second_line_bpg_offset << 11),
++ (vdsc_cfg->slice_height - 1));
++ else
++ vdsc_cfg->nsl_bpg_offset = 0;
++
++ if (vdsc_cfg->nsl_bpg_offset > 65535) {
++ DRM_DEBUG_KMS("NslBpgOffset is too large for this slice height\n");
++ return -ERANGE;
++ }
++
+ /* Number of groups used to code the entire slice */
+ groups_total = groups_per_line * vdsc_cfg->slice_height;
+
+@@ -348,6 +393,7 @@ int drm_dsc_compute_rc_parameters(struct drm_dsc_config *vdsc_cfg)
+ vdsc_cfg->scale_increment_interval =
+ (vdsc_cfg->final_offset * (1 << 11)) /
+ ((vdsc_cfg->nfl_bpg_offset +
++ vdsc_cfg->nsl_bpg_offset +
+ vdsc_cfg->slice_bpg_offset) *
+ (final_scale - 9));
+ } else {
+@@ -368,10 +414,29 @@ int drm_dsc_compute_rc_parameters(struct drm_dsc_config *vdsc_cfg)
+ * bits/pixel (bpp) rate that is used by the encoder,
+ * in steps of 1/16 of a bit per pixel
+ */
+- rbs_min = vdsc_cfg->rc_model_size - vdsc_cfg->initial_offset +
+- DIV_ROUND_UP(vdsc_cfg->initial_xmit_delay *
+- vdsc_cfg->bits_per_pixel, 16) +
+- groups_per_line * vdsc_cfg->first_line_bpg_offset;
++ if (vdsc_cfg->dsc_version_minor == 2 && (vdsc_cfg->native_420 || vdsc_cfg->native_422)) {
++
++ max_offset = compute_offset(vdsc_cfg, DSC_RC_PIXELS_PER_GROUP, groups_per_line,
++ DIV_ROUND_UP(vdsc_cfg->initial_xmit_delay,
++ DSC_RC_PIXELS_PER_GROUP));
++
++ max_offset = MAX(max_offset,
++ compute_offset(vdsc_cfg, DSC_RC_PIXELS_PER_GROUP, groups_per_line,
++ DIV_ROUND_UP(vdsc_cfg->initial_xmit_delay,
++ groups_per_line)));
++
++ max_offset = MAX(max_offset,
++ compute_offset(vdsc_cfg, DSC_RC_PIXELS_PER_GROUP, groups_per_line,
++ DIV_ROUND_UP(vdsc_cfg->initial_xmit_delay,
++ groups_per_line * 2)));
++
++ rbs_min = vdsc_cfg->rc_model_size - vdsc_cfg->initial_offset + max_offset;
++ } else {
++ rbs_min = vdsc_cfg->rc_model_size - vdsc_cfg->initial_offset +
++ DIV_ROUND_UP(vdsc_cfg->initial_xmit_delay *
++ vdsc_cfg->bits_per_pixel, 16) +
++ groups_per_line * vdsc_cfg->first_line_bpg_offset;
++ }
+
+ hrd_delay = DIV_ROUND_UP((rbs_min * 16), vdsc_cfg->bits_per_pixel);
+ vdsc_cfg->rc_bits = (hrd_delay * vdsc_cfg->bits_per_pixel) / 16;
+--
+2.17.1
+