Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 524d9f48 authored by Raphaël Assénat's avatar Raphaël Assénat Committed by Tomi Valkeinen
Browse files

OMAPDSS: Do not require a VDDS_DSI regulator on AM35xx



On our AM3505 based board, dpi.c complains that there is no VDDS_DSI
regulator and the framebuffer cannot be enabled. However, this check
does not seem to apply to AM3505/17 chips.

This patch adds new features list for AM35xxx, which is the same as for
OMAP3 except the VDDS_DSI is removed.

Signed-off-by: default avatarRaphael Assenat <raph@8d.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent fda7c362
Loading
Loading
Loading
Loading
+49 −2
Original line number Original line Diff line number Diff line
@@ -378,6 +378,25 @@ static const enum dss_feat_id omap3430_dss_feat_list[] = {
	FEAT_DPI_USES_VDDS_DSI,
	FEAT_DPI_USES_VDDS_DSI,
};
};


static const enum dss_feat_id am35xx_dss_feat_list[] = {
	FEAT_LCDENABLEPOL,
	FEAT_LCDENABLESIGNAL,
	FEAT_PCKFREEENABLE,
	FEAT_FUNCGATED,
	FEAT_LINEBUFFERSPLIT,
	FEAT_ROWREPEATENABLE,
	FEAT_RESIZECONF,
	FEAT_DSI_PLL_FREQSEL,
	FEAT_DSI_REVERSE_TXCLKESC,
	FEAT_VENC_REQUIRES_TV_DAC_CLK,
	FEAT_CPR,
	FEAT_PRELOAD,
	FEAT_FIR_COEF_V,
	FEAT_ALPHA_FIXED_ZORDER,
	FEAT_FIFO_MERGE,
	FEAT_OMAP3_DSI_FIFO_BUG,
};

static const enum dss_feat_id omap3630_dss_feat_list[] = {
static const enum dss_feat_id omap3630_dss_feat_list[] = {
	FEAT_LCDENABLEPOL,
	FEAT_LCDENABLEPOL,
	FEAT_LCDENABLESIGNAL,
	FEAT_LCDENABLESIGNAL,
@@ -490,6 +509,29 @@ static const struct omap_dss_features omap3430_dss_features = {
	.burst_size_unit = 8,
	.burst_size_unit = 8,
};
};


/*
 * AM35xx DSS Features. This is basically OMAP3 DSS Features without the
 * vdds_dsi regulator.
 */
static const struct omap_dss_features am35xx_dss_features = {
	.reg_fields = omap3_dss_reg_fields,
	.num_reg_fields = ARRAY_SIZE(omap3_dss_reg_fields),

	.features = am35xx_dss_feat_list,
	.num_features = ARRAY_SIZE(am35xx_dss_feat_list),

	.num_mgrs = 2,
	.num_ovls = 3,
	.supported_displays = omap3430_dss_supported_displays,
	.supported_color_modes = omap3_dss_supported_color_modes,
	.overlay_caps = omap3430_dss_overlay_caps,
	.clksrc_names = omap3_dss_clk_source_names,
	.dss_params = omap3_dss_param_range,
	.supported_rotation_types = OMAP_DSS_ROT_DMA | OMAP_DSS_ROT_VRFB,
	.buffer_size_unit = 1,
	.burst_size_unit = 8,
};

static const struct omap_dss_features omap3630_dss_features = {
static const struct omap_dss_features omap3630_dss_features = {
	.reg_fields = omap3_dss_reg_fields,
	.reg_fields = omap3_dss_reg_fields,
	.num_reg_fields = ARRAY_SIZE(omap3_dss_reg_fields),
	.num_reg_fields = ARRAY_SIZE(omap3_dss_reg_fields),
@@ -697,8 +739,13 @@ void dss_features_init(void)
		omap_current_dss_features = &omap2_dss_features;
		omap_current_dss_features = &omap2_dss_features;
	else if (cpu_is_omap3630())
	else if (cpu_is_omap3630())
		omap_current_dss_features = &omap3630_dss_features;
		omap_current_dss_features = &omap3630_dss_features;
	else if (cpu_is_omap34xx())
	else if (cpu_is_omap34xx()) {
		if (soc_is_am35xx()) {
			omap_current_dss_features = &am35xx_dss_features;
		} else {
			omap_current_dss_features = &omap3430_dss_features;
			omap_current_dss_features = &omap3430_dss_features;
		}
	}
	else if (omap_rev() == OMAP4430_REV_ES1_0)
	else if (omap_rev() == OMAP4430_REV_ES1_0)
		omap_current_dss_features = &omap4430_es1_0_dss_features;
		omap_current_dss_features = &omap4430_es1_0_dss_features;
	else if (omap_rev() == OMAP4430_REV_ES2_0 ||
	else if (omap_rev() == OMAP4430_REV_ES2_0 ||