From df9d85a1a5fb8c3d115b77fc3a914edbf03a3a81 Mon Sep 17 00:00:00 2001 From: Julien CLEMENT Date: Wed, 14 Dec 2022 21:28:38 +0100 Subject: [PATCH] add bugged asynchronous read_block Signed-off-by: Julien CLEMENT --- src/drivers/atapi/mod.rs | 100 ++++++++++++++++++++++++++++++++++++- src/interrupts/pic/disk.rs | 1 + src/lib.rs | 3 +- 3 files changed, 100 insertions(+), 4 deletions(-) diff --git a/src/drivers/atapi/mod.rs b/src/drivers/atapi/mod.rs index a2ffe2b..8d6ca03 100644 --- a/src/drivers/atapi/mod.rs +++ b/src/drivers/atapi/mod.rs @@ -1,8 +1,13 @@ -use crate::println; +use crate::{println, serial_println}; use core::convert::TryInto; +use core::future::Future; +use core::pin::Pin; +use core::sync::atomic::{AtomicBool, Ordering}; +use core::task::{Context, Poll}; use lazy_static::lazy_static; +use futures_util::task::AtomicWaker; use serde::{Serialize, Deserialize}; use spin::Mutex; use postcard::{to_vec}; @@ -37,6 +42,7 @@ const ATA_RDY: u8 = 1 << 6; const ATA_BSY: u8 = 1 << 7; // DCR bits +#[allow(dead_code)] const ATA_INTERRUPT_DISABLE: u8 = 1 << 1; const ATA_SRST: u8 = 1 << 2; @@ -57,8 +63,14 @@ lazy_static! { pub static ref DRIVE: Mutex> = { Mutex::new(ATABus::discover_atapi_drive()) }; + + static ref INTERRUPT_FUTURE: InterruptFuture = InterruptFuture::new(); + + static ref INTERRUPT: AtomicBool = AtomicBool::new(false); } +static WAKER: AtomicWaker = AtomicWaker::new(); + pub fn init() { println!("Detecting drives"); match DRIVE.lock().as_ref() { @@ -76,6 +88,49 @@ pub fn init() { }; println!("Detected {} drive on {} bus", drive_type, bus); } + }; + INTERRUPT_FUTURE.pop(); +} + +pub(crate) fn mark_interrupt() { + INTERRUPT.store(true, Ordering::Relaxed); + WAKER.wake(); +} + +#[derive(Copy,Clone)] +struct InterruptFuture { + _private:(), +} + +impl InterruptFuture { + pub fn new() -> Self { + InterruptFuture { _private: () } + } + + fn pop(&self) -> bool { + let res = INTERRUPT.load(Ordering::Relaxed); + INTERRUPT.store(false, Ordering::Relaxed); + res + } +} + +impl Future for InterruptFuture { + type Output = (); + + fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll { + if self.pop() { + return Poll::Ready(()); + } + + WAKER.register(&cx.waker()); + + match self.pop() { + true => { + WAKER.take(); + Poll::Ready(()) + }, + false => Poll::Pending, + } } } @@ -205,7 +260,7 @@ impl ATABus { } } - pub fn read_block(&mut self, lba: u32) { + pub fn sync_read_block(&mut self, lba: u32) { let mut packet = SCSIPacket::new(); packet.op_code = SCSI_READ_12; @@ -241,6 +296,41 @@ impl ATABus { } } + pub async fn read_block(&mut self, lba: u32) { + let mut packet = SCSIPacket::new(); + + packet.op_code = SCSI_READ_12; + packet.set_lba(lba); + packet.transfer_length_lo = 1; + + self.send_packet(packet); + + println!("Waiting packet send"); + + // Wait packet is transmitted + (*INTERRUPT_FUTURE).await; + + println!("Packet sent"); + + let mut _size: usize = 0; + unsafe { + _size = ((self.address3.read() as usize) << 8) | self.address2.read() as usize; + } + + for i in (0..CD_SECTOR_SIZE).step_by(2) { + unsafe { + let bytes: [u8; 2] = self.data.read().to_le_bytes(); + self.block[i] = bytes[0]; + self.block[i + 1] = bytes[1]; + } + } + + println!("Waiting command send"); + // Wait command end + (*INTERRUPT_FUTURE).await; + println!("Command sent"); + } + fn wait_busy(&mut self) { let mut status = ATA_BSY; while (status & ATA_BSY) != 0 { @@ -312,3 +402,9 @@ impl SCSIPacket { self.transfer_length_hi = ((l >> 0x18) & 0xff) as u8; } } + + +pub async fn print_block() { + DRIVE.lock().as_mut().unwrap().read_block(0).await; + serial_println!("{:x?}", DRIVE.lock().as_mut().unwrap().block); +} \ No newline at end of file diff --git a/src/interrupts/pic/disk.rs b/src/interrupts/pic/disk.rs index 3747b89..03dcc5d 100644 --- a/src/interrupts/pic/disk.rs +++ b/src/interrupts/pic/disk.rs @@ -4,6 +4,7 @@ use super::{InterruptIndex, PICS}; use x86_64::structures::idt::InterruptStackFrame; fn disk_interrupt_handler(disk: u16) { + crate::drivers::atapi::mark_interrupt(); println!("Received disk {} interrupt", disk); } diff --git a/src/lib.rs b/src/lib.rs index 3e7fcb4..018ee6e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,8 +42,6 @@ pub fn init(boot_info: &BootInformation) { memory::gdt::init_gdt(); interrupts::init_idt(); drivers::atapi::init(); - drivers::atapi::DRIVE.lock().as_mut().unwrap().read_block(0); - serial_println!("{:x?}", drivers::atapi::DRIVE.lock().as_mut().unwrap().block); vga::change_color(ColorCode::new(Color::LightGreen, Color::Black)); } @@ -56,6 +54,7 @@ pub extern "C" fn julios_main(multiboot_info_addr: usize) -> ! { serial_println!("Hello serial"); let mut executor = Executor::new(); + executor.spawn(Task::new(drivers::atapi::print_block())); executor.spawn(Task::new(keyboard::print_keypresses())); executor.run(); }