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

Commit 17978e90 authored by Sridhar Arra's avatar Sridhar Arra
Browse files

soc: qcom: secure_buffer: add support for VMID_NAV



Add support for VMID_NAV and shared memory region will be given
access to vm-nav-path also.

Change-Id: I9798e095a1f8bb7a76abcc0ec0949ff26989ad6f
Signed-off-by: default avatarSridhar Arra <sarra@codeaurora.org>
parent 12c0afc9
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -425,6 +425,8 @@ const char *msm_secure_vmid_to_string(int secure_vmid)
		return "VMID_CP_SPSS_HLOS_SHARED";
	case VMID_INVAL:
		return "VMID_INVAL";
	case VMID_NAV:
		return "VMID_NAV";
	default:
		return "Unknown VMID";
	}
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ enum vmid {
	VMID_CP_SPSS_SP_SHARED = 0x22,
	VMID_CP_SPSS_HLOS_SHARED = 0x24,
	VMID_CP_CDSP = 0x2A,
	VMID_NAV = 0x2B,
	VMID_LAST,
	VMID_INVAL = -1
};