From 8fce20f919676a9d8ad2813bdcab9a7cf4b838aa Mon Sep 17 00:00:00 2001 From: Bokdeuk Jeong Date: Thu, 23 May 2024 00:21:23 -0400 Subject: [PATCH] acs: configration for acs test Signed-off-by: Bokdeuk Jeong --- plat/fvp/Cargo.toml | 1 + scripts/fvp-cca | 2 ++ 2 files changed, 3 insertions(+) diff --git a/plat/fvp/Cargo.toml b/plat/fvp/Cargo.toml index 27299887b225d..b1a33ff71a965 100644 --- a/plat/fvp/Cargo.toml +++ b/plat/fvp/Cargo.toml @@ -17,6 +17,7 @@ max_level_debug = ["log/max_level_debug", "islet_rmm/max_level_debug"] max_level_trace = ["log/max_level_trace", "islet_rmm/max_level_trace"] stat = ["islet_rmm/stat"] realm_linux = ["islet_rmm/realm_linux"] +gst_page_table = ["islet_rmm/gst_page_table"] [dependencies] armv9a = { path = "../../lib/armv9a" } diff --git a/scripts/fvp-cca b/scripts/fvp-cca index 4b24ba3bdb141..0df1591ebccec 100755 --- a/scripts/fvp-cca +++ b/scripts/fvp-cca @@ -236,6 +236,8 @@ def get_rmm_features(args): features += ["--features", "stat"] if args.realm == "linux" or args.realm == "aosp" or args.use_prebuilt == True: features += ["--features", "realm_linux"] + if args.normal_world == "acs": + features += ["--features", "gst_page_table"] if features: print("[!] Setting", args.rmm, "features:", features)