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

Commit 1a02b381 authored by Carter Cooper's avatar Carter Cooper Committed by Harshdeep Dhatt
Browse files

msm: kgsl: Update fence span range to a byte span



The span range is now in bytes not dwords, so adjust accordingly.

Change-Id: I16eb9d4e1c214375737f1d41802715988d9eca1e
Signed-off-by: default avatarCarter Cooper <ccooper@codeaurora.org>
parent 6d9eff91
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,8 +30,8 @@
		GMU_INT_HOST_AHB_BUS_ERR |	\
		GMU_INT_FENCE_ERR)

#define MAX_GMUFW_SIZE	0x2000	/* in dwords */
#define FENCE_RANGE_MASK	((0x1 << 31) | (0x0A << 18) | (0x8A0))
#define MAX_GMUFW_SIZE	0x2000	/* in bytes */
#define FENCE_RANGE_MASK	((0x1 << 31) | ((0xA << 2) << 18) | (0x8A0))

/* Bitmask for GPU low power mode enabling and hysterisis*/
#define SPTP_ENABLE_MASK (BIT(2) | BIT(0))