mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
39 lines
992 B
Rust
39 lines
992 B
Rust
use spin::Mutex;
|
|
use uart_16550::SerialPort;
|
|
|
|
lazy_static! {
|
|
pub static ref SERIAL1: Mutex<SerialPort> = {
|
|
let mut serial_port = SerialPort::new(0x3F8);
|
|
serial_port.init();
|
|
Mutex::new(serial_port)
|
|
};
|
|
}
|
|
|
|
pub fn print(args: ::core::fmt::Arguments) {
|
|
use core::fmt::Write;
|
|
use x86_64::instructions::interrupts;
|
|
|
|
interrupts::without_interrupts(|| {
|
|
SERIAL1
|
|
.lock()
|
|
.write_fmt(args)
|
|
.expect("Printing to serial failed");
|
|
});
|
|
}
|
|
|
|
/// Prints to the host through the serial interface.
|
|
#[macro_export]
|
|
macro_rules! serial_print {
|
|
($($arg:tt)*) => {
|
|
$crate::serial::print(format_args!($($arg)*));
|
|
};
|
|
}
|
|
|
|
/// Prints to the host through the serial interface, appending a newline.
|
|
#[macro_export]
|
|
macro_rules! serial_println {
|
|
() => (serial_print!("\n"));
|
|
($fmt:expr) => (serial_print!(concat!($fmt, "\n")));
|
|
($fmt:expr, $($arg:tt)*) => (serial_print!(concat!($fmt, "\n"), $($arg)*));
|
|
}
|