blob: 9960f65dcf0c3c16fb2090f1a407457a63695a7f [file] [log] [blame]
Patrick Williams7784c422022-11-17 07:29:11 -06001From 1fef5bd2504ce3a203c56a3b66dba773cd4893c6 Mon Sep 17 00:00:00 2001
Patrick Williams8dd68482022-10-04 07:57:18 -05002From: Davidson K <davidson.kumaresan@arm.com>
3Date: Thu, 8 Sep 2022 10:47:10 +0530
4Subject: [PATCH] feat(vhe): enable vhe and disable branch protection for TC
5
6Signed-off-by: Davidson K <davidson.kumaresan@arm.com>
7Change-Id: I60cd607d9f2bf0114b482980e7ca68e24aaf4d1f
8Upstream-Status: Pending [Not submitted to upstream yet]
9---
10 BUILD.gn | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/BUILD.gn b/BUILD.gn
14index 62ba763..f26ce03 100644
15--- a/BUILD.gn
16+++ b/BUILD.gn
17@@ -238,7 +238,6 @@ aarch64_toolchains("secure_tc") {
18 heap_pages = 120
19 max_cpus = 8
20 max_vms = 16
21- branch_protection = "standard"
22 toolchain_args = {
23 plat_ffa = "//src/arch/aarch64/plat/ffa:spmc"
24 plat_psci = "//src/arch/aarch64/plat/psci:spmc"
25@@ -247,5 +246,6 @@ aarch64_toolchains("secure_tc") {
26 secure_world = "1"
27 pl011_base_address = "0x7ff80000"
28 enable_mte = "1"
29+ enable_vhe = "1"
30 }
31 }