2020-07-09 04:32:45 +08:00
|
|
|
//! Kernel prologue/epilogue that runs on the 2nd CPU core
|
|
|
|
|
2020-07-09 05:42:55 +08:00
|
|
|
use core::{mem, ptr};
|
|
|
|
use alloc::borrow::ToOwned;
|
2020-07-09 04:32:45 +08:00
|
|
|
use log::{debug, info, error};
|
|
|
|
use cslice::CSlice;
|
|
|
|
|
2020-07-14 10:53:35 +08:00
|
|
|
use libcortex_a9::{
|
|
|
|
enable_fpu,
|
|
|
|
cache::{dcci_slice, iciallu, bpiall},
|
|
|
|
asm::{dsb, isb},
|
|
|
|
sync_channel
|
|
|
|
};
|
2020-07-09 05:42:55 +08:00
|
|
|
use dyld::{self, Library};
|
2020-07-09 04:32:45 +08:00
|
|
|
use crate::eh_artiq;
|
|
|
|
use super::{
|
|
|
|
api::resolve,
|
|
|
|
rpc::rpc_send_async,
|
|
|
|
CHANNEL_0TO1, CHANNEL_1TO0,
|
|
|
|
KERNEL_CHANNEL_0TO1, KERNEL_CHANNEL_1TO0,
|
|
|
|
Message,
|
|
|
|
};
|
|
|
|
|
|
|
|
/// will contain the kernel image address on the heap
|
|
|
|
static mut KERNEL_LOAD_ADDR: usize = 0;
|
|
|
|
|
|
|
|
unsafe fn attribute_writeback(typeinfo: *const ()) {
|
|
|
|
struct Attr {
|
|
|
|
offset: usize,
|
|
|
|
tag: CSlice<'static, u8>,
|
|
|
|
name: CSlice<'static, u8>
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Type {
|
|
|
|
attributes: *const *const Attr,
|
|
|
|
objects: *const *const ()
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut tys = typeinfo as *const *const Type;
|
|
|
|
while !(*tys).is_null() {
|
|
|
|
let ty = *tys;
|
|
|
|
tys = tys.offset(1);
|
|
|
|
|
|
|
|
let mut objects = (*ty).objects;
|
|
|
|
while !(*objects).is_null() {
|
|
|
|
let object = *objects;
|
|
|
|
objects = objects.offset(1);
|
|
|
|
|
|
|
|
let mut attributes = (*ty).attributes;
|
|
|
|
while !(*attributes).is_null() {
|
|
|
|
let attribute = *attributes;
|
|
|
|
attributes = attributes.offset(1);
|
|
|
|
|
|
|
|
if (*attribute).tag.len() > 0 {
|
|
|
|
rpc_send_async(0, &(*attribute).tag, [
|
|
|
|
&object as *const _ as *const (),
|
|
|
|
&(*attribute).name as *const _ as *const (),
|
|
|
|
(object as usize + (*attribute).offset) as *const ()
|
|
|
|
].as_ptr());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-09 05:42:55 +08:00
|
|
|
|
|
|
|
struct KernelImage {
|
|
|
|
library: Library,
|
|
|
|
__modinit__: u32,
|
|
|
|
typeinfo: Option<u32>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl KernelImage {
|
|
|
|
pub fn new(library: Library) -> Result<Self, dyld::Error> {
|
|
|
|
let __modinit__ = library.lookup(b"__modinit__")
|
|
|
|
.ok_or(dyld::Error::Lookup("__modinit__".to_owned()))?;
|
|
|
|
let typeinfo = library.lookup(b"typeinfo");
|
|
|
|
|
|
|
|
// clear .bss
|
|
|
|
let bss_start = library.lookup(b"__bss_start");
|
|
|
|
let end = library.lookup(b"_end");
|
|
|
|
if let Some(bss_start) = bss_start {
|
|
|
|
let end = end
|
|
|
|
.ok_or(dyld::Error::Lookup("_end".to_owned()))?;
|
|
|
|
unsafe {
|
|
|
|
ptr::write_bytes(bss_start as *mut u8, 0, (end - bss_start) as usize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(KernelImage {
|
|
|
|
library,
|
|
|
|
__modinit__,
|
|
|
|
typeinfo,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn exec(&mut self) {
|
|
|
|
// Flush data cache entries for the image in DDR, including
|
2020-07-10 16:36:45 +08:00
|
|
|
// Memory/Instruction Synchronization Barriers
|
2020-07-09 05:42:55 +08:00
|
|
|
dcci_slice(self.library.image.data);
|
2020-07-14 10:53:35 +08:00
|
|
|
dsb();
|
2020-07-10 17:17:52 +08:00
|
|
|
iciallu();
|
2020-07-14 10:53:35 +08:00
|
|
|
bpiall();
|
|
|
|
dsb();
|
|
|
|
isb();
|
2020-07-09 05:42:55 +08:00
|
|
|
|
|
|
|
(mem::transmute::<u32, fn()>(self.__modinit__))();
|
|
|
|
|
|
|
|
if let Some(typeinfo) = self.typeinfo {
|
|
|
|
attribute_writeback(typeinfo as *const ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-09 04:32:45 +08:00
|
|
|
#[no_mangle]
|
|
|
|
pub fn main_core1() {
|
|
|
|
debug!("Core1 started");
|
|
|
|
|
|
|
|
enable_fpu();
|
|
|
|
debug!("FPU enabled on Core1");
|
|
|
|
|
|
|
|
let mut core1_tx = None;
|
|
|
|
while core1_tx.is_none() {
|
|
|
|
core1_tx = CHANNEL_1TO0.lock().take();
|
|
|
|
}
|
|
|
|
let mut core1_tx = core1_tx.unwrap();
|
|
|
|
|
|
|
|
let mut core1_rx = None;
|
|
|
|
while core1_rx.is_none() {
|
|
|
|
core1_rx = CHANNEL_0TO1.lock().take();
|
|
|
|
}
|
|
|
|
let mut core1_rx = core1_rx.unwrap();
|
|
|
|
|
2020-07-09 05:42:55 +08:00
|
|
|
// set on load, cleared on start
|
|
|
|
let mut loaded_kernel = None;
|
2020-07-09 04:32:45 +08:00
|
|
|
loop {
|
|
|
|
let message = core1_rx.recv();
|
|
|
|
match *message {
|
|
|
|
Message::LoadRequest(data) => {
|
2020-07-09 05:42:55 +08:00
|
|
|
let result = dyld::load(&data, &resolve)
|
|
|
|
.and_then(KernelImage::new);
|
|
|
|
match result {
|
|
|
|
Ok(kernel) => {
|
2020-07-09 04:32:45 +08:00
|
|
|
unsafe {
|
2020-07-09 05:42:55 +08:00
|
|
|
KERNEL_LOAD_ADDR = kernel.library.image.as_ptr() as usize;
|
2020-07-09 04:32:45 +08:00
|
|
|
}
|
2020-07-09 05:42:55 +08:00
|
|
|
loaded_kernel = Some(kernel);
|
2020-07-09 04:32:45 +08:00
|
|
|
debug!("kernel loaded");
|
|
|
|
core1_tx.send(Message::LoadCompleted);
|
|
|
|
},
|
|
|
|
Err(error) => {
|
|
|
|
error!("failed to load shared library: {}", error);
|
|
|
|
core1_tx.send(Message::LoadFailed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Message::StartRequest => {
|
|
|
|
info!("kernel starting");
|
2020-07-09 05:42:55 +08:00
|
|
|
if let Some(mut kernel) = loaded_kernel.take() {
|
2020-07-09 04:32:45 +08:00
|
|
|
unsafe {
|
|
|
|
KERNEL_CHANNEL_0TO1 = mem::transmute(&mut core1_rx);
|
|
|
|
KERNEL_CHANNEL_1TO0 = mem::transmute(&mut core1_tx);
|
2020-07-09 05:42:55 +08:00
|
|
|
kernel.exec();
|
2020-07-09 04:32:45 +08:00
|
|
|
KERNEL_CHANNEL_0TO1 = ptr::null_mut();
|
|
|
|
KERNEL_CHANNEL_1TO0 = ptr::null_mut();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
info!("kernel finished");
|
|
|
|
core1_tx.send(Message::KernelFinished);
|
|
|
|
}
|
|
|
|
_ => error!("Core1 received unexpected message: {:?}", message),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Called by eh_artiq
|
|
|
|
pub fn terminate(exception: &'static eh_artiq::Exception<'static>, backtrace: &'static mut [usize]) -> ! {
|
|
|
|
let load_addr = unsafe {
|
|
|
|
KERNEL_LOAD_ADDR
|
|
|
|
};
|
|
|
|
let mut cursor = 0;
|
|
|
|
// The address in the backtrace is relocated, so we have to convert it back to the address in
|
|
|
|
// the original python script, and remove those Rust function backtrace.
|
|
|
|
for i in 0..backtrace.len() {
|
|
|
|
if backtrace[i] >= load_addr {
|
|
|
|
backtrace[cursor] = backtrace[i] - load_addr;
|
|
|
|
cursor += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let core1_tx: &mut sync_channel::Sender<Message> = unsafe { mem::transmute(KERNEL_CHANNEL_1TO0) };
|
|
|
|
core1_tx.send(Message::KernelException(exception, &backtrace[..cursor]));
|
|
|
|
loop {}
|
|
|
|
}
|