Home
last modified time | relevance | path

Searched refs:screen_info (Results 1 – 4 of 4) sorted by relevance

/DragonOS/kernel/src/driver/video/
H A Dmod.rs79 let buf_size = bp.screen_info.lfb_size; in init_frame_buffer()
84 bp.screen_info.lfb_virt_base = Some(buf_vaddr); in init_frame_buffer()
93 let paddr = bp.screen_info.lfb_base; in init_frame_buffer()
168 let screen_info = &boot_params_guard.screen_info; in video_init() localVariable
169 let buf_vaddr = screen_info.lfb_virt_base.unwrap(); in video_init()
174 if screen_info.video_type == BootTimeVideoType::Mda { in video_init()
177 screen_info.origin_video_cols.into(), in video_init()
178 screen_info.origin_video_lines.into(), in video_init()
179 screen_info.lfb_size as u32, in video_init()
180 screen_info.lfb_depth.into(), in video_init()
[all …]
/DragonOS/kernel/src/init/
H A Dboot.rs17 pub screen_info: BootTimeScreenInfo, field
27 screen_info: BootTimeScreenInfo::DEFAULT,
/DragonOS/kernel/src/driver/video/fbdev/
H A Dvesafb.rs339 let vaddr = bp.screen_info.lfb_virt_base.ok_or(SystemError::ENODEV)?; in fb_read()
360 let vaddr = bp.screen_info.lfb_virt_base.ok_or(SystemError::ENODEV)?; in fb_write()
388 .screen_info in fb_fillrect()
445 let base = bp.screen_info.lfb_virt_base.unwrap(); in fb_copyarea()
928 boot_callbacks().early_init_framebuffer_info(&mut boot_params_guard.screen_info)?; in vesafb_early_init()
957 let boottime_screen_info = &boot_params_guard.screen_info; in vesa_fb_device_init()
/DragonOS/kernel/src/driver/video/fbdev/base/
H A Dmod.rs81 let dst1 = boot_param.screen_info.lfb_virt_base; in generic_imageblit()