diff options
author | Maxime Ripard <maxime@cerno.tech> | 2020-10-15 11:36:42 +0200 |
---|---|---|
committer | Maxime Ripard <maxime@cerno.tech> | 2020-10-26 11:43:30 +0100 |
commit | e3190b5e9462067714d267c40d8c8c1d0463dda3 (patch) | |
tree | a8a6112b20eb88d15441b17869fa43b0d6f55ecb /drivers/gpu/drm | |
parent | drm/sun4i: frontend: Reuse the ch0 phase for RGB formats (diff) | |
download | linux-e3190b5e9462067714d267c40d8c8c1d0463dda3.tar.xz linux-e3190b5e9462067714d267c40d8c8c1d0463dda3.zip |
drm/sun4i: frontend: Fix the scaler phase on A33
The A33 has a different phase parameter in the Allwinner BSP on the
channel1 than the one currently applied. Fix this.
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Acked-by: Jernej Skrabec <jernej.skrabec@siol.net>
Link: https://patchwork.freedesktop.org/patch/msgid/20201015093642.261440-3-maxime@cerno.tech
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/sun4i/sun4i_frontend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/sun4i/sun4i_frontend.c b/drivers/gpu/drm/sun4i/sun4i_frontend.c index 80f0c4392fef..edb60ae0a9b7 100644 --- a/drivers/gpu/drm/sun4i/sun4i_frontend.c +++ b/drivers/gpu/drm/sun4i/sun4i_frontend.c @@ -694,7 +694,7 @@ static const struct sun4i_frontend_data sun4i_a10_frontend = { }; static const struct sun4i_frontend_data sun8i_a33_frontend = { - .ch_phase = { 0x400, 0x400 }, + .ch_phase = { 0x400, 0xfc400 }, .has_coef_access_ctrl = true, }; |