diff options
Diffstat (limited to 'drivers/gpu/drm/sun4i/sun8i_mixer.c')
| -rw-r--r-- | drivers/gpu/drm/sun4i/sun8i_mixer.c | 74 | 
1 files changed, 65 insertions, 9 deletions
diff --git a/drivers/gpu/drm/sun4i/sun8i_mixer.c b/drivers/gpu/drm/sun4i/sun8i_mixer.c index f5e8aeaa3cdf..875a1156c04e 100644 --- a/drivers/gpu/drm/sun4i/sun8i_mixer.c +++ b/drivers/gpu/drm/sun4i/sun8i_mixer.c @@ -298,9 +298,39 @@ static struct drm_plane **sun8i_layers_init(struct drm_device *drm,  	return planes;  } +static void sun8i_mixer_mode_set(struct sunxi_engine *engine, +				 const struct drm_display_mode *mode) +{ +	struct sun8i_mixer *mixer = engine_to_sun8i_mixer(engine); +	u32 bld_base, size, val; +	bool interlaced; + +	bld_base = sun8i_blender_base(mixer); +	interlaced = !!(mode->flags & DRM_MODE_FLAG_INTERLACE); +	size = SUN8I_MIXER_SIZE(mode->hdisplay, mode->vdisplay); + +	DRM_DEBUG_DRIVER("Updating global size W: %u H: %u\n", +			 mode->hdisplay, mode->vdisplay); + +	regmap_write(engine->regs, SUN8I_MIXER_GLOBAL_SIZE, size); +	regmap_write(engine->regs, SUN8I_MIXER_BLEND_OUTSIZE(bld_base), size); + +	if (interlaced) +		val = SUN8I_MIXER_BLEND_OUTCTL_INTERLACED; +	else +		val = 0; + +	regmap_update_bits(engine->regs, SUN8I_MIXER_BLEND_OUTCTL(bld_base), +			   SUN8I_MIXER_BLEND_OUTCTL_INTERLACED, val); + +	DRM_DEBUG_DRIVER("Switching display mixer interlaced mode %s\n", +			 interlaced ? "on" : "off"); +} +  static const struct sunxi_engine_ops sun8i_engine_ops = {  	.commit		= sun8i_mixer_commit,  	.layers_init	= sun8i_layers_init, +	.mode_set	= sun8i_mixer_mode_set,  };  static const struct regmap_config sun8i_mixer_regmap_config = { @@ -534,7 +564,7 @@ static int sun8i_mixer_remove(struct platform_device *pdev)  }  static const struct sun8i_mixer_cfg sun8i_a83t_mixer0_cfg = { -	.ccsc		= 0, +	.ccsc		= CCSC_MIXER0_LAYOUT,  	.scaler_mask	= 0xf,  	.scanline_yuv	= 2048,  	.ui_num		= 3, @@ -542,7 +572,7 @@ static const struct sun8i_mixer_cfg sun8i_a83t_mixer0_cfg = {  };  static const struct sun8i_mixer_cfg sun8i_a83t_mixer1_cfg = { -	.ccsc		= 1, +	.ccsc		= CCSC_MIXER1_LAYOUT,  	.scaler_mask	= 0x3,  	.scanline_yuv	= 2048,  	.ui_num		= 1, @@ -550,7 +580,7 @@ static const struct sun8i_mixer_cfg sun8i_a83t_mixer1_cfg = {  };  static const struct sun8i_mixer_cfg sun8i_h3_mixer0_cfg = { -	.ccsc		= 0, +	.ccsc		= CCSC_MIXER0_LAYOUT,  	.mod_rate	= 432000000,  	.scaler_mask	= 0xf,  	.scanline_yuv	= 2048, @@ -559,7 +589,7 @@ static const struct sun8i_mixer_cfg sun8i_h3_mixer0_cfg = {  };  static const struct sun8i_mixer_cfg sun8i_r40_mixer0_cfg = { -	.ccsc		= 0, +	.ccsc		= CCSC_MIXER0_LAYOUT,  	.mod_rate	= 297000000,  	.scaler_mask	= 0xf,  	.scanline_yuv	= 2048, @@ -568,7 +598,7 @@ static const struct sun8i_mixer_cfg sun8i_r40_mixer0_cfg = {  };  static const struct sun8i_mixer_cfg sun8i_r40_mixer1_cfg = { -	.ccsc		= 1, +	.ccsc		= CCSC_MIXER1_LAYOUT,  	.mod_rate	= 297000000,  	.scaler_mask	= 0x3,  	.scanline_yuv	= 2048, @@ -581,12 +611,30 @@ static const struct sun8i_mixer_cfg sun8i_v3s_mixer_cfg = {  	.ui_num = 1,  	.scaler_mask = 0x3,  	.scanline_yuv = 2048, -	.ccsc = 0, +	.ccsc = CCSC_MIXER0_LAYOUT,  	.mod_rate = 150000000,  }; +static const struct sun8i_mixer_cfg sun20i_d1_mixer0_cfg = { +	.ccsc		= CCSC_D1_MIXER0_LAYOUT, +	.mod_rate	= 297000000, +	.scaler_mask	= 0x3, +	.scanline_yuv	= 2048, +	.ui_num		= 1, +	.vi_num		= 1, +}; + +static const struct sun8i_mixer_cfg sun20i_d1_mixer1_cfg = { +	.ccsc		= CCSC_MIXER1_LAYOUT, +	.mod_rate	= 297000000, +	.scaler_mask	= 0x1, +	.scanline_yuv	= 1024, +	.ui_num		= 0, +	.vi_num		= 1, +}; +  static const struct sun8i_mixer_cfg sun50i_a64_mixer0_cfg = { -	.ccsc		= 0, +	.ccsc		= CCSC_MIXER0_LAYOUT,  	.mod_rate	= 297000000,  	.scaler_mask	= 0xf,  	.scanline_yuv	= 4096, @@ -595,7 +643,7 @@ static const struct sun8i_mixer_cfg sun50i_a64_mixer0_cfg = {  };  static const struct sun8i_mixer_cfg sun50i_a64_mixer1_cfg = { -	.ccsc		= 1, +	.ccsc		= CCSC_MIXER1_LAYOUT,  	.mod_rate	= 297000000,  	.scaler_mask	= 0x3,  	.scanline_yuv	= 2048, @@ -604,7 +652,7 @@ static const struct sun8i_mixer_cfg sun50i_a64_mixer1_cfg = {  };  static const struct sun8i_mixer_cfg sun50i_h6_mixer0_cfg = { -	.ccsc		= 0, +	.ccsc		= CCSC_MIXER0_LAYOUT,  	.is_de3		= true,  	.mod_rate	= 600000000,  	.scaler_mask	= 0xf, @@ -639,6 +687,14 @@ static const struct of_device_id sun8i_mixer_of_table[] = {  		.data = &sun8i_v3s_mixer_cfg,  	},  	{ +		.compatible = "allwinner,sun20i-d1-de2-mixer-0", +		.data = &sun20i_d1_mixer0_cfg, +	}, +	{ +		.compatible = "allwinner,sun20i-d1-de2-mixer-1", +		.data = &sun20i_d1_mixer1_cfg, +	}, +	{  		.compatible = "allwinner,sun50i-a64-de2-mixer-0",  		.data = &sun50i_a64_mixer0_cfg,  	},  |