aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJyri Sarha <jsarha@ti.com>2017-02-08 09:08:06 -0500
committerTomi Valkeinen <tomi.valkeinen@ti.com>2017-02-16 07:11:08 -0500
commit1b30ab0c40a99da347c1ab83c30b485e03fe9f64 (patch)
treebd084ce1b08ce56cd1d70b90108e5e8cbeb56c93 /drivers
parent897145d0c7010b4e07fa9bc674b1dfb9a2c6fff9 (diff)
drm/omapdrm: dispc: Refuse x-decimation above 4 for all but 8-bit formats
Let's disable all scaling that requires horizontal decimation with higher factor than 4, until we have better estimates of what we can and can not do. However, NV12 color format appears to work Ok with all decimation factors. When decimating horizontally by more that 4 the dss is not able to fetch the data in burst mode. When this happens it is hard to tell if there enough bandwidth. Despite what theory says this appears to be true also for 16-bit color formats. Signed-off-by: Jyri Sarha <jsarha@ti.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/omapdrm/dss/dispc.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/gpu/drm/omapdrm/dss/dispc.c b/drivers/gpu/drm/omapdrm/dss/dispc.c
index 5554b72cf56a..d956e6266368 100644
--- a/drivers/gpu/drm/omapdrm/dss/dispc.c
+++ b/drivers/gpu/drm/omapdrm/dss/dispc.c
@@ -2506,6 +2506,25 @@ static int dispc_ovl_calc_scaling_44xx(unsigned long pclk, unsigned long lclk,
2506 return -EINVAL; 2506 return -EINVAL;
2507 } 2507 }
2508 2508
2509 if (*decim_x > 4 && color_mode != OMAP_DSS_COLOR_NV12) {
2510 /*
2511 * Let's disable all scaling that requires horizontal
2512 * decimation with higher factor than 4, until we have
2513 * better estimates of what we can and can not
2514 * do. However, NV12 color format appears to work Ok
2515 * with all decimation factors.
2516 *
2517 * When decimating horizontally by more that 4 the dss
2518 * is not able to fetch the data in burst mode. When
2519 * this happens it is hard to tell if there enough
2520 * bandwidth. Despite what theory says this appears to
2521 * be true also for 16-bit color formats.
2522 */
2523 DSSERR("Not enough bandwidth, too much downscaling (x-decimation factor %d > 4)", *decim_x);
2524
2525 return -EINVAL;
2526 }
2527
2509 *core_clk = dispc.feat->calc_core_clk(pclk, in_width, in_height, 2528 *core_clk = dispc.feat->calc_core_clk(pclk, in_width, in_height,
2510 out_width, out_height, mem_to_mem); 2529 out_width, out_height, mem_to_mem);
2511 return 0; 2530 return 0;