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

Commit b50f6322 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: kgsl: Allow different GPU frequency table based on feature flag"

parents 9881e48f eb125168
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -2393,6 +2393,14 @@ static void a6xx_platform_setup(struct adreno_device *adreno_dev)

	/* Check efuse bits for various capabilties */
	a6xx_check_features(adreno_dev);

	/*
	 * A640 GPUs used a fuse to determine which frequency plan to
	 * use for the GPU. For A650 GPUs enable using higher frequencies
	 * based on the LM feature flag.
	 */
	if (adreno_is_a650(adreno_dev) && ADRENO_FEATURE(adreno_dev, ADRENO_LM))
		adreno_dev->speed_bin = 1;
}