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

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

Merge "msm: kgsl: Make sure first boot sequence is complete during touch event"

parents a5bfd602 fd1a8ee7
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -3168,8 +3168,12 @@ static void a6xx_gmu_touch_wakeup(struct adreno_device *adreno_dev)
	struct a6xx_gmu_device *gmu = to_a6xx_gmu(adreno_dev);
	int ret;

	/* Do not wake up a suspended device through touch event */
	if (test_bit(GMU_PRIV_PM_SUSPEND, &gmu->flags))
	/*
	 * Do not wake up a suspended device or until the first boot sequence
	 * has been completed.
	 */
	if (test_bit(GMU_PRIV_PM_SUSPEND, &gmu->flags) ||
		!test_bit(GMU_PRIV_FIRST_BOOT_DONE, &gmu->flags))
		return;

	if (test_bit(GMU_PRIV_GPU_STARTED, &gmu->flags))
+6 −2
Original line number Diff line number Diff line
@@ -897,8 +897,12 @@ static void a6xx_rgmu_touch_wakeup(struct adreno_device *adreno_dev)
	struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
	int ret;

	/* Do not wake up a suspended device through touch event */
	if (test_bit(RGMU_PRIV_PM_SUSPEND, &rgmu->flags))
	/*
	 * Do not wake up a suspended device or until the first boot sequence
	 * has been completed.
	 */
	if (test_bit(RGMU_PRIV_PM_SUSPEND, &rgmu->flags) ||
		!test_bit(RGMU_PRIV_FIRST_BOOT_DONE, &rgmu->flags))
		return;

	if (test_bit(RGMU_PRIV_GPU_STARTED, &rgmu->flags))