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

Commit ccb43e33 authored by Abhijit Kulkarni's avatar Abhijit Kulkarni Committed by Gerrit - the friendly Code Review server
Browse files

msm: mdss: Fix the cursor max size for msmcobalt



On msmcobalt the max size supported for cursor pipes is
512x512 pixels. This change fixes the size of the cursor.

CRs-Fixed: 1070248
Change-Id: Iaf0490370f2469e80be0d949957906faed40abb7
Signed-off-by: default avatarAbhijit Kulkarni <kabhijit@codeaurora.org>
parent 3c7400dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1980,7 +1980,7 @@ static void mdss_mdp_hw_rev_caps_init(struct mdss_data_type *mdata)
	case MDSS_MDP_HW_REV_300:
	case MDSS_MDP_HW_REV_301:
		mdata->max_target_zorder = 7; /* excluding base layer */
		mdata->max_cursor_size = 384;
		mdata->max_cursor_size = 512;
		mdata->per_pipe_ib_factor.numer = 8;
		mdata->per_pipe_ib_factor.denom = 5;
		mdata->apply_post_scale_bytes = false;