1
0
Fork 0
forked from koniifer/ableos
ableos-framebuffer/ableos/src/scratchpad.rs

109 lines
2.3 KiB
Rust
Raw Normal View History

2022-02-18 10:04:10 -06:00
use alloc::{format, vec::Vec};
2022-02-08 03:01:29 -06:00
/// Experimental scratchpad for testing.
pub fn scratchpad() {
2022-02-18 10:04:10 -06:00
/*
2022-02-12 03:25:02 -06:00
let mut dev_list = Vec::new();
2022-02-08 03:01:29 -06:00
2022-02-18 10:04:10 -06:00
let bus_scan;
unsafe {
bus_scan = pci::scan_bus(&PciIO {}, pci::CSpaceAccessMethod::IO);
}
for dev in bus_scan {
dev_list.push(dev);
}
2022-02-08 03:01:29 -06:00
2022-02-18 10:04:10 -06:00
let device_table = &mut *DEVICE_TABLE.lock();
2022-02-08 04:13:53 -06:00
2022-02-18 10:04:10 -06:00
for x in dev_list {
let device_name = format!("{:?}-{}", DeviceClass::from_u8(x.id.class), x.id.device_id);
2022-02-08 04:13:53 -06:00
2022-02-18 10:04:10 -06:00
device_table
.devices
.insert(device_name.clone(), Device::Pci(x));
}
*/
2022-02-18 02:24:10 -06:00
/*
for (key, _value) in device_table.devices.iter() {
debug!("{}", key);
}
*/
2022-02-17 04:05:56 -06:00
// interp();
2022-02-18 02:24:10 -06:00
// rhai_shell();
2022-02-08 04:13:53 -06:00
}
2022-02-18 10:04:10 -06:00
/*
2022-02-12 03:25:02 -06:00
pub struct PciIO {}
impl PortOps for PciIO {
unsafe fn read8(&self, port: u16) -> u8 {
cpuio::inb(port as u16)
}
unsafe fn read16(&self, port: u16) -> u16 {
cpuio::inw(port as u16)
}
unsafe fn read32(&self, port: u16) -> u32 {
cpuio::inl(port as u16)
}
unsafe fn write8(&self, port: u16, val: u8) {
cpuio::outb(val, port as u16);
}
unsafe fn write16(&self, port: u16, val: u16) {
cpuio::outw(val, port as u16);
}
unsafe fn write32(&self, port: u16, val: u32) {
cpuio::outl(val, port as u16);
}
}
2022-02-18 10:04:10 -06:00
*/
2022-02-17 04:05:56 -06:00
/*
2022-02-12 03:25:02 -06:00
/// An experimental process message format
pub struct ProcessMessage {
pub to_pid: PID,
pub from_pid: PID,
pub message: [u8; 2048],
pub sender_time: SecondsTime,
}
//
2022-02-17 04:05:56 -06:00
// use libwasm::syscalls::time_calls::SecondsTime;
2022-02-12 03:25:02 -06:00
impl ProcessMessage {
pub fn new(to_pid: PID, from_pid: PID, message: [u8; 2048]) -> Self {
ProcessMessage {
to_pid,
from_pid,
message,
sender_time: SecondsTime {
seconds: 0,
milliseconds: 0,
},
}
}
}
2022-02-17 04:05:56 -06:00
*/
pub fn rhai_shell() {
let mut engine = rhai::Engine::new();
let ret = engine.eval::<i64>("1 + 2");
match ret {
2022-02-18 10:04:10 -06:00
// Ok(x) => println!("{}", x),
// Err(e) => println!("{}", e),
_ => (),
2022-02-17 04:05:56 -06:00
}
loop {}
}
lazy_static::lazy_static!(
pub static ref KEYBUFF: spin::Mutex<Vec<char>> = spin::Mutex::new(
Vec::new())
;
);