[wip] Debugging display/boot problems

This commit is contained in:
Berkus Decker 2019-01-20 02:24:59 +02:00
parent f39ff81922
commit 9765f3e081
2 changed files with 23 additions and 8 deletions

View File

@ -44,15 +44,28 @@ use platform::{
// Kernel entry point // Kernel entry point
// arch crate is responsible for calling this // arch crate is responsible for calling this
fn kmain() -> ! { fn kmain() -> ! {
let mut uart = MiniUart::new(); // let mut uart = MiniUart::new();
uart.init(); // uart.init();
// Crashes if uncommenting next line: vvv // Crashes if uncommenting next line: vvv
// writeln!(uart, "Hey there, mini uart talking!"); // writeln!(uart, "Hey there, mini uart talking!");
// uart.puts("Hey there, mini uart talking!\n"); // shall this work though?
// uart.write_str(); // shall this?
if let Some(mut display) = VC::init_fb(Size2d { x: 800, y: 600 } /*, &mut uart*/) { if let Some(mut display) = VC::init_fb(Size2d { x: 800, y: 600 } /*, &mut uart*/) {
display.rect(10, 10, 250, 250, Color::rgb(32, 96, 64)); display.rect(10, 10, 250, 250, Color::rgb(32, 96, 64));
display.draw_text(50, 50, "Hello there!", Color::rgb(128, 192, 255)); display.draw_text(50, 50, "Hello there!", Color::rgb(128, 192, 255));
let mut buf = [0u8; 64];
// Crashes if uncommenting next line: vvv
// let s = write_to::show(&mut buf, format_args!("Display width {}", display.width));
// So, some rust runtime things are breaking it, why?
// if s.is_err() {
// display.draw_text(50, 150, "Error displaying", Color::red())
// } else {
// display.draw_text(50, 150, s.unwrap(), Color::white());
// }
display.draw_text(150, 50, "RED", Color::red()); display.draw_text(150, 50, "RED", Color::red());
display.draw_text(160, 60, "GREEN", Color::green()); display.draw_text(160, 60, "GREEN", Color::green());
display.draw_text(170, 70, "BLUE", Color::blue()); display.draw_text(170, 70, "BLUE", Color::blue());

View File

@ -44,7 +44,7 @@ pub struct Display {
pitch: u32, pitch: u32,
max_x: u32, max_x: u32,
max_y: u32, max_y: u32,
width: u32, pub width: u32,
height: u32, height: u32,
order: PixelOrder, order: PixelOrder,
} }
@ -121,19 +121,21 @@ impl Display {
}) })
} }
#[inline(never)] #[inline]
fn write_pixel_component(&self, x: u32, y: u32, chan: u16, c: u32) { fn write_pixel_component(&self, x: u32, y: u32, chan: u16, c: u32) {
unsafe { unsafe {
*(self.base as *mut u8).offset( *(self.base as *mut u8).offset(
(y * self.pitch // This is still a problem!
+ x * 4//(self.depth / 8) // 1. Fix display output so we can print some values
+ self.color_component(chan)) as isize, // 2. Print display info
// 3. Go from there.
(y * self.pitch + x * 4/*(self.depth / 8)*/ + self.color_component(chan)) as isize,
) = c as u8; ) = c as u8;
} }
} }
/// Set a pixel value on display at given coordinates. /// Set a pixel value on display at given coordinates.
#[inline(never)] #[inline]
pub fn putpixel(&mut self, x: u32, y: u32, color: u32) { pub fn putpixel(&mut self, x: u32, y: u32, color: u32) {
self.write_pixel_component(x, y, 0, color & 0xff); self.write_pixel_component(x, y, 0, color & 0xff);
self.write_pixel_component(x, y, 1, (color >> 8) & 0xff); self.write_pixel_component(x, y, 1, (color >> 8) & 0xff);