You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
239 lines
6.3 KiB
239 lines
6.3 KiB
//! Framebuffer console display driver for ARM64
|
|
|
|
use alloc::vec::Vec;
|
|
use core::fmt;
|
|
use core::marker::PhantomData;
|
|
|
|
use lazy_static::lazy_static;
|
|
use log::*;
|
|
use spin::Mutex;
|
|
|
|
use crate::util::escape_parser::{CharacterAttribute, EscapeParser};
|
|
|
|
use super::fb::{ColorDepth::*, FRAME_BUFFER, FramebufferInfo};
|
|
|
|
use self::color::FramebufferColor;
|
|
use self::fonts::{Font, Font8x16};
|
|
|
|
mod color;
|
|
mod fonts;
|
|
|
|
#[repr(C)]
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
pub struct ConsoleChar {
|
|
ascii_char: u8,
|
|
attr: CharacterAttribute,
|
|
}
|
|
|
|
impl Default for ConsoleChar {
|
|
fn default() -> Self {
|
|
ConsoleChar {
|
|
ascii_char: 0,
|
|
attr: CharacterAttribute::default(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Character buffer
|
|
struct ConsoleBuffer<F: Font> {
|
|
num_row: usize,
|
|
num_col: usize,
|
|
buf: Vec<Vec<ConsoleChar>>,
|
|
font: PhantomData<F>,
|
|
}
|
|
|
|
impl<F: Font> ConsoleBuffer<F> {
|
|
fn new(num_row: usize, num_col: usize) -> ConsoleBuffer<F> {
|
|
ConsoleBuffer {
|
|
num_row,
|
|
num_col,
|
|
buf: vec![vec![ConsoleChar::default(); num_col]; num_row],
|
|
font: PhantomData,
|
|
}
|
|
}
|
|
|
|
/// Write one character at `(row, col)`.
|
|
fn write(&mut self, row: usize, col: usize, ch: ConsoleChar) {
|
|
if self.buf[row][col] == ch {
|
|
return;
|
|
}
|
|
self.buf[row][col] = ch;
|
|
|
|
let off_x = col * F::WIDTH;
|
|
let off_y = row * F::HEIGHT;
|
|
if let Some(fb) = FRAME_BUFFER.lock().as_mut() {
|
|
let (mut foreground, mut background) = match fb.color_depth {
|
|
ColorDepth16 => (
|
|
ch.attr.foreground.pack16() as u32,
|
|
ch.attr.background.pack16() as u32,
|
|
),
|
|
ColorDepth32 => (
|
|
ch.attr.foreground.pack32(),
|
|
ch.attr.background.pack32(),
|
|
),
|
|
};
|
|
if ch.attr.reverse {
|
|
core::mem::swap(&mut foreground, &mut background);
|
|
}
|
|
let underline_y = if ch.attr.underline {
|
|
F::UNDERLINE
|
|
} else {
|
|
F::HEIGHT
|
|
};
|
|
let strikethrough_y = if ch.attr.strikethrough {
|
|
F::STRIKETHROUGH
|
|
} else {
|
|
F::HEIGHT
|
|
};
|
|
for y in 0..F::HEIGHT {
|
|
for x in 0..F::WIDTH {
|
|
let pixel = if y == underline_y || y == strikethrough_y || F::get(ch.ascii_char, x, y) {
|
|
foreground
|
|
} else {
|
|
background
|
|
};
|
|
fb.write((off_x + x) as u32, (off_y + y) as u32, pixel);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Delete one character at `(row, col)`.
|
|
fn delete(&mut self, row: usize, col: usize) {
|
|
self.write(row, col, ConsoleChar::default());
|
|
}
|
|
|
|
/// Insert one blank line at the bottom, and scroll up one line.
|
|
/// XXX: read framebuffer is toooo slow, do not use `fb.copy()`.
|
|
fn new_line(&mut self) {
|
|
for i in 1..self.num_row {
|
|
for j in 0..self.num_col {
|
|
self.write(i - 1, j, self.buf[i][j]);
|
|
}
|
|
}
|
|
for j in 0..self.num_col {
|
|
self.write(self.num_row - 1, j, ConsoleChar::default());
|
|
}
|
|
}
|
|
|
|
/// Clear the entire buffer and screen.
|
|
fn clear(&mut self) {
|
|
for i in 0..self.num_row {
|
|
for j in 0..self.num_col {
|
|
self.buf[i][j] = ConsoleChar::default()
|
|
}
|
|
}
|
|
if let Some(fb) = FRAME_BUFFER.lock().as_mut() {
|
|
fb.clear();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Console structure
|
|
pub struct Console<F: Font> {
|
|
/// cursor row
|
|
row: usize,
|
|
/// cursor column
|
|
col: usize,
|
|
/// escape sequence parser
|
|
parser: EscapeParser,
|
|
/// character buffer
|
|
buf: ConsoleBuffer<F>,
|
|
}
|
|
|
|
impl<F: Font> Console<F> {
|
|
fn new(fb: &FramebufferInfo) -> Console<F> {
|
|
let num_row = fb.yres as usize / F::HEIGHT;
|
|
let num_col = fb.xres as usize / F::WIDTH;
|
|
Console {
|
|
row: 0,
|
|
col: 0,
|
|
parser: EscapeParser::new(),
|
|
buf: ConsoleBuffer::new(num_row, num_col),
|
|
}
|
|
}
|
|
|
|
fn new_line(&mut self) {
|
|
let attr_blank = ConsoleChar {
|
|
ascii_char: 0,
|
|
attr: self.parser.char_attribute(),
|
|
};
|
|
for j in self.col..self.buf.num_col {
|
|
self.buf.write(self.row, j, attr_blank);
|
|
}
|
|
self.col = 0;
|
|
if self.row < self.buf.num_row - 1 {
|
|
self.row += 1;
|
|
} else {
|
|
self.buf.new_line();
|
|
}
|
|
}
|
|
|
|
fn write_byte(&mut self, byte: u8) {
|
|
if self.parser.is_parsing() {
|
|
self.parser.parse(byte);
|
|
return;
|
|
}
|
|
match byte {
|
|
b'\x7f' => {
|
|
if self.col > 0 {
|
|
self.col -= 1;
|
|
self.buf.delete(self.row, self.col);
|
|
} else if self.row > 0 {
|
|
self.row -= 1;
|
|
self.col = self.buf.num_col - 1;
|
|
self.buf.delete(self.row, self.col);
|
|
}
|
|
}
|
|
b'\n' => self.new_line(),
|
|
b'\r' => self.col = 0,
|
|
b'\x1b' => self.parser.start_parse(),
|
|
byte => {
|
|
if self.col >= self.buf.num_col {
|
|
self.new_line();
|
|
}
|
|
|
|
let ch = ConsoleChar {
|
|
ascii_char: byte,
|
|
attr: self.parser.char_attribute(),
|
|
};
|
|
self.buf.write(self.row, self.col, ch);
|
|
self.col += 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn clear(&mut self) {
|
|
self.row = 0;
|
|
self.col = 0;
|
|
self.parser = EscapeParser::new();
|
|
self.buf.clear();
|
|
}
|
|
}
|
|
|
|
impl<F: Font> fmt::Write for Console<F> {
|
|
fn write_str(&mut self, s: &str) -> fmt::Result {
|
|
for byte in s.bytes() {
|
|
self.write_byte(byte)
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
lazy_static! {
|
|
pub static ref CONSOLE: Mutex<Option<Console<Font8x16>>> = Mutex::new(None);
|
|
}
|
|
|
|
/// Initialize console driver
|
|
pub fn init() {
|
|
if let Some(fb) = FRAME_BUFFER.lock().as_ref() {
|
|
*CONSOLE.lock() = Some(Console::new(&fb.fb_info));
|
|
}
|
|
|
|
if !CONSOLE.lock().is_none() {
|
|
info!("console: init end");
|
|
} else {
|
|
warn!("console: init failed");
|
|
}
|
|
}
|