|
@@ -41,7 +41,6 @@
|
|
|
* CPU Interface.
|
|
|
*/
|
|
|
|
|
|
-#define FIMD_DEFAULT_FRAMERATE 60
|
|
|
#define MIN_FB_WIDTH_FOR_16WORD_BURST 128
|
|
|
|
|
|
/* position control register for hardware window 0, 2 ~ 4.*/
|
|
@@ -377,16 +376,6 @@ static u32 fimd_calc_clkdiv(struct fimd_context *ctx,
|
|
|
return (clkdiv < 0x100) ? clkdiv : 0xff;
|
|
|
}
|
|
|
|
|
|
-static bool fimd_mode_fixup(struct exynos_drm_crtc *crtc,
|
|
|
- const struct drm_display_mode *mode,
|
|
|
- struct drm_display_mode *adjusted_mode)
|
|
|
-{
|
|
|
- if (adjusted_mode->vrefresh == 0)
|
|
|
- adjusted_mode->vrefresh = FIMD_DEFAULT_FRAMERATE;
|
|
|
-
|
|
|
- return true;
|
|
|
-}
|
|
|
-
|
|
|
static void fimd_commit(struct exynos_drm_crtc *crtc)
|
|
|
{
|
|
|
struct fimd_context *ctx = crtc->ctx;
|
|
@@ -888,7 +877,6 @@ static void fimd_dp_clock_enable(struct exynos_drm_crtc *crtc, bool enable)
|
|
|
static const struct exynos_drm_crtc_ops fimd_crtc_ops = {
|
|
|
.enable = fimd_enable,
|
|
|
.disable = fimd_disable,
|
|
|
- .mode_fixup = fimd_mode_fixup,
|
|
|
.commit = fimd_commit,
|
|
|
.enable_vblank = fimd_enable_vblank,
|
|
|
.disable_vblank = fimd_disable_vblank,
|