commit | b236bfee9a9362bd35b299c11184138edc0359c5 | [log] [tgz] |
---|---|---|
author | Michael Hoang <hoangm@google.com> | Thu Aug 11 14:27:42 2022 -0700 |
committer | Michael Hoang <hoangm@google.com> | Thu Aug 11 14:27:42 2022 -0700 |
tree | 09617727e71f400af05e1c0a49c583c3612ab191 | |
parent | 07e28eb91bd07f2dae3150d1d052e335dc1854c5 [diff] |
Update smc control block addr to match hw Change-Id: I8710aea255dce55bbd62902a28d26a9ae157e3b5
diff --git a/utils/src/lib.rs b/utils/src/lib.rs index 6c78251..bb6f8f1 100644 --- a/utils/src/lib.rs +++ b/utils/src/lib.rs
@@ -6,7 +6,7 @@ pub mod elf_loader; pub mod tar_loader; -pub const SMC_CONTROL_BLOCK: *mut u32 = 0x50020000 as *mut u32; +pub const SMC_CONTROL_BLOCK: *mut u32 = 0x54020000 as *mut u32; fn round_up_to_page(addr: u32) -> u32 { return (addr + 4095) & !4095;