| /OK3568_Linux_fs/u-boot/drivers/video/ |
| H A D | coreboot.c | 14 struct vesa_mode_info *vesa) in save_vesa_mode() argument 23 vesa->x_resolution = fb->x_resolution; in save_vesa_mode() 24 vesa->y_resolution = fb->y_resolution; in save_vesa_mode() 25 vesa->bits_per_pixel = fb->bits_per_pixel; in save_vesa_mode() 26 vesa->bytes_per_scanline = fb->bytes_per_line; in save_vesa_mode() 27 vesa->phys_base_ptr = fb->physical_address; in save_vesa_mode() 28 vesa->red_mask_size = fb->red_mask_size; in save_vesa_mode() 29 vesa->red_mask_pos = fb->red_mask_pos; in save_vesa_mode() 30 vesa->green_mask_size = fb->green_mask_size; in save_vesa_mode() 31 vesa->green_mask_pos = fb->green_mask_pos; in save_vesa_mode() [all …]
|
| H A D | Makefile | 51 obj-$(CONFIG_VIDEO_VESA) += vesa.o
|
| /OK3568_Linux_fs/u-boot/drivers/pci/ |
| H A D | pci_rom.c | 207 struct vesa_mode_info *vesa = &mode_info.vesa; in setup_video() local 210 if (!vesa->x_resolution || !vesa->y_resolution) in setup_video() 215 screen_info->lfb_width = vesa->x_resolution; in setup_video() 216 screen_info->lfb_height = vesa->y_resolution; in setup_video() 217 screen_info->lfb_depth = vesa->bits_per_pixel; in setup_video() 218 screen_info->lfb_linelength = vesa->bytes_per_scanline; in setup_video() 219 screen_info->lfb_base = vesa->phys_base_ptr; in setup_video() 224 screen_info->red_size = vesa->red_mask_size; in setup_video() 225 screen_info->red_pos = vesa->red_mask_pos; in setup_video() 226 screen_info->green_size = vesa->green_mask_size; in setup_video() [all …]
|
| /OK3568_Linux_fs/u-boot/arch/x86/lib/ |
| H A D | coreboot_table.c | 105 struct vesa_mode_info *vesa; in write_coreboot_table() local 148 vesa = &mode_info.vesa; in write_coreboot_table() 149 if (vesa->x_resolution && vesa->y_resolution) { in write_coreboot_table() 154 fb->x_resolution = vesa->x_resolution; in write_coreboot_table() 155 fb->y_resolution = vesa->y_resolution; in write_coreboot_table() 156 fb->bits_per_pixel = vesa->bits_per_pixel; in write_coreboot_table() 157 fb->bytes_per_line = vesa->bytes_per_scanline; in write_coreboot_table() 158 fb->physical_address = vesa->phys_base_ptr; in write_coreboot_table() 159 fb->red_mask_size = vesa->red_mask_size; in write_coreboot_table() 160 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()
|
| /OK3568_Linux_fs/kernel/Documentation/fb/ |
| H A D | matroxfb.rst | 27 Switching modes is done using the video=matroxfb:vesa:... boot parameter 31 pass to the kernel this command line: "video=matroxfb:vesa:0x1BB". 38 Currently supported video modes are (through vesa:... interface, PowerMac 87 example 1600x1200x32bpp can be specified by `video=matroxfb:vesa:0x11C,depth:32`. 250 vesa:X selects startup videomode. X is number from 0 to 0x1FF, see table 257 If you are not satisfied with videomode selected by `vesa` option, you 261 xres:X horizontal resolution, in pixels. Default is derived from `vesa` 263 yres:X vertical resolution, in pixel lines. Default is derived from `vesa` 266 pixel line of picture. Default is derived from `vesa` option. 268 pulse. Default is derived from `vesa` option. [all …]
|
| H A D | sisfb.rst | 56 described above or the vesa keyword instead of mode). If compiled as a module, 88 Additionally, sisfb understands the keyword "vesa" followed by a VESA mode 89 number in decimal or hexadecimal. For example: vesa=791 or vesa=0x117. Please 90 use either "mode" or "vesa" but not both. 108 "mode" or "vesa" keywords as a parameter. See above and below. 145 vesa:X selects startup videomode. X is number from 0 to 0x1FF and
|
| /OK3568_Linux_fs/buildroot/package/x11r7/xdriver_xf86-video-vesa/ |
| H A D | xdriver_xf86-video-vesa.hash | 2 sha256 1f1624f3c73906801ad1bc98335a2cb5676a7a4d18e5374d9a1d18464e54c659 xf86-video-vesa-2.5.0.tar… 3 …1719921b80cf62dafc746058878253e21f0ef341a2ff2d650df22ca1e35e81716a8b xf86-video-vesa-2.5.0.tar.bz2
|
| H A D | Config.in | 2 bool "xf86-video-vesa"
|
| H A D | xdriver_xf86-video-vesa.mk | 8 XDRIVER_XF86_VIDEO_VESA_SOURCE = xf86-video-vesa-$(XDRIVER_XF86_VIDEO_VESA_VERSION).tar.bz2
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | vbe.h | 88 struct vesa_mode_info vesa; member 109 int vbe_setup_video_priv(struct vesa_mode_info *vesa,
|
| /OK3568_Linux_fs/kernel/drivers/video/fbdev/matrox/ |
| H A D | matroxfb_base.c | 1256 static unsigned int vesa = ~0; /* "matroxfb:vesa:xxxxx" */ variable 2213 static struct { unsigned int vesa; unsigned int info; } *RSptr, vesamap[] __initdata = { member 2277 if (vesa != ~0) in matroxfb_init_params() 2278 vesa &= 0x1DFF; /* mask out clearscreen, acceleration and so on */ in matroxfb_init_params() 2281 for (RSptr = vesamap; RSptr->vesa; RSptr++) { in matroxfb_init_params() 2282 if (RSptr->vesa == vesa) break; in matroxfb_init_params() 2284 if (!RSptr->vesa) { in matroxfb_init_params() 2285 printk(KERN_ERR "Invalid vesa mode 0x%04X\n", vesa); in matroxfb_init_params() 2380 vesa = simple_strtoul(this_opt+5, NULL, 0); in matroxfb_setup() 2531 module_param(vesa, int, 0); [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/xorg-driver/ |
| H A D | xf86-video-vesa_2.5.0.bb | 7 DESCRIPTION = "vesa is an Xorg driver for generic VESA video cards. It \
|
| /OK3568_Linux_fs/external/xserver/debian/patches/ |
| H A D | 06_use-intel-only-on-pre-gen4.diff | 8 /* Use fbdev/vesa driver on Oaktrail, Medfield, CDV */
|
| /OK3568_Linux_fs/yocto/poky/meta/conf/machine/include/x86/ |
| H A D | x86-base.inc | 42 XSERVER_X86_VESA = "xf86-video-vesa"
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/ |
| H A D | biblio.rst | 325 :author: Video Electronics Standards Association (http://www.vesa.org) 336 :author: Video Electronics Standards Association (http://www.vesa.org) 379 :author: Video Electronics Standards Association (http://www.vesa.org)
|
| /OK3568_Linux_fs/kernel/drivers/video/fbdev/nvidia/ |
| H A D | nvidia.c | 927 unsigned char tmp, vesa; in nvidiafb_blank() local 930 vesa = NVReadCrtc(par, 0x1a) & ~0xc0; /* sync on/off */ in nvidiafb_blank() 942 vesa |= 0x80; in nvidiafb_blank() 945 vesa |= 0x40; in nvidiafb_blank() 948 vesa |= 0xc0; in nvidiafb_blank() 953 NVWriteCrtc(par, 0x1a, vesa); in nvidiafb_blank()
|
| /OK3568_Linux_fs/kernel/arch/arm64/boot/dts/renesas/ |
| H A D | r8a774c0-ek874-idk-2121wr.dts | 29 data-mapping = "vesa-24";
|
| /OK3568_Linux_fs/kernel/arch/x86/realmode/rm/ |
| H A D | Makefile | 27 wakeup-objs += video-vesa.o
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg/ |
| H A D | 0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch | 28 /* Use fbdev/vesa driver on Oaktrail, Medfield, CDV */
|
| /OK3568_Linux_fs/u-boot/drivers/bios_emulator/ |
| H A D | atibios.c | 155 vm = &mode_info->vesa; in atibios_debug_mode() 208 vm = &mode_info->vesa; in atibios_set_vesa_mode()
|
| /OK3568_Linux_fs/kernel/drivers/video/fbdev/riva/ |
| H A D | fbdev.c | 1246 unsigned char tmp, vesa; in rivafb_blank() local 1249 vesa = CRTCin(par, 0x1a) & ~0xc0; /* sync on/off */ in rivafb_blank() 1261 vesa |= 0x80; in rivafb_blank() 1264 vesa |= 0x40; in rivafb_blank() 1267 vesa |= 0xc0; in rivafb_blank() 1272 CRTCout(par, 0x1a, vesa); in rivafb_blank()
|
| /OK3568_Linux_fs/kernel/drivers/ps3/ |
| H A D | ps3av.c | 530 static int vesa; in ps3av_set_videomode_cont() local 540 if (vesa == 0 && (id & PS3AV_MODE_MASK) >= PS3AV_MODE_WXGA) { in ps3av_set_videomode_cont() 544 vesa = 1; in ps3av_set_videomode_cont()
|
| /OK3568_Linux_fs/kernel/arch/x86/boot/ |
| H A D | Makefile | 46 setup-y += video-vesa.o
|
| /OK3568_Linux_fs/yocto/poky/meta/conf/distro/include/ |
| H A D | distro_alias.inc | 367 …pn-xf86-video-vesa = "Debian=xserver-xorg-video-vesa Fedora=xorg-x11-drv-vesa Mandriva=x11-driver-…
|