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

Commit e36ea8ed authored by Carter Cooper's avatar Carter Cooper
Browse files

msm: kgsl: Correct A608 CP mempool size



Change the size from 32 to the correct value of 48.

Change-Id: I52d401e4d326830b10b4040ea5453803869afd89
Signed-off-by: default avatarCarter Cooper <ccooper@codeaurora.org>
parent bdd63def
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -819,9 +819,9 @@ static void a6xx_start(struct adreno_device *adreno_dev)

	/* For a608 Mem pool size is reduced to 1/4 */
	if (adreno_is_a608(adreno_dev))
		kgsl_regwrite(device, A6XX_CP_MEM_POOL_SIZE, 32);
		kgsl_regwrite(device, A6XX_CP_MEM_POOL_SIZE, 0x30);
	else
		kgsl_regwrite(device, A6XX_CP_MEM_POOL_SIZE, 128);
		kgsl_regwrite(device, A6XX_CP_MEM_POOL_SIZE, 0x80);

	/* Setting the primFifo thresholds values */
	if (adreno_is_a640(adreno_dev))