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

Commit cfaa5429 authored by Govinda Rajulu Chenna's avatar Govinda Rajulu Chenna Committed by Gerrit - the friendly Code Review server
Browse files

drm/msm/sde: introduce sde_intf_te feature flag for sde intf blk



MDSS 4.0.0 has tear-effect configuration logic in ping-pong module
where it is moved to interface module in MDSS 5.0.0. Tear-effect
configuration ops are present in both ping-pong and interface module.
The enablement of tear-effect configuration ops are controlled using
the feature flag that is enabled based on MDSS version.

This change introduces a new feature flag, sde_intf_te, for interface
module. This new flag  is used to enable tear-effect configuration
logic for interface module in future implementations.

Change-Id: I0da32b77c56cab85c83b2314413504b8f7c2ee09
Signed-off-by: default avatarGovinda Rajulu Chenna <gchenna@codeaurora.org>
parent 1b2e4730
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -271,11 +271,13 @@ enum {
 * @SDE_INTF_ROT_START          INTF supports rotator start trigger
 * @SDE_INTF_INPUT_CTRL         Supports the setting of pp block from which
 *                              pixel data arrives to this INTF
 * @SDE_INTF_TE                 INTF block has TE configuration support
 * @SDE_INTF_MAX
 */
enum {
	SDE_INTF_ROT_START = 0x1,
	SDE_INTF_INPUT_CTRL,
	SDE_INTF_TE,
	SDE_INTF_MAX
};