drm/sun4i: dsi: Fix front vs back porch calculation
Since I always confuse the back and front porches, a few miscalculation slipped through. Fix them. Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com> Link: https://patchwork.freedesktop.org/patch/msgid/90c2375b8a853cae0dcc135cedb47edbc26168d8.1549896081.git-series.maxime.ripard@bootlin.com
This commit is contained in:
parent
efa3180120
commit
2cfdc24d2f
@ -478,7 +478,7 @@ static void sun6i_dsi_setup_timings(struct sun6i_dsi *dsi,
|
|||||||
*/
|
*/
|
||||||
#define HBP_PACKET_OVERHEAD 6
|
#define HBP_PACKET_OVERHEAD 6
|
||||||
hbp = max((unsigned int)HBP_PACKET_OVERHEAD,
|
hbp = max((unsigned int)HBP_PACKET_OVERHEAD,
|
||||||
(mode->hsync_start - mode->hdisplay) * Bpp - HBP_PACKET_OVERHEAD);
|
(mode->htotal - mode->hsync_end) * Bpp - HBP_PACKET_OVERHEAD);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The frontporch is set using a blanking packet (4 bytes +
|
* The frontporch is set using a blanking packet (4 bytes +
|
||||||
@ -486,7 +486,7 @@ static void sun6i_dsi_setup_timings(struct sun6i_dsi *dsi,
|
|||||||
*/
|
*/
|
||||||
#define HFP_PACKET_OVERHEAD 6
|
#define HFP_PACKET_OVERHEAD 6
|
||||||
hfp = max((unsigned int)HFP_PACKET_OVERHEAD,
|
hfp = max((unsigned int)HFP_PACKET_OVERHEAD,
|
||||||
(mode->htotal - mode->hsync_end) * Bpp - HFP_PACKET_OVERHEAD);
|
(mode->hsync_start - mode->hdisplay) * Bpp - HFP_PACKET_OVERHEAD);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* hblk seems to be the line + porches length.
|
* hblk seems to be the line + porches length.
|
||||||
@ -532,8 +532,8 @@ static void sun6i_dsi_setup_timings(struct sun6i_dsi *dsi,
|
|||||||
regmap_write(dsi->regs, SUN6I_DSI_BASIC_SIZE0_REG,
|
regmap_write(dsi->regs, SUN6I_DSI_BASIC_SIZE0_REG,
|
||||||
SUN6I_DSI_BASIC_SIZE0_VSA(mode->vsync_end -
|
SUN6I_DSI_BASIC_SIZE0_VSA(mode->vsync_end -
|
||||||
mode->vsync_start) |
|
mode->vsync_start) |
|
||||||
SUN6I_DSI_BASIC_SIZE0_VBP(mode->vsync_start -
|
SUN6I_DSI_BASIC_SIZE0_VBP(mode->vtotal -
|
||||||
mode->vdisplay));
|
mode->vsync_end));
|
||||||
|
|
||||||
regmap_write(dsi->regs, SUN6I_DSI_BASIC_SIZE1_REG,
|
regmap_write(dsi->regs, SUN6I_DSI_BASIC_SIZE1_REG,
|
||||||
SUN6I_DSI_BASIC_SIZE1_VACT(mode->vdisplay) |
|
SUN6I_DSI_BASIC_SIZE1_VACT(mode->vdisplay) |
|
||||||
|
Loading…
Reference in New Issue
Block a user