microsoft/mu_feature_ffa

Public

mirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
repo-sync/mu_devops/default

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

FfaFeaturePkg/SecurePartitions/MsSecurePartitionRust/src/baremetal/mod.rs

13lines · modecode

1mod interrupt;
2mod panic;
3
4use aarch64_rt::entry;
5use ec_service_lib::SpLogger;
6
7entry!(aarch64_rt_main);
8fn aarch64_rt_main(_arg0: u64, _arg1: u64, _arg2: u64, _arg3: u64) -> ! {
9 // loop here to prevent the compiler from optimizing away the entry point
10 log::set_logger(&SpLogger).unwrap();
11 log::set_max_level(log::LevelFilter::Info);
12 crate::main();
13}
14