summaryrefslogtreecommitdiffstats
path: root/bsp/meta-renesas-rcar-gen3/meta-rcar-gen3/recipes-kernel/kernel-module-vspm/kernel-module-vspm/0001-Set-UDS-horizontal-scaling-phase-to-auto.patch
diff options
context:
space:
mode:
Diffstat (limited to 'bsp/meta-renesas-rcar-gen3/meta-rcar-gen3/recipes-kernel/kernel-module-vspm/kernel-module-vspm/0001-Set-UDS-horizontal-scaling-phase-to-auto.patch')
-rw-r--r--bsp/meta-renesas-rcar-gen3/meta-rcar-gen3/recipes-kernel/kernel-module-vspm/kernel-module-vspm/0001-Set-UDS-horizontal-scaling-phase-to-auto.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/bsp/meta-renesas-rcar-gen3/meta-rcar-gen3/recipes-kernel/kernel-module-vspm/kernel-module-vspm/0001-Set-UDS-horizontal-scaling-phase-to-auto.patch b/bsp/meta-renesas-rcar-gen3/meta-rcar-gen3/recipes-kernel/kernel-module-vspm/kernel-module-vspm/0001-Set-UDS-horizontal-scaling-phase-to-auto.patch
deleted file mode 100644
index 17bf6233..00000000
--- a/bsp/meta-renesas-rcar-gen3/meta-rcar-gen3/recipes-kernel/kernel-module-vspm/kernel-module-vspm/0001-Set-UDS-horizontal-scaling-phase-to-auto.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From dd7dffa07065100c3164ca94a1d4395712e647cd Mon Sep 17 00:00:00 2001
-From: Damian Hobson-Garcia <dhobsong@igel.co.jp>
-Date: Mon, 3 Jun 2019 12:33:57 +0900
-Subject: [PATCH] Set UDS horizontal scaling phase to auto
-
-Use the register default settings for the scaling phase instead
-of manually calculating them.
-
-The default setting seems to calculate the phase correctly,
-which the manual settings seem to shift the output image to the left
-my an amount proportional to the scaling ratio. i.e x16 scaling
-will shift the output by 16 pixels.
----
- vspm-module/files/vspm/drv/vsp/vsp_drv_phy.c | 10 ----------
- 1 file changed, 10 deletions(-)
-
-diff --git a/vspm-module/files/vspm/drv/vsp/vsp_drv_phy.c b/vspm-module/files/vspm/drv/vsp/vsp_drv_phy.c
-index 8f63565..6f89bae 100644
---- a/vspm-module/files/vspm/drv/vsp/vsp_drv_phy.c
-+++ b/vspm-module/files/vspm/drv/vsp/vsp_drv_phy.c
-@@ -1454,16 +1454,6 @@ static void vsp_ins_replace_part_uds_module(
- r_temp *= ratio;
- }
-
-- /* add horizontal filter phase of control register */
-- uds_info->val_ctrl |= VSP_UDS_CTRL_AMDSLH;
--
-- /* replace scaling filter horizontal phase */
-- if (l_temp & 0xfff)
-- uds_info->val_hphase = (4096 - (l_temp & 0xfff)) << 16;
-- else
-- uds_info->val_hphase = 0;
-- if (r_temp & 0xfff)
-- uds_info->val_hphase |= (4096 - (r_temp & 0xfff));
- } else {
- l_temp *= 4096;
- r_temp *= 4096;
---
-2.17.1
-