Home
last modified time | relevance | path

Searched +full:video +full:- +full:mode (Results 1 – 25 of 1034) sorted by relevance

12345678910>>...42

/linux/Documentation/fb/
H A Duvesafb.rst2 uvesafb - A Generic Driver for VBE2+ compliant video cards
6 ---------------
8 uvesafb should work with any video card that has a Video BIOS compliant
12 v86d. v86d is used to run the x86 Video BIOS code in a simulated and
30 --------------------------
32 uvesafb is a _generic_ driver which supports a wide variety of video
33 cards, but which is ultimately limited by the Video BIOS interface.
36 - Lack of any type of acceleration.
37 - A strict and limited set of supported video modes. Often the native
39 with uvesafb, simply because the Video BIOS doesn't support the
[all …]
H A Dmodedb.rst2 modedb default video mode support
6 Currently all frame buffer device drivers have their own video mode databases,
9 - one routine to probe for video modes, which can be used by all frame buffer
11 - one generic video mode database with a fair amount of standard videomodes
13 - the possibility to supply your own mode database for graphics hardware that
14 needs non-standard modes, like amifb and Mac frame buffer drivers (which
17 When a frame buffer device receives a video= option it doesn't know, it should
18 consider that to be a video mode option. If no frame buffer device is specified
19 in a video= option, fbmem considers that to be a global video mode option.
21 Valid mode specifiers (mode_option argument)::
[all …]
H A Dvesafb.rst7 The idea is simple: Turn on graphics mode at boot time with the help
12 graphics mode. Switching mode later on (in protected mode) is
13 impossible; BIOS calls work in real mode only. VESA BIOS Extensions
20 * You can run XF68_FBDev on top of /dev/fb0 (=> non-accelerated X11
22 * Most important: boot logo :-)
26 * graphic mode is slower than text mode...
33 Documentation/admin-guide/svga.rst for details.
35 You should compile in both vgacon (for text mode) and vesafb (for
36 graphics mode). Which of them takes over the console depends on
37 whenever the specified mode is text or graphics.
[all …]
H A Dep93xx-fb.rst7 can use the standard Linux video mode database. In your board file::
14 If you have an embedded LCD display then you need to define a video
15 mode for it as follows::
24 Note that the pixel clock value is in pico-seconds. You can use the
45 Video Attribute Flags
49 to configure the controller. The video attributes flags are fully
98 struct ep93xxfb_mach_info *mach_info = pdev->dev.platform_data;
105 Setting the video mode
108 The video mode is set using the following syntax::
110 video=XRESxYRES[-BPP][@REFRESH]
[all …]
/linux/Documentation/admin-guide/
H A Dsvga.rst4 Video Mode Selection Support 2.13
7 :Copyright: |copy| 1995--1999 Martin Mares, <mj@ucw.cz>
12 This small document describes the "Video Mode Selection" feature which
13 allows the use of various special video modes supported by the video BIOS. Due
21 enter ``scan`` on the video mode prompt, pick the mode you want to use,
22 remember its mode ID (the four-digit hexadecimal number) and then
25 The video mode to be used is selected by a kernel parameter which can be
31 NORMAL_VGA - Standard 80x25 mode available on all display adapters.
33 EXTENDED_VGA - Standard 8-pixel font mode: 80x43 on EGA, 80x50 on VGA.
35 ASK_VGA - Display a video mode menu upon startup (see below).
[all …]
/linux/Documentation/userspace-api/media/drivers/
H A Daspeed-video.rst1 .. SPDX-License-Identifier: GPL-2.0
5 ASPEED video driver
8 ASPEED Video Engine found on AST2400/2500/2600 SoC supports high performance
9 video compressions with a wide range of video quality and compression ratio
14 * JPEG JFIF standard mode: for single frame and management compression
15 * ASPEED proprietary mode: for multi-frame and differential compression.
16 Support 2-pass (high quality) video compression scheme (Patent pending by
17 ASPEED). Provide visually lossless video compression quality or to reduce
21 stands for JPEG JFIF standard mode; V4L2_PIX_FMT_AJPG stands for ASPEED
22 proprietary mode.
[all …]
H A Dnpcm-video.rst1 .. SPDX-License-Identifier: GPL-2.0
5 NPCM video driver
8 This driver is used to control the Video Capture/Differentiation (VCD) engine
10 capture a frame from digital video input and compare two frames in memory, and
13 Driver-specific Controls
14 ------------------------
21 - COMPLETE mode:
25 - DIFF mode:
30 Application can use ``V4L2_CID_NPCM_CAPTURE_MODE`` control to set the VCD mode
33 - ``V4L2_NPCM_CAPTURE_MODE_COMPLETE``: will set VCD to COMPLETE mode.
[all …]
/linux/drivers/video/fbdev/
H A Dmacmodes.c2 * linux/drivers/video/macmodes.c -- Standard MacOS video modes
6 * 2000 - Removal of OpenFirmware dependencies by:
7 * - Ani Joshi
8 * - Brad Douglas <brad@neruo.com>
10 * 2001 - Documented with DocBook
11 * - Brad Douglas <brad@neruo.com>
26 * MacOS video mode definitions
36 /* 512x384, 60Hz, Non-Interlaced (15.67 MHz dot clock) */
40 /* 640x480, 60 Hz, Non-Interlaced (25.175 MHz dotclock) */
44 /* 640x480, 67Hz, Non-Interlaced (30.0 MHz dotclock) */
[all …]
/linux/arch/x86/boot/
H A Dvideo.h1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* -*- linux-c -*- ------------------------------------------------------- *
5 * Copyright 2007 rPath, Inc. - All Rights Reserved
7 * ----------------------------------------------------------------------- */
10 * Header file for the real-mode video probing code
19 * This code uses an extended set of video mode numbers. These include:
21 * NORMAL_VGA (-1)
22 * EXTENDED_VGA (-2)
23 * ASK_VGA (-3)
24 * Video modes numbered by menu position -- NOT RECOMMENDED because of lack
[all …]
H A Dvideo-bios.c1 // SPDX-License-Identifier: GPL-2.0-only
2 /* -*- linux-c -*- ------------------------------------------------------- *
5 * Copyright 2007 rPath, Inc. - All Rights Reserved
8 * ----------------------------------------------------------------------- */
11 * Standard video BIOS modes
17 #include "video.h"
21 /* Set a conventional BIOS mode */
22 static int set_bios_mode(u8 mode);
26 return set_bios_mode(mi->mode - VIDEO_FIRST_BIOS); in bios_set_mode()
29 static int set_bios_mode(u8 mode) in set_bios_mode() argument
[all …]
H A Dvideo.c1 // SPDX-License-Identifier: GPL-2.0-only
2 /* -*- linux-c -*- ------------------------------------------------------- *
5 * Copyright 2007 rPath, Inc. - All Rights Reserved
8 * ----------------------------------------------------------------------- */
11 * Select video mode
17 #include "video.h"
44 /* N.B.: the saving of the video page here is a bit silly, in store_video_mode()
56 * Store the video mode parameters for later usage by the kernel.
58 * parameters in the default 80x25 mode -- these are set directly,
66 /* For graphics mode, it is up to the mode-setting driver in store_mode_params()
[all …]
H A Dvideo-mode.c1 // SPDX-License-Identifier: GPL-2.0-only
2 /* -*- linux-c -*- ------------------------------------------------------- *
5 * Copyright 2007-2008 rPath, Inc. - All Rights Reserved
7 * ----------------------------------------------------------------------- */
10 * arch/i386/boot/video-mode.c
12 * Set the video mode. This is separated out into a different
17 #include "video.h"
27 int do_restore; /* Screen contents changed during mode flip */
28 int graphic_mode; /* Graphic mode with linear frame buffer */
30 /* Probe the video drivers and have them generate their mode lists. */
[all …]
/linux/Documentation/admin-guide/media/
H A Dipu3.rst1 .. SPDX-License-Identifier: GPL-2.0
24 ImgU). The CIO2 driver is available as drivers/media/pci/intel/ipu3/ipu3-cio2*
36 Both of the drivers implement V4L2, Media Controller and V4L2 sub-device
38 MIPI CSI-2 interfaces through V4L2 sub-device sensor drivers.
44 interface to the user space. There is a video node for each CSI-2 receiver,
47 The CIO2 contains four independent capture channel, each with its own MIPI CSI-2
48 receiver and DMA engine. Each channel is modelled as a V4L2 sub-device exposed
49 to userspace as a V4L2 sub-device node and has two pads:
53 .. flat-table::
54 :header-rows: 1
[all …]
/linux/Documentation/driver-api/
H A Dframe-buffer.rst9 fb_info defines the current state of a particular video card. Inside
14 fb_var_screeninfo is used to describe the features of a video card
19 of a card that are created when a mode is set and can't be changed
26 setting a mode of 800x600 on a fix frequency monitor. With the new API,
32 -------------------
34 .. kernel-doc:: drivers/video/fbdev/core/fbmem.c
38 ---------------------
40 .. kernel-doc:: drivers/video/fbdev/core/fbcmap.c
43 Frame Buffer Video Mode Database
44 --------------------------------
[all …]
/linux/Documentation/userspace-api/media/v4l/
H A Dvidioc-g-parm.rst1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
13 VIDIOC_G_PARM - VIDIOC_S_PARM - Get or set streaming parameters
44 frame interval that is typically embedded in the encoded video stream.
50 internally by a driver in read/write mode. For implications see the
63 .. flat-table:: struct v4l2_streamparm
64 :header-rows: 0
65 :stub-columns: 0
68 * - __u32
69 - ``type``
70 - The buffer (stream) type, same as struct
[all …]
H A Dext-ctrls-codec.rst1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
3 .. _codec-controls:
24 .. _mpeg-control-id:
27 -----------------
35 .. _v4l2-mpeg-stream-type:
40 enum v4l2_mpeg_stream_type -
41 The MPEG-1, -2 or -4 output stream type. One cannot assume anything
48 .. flat-table::
49 :header-rows: 0
50 :stub-columns: 0
[all …]
/linux/Documentation/userspace-api/media/dvb/
H A Dlegacy_dvb_video.rst1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later OR GPL-2.0
3 .. c:namespace:: dtv.legacy.video
8 DVB Video Device
14 The DVB video device controls the MPEG2 video decoder of the DVB
17 ``linux/dvb/video.h`` in your application.
19 Note that the DVB video device only controls decoding of the MPEG video
22 ``/dev/video``, which allows scaling and defining output windows.
25 omission of the audio and video device as well as the video4linux
31 functionality. Use :ref:`V4L2 ioctls<video>` for new drivers!
34 Video Data Types
[all …]
/linux/Documentation/devicetree/bindings/media/i2c/
H A Dadv7343.txt1 * Analog Devices adv7343 video encoder
3 The ADV7343 are high speed, digital-to-analog video encoders in a 64-lead LQFP
4 package. Six high speed, 3.3 V, 11-bit video DACs provide support for composite
5 (CVBS), S-Video (Y-C), and component (YPrPb/RGB) analog outputs in standard
6 definition (SD), enhanced definition (ED), or high definition (HD) video
10 - compatible: Must be "adi,adv7343"
13 - adi,power-mode-sleep-mode: on enable the current consumption is reduced to
16 - adi,power-mode-pll-ctrl: PLL and oversampling control. This control allows
19 - ad,adv7343-power-mode-dac: array configuring the power on/off DAC's 1..6,
22 - ad,adv7343-sd-config-dac-out: array configure SD DAC Output's 1 and 2, 0 = OFF
[all …]
/linux/drivers/media/platform/aspeed/
H A Daspeed-video.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 // Copyright (c) 2019-2020 Intel Corporation
10 #include <linux/dma-mapping.h>
22 #include <linux/v4l2-controls.h>
28 #include <media/v4l2-ctrls.h>
29 #include <media/v4l2-dev.h>
30 #include <media/v4l2-device.h>
31 #include <media/v4l2-dv-timings.h>
32 #include <media/v4l2-event.h>
33 #include <media/v4l2-ioctl.h>
[all …]
/linux/drivers/gpu/drm/xlnx/
H A Dzynqmp_disp.c1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2017 - 2020 Xilinx, Inc.
8 * - Hyun Woo Kwon <hyun.kwon@xilinx.com>
9 * - Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19 #include <linux/dma-mapping.h>
21 #include <linux/media-bus-format.h>
34 * --------
36 * The display controller part of ZynqMP DP subsystem, made of the Audio/Video
37 * Buffer Manager, the Video Rendering Pipeline (blender) and the Audio Mixer.
39 * +------------------------------------------------------------+
[all …]
/linux/drivers/gpu/drm/rockchip/
H A Dcdn-dp-reg.c1 // SPDX-License-Identifier: GPL-2.0-only
4 * Author: Chris Zhong <zyw@rock-chips.com>
14 #include "cdn-dp-core.h"
15 #include "cdn-dp-reg.h"
26 writel(clk / 1000000, dp->regs + SW_CLK_H); in cdn_dp_set_fw_clk()
45 writel(val, dp->regs + SOURCE_DPTX_CAR); in cdn_dp_clock_reset()
48 writel(val, dp->regs + SOURCE_PHY_CAR); in cdn_dp_clock_reset()
54 writel(val, dp->regs + SOURCE_PKT_CAR); in cdn_dp_clock_reset()
62 writel(val, dp->regs + SOURCE_AIF_CAR); in cdn_dp_clock_reset()
68 writel(val, dp->regs + SOURCE_CIPHER_CAR); in cdn_dp_clock_reset()
[all …]
/linux/drivers/media/platform/ti/omap3isp/
H A Dispvideo.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * TI OMAP3 ISP - Generic video node
7 * Copyright (C) 2009-2010 Nokia Corporation
22 #include <media/v4l2-dev.h>
23 #include <media/v4l2-ioctl.h>
24 #include <media/v4l2-mc.h>
25 #include <media/videobuf2-dma-contig.h>
31 /* -----------------------------------------------------------------------------
37 * corresponding in-memory formats to the table below!!!
128 * isp_video_mbus_to_pix - Convert v4l2_mbus_framefmt to v4l2_pix_format
[all …]
/linux/drivers/video/fbdev/matrox/
H A Dmatroxfb_crtc2.c1 // SPDX-License-Identifier: GPL-2.0-only
6 * (c) 1998-2002 Petr Vandrovec <vandrove@vc.cvut.cz>
38 if (m2info->fbcon.var.grayscale) { in matroxfb_dh_setcolreg()
42 red = CNVT_TOHW(red, m2info->fbcon.var.red.length); in matroxfb_dh_setcolreg()
43 green = CNVT_TOHW(green, m2info->fbcon.var.green.length); in matroxfb_dh_setcolreg()
44 blue = CNVT_TOHW(blue, m2info->fbcon.var.blue.length); in matroxfb_dh_setcolreg()
45 transp = CNVT_TOHW(transp, m2info->fbcon.var.transp.length); in matroxfb_dh_setcolreg()
47 col = (red << m2info->fbcon.var.red.offset) | in matroxfb_dh_setcolreg()
48 (green << m2info->fbcon.var.green.offset) | in matroxfb_dh_setcolreg()
49 (blue << m2info->fbcon.var.blue.offset) | in matroxfb_dh_setcolreg()
[all …]
/linux/drivers/media/usb/cx231xx/
H A Dcx231xx-pcb-cfg.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 cx231xx-pcb-config.c - driver for Conexant
4 Cx23100/101/102 USB video capture devices
11 #include "cx231xx-conf-reg.h"
15 MODULE_PARM_DESC(pcb_debug, "enable pcb config debug messages [video]");
24 MOD_DIGITAL, /* mode */
43 NOT_SUPPORTED, /* VIDEO */
62 /* full-speed config */
71 NOT_SUPPORTED, /* VIDEO */
95 MOD_DIGITAL, /* mode */
[all …]
/linux/Documentation/arch/m68k/
H A Dkernel-options.rst9 Author: Roman.Hodek@informatik.uni-erlangen.de (Roman Hodek)
11 Update: jds@kom.auc.dk (Jes Sorensen) and faq@linux-m68k.org (Chris Lawrence)
58 ----------
76 /dev/ram: -> 0x0100 (initial ramdisk)
77 /dev/hda: -> 0x0300 (first IDE disk)
78 /dev/hdb: -> 0x0340 (second IDE disk)
79 /dev/sda: -> 0x0800 (first SCSI disk)
80 /dev/sdb: -> 0x0810 (second SCSI disk)
81 /dev/sdc: -> 0x0820 (third SCSI disk)
82 /dev/sdd: -> 0x0830 (forth SCSI disk)
[all …]

12345678910>>...42