2020-07-20 11:09:04 +08:00
|
|
|
use alloc::alloc::Layout;
|
2019-11-11 09:37:06 +08:00
|
|
|
use core::alloc::GlobalAlloc;
|
2020-07-20 11:09:04 +08:00
|
|
|
use core::cell::UnsafeCell;
|
2019-11-11 09:37:06 +08:00
|
|
|
use core::ptr::NonNull;
|
2019-12-18 06:35:58 +08:00
|
|
|
use libboard_zynq::ddr::DdrRam;
|
2020-07-20 11:09:04 +08:00
|
|
|
use libcortex_a9::regs::MPIDR;
|
|
|
|
use libregister::RegisterR;
|
|
|
|
use linked_list_allocator::Heap;
|
2019-11-11 09:37:06 +08:00
|
|
|
|
|
|
|
#[global_allocator]
|
2020-07-20 11:09:04 +08:00
|
|
|
static mut ALLOCATOR: CortexA9Alloc = CortexA9Alloc(
|
|
|
|
UnsafeCell::new(Heap::empty()),
|
|
|
|
UnsafeCell::new(Heap::empty()),
|
|
|
|
);
|
2019-11-11 09:37:06 +08:00
|
|
|
|
2020-07-20 11:09:04 +08:00
|
|
|
struct CortexA9Alloc(UnsafeCell<Heap>, UnsafeCell<Heap>);
|
2019-11-11 09:37:06 +08:00
|
|
|
|
2019-11-21 00:25:30 +08:00
|
|
|
unsafe impl Sync for CortexA9Alloc {}
|
2019-11-11 09:37:06 +08:00
|
|
|
|
2019-11-21 00:25:30 +08:00
|
|
|
unsafe impl GlobalAlloc for CortexA9Alloc {
|
2019-11-11 09:37:06 +08:00
|
|
|
unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
|
2020-07-28 12:20:25 +08:00
|
|
|
if cfg!(not(feature = "alloc_core")) || MPIDR.read().cpu_id() == 0 {
|
2020-07-20 11:09:04 +08:00
|
|
|
self.0.get().as_mut()
|
|
|
|
} else {
|
|
|
|
self.1.get().as_mut()
|
|
|
|
}
|
|
|
|
.unwrap()
|
|
|
|
.allocate_first_fit(layout)
|
|
|
|
.ok()
|
|
|
|
.map_or(0 as *mut u8, |allocation| allocation.as_ptr())
|
2019-11-11 09:37:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) {
|
2020-07-28 12:20:25 +08:00
|
|
|
if cfg!(not(feature = "alloc_core")) || MPIDR.read().cpu_id() == 0 {
|
2020-07-20 11:09:04 +08:00
|
|
|
self.0.get().as_mut()
|
|
|
|
} else {
|
|
|
|
self.1.get().as_mut()
|
|
|
|
}
|
|
|
|
.unwrap()
|
|
|
|
.deallocate(NonNull::new_unchecked(ptr), layout)
|
2019-11-11 09:37:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-20 11:09:04 +08:00
|
|
|
#[cfg(not(feature = "alloc_core"))]
|
2020-04-27 10:06:55 +08:00
|
|
|
pub fn init_alloc_ddr(ddr: &mut DdrRam) {
|
2019-11-11 09:37:06 +08:00
|
|
|
unsafe {
|
2020-07-20 11:09:04 +08:00
|
|
|
ALLOCATOR
|
|
|
|
.0
|
|
|
|
.get()
|
|
|
|
.as_mut()
|
|
|
|
.unwrap()
|
2019-11-11 09:37:06 +08:00
|
|
|
.init(ddr.ptr::<u8>() as usize, ddr.size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-20 11:09:04 +08:00
|
|
|
#[cfg(feature = "alloc_core")]
|
2020-04-27 10:06:55 +08:00
|
|
|
extern "C" {
|
2020-07-20 11:09:04 +08:00
|
|
|
static __heap0_start: usize;
|
|
|
|
static __heap0_end: usize;
|
|
|
|
static __heap1_start: usize;
|
|
|
|
static __heap1_end: usize;
|
2020-04-27 10:06:55 +08:00
|
|
|
}
|
|
|
|
|
2020-07-20 11:09:04 +08:00
|
|
|
#[cfg(feature = "alloc_core")]
|
|
|
|
pub fn init_alloc_core0() {
|
2020-04-27 10:06:55 +08:00
|
|
|
unsafe {
|
2020-07-20 11:09:04 +08:00
|
|
|
let start = &__heap0_start as *const usize as usize;
|
|
|
|
let end = &__heap0_end as *const usize as usize;
|
|
|
|
ALLOCATOR.0.get().as_mut().unwrap().init(start, end - start);
|
2020-04-27 10:06:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-20 11:09:04 +08:00
|
|
|
#[cfg(feature = "alloc_core")]
|
|
|
|
pub fn init_alloc_core1() {
|
|
|
|
unsafe {
|
|
|
|
let start = &__heap1_start as *const usize as usize;
|
|
|
|
let end = &__heap1_end as *const usize as usize;
|
|
|
|
ALLOCATOR.1.get().as_mut().unwrap().init(start, end - start);
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 09:37:06 +08:00
|
|
|
|
|
|
|
#[alloc_error_handler]
|
2020-07-20 11:09:04 +08:00
|
|
|
fn alloc_error(layout: core::alloc::Layout) -> ! {
|
|
|
|
let id = MPIDR.read().cpu_id();
|
|
|
|
let heap = unsafe {
|
2020-07-28 12:20:25 +08:00
|
|
|
if cfg!(not(feature = "alloc_core")) || id == 0 {
|
2020-07-20 11:09:04 +08:00
|
|
|
ALLOCATOR.0.get()
|
|
|
|
} else {
|
|
|
|
ALLOCATOR.1.get()
|
|
|
|
}
|
|
|
|
.as_mut()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
panic!(
|
|
|
|
"Core {} alloc_error, layout: {:?}, used memory: {}",
|
|
|
|
id,
|
|
|
|
layout,
|
|
|
|
heap.used()
|
|
|
|
);
|
2019-11-11 09:37:06 +08:00
|
|
|
}
|