| /openbmc/u-boot/drivers/video/ |
| H A D | efi.c | 52 static int save_vesa_mode(struct vesa_mode_info *vesa) in save_vesa_mode() argument 65 vesa->phys_base_ptr = mode->fb_base; in save_vesa_mode() 66 vesa->x_resolution = mode->info->width; in save_vesa_mode() 67 vesa->y_resolution = mode->info->height; in save_vesa_mode() 71 vesa->red_mask_size = fbinfo->red.size; in save_vesa_mode() 72 vesa->red_mask_pos = fbinfo->red.pos; in save_vesa_mode() 73 vesa->green_mask_size = fbinfo->green.size; in save_vesa_mode() 74 vesa->green_mask_pos = fbinfo->green.pos; in save_vesa_mode() 75 vesa->blue_mask_size = fbinfo->blue.size; in save_vesa_mode() 76 vesa->blue_mask_pos = fbinfo->blue.pos; in save_vesa_mode() [all …]
|
| H A D | coreboot.c | 13 struct vesa_mode_info *vesa) in save_vesa_mode() argument 22 vesa->x_resolution = fb->x_resolution; in save_vesa_mode() 23 vesa->y_resolution = fb->y_resolution; in save_vesa_mode() 24 vesa->bits_per_pixel = fb->bits_per_pixel; in save_vesa_mode() 25 vesa->bytes_per_scanline = fb->bytes_per_line; in save_vesa_mode() 26 vesa->phys_base_ptr = fb->physical_address; in save_vesa_mode() 27 vesa->red_mask_size = fb->red_mask_size; in save_vesa_mode() 28 vesa->red_mask_pos = fb->red_mask_pos; in save_vesa_mode() 29 vesa->green_mask_size = fb->green_mask_size; in save_vesa_mode() 30 vesa->green_mask_pos = fb->green_mask_pos; in save_vesa_mode() [all …]
|
| H A D | Makefile | 64 obj-$(CONFIG_VIDEO_VESA) += vesa.o
|
| H A D | Kconfig | 172 Turn on this option to enable a very simple driver which uses vesa
|
| /openbmc/u-boot/arch/x86/lib/fsp/ |
| H A D | fsp_graphics.c | 29 static int save_vesa_mode(struct vesa_mode_info *vesa) in save_vesa_mode() argument 49 vesa->x_resolution = ginfo->width; in save_vesa_mode() 50 vesa->y_resolution = ginfo->height; in save_vesa_mode() 51 vesa->bits_per_pixel = 32; in save_vesa_mode() 52 vesa->bytes_per_scanline = ginfo->pixels_per_scanline * 4; in save_vesa_mode() 53 vesa->phys_base_ptr = ginfo->fb_base; in save_vesa_mode() 61 vesa->red_mask_size = fbinfo->red.size; in save_vesa_mode() 62 vesa->red_mask_pos = fbinfo->red.pos; in save_vesa_mode() 63 vesa->green_mask_size = fbinfo->green.size; in save_vesa_mode() 64 vesa->green_mask_pos = fbinfo->green.pos; in save_vesa_mode() [all …]
|
| /openbmc/u-boot/drivers/pci/ |
| H A D | pci_rom.c | 206 struct vesa_mode_info *vesa = &mode_info.vesa; in setup_video() local 209 if (!vesa->x_resolution || !vesa->y_resolution) in setup_video() 214 screen_info->lfb_width = vesa->x_resolution; in setup_video() 215 screen_info->lfb_height = vesa->y_resolution; in setup_video() 216 screen_info->lfb_depth = vesa->bits_per_pixel; in setup_video() 217 screen_info->lfb_linelength = vesa->bytes_per_scanline; in setup_video() 218 screen_info->lfb_base = vesa->phys_base_ptr; in setup_video() 223 screen_info->red_size = vesa->red_mask_size; in setup_video() 224 screen_info->red_pos = vesa->red_mask_pos; in setup_video() 225 screen_info->green_size = vesa->green_mask_size; in setup_video() [all …]
|
| /openbmc/u-boot/arch/x86/lib/ |
| H A D | coreboot_table.c | 104 struct vesa_mode_info *vesa; in write_coreboot_table() local 147 vesa = &mode_info.vesa; in write_coreboot_table() 148 if (vesa->x_resolution && vesa->y_resolution) { in write_coreboot_table() 153 fb->x_resolution = vesa->x_resolution; in write_coreboot_table() 154 fb->y_resolution = vesa->y_resolution; in write_coreboot_table() 155 fb->bits_per_pixel = vesa->bits_per_pixel; in write_coreboot_table() 156 fb->bytes_per_line = vesa->bytes_per_scanline; in write_coreboot_table() 157 fb->physical_address = vesa->phys_base_ptr; in write_coreboot_table() 158 fb->red_mask_size = vesa->red_mask_size; in write_coreboot_table() 159 fb->red_mask_pos = vesa->red_mask_pos; in write_coreboot_table() [all …]
|
| H A D | bios.c | 230 framebuffer = (unsigned char *)(ulong)mode_info->vesa.phys_base_ptr; in vbe_set_graphics() 232 le16_to_cpu(mode_info->vesa.x_resolution), in vbe_set_graphics() 233 le16_to_cpu(mode_info->vesa.y_resolution), in vbe_set_graphics() 234 mode_info->vesa.bits_per_pixel); in vbe_set_graphics()
|
| /openbmc/u-boot/cmd/ |
| H A D | elf.c | 342 struct vesa_mode_info *vesa = &mode_info.vesa; in do_bootvx() local 407 if (vesa->x_resolution && vesa->y_resolution) { in do_bootvx() 411 gop->info.width = vesa->x_resolution; in do_bootvx() 412 gop->info.height = vesa->y_resolution; in do_bootvx() 414 gop->info.pixels_per_scanline = vesa->bytes_per_scanline / 4; in do_bootvx() 415 gop->fb_base = vesa->phys_base_ptr; in do_bootvx() 416 gop->fb_size = vesa->bytes_per_scanline * vesa->y_resolution; in do_bootvx()
|
| /openbmc/u-boot/include/ |
| H A D | vbe.h | 87 struct vesa_mode_info vesa; member 108 int vbe_setup_video_priv(struct vesa_mode_info *vesa,
|
| /openbmc/openbmc/poky/meta/recipes-graphics/xorg-driver/ |
| H A D | xf86-video-vesa_2.6.0.bb | 7 DESCRIPTION = "vesa is an Xorg driver for generic VESA video cards. It \
|
| /openbmc/openbmc/poky/meta/conf/machine/include/x86/ |
| H A D | x86-base.inc | 41 XSERVER_X86_VESA = "xf86-video-vesa"
|
| /openbmc/openbmc/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg/ |
| H A D | 0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch | 31 /* Use fbdev/vesa driver on Oaktrail, Medfield, CDV */
|
| /openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
| H A D | parselogs-ignores-common.txt | 26 Failed to load module "vesa"
|
| /openbmc/u-boot/drivers/bios_emulator/ |
| H A D | atibios.c | 156 vm = &mode_info->vesa; in atibios_debug_mode() 209 vm = &mode_info->vesa; in atibios_set_vesa_mode()
|
| /openbmc/openbmc/poky/meta/conf/distro/include/ |
| H A D | distro_alias.inc | 359 …pn-xf86-video-vesa = "Debian=xserver-xorg-video-vesa Fedora=xorg-x11-drv-vesa Mandriva=x11-driver-…
|
| H A D | maintainers.inc | 906 RECIPE_MAINTAINER:pn-xf86-video-vesa = "Unassigned <unassigned@yoctoproject.org>"
|
| /openbmc/u-boot/arch/arm/dts/ |
| H A D | sun8i-a83t-tbs-a711.dts | 79 data-mapping = "vesa-24";
|
| /openbmc/openbmc/poky/meta-yocto-bsp/ |
| H A D | README.hardware.md | 87 type supports ethernet, wifi, sound, and Intel/vesa graphics by default in
|
| /openbmc/openbmc/poky/ |
| H A D | README.hardware.md | 87 type supports ethernet, wifi, sound, and Intel/vesa graphics by default in
|
| /openbmc/openbmc/poky/documentation/migration-guides/ |
| H A D | release-notes-4.1.2.rst | 102 - linux-yocto/5.19: cfg: intel and vesa updates
|
| H A D | release-notes-4.2.rst | 727 - xf86-video-vesa: update 2.5.0 -> 2.6.0
|
| /openbmc/u-boot/doc/ |
| H A D | README.x86 | 759 1,422,704 vesa display
|