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

Commit dacc441b authored by Puranam V G Tejaswi's avatar Puranam V G Tejaswi
Browse files

msm: kgsl: Make sure GPU is idle before changing the CPAPRIV bit



Add WAIT_FOR_IDLE and WAIT_FOR_ME/WAIT_FOR_CP_FLUSH commands before
adding commands to change the CPAPRIV bit. In absence of these
synchronizing commands write permission faults to pagetable_desc
are observed.

Change-Id: I1d47fd050a9d9f97858ee24b22a2a3cf99cc5e69
Signed-off-by: default avatarPuranam V G Tejaswi <pvgtejas@codeaurora.org>
parent febeb7a6
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -188,6 +188,8 @@ static unsigned int _adreno_iommu_set_pt_v2_a5xx(struct kgsl_device *device,
	*cmds++ = contextidr;


	*cmds++ = cp_type7_packet(CP_WAIT_FOR_IDLE, 0);
	*cmds++ = cp_type7_packet(CP_WAIT_FOR_ME, 0);
	*cmds++ = cp_type4_packet(A5XX_CP_CNTL, 1);
	*cmds++ = 1;

@@ -198,6 +200,8 @@ static unsigned int _adreno_iommu_set_pt_v2_a5xx(struct kgsl_device *device,
	*cmds++ = upper_32_bits(ttbr0);
	*cmds++ = contextidr;

	*cmds++ = cp_type7_packet(CP_WAIT_FOR_IDLE, 0);
	*cmds++ = cp_type7_packet(CP_WAIT_FOR_ME, 0);
	*cmds++ = cp_type4_packet(A5XX_CP_CNTL, 1);
	*cmds++ = 0;

@@ -221,6 +225,8 @@ static unsigned int _adreno_iommu_set_pt_v2_a6xx(struct kgsl_device *device,
	*cmds++ = cb_num;

	if (!ADRENO_FEATURE(adreno_dev, ADRENO_APRIV)) {
		*cmds++ = cp_type7_packet(CP_WAIT_FOR_IDLE, 0);
		*cmds++ = cp_type7_packet(CP_WAIT_FOR_CP_FLUSH, 0);
		*cmds++ = cp_type4_packet(A6XX_CP_MISC_CNTL, 1);
		*cmds++ = 1;
	}
@@ -233,6 +239,8 @@ static unsigned int _adreno_iommu_set_pt_v2_a6xx(struct kgsl_device *device,
	*cmds++ = contextidr;

	if (!ADRENO_FEATURE(adreno_dev, ADRENO_APRIV)) {
		*cmds++ = cp_type7_packet(CP_WAIT_FOR_IDLE, 0);
		*cmds++ = cp_type7_packet(CP_WAIT_FOR_CP_FLUSH, 0);
		*cmds++ = cp_type4_packet(A6XX_CP_MISC_CNTL, 1);
		*cmds++ = 0;
	}
+3 −0
Original line number Diff line number Diff line
@@ -122,6 +122,9 @@
/* PFP waits until the FIFO between the PFP and the ME is empty */
#define CP_WAIT_FOR_ME		0x13

/* Stall the SQE until the CP processing pipeline is empty */
#define CP_WAIT_FOR_CP_FLUSH 0x13

#define CP_SET_PROTECTED_MODE  0x5f /* sets the register protection mode */

/* Used to switch GPU between secure and non-secure modes */