Alice Wang | 4dd2093 | 2023-05-26 13:47:16 +0000 | [diff] [blame] | 1 | // Copyright 2023, The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | //! Memory management. |
| 16 | |
| 17 | mod dbm; |
Alice Wang | 110476e | 2023-06-07 13:12:21 +0000 | [diff] [blame] | 18 | mod error; |
Alice Wang | f47b234 | 2023-06-02 11:51:57 +0000 | [diff] [blame] | 19 | mod shared; |
Pierre-Clément Tosi | eba8316 | 2024-11-02 12:11:48 +0000 | [diff] [blame] | 20 | mod stack; |
Pierre-Clément Tosi | 90dfd69 | 2024-10-30 19:36:46 +0000 | [diff] [blame] | 21 | mod tracker; |
Alice Wang | f47b234 | 2023-06-02 11:51:57 +0000 | [diff] [blame] | 22 | mod util; |
Alice Wang | 4dd2093 | 2023-05-26 13:47:16 +0000 | [diff] [blame] | 23 | |
Alice Wang | 110476e | 2023-06-07 13:12:21 +0000 | [diff] [blame] | 24 | pub use error::MemoryTrackerError; |
Pierre-Clément Tosi | 90dfd69 | 2024-10-30 19:36:46 +0000 | [diff] [blame] | 25 | pub use shared::MemoryRange; |
Pierre-Clément Tosi | c26e220 | 2024-11-01 23:12:23 +0000 | [diff] [blame] | 26 | pub use tracker::{ |
Pierre-Clément Tosi | 02c6f56 | 2024-12-06 19:12:24 +0000 | [diff] [blame] | 27 | deactivate_dynamic_page_tables, init_shared_pool, map_data, map_data_noflush, map_device, |
| 28 | map_image_footer, map_rodata, map_rodata_outside_main_memory, resize_available_memory, |
| 29 | unshare_all_memory, unshare_all_mmio_except_uart, unshare_uart, |
Pierre-Clément Tosi | c26e220 | 2024-11-01 23:12:23 +0000 | [diff] [blame] | 30 | }; |
Michał Mazurek | 5b29469 | 2024-11-29 13:05:46 +0100 | [diff] [blame^] | 31 | |
| 32 | #[cfg(target_arch = "aarch64")] |
| 33 | pub use crate::arch::aarch64::page_table::PageTable; |
| 34 | |
Alice Wang | 3fa9b80 | 2023-06-06 07:52:31 +0000 | [diff] [blame] | 35 | pub use util::{ |
Pierre-Clément Tosi | 8ab7c37 | 2024-10-30 20:46:04 +0000 | [diff] [blame] | 36 | flush, flushed_zeroize, page_4kb_of, PAGE_SIZE, SIZE_128KB, SIZE_16KB, SIZE_2MB, SIZE_4KB, |
| 37 | SIZE_4MB, SIZE_64KB, |
Alice Wang | 3fa9b80 | 2023-06-06 07:52:31 +0000 | [diff] [blame] | 38 | }; |
Alice Wang | 6c4cda0 | 2023-07-18 08:18:07 +0000 | [diff] [blame] | 39 | |
| 40 | pub(crate) use shared::{alloc_shared, dealloc_shared}; |
Pierre-Clément Tosi | eba8316 | 2024-11-02 12:11:48 +0000 | [diff] [blame] | 41 | pub(crate) use stack::max_stack_size; |
Pierre-Clément Tosi | ae07161 | 2024-11-02 13:13:34 +0000 | [diff] [blame] | 42 | pub(crate) use tracker::{switch_to_dynamic_page_tables, MEMORY}; |
Alice Wang | 6c4cda0 | 2023-07-18 08:18:07 +0000 | [diff] [blame] | 43 | pub(crate) use util::{phys_to_virt, virt_to_phys}; |