/linux-4.1.27/drivers/gpu/drm/exynos/ |
D | exynos_drm_encoder.c | 32 struct exynos_drm_display *display; member 38 struct exynos_drm_display *display = exynos_encoder->display; in exynos_drm_encoder_dpms() local 42 if (display->ops->dpms) in exynos_drm_encoder_dpms() 43 display->ops->dpms(display, mode); in exynos_drm_encoder_dpms() 53 struct exynos_drm_display *display = exynos_encoder->display; in exynos_drm_encoder_mode_fixup() local 60 if (display->ops->mode_fixup) in exynos_drm_encoder_mode_fixup() 61 display->ops->mode_fixup(display, connector, mode, in exynos_drm_encoder_mode_fixup() 73 struct exynos_drm_display *display = exynos_encoder->display; in exynos_drm_encoder_mode_set() local 75 if (display->ops->mode_set) in exynos_drm_encoder_mode_set() 76 display->ops->mode_set(display, adjusted_mode); in exynos_drm_encoder_mode_set() [all …]
|
D | exynos_drm_drv.h | 124 int (*create_connector)(struct exynos_drm_display *display, 126 void (*remove)(struct exynos_drm_display *display); 127 void (*mode_fixup)(struct exynos_drm_display *display, 131 void (*mode_set)(struct exynos_drm_display *display, 133 int (*check_mode)(struct exynos_drm_display *display, 135 void (*dpms)(struct exynos_drm_display *display, int mode); 136 void (*commit)(struct exynos_drm_display *display); 307 int exynos_dpi_remove(struct exynos_drm_display *display); 311 static inline int exynos_dpi_remove(struct exynos_drm_display *display) in exynos_dpi_remove() argument 327 struct exynos_drm_display *display);
|
D | exynos_drm_dpi.c | 25 struct exynos_drm_display display; member 41 return container_of(d, struct exynos_dpi, display); in display_to_dpi() 106 static int exynos_dpi_create_connector(struct exynos_drm_display *display, in exynos_dpi_create_connector() argument 109 struct exynos_dpi *ctx = display_to_dpi(display); in exynos_dpi_create_connector() 148 static void exynos_dpi_dpms(struct exynos_drm_display *display, int mode) in exynos_dpi_dpms() argument 150 struct exynos_dpi *ctx = display_to_dpi(display); in exynos_dpi_dpms() 307 ctx->display.type = EXYNOS_DISPLAY_TYPE_LCD; in exynos_dpi_probe() 308 ctx->display.ops = &exynos_dpi_display_ops; in exynos_dpi_probe() 314 ctx->display.type); in exynos_dpi_probe() 333 return &ctx->display; in exynos_dpi_probe() [all …]
|
D | exynos_drm_core.c | 24 struct exynos_drm_display *display) in exynos_drm_create_enc_conn() argument 30 ret = exynos_drm_crtc_get_pipe_from_type(dev, display->type); in exynos_drm_create_enc_conn() 37 encoder = exynos_drm_encoder_create(dev, display, possible_crtcs); in exynos_drm_create_enc_conn() 43 display->encoder = encoder; in exynos_drm_create_enc_conn() 45 ret = display->ops->create_connector(display, encoder); in exynos_drm_create_enc_conn()
|
D | exynos_drm_vidi.c | 37 struct exynos_drm_display display; member 59 return container_of(d, struct vidi_context, display); in display_to_vidi() 307 struct exynos_drm_display *display; in vidi_connection_ioctl() local 322 display = exynos_drm_get_display(encoder); in vidi_connection_ioctl() 324 if (display->type == EXYNOS_DISPLAY_TYPE_VIDI) { in vidi_connection_ioctl() 325 ctx = display_to_vidi(display); in vidi_connection_ioctl() 432 static int vidi_create_connector(struct exynos_drm_display *display, in vidi_create_connector() argument 435 struct vidi_context *ctx = display_to_vidi(display); in vidi_create_connector() 490 ret = exynos_drm_create_enc_conn(drm_dev, &ctx->display); in vidi_bind() 518 ctx->display.type = EXYNOS_DISPLAY_TYPE_VIDI; in vidi_probe() [all …]
|
D | exynos_drm_dsi.c | 271 struct exynos_drm_display display; member 309 return container_of(d, struct exynos_dsi, display); in display_to_dsi() 1119 struct drm_encoder *encoder = dsi->display.encoder; in exynos_dsi_te_irq_handler() 1408 static void exynos_dsi_dpms(struct exynos_drm_display *display, int mode) in exynos_dsi_dpms() argument 1410 struct exynos_dsi *dsi = display_to_dsi(display); in exynos_dsi_dpms() 1438 struct exynos_drm_display *display; in exynos_dsi_detect() local 1440 display = platform_get_drvdata(to_platform_device(dsi->dev)); in exynos_dsi_detect() 1441 exynos_dsi_dpms(display, DRM_MODE_DPMS_OFF); in exynos_dsi_detect() 1481 return dsi->display.encoder; in exynos_dsi_best_encoder() 1489 static int exynos_dsi_create_connector(struct exynos_drm_display *display, in exynos_dsi_create_connector() argument [all …]
|
D | exynos_dp_core.c | 47 return container_of(d, struct exynos_dp_device, display); in display_to_dp() 894 static void exynos_dp_commit(struct exynos_drm_display *display) in exynos_dp_commit() argument 896 struct exynos_dp_device *dp = display_to_dp(display); in exynos_dp_commit() 1019 static int exynos_dp_create_connector(struct exynos_drm_display *display, in exynos_dp_create_connector() argument 1022 struct exynos_dp_device *dp = display_to_dp(display); in exynos_dp_create_connector() 1087 exynos_dp_commit(&dp->display); in exynos_dp_poweron() 1118 static void exynos_dp_dpms(struct exynos_drm_display *display, int mode) in exynos_dp_dpms() argument 1120 struct exynos_dp_device *dp = display_to_dp(display); in exynos_dp_dpms() 1311 return exynos_drm_create_enc_conn(drm_dev, &dp->display); in exynos_dp_bind() 1319 exynos_dp_dpms(&dp->display, DRM_MODE_DPMS_OFF); in exynos_dp_unbind() [all …]
|
D | exynos7_drm_decon.c | 64 struct exynos_drm_display *display; member 787 if (ctx->display) in decon_bind() 788 exynos_drm_create_enc_conn(drm_dev, ctx->display); in decon_bind() 801 if (ctx->display) in decon_unbind() 802 exynos_dpi_remove(ctx->display); in decon_unbind() 894 ctx->display = exynos_dpi_probe(dev); in decon_probe() 895 if (IS_ERR(ctx->display)) { in decon_probe() 896 ret = PTR_ERR(ctx->display); in decon_probe()
|
D | exynos_drm_fimd.c | 172 struct exynos_drm_display *display; member 1043 if (ctx->display) in fimd_bind() 1044 exynos_drm_create_enc_conn(drm_dev, ctx->display); in fimd_bind() 1058 if (ctx->display) in fimd_unbind() 1059 exynos_dpi_remove(ctx->display); in fimd_unbind() 1176 ctx->display = exynos_dpi_probe(dev); in fimd_probe() 1177 if (IS_ERR(ctx->display)) { in fimd_probe() 1178 ret = PTR_ERR(ctx->display); in fimd_probe()
|
D | exynos_hdmi.c | 184 struct exynos_drm_display display; member 218 return container_of(d, struct hdmi_context, display); in display_to_hdmi() 1128 static int hdmi_create_connector(struct exynos_drm_display *display, in hdmi_create_connector() argument 1131 struct hdmi_context *hdata = display_to_hdmi(display); in hdmi_create_connector() 1153 static void hdmi_mode_fixup(struct exynos_drm_display *display, in hdmi_mode_fixup() argument 2001 static void hdmi_mode_set(struct exynos_drm_display *display, in hdmi_mode_set() argument 2004 struct hdmi_context *hdata = display_to_hdmi(display); in hdmi_mode_set() 2021 static void hdmi_commit(struct exynos_drm_display *display) in hdmi_commit() argument 2023 struct hdmi_context *hdata = display_to_hdmi(display); in hdmi_commit() 2062 hdmi_commit(&hdata->display); in hdmi_poweron() [all …]
|
/linux-4.1.27/arch/mips/mti-sead3/ |
D | sead3-display.c | 28 static void lcd_wait(unsigned int __iomem *display) in lcd_wait() argument 31 do { } while (__raw_readl(display + DISPLAY_CPLDSTATUS) & 1); in lcd_wait() 34 __raw_readl(display + DISPLAY_LCDINSTRUCTION); in lcd_wait() 37 do { } while (__raw_readl(display + DISPLAY_CPLDSTATUS) & 1); in lcd_wait() 38 } while (__raw_readl(display + DISPLAY_CPLDDATA) & LCD_IR_BF); in lcd_wait() 43 static unsigned int __iomem *display; in mips_display_message() local 47 if (unlikely(display == NULL)) in mips_display_message() 48 display = ioremap_nocache(LCD_DISPLAY_POS_BASE, in mips_display_message() 56 lcd_wait(display); in mips_display_message() 58 (display + DISPLAY_LCDINSTRUCTION)); in mips_display_message() [all …]
|
D | Makefile | 11 obj-y := sead3-lcd.o sead3-display.o sead3-init.o \
|
/linux-4.1.27/drivers/video/fbdev/omap2/omapfb/ |
D | omapfb-ioctl.c | 217 struct omap_dss_device *display = fb2display(fbi); in omapfb_setup_mem() local 227 if (display && display->driver->sync) in omapfb_setup_mem() 228 display->driver->sync(display); in omapfb_setup_mem() 292 struct omap_dss_device *display = fb2display(fbi); in omapfb_update_window() local 295 if (!display) in omapfb_update_window() 301 display->driver->get_resolution(display, &dw, &dh); in omapfb_update_window() 306 return display->driver->update(display, x, y, w, h); in omapfb_update_window() 312 struct omap_dss_device *display = fb2display(fbi); in omapfb_set_update_mode() local 318 if (!display) in omapfb_set_update_mode() 326 d = get_display_data(fbdev, display); in omapfb_set_update_mode() [all …]
|
D | omapfb-main.c | 668 struct omap_dss_device *display = fb2display(fbi); in check_fb_var() local 709 if (display && display->driver->get_dimensions) { in check_fb_var() 711 display->driver->get_dimensions(display, &w, &h); in check_fb_var() 721 if (display && display->driver->get_timings) { in check_fb_var() 723 display->driver->get_timings(display, &timings); in check_fb_var() 1231 struct omap_dss_device *display = fb2display(fbi); in omapfb_blank() local 1235 if (!display) in omapfb_blank() 1240 d = get_display_data(fbdev, display); in omapfb_blank() 1244 if (display->state == OMAP_DSS_DISPLAY_ACTIVE) in omapfb_blank() 1247 r = display->driver->enable(display); in omapfb_blank() [all …]
|
D | omapfb-sysfs.c | 444 struct omap_dss_device *display = fb2display(fbi); in store_size() local 459 if (display && display->driver->sync) in store_size() 460 display->driver->sync(display); in store_size()
|
D | omapfb.h | 139 struct omap_dss_device *display); 141 struct omap_dss_device *display);
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | utbuffer.c | 68 void acpi_ut_dump_buffer(u8 *buffer, u32 count, u32 display, u32 base_offset) in acpi_ut_dump_buffer() argument 81 display = DB_BYTE_DISPLAY; in acpi_ut_dump_buffer() 99 acpi_os_printf("%*s", ((display * 2) + 1), " "); in acpi_ut_dump_buffer() 100 j += display; in acpi_ut_dump_buffer() 104 switch (display) { in acpi_ut_dump_buffer() 139 j += display; in acpi_ut_dump_buffer() 198 acpi_ut_debug_dump_buffer(u8 *buffer, u32 count, u32 display, u32 component_id) in acpi_ut_debug_dump_buffer() argument 208 acpi_ut_dump_buffer(buffer, count, display, 0); in acpi_ut_debug_dump_buffer() 234 u8 *buffer, u32 count, u32 display, u32 base_offset) in acpi_ut_dump_buffer_to_file() argument 248 display = DB_BYTE_DISPLAY; in acpi_ut_dump_buffer_to_file() [all …]
|
/linux-4.1.27/drivers/staging/fbtft/ |
D | fbtft_device.c | 212 .display = { 232 .display = { 255 .display = { 274 .display = { 294 .display = { 314 .display = { 332 .display = { 349 .display = { 367 .display = { 388 .display = { [all …]
|
D | fbtft-core.c | 678 struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display, in fbtft_framebuffer_alloc() argument 691 int txbuflen = display->txbuflen; in fbtft_framebuffer_alloc() 692 unsigned bpp = display->bpp; in fbtft_framebuffer_alloc() 693 unsigned fps = display->fps; in fbtft_framebuffer_alloc() 695 int *init_sequence = display->init_sequence; in fbtft_framebuffer_alloc() 696 char *gamma = display->gamma; in fbtft_framebuffer_alloc() 700 if (display->gamma_num * display->gamma_len > FBTFT_GAMMA_MAX_VALUES_TOTAL) { in fbtft_framebuffer_alloc() 722 if (pdata->display.init_sequence) in fbtft_framebuffer_alloc() 723 init_sequence = pdata->display.init_sequence; in fbtft_framebuffer_alloc() 726 if (pdata->display.debug) in fbtft_framebuffer_alloc() [all …]
|
D | fb_ili9486.c | 102 static struct fbtft_display display = { variable 112 FBTFT_REGISTER_DRIVER(DRVNAME, "ilitek,ili9486", &display);
|
D | fb_s6d02a1.c | 149 static struct fbtft_display display = { variable 159 FBTFT_REGISTER_DRIVER(DRVNAME, "samsung,s6d02a1", &display);
|
D | fb_ili9481.c | 98 static struct fbtft_display display = { variable 108 FBTFT_REGISTER_DRIVER(DRVNAME, "ilitek,ili9481", &display);
|
D | Kconfig | 2 tristate "Support for small TFT LCD display modules" 12 tristate "FB driver for the AGM1264K-FL LCD display" 15 Framebuffer support for the AGM1264K-FL LCD display (two Samsung KS0108 compatable chips) 138 tristate "FB driver for tinylcd.com display" 141 Custom Framebuffer support for tinylcd.com display
|
D | fb_tinylcd.c | 107 static struct fbtft_display display = { variable 117 FBTFT_REGISTER_DRIVER(DRVNAME, "neosec,tinylcd", &display);
|
D | fb_ili9340.c | 144 static struct fbtft_display display = { variable 154 FBTFT_REGISTER_DRIVER(DRVNAME, "ilitek,ili9340", &display);
|
D | fb_hx8353d.c | 143 static struct fbtft_display display = { variable 157 FBTFT_REGISTER_DRIVER(DRVNAME, "himax,hx8353d", &display);
|
D | fbtft.h | 160 struct fbtft_display display; member 267 extern struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display, 275 extern int fbtft_probe_common(struct fbtft_display *display, 423 …(((struct fbtft_platform_data *)(dev)->platform_data)->display.debug & DEBUG_DRIVER_INIT_FUNCTIONS…
|
D | fb_st7735r.c | 172 static struct fbtft_display display = { variable 186 FBTFT_REGISTER_DRIVER(DRVNAME, "sitronix,st7735r", &display);
|
D | fb_tls8204.c | 153 static struct fbtft_display display = { variable 169 FBTFT_REGISTER_DRIVER(DRVNAME, "teralane,tls8204", &display);
|
D | fb_pcd8544.c | 166 static struct fbtft_display display = { variable 182 FBTFT_REGISTER_DRIVER(DRVNAME, "philips,pdc8544", &display);
|
D | fb_ssd1351.c | 31 && par->pdata->display.backlight == FBTFT_ONBOARD_BACKLIGHT) { in init_display() 177 static struct fbtft_display display = { variable 246 FBTFT_REGISTER_DRIVER(DRVNAME, "solomon,ssd1351", &display);
|
D | fb_uc1701.c | 193 static struct fbtft_display display = { variable 204 FBTFT_REGISTER_DRIVER(DRVNAME, "UltraChip,uc1701", &display);
|
D | fb_hx8340bn.c | 196 static struct fbtft_display display = { variable 211 FBTFT_REGISTER_DRIVER(DRVNAME, "himax,hx8340bn", &display);
|
D | fb_upd161704.c | 187 static struct fbtft_display display = { variable 197 FBTFT_REGISTER_DRIVER(DRVNAME, "nec,upd161704", &display);
|
D | fb_bd663474.c | 173 static struct fbtft_display display = { variable 184 FBTFT_REGISTER_DRIVER(DRVNAME, "hitachi,bd663474", &display);
|
D | fb_ili9341.c | 155 static struct fbtft_display display = { variable 170 FBTFT_REGISTER_DRIVER(DRVNAME, "ilitek,ili9341", &display);
|
D | fb_ssd1306.c | 203 static struct fbtft_display display = { variable 220 FBTFT_REGISTER_DRIVER(DRVNAME, "solomon,ssd1306", &display);
|
D | fb_hx8347d.c | 158 static struct fbtft_display display = { variable 171 FBTFT_REGISTER_DRIVER(DRVNAME, "himax,hx8347d", &display);
|
D | fb_s6d1121.c | 181 static struct fbtft_display display = { variable 197 FBTFT_REGISTER_DRIVER(DRVNAME, "samsung,s6d1121", &display);
|
D | fb_ssd1289.c | 182 static struct fbtft_display display = { variable 196 FBTFT_REGISTER_DRIVER(DRVNAME, "solomon,ssd1289", &display);
|
D | fb_ili9325.c | 265 static struct fbtft_display display = { variable 281 FBTFT_REGISTER_DRIVER(DRVNAME, "ilitek,ili9325", &display);
|
D | fb_ili9320.c | 211 static struct fbtft_display display = { variable 225 FBTFT_REGISTER_DRIVER(DRVNAME, "ilitek,ili9320", &display);
|
D | fb_ssd1331.c | 180 static struct fbtft_display display = { variable 196 FBTFT_REGISTER_DRIVER(DRVNAME, "solomon,ssd1331", &display);
|
D | fb_ili9163.c | 273 static struct fbtft_display display = { variable 294 FBTFT_REGISTER_DRIVER(DRVNAME, "ilitek,ili9163", &display);
|
D | README | 4 Linux Framebuffer drivers for small TFT LCD display modules.
|
/linux-4.1.27/Documentation/devicetree/bindings/drm/imx/ |
D | fsl-imx-drm.txt | 5 IPU or other display interface nodes that comprise the graphics subsystem. 8 - compatible: Should be "fsl,imx-display-subsystem" 9 - ports: Should contain a list of phandles pointing to display interface ports 14 display-subsystem { 15 compatible = "fsl,display-subsystem"; 56 Parallel display support 60 - compatible: Should be "fsl,imx-parallel-display" 62 - interface_pix_fmt: How this display is connected to the 63 display interface. Currently supported types: "rgb24", "rgb565", "bgr666" 65 - edid: verbatim EDID data block describing attached display. [all …]
|
D | ldb.txt | 14 multiplexer in the front to select any of the four IPU display 20 the display interface selector clocks, as described in 48 or a display-timings node that describes the video timings for the connected 49 LVDS display as well as the fsl,data-mapping and fsl,data-width properties. 62 display-timings are used instead. 64 Optional properties (required if display-timings are used): 65 - display-timings : A node that describes the display timings as defined in 66 Documentation/devicetree/bindings/video/display-timing.txt. 116 /* Using display-timings and fsl,data-mapping/width instead */ 124 display-timings {
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | cirrus,clps711x-fb.txt | 8 - display : phandle to a display node as described in 9 Documentation/devicetree/bindings/video/display-timing.txt. 10 Additionally, the display node has to define properties: 25 display = <&display>; 28 display: display { 34 display-timings {
|
D | simple-framebuffer.txt | 4 the bootloader, with the assumption that the display hardware has already 10 If the devicetree contains nodes for the display hardware used by a simplefb, 11 then the simplefb node must contain a property called "display", which 12 contains a phandle pointing to the primary display hw node, so that the OS 17 It is advised to add display# aliases to help the OS determine how to number 18 things. If display# aliases are used, then if the simplefb node contains a 19 "display" property then the /aliases/display# path must point to the display 20 hw node the "display" property points to, otherwise it must point directly 25 primary display hw node, as with display# aliases. If display aliases are 30 enable them. This way if e.g. later on support for more display clocks get [all …]
|
D | display-timing.txt | 1 display-timing bindings 4 display-timings node 11 - native-mode: The native mode for the display, in case multiple modes are 18 - hactive, vactive: display resolution 19 - hfront-porch, hback-porch, hsync-len: horizontal display timing parameters 21 vfront-porch, vback-porch, vsync-len: vertical display timing parameters in 23 - clock-frequency: display clock in Hz 44 There are different ways of describing the capabilities of a display. The 46 for displays. If a display supports multiple signal timings, the native-mode 77 display-timings {
|
D | rockchip-drm.txt | 5 vop devices or other display interface nodes that comprise the 9 - compatible: Should be "rockchip,display-subsystem" 10 - ports: Should contain a list of phandles pointing to display interface port 16 display-subsystem { 17 compatible = "rockchip,display-subsystem";
|
D | atmel,lcdc.txt | 17 - display: a phandle pointing to the display node 20 - display: a display node is required to initialize the lcd panel 22 - default-mode: a videomode within the display with timing parameters 36 display = <&display0>; 67 display0: display { 75 display-timings {
|
D | fsl,imx-fb.txt | 11 - display: Phandle to a display node as described in 12 Documentation/devicetree/bindings/video/display-timing.txt 13 Additional, the display node has to define properties: 32 display = <&display0>; 42 display-timings {
|
D | wm,wm8505-fb.txt | 10 - display-timings: see display-timing.txt for information 19 display-timings {
|
D | via,vt8500-fb.txt | 11 - display-timings: see display-timing.txt for information 21 display-timings {
|
D | panel-dpi.txt | 13 (Documentation/devicetree/bindings/video/display-timing.txt) 19 lcd0: display@0 {
|
D | exynos_dp.txt | 1 The Exynos display port interface should be configured based on 52 - display-timings: timings for the connected panel as described by 53 Documentation/devicetree/bindings/video/display-timing.txt 98 display-timings {
|
D | exynos7-decon.txt | 1 Device-Tree bindings for Samsung Exynos7 SoC display controller (DECON) 37 - display-timings: timing settings for DECON, as described in document [1]. 41 [1]: Documentation/devicetree/bindings/video/display-timing.txt
|
D | ti,omap-dss.txt | 18 DISPC is the display controller, which reads pixels from the memory and outputs 39 name for each display. If no aliases are defined, a semi-random number is used 40 for the display.
|
D | samsung-fimd.txt | 1 Device-Tree bindings for Samsung SoC display controller (FIMD) 44 - display-timings: timing settings for FIMD, as described in document [1]. 85 [1]: Documentation/devicetree/bindings/video/display-timing.txt
|
D | ssd1289fb.txt | 10 display@2,0 {
|
D | panel-dsi-cm.txt | 18 lcd0: display {
|
/linux-4.1.27/Documentation/devicetree/bindings/fb/ |
D | mxsfb.txt | 8 - display : phandle to display node (see below for details) 10 * display node 17 - display-timings : Refer to binding doc display-timing.txt for details. 26 display: display { 30 display-timings {
|
D | sm501fb.txt | 18 - edid : verbatim EDID data block describing attached display. 20 program the display controller. 27 display@1,0 {
|
/linux-4.1.27/arch/mips/mti-malta/ |
D | malta-display.c | 25 static unsigned int __iomem *display = NULL; in mips_display_message() local 28 if (unlikely(display == NULL)) in mips_display_message() 29 display = ioremap(ASCII_DISPLAY_POS_BASE, 16*sizeof(int)); in mips_display_message() 33 __raw_writel(*str++, display + i); in mips_display_message() 35 __raw_writel(' ', display + i); in mips_display_message()
|
D | Makefile | 8 obj-y := malta-display.o malta-init.o \
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
D | nv50.c | 469 nv50_priv_mp_trap(struct nv50_gr_priv *priv, int tpid, int display) in nv50_priv_mp_trap() argument 486 if (display) { in nv50_priv_mp_trap() 502 if (!mps && display) in nv50_priv_mp_trap() 509 u32 ustatus_new, int display, const char *name) in nv50_priv_tp_trap() argument 528 if (display) { in nv50_priv_tp_trap() 544 nv50_priv_mp_trap(priv, i, display); in nv50_priv_tp_trap() 547 if (ustatus && display) { in nv50_priv_tp_trap() 555 if (display) in nv50_priv_tp_trap() 562 if (display) in nv50_priv_tp_trap() 568 if (!tps && display) in nv50_priv_tp_trap() [all …]
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-platform-asus-laptop | 1 What: /sys/devices/platform/asus_laptop/display 6 This file allows display switching. The value 13 Ex: - 0 (0000b) means no display 29 Some models like the W1N have a LED display that can be 30 used to display several items of information. 31 To control the LED display, use the following : 33 where T control the 3 letters display, and DDD the 3 digits display.
|
D | sysfs-bus-usb-devices-usbsevseg | 5 Description: Controls whether the device's display will powered. 13 Description: Controls the devices display mode. 14 For a 6 character display the values are 16 for an 8 character display the values are 32 Description: The text (or data) for the device to display
|
D | sysfs-platform-ts5500 | 7 it will display "1", otherwise "0". 15 it will display "1", otherwise "0". 46 it will display "1", otherwise "0". 54 it will display "1", otherwise "0".
|
D | sysfs-firmware-sgi_uv | 17 partition id. To display the partition id, use the command: 24 this partition is in. To display the coherence id, use the
|
D | sysfs-devices-edac | 84 userspace tools in order to display the memory filling layout. 90 Description: This attribute file will display the size of dimm or rank. 101 Description: This attribute file will display what type of DRAM device is 108 Description: This attribute file will display what type of Error detection 131 Description: This attribute file will display the location (csrow/channel, 138 Description: This attribute file will display what type of memory is
|
D | sysfs-devices-memory | 10 http://www.ibm.com/developerworks/wikis/display/LinuxP/powerpc-utils 22 http://www.ibm.com/developerworks/wikis/display/LinuxP/powerpc-utils 61 http://www.ibm.com/developerworks/wikis/display/LinuxP/powerpc-utils
|
/linux-4.1.27/drivers/video/fbdev/ |
D | nuc900fb.c | 95 struct nuc900fb_display *display = NULL; in nuc900fb_check_var() local 107 display = default_display; in nuc900fb_check_var() 113 display = mach_info->displays + i; in nuc900fb_check_var() 117 if (display == NULL) { in nuc900fb_check_var() 124 var->xres_virtual = display->xres; in nuc900fb_check_var() 125 var->yres_virtual = display->yres; in nuc900fb_check_var() 126 var->height = display->height; in nuc900fb_check_var() 127 var->width = display->width; in nuc900fb_check_var() 130 var->pixclock = display->pixclock; in nuc900fb_check_var() 131 var->left_margin = display->left_margin; in nuc900fb_check_var() [all …]
|
D | s3c2410fb.c | 127 struct s3c2410fb_display *display = NULL; in s3c2410fb_check_var() local 140 display = default_display; in s3c2410fb_check_var() 147 display = mach_info->displays + i; in s3c2410fb_check_var() 151 if (!display) { in s3c2410fb_check_var() 158 var->xres_virtual = display->xres; in s3c2410fb_check_var() 159 var->yres_virtual = display->yres; in s3c2410fb_check_var() 160 var->height = display->height; in s3c2410fb_check_var() 161 var->width = display->width; in s3c2410fb_check_var() 164 var->pixclock = display->pixclock; in s3c2410fb_check_var() 165 var->left_margin = display->left_margin; in s3c2410fb_check_var() [all …]
|
D | s1d13xxxfb.c | 213 if ((s1dfb->display & 0x01)) /* LCD */ in s1d13xxxfb_set_par() 244 if ((s1dfb->display & 0x01)) /* LCD */ in s1d13xxxfb_set_par() 348 if ((par->display & 0x01) != 0) in s1d13xxxfb_blank() 350 if ((par->display & 0x02) != 0) in s1d13xxxfb_blank() 393 if ((par->display & 0x01)) { in s1d13xxxfb_pan_display() 650 u8 panel, display; in s1d13xxxfb_fetch_hw_state() local 661 par->display = s1d13xxxfb_readreg(par, S1DREG_COM_DISP_MODE); in s1d13xxxfb_fetch_hw_state() 662 crt_enabled = (par->display & 0x02) != 0; in s1d13xxxfb_fetch_hw_state() 663 lcd_enabled = (par->display & 0x01) != 0; in s1d13xxxfb_fetch_hw_state() 669 display = s1d13xxxfb_readreg(par, S1DREG_LCD_DISP_MODE); in s1d13xxxfb_fetch_hw_state() [all …]
|
D | pmag-aa-fb.c | 86 struct display disp; 116 static void aafbcon_cursor(struct display *disp, int mode, int x, int y) in aafbcon_cursor() 148 static int aafbcon_set_font(struct display *disp, int width, int height) in aafbcon_set_font() 245 static void aafb_set_disp(struct display *disp, int con, in aafb_set_disp() 308 struct display *old = (currcon < 0) ? &ip->disp : (fb_display + currcon); in aafb_switch() 309 struct display *new = (con < 0) ? &ip->disp : (fb_display + con); in aafb_switch() 381 struct display *disp = (con < 0) ? &ip->disp : (fb_display + con); in aafb_update_var()
|
D | Kconfig | 52 something on your display, try setting this to N. Matrox cards in 348 If you plan to use the LCD display with your SA-1100 system, say 492 bool "Apple \"control\" display support" 503 bool "Apple \"platinum\" display support" 514 bool "Apple \"valkyrie\" display support" 525 bool "Chips 65550 display support" 535 bool "Asiliant (Chips) 69000 display support" 544 bool "IMS Twin Turbo display support" 577 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)" 584 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD [all …]
|
D | sh_mobile_lcdcfb.c | 548 ch->display.mode.xres, ch->display.mode.yres, in sh_mobile_lcdc_must_reconfigure() 552 if (fb_mode_is_equal(&ch->display.mode, new_mode)) in sh_mobile_lcdc_must_reconfigure() 556 ch->display.mode.yres, new_mode->yres); in sh_mobile_lcdc_must_reconfigure() 557 ch->display.mode = *new_mode; in sh_mobile_lcdc_must_reconfigure() 581 ch->display.width = monspec->max_x * 10; in sh_mobile_lcdc_display_notify() 582 ch->display.height = monspec->max_y * 10; in sh_mobile_lcdc_display_notify() 590 info->var.width = ch->display.width; in sh_mobile_lcdc_display_notify() 591 info->var.height = ch->display.height; in sh_mobile_lcdc_display_notify() 817 const struct fb_videomode *mode = &ch->display.mode; in sh_mobile_lcdc_geometry() 1911 if (fb_mode_is_equal(&ch->display.mode, &mode)) in sh_mobile_fb_reconfig() [all …]
|
D | sh_mobile_lcdcfb.h | 106 } display; member
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | imx6dl-tx6dl-comtft.dts | 21 display = &display; 46 display: display@di0 { label 47 compatible = "fsl,imx-parallel-display"; 59 display-timings {
|
D | imx6q-tx6q-1010-comtft.dts | 21 display = &display; 46 display: display@di0 { label 47 compatible = "fsl,imx-parallel-display"; 59 display-timings {
|
D | imx6q-tx6q-1020-comtft.dts | 21 display = &display; 46 display: display@di0 { label 47 compatible = "fsl,imx-parallel-display"; 59 display-timings {
|
D | imx6dl-tx6u-801x.dts | 21 display = &display; 46 display: display@di0 { label 47 compatible = "fsl,imx-parallel-display"; 59 display-timings {
|
D | imx6q-tx6q-1010.dts | 21 display = &display; 46 display: display@di0 { label 47 compatible = "fsl,imx-parallel-display"; 59 display-timings {
|
D | imx6q-tx6q-1020.dts | 21 display = &display; 46 display: display@di0 { label 47 compatible = "fsl,imx-parallel-display"; 59 display-timings {
|
D | imx27-phytec-phycard-s-rdk.dts | 22 display: display { label 27 display-timings { 59 display = <&display>;
|
D | imx6dl-aristainetos_7.dts | 24 display0: display@di0 { 25 compatible = "fsl,imx-parallel-display"; 31 display-timings {
|
D | imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts | 20 dvi_vga: display { 26 display-timings { 43 display = <&dvi_vga>;
|
D | imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts | 20 dvi_svga: display { 26 display-timings { 43 display = <&dvi_svga>;
|
D | imx6dl-aristainetos_4.dts | 35 display0: display@di0 { 36 compatible = "fsl,imx-parallel-display"; 42 display-timings {
|
D | imx53-tx53-x03x.dts | 22 display = &display; 26 display: display@di0 { label 27 compatible = "fsl,imx-parallel-display"; 39 display-timings {
|
D | imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts | 20 cmo_qvga: display { 26 display-timings { 69 display = <&cmo_qvga>;
|
D | imx27-apf27dev.dts | 19 display: display { label 24 display-timings { 108 display = <&display>;
|
D | imx6dl-tx6u-811x.dts | 21 display = &lvds0; 106 display-timings { 129 display-timings {
|
D | imx6q-tx6q-1110.dts | 21 display = &lvds0; 106 display-timings { 129 display-timings {
|
D | atlas6-evb.dts | 60 display: display@0 { label
|
D | omap3-panel-sharp-ls037v7dw01.dtsi | 5 * at minimum the GPIO enable-gpios for display, and 28 lcd0: display {
|
D | at91sam9rlek.dts | 44 display = <&display0>; 47 display0: display { 55 display-timings {
|
D | at91sam9263ek.dts | 107 display = <&display0>; 110 display0: display { 117 display-timings {
|
D | atlas7-evb.dts | 83 display0: display@0 { 90 display-timings {
|
D | at91sam9261ek.dts | 48 display = <&display0>; 52 display0: display { 60 display-timings {
|
D | imx53-tx53-x13x.dts | 21 display = &lvds0; 190 display-timings { 215 display-timings {
|
D | imx51-apf51dev.dts | 27 display@di1 { 28 compatible = "fsl,imx-parallel-display"; 33 display-timings {
|
D | imx51-babbage.dts | 42 display0: display@di0 { 43 compatible = "fsl,imx-parallel-display"; 47 display-timings { 69 display1: display@di1 { 70 compatible = "fsl,imx-parallel-display"; 75 display-timings {
|
D | imx6dl.dtsi | 103 display-subsystem { 104 compatible = "fsl,imx-display-subsystem";
|
D | imx28-cfa10056.dts | 67 display = <&display0>; 74 display-timings {
|
D | imx28-cfa10058.dts | 54 display = <&display0>; 61 display-timings {
|
D | at91sam9m10g45ek.dts | 179 display = <&display0>; 182 display0: display { 190 display-timings {
|
D | stih407.dtsi | 26 sti-display-subsystem { 27 compatible = "st,sti-display-subsystem";
|
D | imx23-evk.dts | 63 display = <&display0>; 70 display-timings {
|
D | imx53-m53evk.dts | 19 display1: display@di1 { 20 compatible = "fsl,imx-parallel-display"; 25 display-timings {
|
D | imx28-cfa10057.dts | 81 display = <&display0>; 88 display-timings {
|
D | imx28-cfa10055.dts | 95 display = <&display0>; 102 display-timings {
|
D | wm8505-ref.dts | 18 display-timings {
|
D | vt8500-bv07.dts | 18 display-timings {
|
D | wm8650-mid.dts | 19 display-timings {
|
D | imx53-qsb-common.dtsi | 25 display0: display@di0 { 26 compatible = "fsl,imx-parallel-display"; 31 display-timings {
|
D | imx25-pdk.dts | 80 wvga: display { 86 display-timings { 255 display = <&wvga>;
|
D | sama5d3xdm.dtsi | 2 * sama5d3dm.dtsi - Device Tree file for SAMA5 display module
|
D | wm8850-w70v2.dts | 30 display-timings {
|
D | imx28-apx4devkit.dts | 97 display = <&display0>; 104 display-timings {
|
D | imx28-apf28dev.dts | 86 display = <&display0>; 93 display-timings {
|
D | imx27-eukrea-mbimxsd27-baseboard.dts | 24 display-timings { 103 display = <&display0>;
|
D | imx53-mba53.dts | 33 disp1: display@disp1 { 34 compatible = "fsl,imx-parallel-display";
|
D | imx6q.dtsi | 224 display-subsystem { 225 compatible = "fsl,imx-display-subsystem";
|
D | imx28-m28cu3.dts | 118 display = <&display0>; 125 display-timings {
|
D | stih410.dtsi | 97 sti-display-subsystem { 98 compatible = "st,sti-display-subsystem";
|
D | imx28-m28evk.dts | 84 display = <&display0>; 91 display-timings {
|
D | omap4-var-dvk-om44.dts | 23 lcd0: display {
|
/linux-4.1.27/drivers/video/fbdev/mmp/hw/ |
D | Kconfig | 4 bool "mmp display controller hw support" 8 Marvell MMP display hw controller support 13 bool "mmp display controller spi port" 17 Marvell MMP display hw controller spi port support
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | intel_fbc.c | 339 dev_priv->display.enable_fbc(work->crtc); in intel_fbc_work_fn() 382 if (!dev_priv->display.enable_fbc) in intel_fbc_enable() 390 dev_priv->display.enable_fbc(crtc); in intel_fbc_enable() 428 if (!dev_priv->display.disable_fbc) in intel_fbc_disable() 431 dev_priv->display.disable_fbc(dev); in intel_fbc_disable() 720 dev_priv->display.fbc_enabled = ilk_fbc_enabled; in intel_fbc_init() 721 dev_priv->display.enable_fbc = gen7_fbc_enable; in intel_fbc_init() 722 dev_priv->display.disable_fbc = ilk_fbc_disable; in intel_fbc_init() 724 dev_priv->display.fbc_enabled = ilk_fbc_enabled; in intel_fbc_init() 725 dev_priv->display.enable_fbc = ilk_fbc_enable; in intel_fbc_init() [all …]
|
D | intel_audio.c | 425 if (dev_priv->display.audio_codec_enable) in intel_audio_codec_enable() 426 dev_priv->display.audio_codec_enable(connector, intel_encoder, mode); in intel_audio_codec_enable() 441 if (dev_priv->display.audio_codec_disable) in intel_audio_codec_disable() 442 dev_priv->display.audio_codec_disable(encoder); in intel_audio_codec_disable() 454 dev_priv->display.audio_codec_enable = g4x_audio_codec_enable; in intel_init_audio() 455 dev_priv->display.audio_codec_disable = g4x_audio_codec_disable; in intel_init_audio() 457 dev_priv->display.audio_codec_enable = ilk_audio_codec_enable; in intel_init_audio() 458 dev_priv->display.audio_codec_disable = ilk_audio_codec_disable; in intel_init_audio() 460 dev_priv->display.audio_codec_enable = hsw_audio_codec_enable; in intel_init_audio() 461 dev_priv->display.audio_codec_disable = hsw_audio_codec_disable; in intel_init_audio() [all …]
|
D | intel_panel.c | 549 val = dev_priv->display.get_backlight(connector); in intel_panel_get_backlight() 628 dev_priv->display.set_backlight(connector, level); in intel_panel_actually_set_backlight() 769 dev_priv->display.disable_backlight(connector); in intel_panel_disable_backlight() 983 dev_priv->display.enable_backlight(connector); in intel_panel_enable_backlight() 1329 ret = dev_priv->display.setup_backlight(intel_connector, pipe); in intel_panel_setup_backlight() 1362 dev_priv->display.setup_backlight = bdw_setup_backlight; in intel_panel_init_backlight_funcs() 1363 dev_priv->display.enable_backlight = bdw_enable_backlight; in intel_panel_init_backlight_funcs() 1364 dev_priv->display.disable_backlight = pch_disable_backlight; in intel_panel_init_backlight_funcs() 1365 dev_priv->display.set_backlight = bdw_set_backlight; in intel_panel_init_backlight_funcs() 1366 dev_priv->display.get_backlight = bdw_get_backlight; in intel_panel_init_backlight_funcs() [all …]
|
D | intel_pm.c | 707 const struct intel_watermark_params *display, in g4x_compute_wm0() argument 723 *plane_wm = display->guard_size; in g4x_compute_wm0() 735 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8; in g4x_compute_wm0() 738 entries = DIV_ROUND_UP(entries, display->cacheline_size); in g4x_compute_wm0() 739 *plane_wm = entries + display->guard_size; in g4x_compute_wm0() 740 if (*plane_wm > (int)display->max_wm) in g4x_compute_wm0() 741 *plane_wm = display->max_wm; in g4x_compute_wm0() 767 const struct intel_watermark_params *display, in g4x_check_srwm() argument 773 if (display_wm > display->max_wm) { in g4x_check_srwm() 775 display_wm, display->max_wm); in g4x_check_srwm() [all …]
|
D | intel_display.c | 2220 dev_priv->display.update_primary_plane(crtc, plane->fb, in intel_enable_primary_hw_plane() 2254 dev_priv->display.update_primary_plane(crtc, plane->fb, in intel_disable_primary_hw_plane() 3040 if (dev_priv->display.disable_fbc) in intel_pipe_set_base_atomic() 3041 dev_priv->display.disable_fbc(dev); in intel_pipe_set_base_atomic() 3043 dev_priv->display.update_primary_plane(crtc, fb, x, y); in intel_pipe_set_base_atomic() 3076 dev_priv->display.update_primary_plane(crtc, in intel_update_primary_planes() 3105 dev_priv->display.crtc_disable(&crtc->base); in intel_prepare_reset() 3146 if (dev_priv->display.hpd_irq_setup) in intel_finish_reset() 3147 dev_priv->display.hpd_irq_setup(dev); in intel_finish_reset() 4004 dev_priv->display.fdi_link_train(crtc); in ironlake_pch_enable() [all …]
|
/linux-4.1.27/Documentation/laptops/ |
D | asus-laptop.txt | 13 On some models adds support for changing the display brightness and output, 93 Note: the display switching code is currently considered EXPERIMENTAL. 110 /sys/devices/platform/asus-laptop/display. The significance of those values 159 2) Echo values from 0 to 15 to /sys/devices/platform/asus-laptop/display. 169 echo $((10#$arg-60)) > /sys/devices/platform/asus-laptop/display 173 Note: there is currently no reliable way to read display status on xxN 176 LED display 179 Some models like the W1N have a LED display that can be used to display 182 LED display works for the following models: 186 To control the LED display, use the following : [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | diu.txt | 15 - edid : verbatim EDID data block describing attached display. 17 program the display controller. 20 display@2c000 { 28 display@2100 {
|
/linux-4.1.27/Documentation/arm/OMAP/ |
D | DSS | 6 TV-out and multiple display support, but there are lots of small improvements 46 flexible way to enable non-common multi-display configuration. In addition to 48 managers. These can be used when updating a display with CPU or system DMA. 52 There exist several display technologies and standards that support audio as 64 certain configurations audio is not supported (e.g., an HDMI display using a 66 the current configuration of the display supports audio. 69 parameters of the display. In order to make the function independent of any 107 dynamic display architecture. 134 the overlay is smaller than the display. 136 display. [all …]
|
/linux-4.1.27/Documentation/filesystems/ |
D | 9p.txt | 82 0x01 = display verbose error messages 84 0x04 = display 9p trace 85 0x08 = display VFS trace 86 0x10 = display Marshalling debug 87 0x20 = display RPC debug 88 0x40 = display transport debug 89 0x80 = display allocation debug 90 0x100 = display protocol message debug 91 0x200 = display Fid debug 92 0x400 = display packet debug [all …]
|
/linux-4.1.27/Documentation/fb/ |
D | metronomefb.txt | 6 Metronomefb is a driver for the Metronome display controller. The controller 8 Vizplex display media. E-Ink hosts some details of this controller and the 9 display media here http://www.e-ink.com/products/matrix/metronome.html . 14 The display and error status are each pulled through individual GPIOs. 29 a possibility that it could have some permanent effects on the display media.
|
D | modedb.txt | 41 'e' will force the display to be enabled, i.e. it will override the detection 42 if a display is connected. 'D' will force the display to be enabled and use 61 and coordinated set of standard formats, display refresh rates, and 62 timing specifications for computer display products, both those 63 employing CRTs, and those using other display technologies. The 64 intention of CVT is to give both source and display manufacturers a 76 requirement. This is inappropriate for digital display interface with its high 78 Also, GTF does not take into account the aspect ratio of the display. 85 to the global mode database whenever a new mode is released by display 88 calculation is specified. (The CVT compatibility of the display can be
|
D | viafb.txt | 92 viafb_mode1: (secondary display device) 99 viafb_bpp1: (secondary display device) 102 viafb_refresh1: (secondary display device) 130 This option is used to specify display hardware layout for CX700 chip. 165 1. CRT may not display properly for DuoView CRT & DVI display at 192 Check the file "/etc/fb.modes" to find display modes available.
|
D | sa1100fb.txt | 18 16. LCCR values are display-specific and should be computed as 25 options may not be enough to configure the display. Adding sections to
|
D | fbcon.txt | 11 display device, text or graphical. 14 high resolutions, varying font types, display rotation, primitive multihead, 32 To display the penguin logo, choose any logo available in Logo 41 garbled display, but the system still boots to completion. If you are 58 garbled display, as mentioned above. To get a framebuffer console, 88 The scrollback buffer is memory that is used to preserve display 128 This option changes the orientation angle of the console display. The 140 rotate - rotate the display of the active console 141 rotate_all - rotate the display of all consoles 240 won't get any display after detaching fbcon. Your machine is still alive, so
|
D | pxafb.txt | 19 The resolution of the display in pixels 37 Active (TFT) or Passive (STN) display 40 Single or dual panel passive display
|
/linux-4.1.27/Documentation/devicetree/bindings/drm/tilcdc/ |
D | panel.txt | 15 - display-timings: typical videomode of lcd panel. Multiple video modes 18 Documentation/devicetree/bindings/video/display-timing.txt for display 50 display-timings {
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-top.txt | 51 Only display functions with more events than this. 114 Zero history across display updates. 191 Determine how to display the overhead percentage of filtered entries. 212 Number of entries to display. 215 Event to display when multiple counters are active. 218 Profile display filter (>= hit count). 221 Annotation display filter (>= % of total). 227 Stop annotation, return to full profile display. 230 Toggle event count zeroing across display updates.
|
D | perf-kvm.txt | 39 'perf kvm report' to display the performance counter profile information 45 'perf kvm buildid-list' to display the buildids found in a perf data file, 64 record + report but with statistical data updated live at a given display 119 --display:: 120 Time in seconds between display updates
|
D | perf-script.txt | 6 perf-script - Read perf.data (created by perf record) and display trace output 37 'perf script report <script> [args]' to run and display the results 183 When printing symbols do not display call chain. 193 Only display events for these comms. CSV that understands 205 information which may be very large and thus may clutter the display.
|
D | perf-help.txt | 6 perf-help - display help information about perf
|
/linux-4.1.27/drivers/video/console/ |
D | Kconfig | 5 menu "Console display driver support" 16 display that complies with the generic VGA standard. Virtually 108 bool "Map the console to the primary display device" 113 automatically select the primary display device (if the architecture 127 Enable display rotation for the framebuffer console. This is done 129 display. Note that the rotation is done at the console level only 139 The STI console is the builtin display/keyboard on HP-PARISC
|
D | fbcon.h | 28 struct display { struct 71 struct display *p; argument 226 static inline int real_y(struct display *p, int ypos) in real_y()
|
D | fbcon.c | 95 static struct display fb_display[MAX_NR_CONSOLES]; 183 static void fbcon_bmove_rec(struct vc_data *vc, struct display *p, int sy, int sx, 187 static void fbcon_redraw_move(struct vc_data *vc, struct display *p, 218 struct display *p = &fb_display[ops->currcon]; in fbcon_rotate() 233 struct display *p; in fbcon_rotate_all() 874 static int var_to_display(struct display *disp, in var_to_display() 899 struct display *disp) in display_to_var() 920 struct display *p = &fb_display[fg_console]; in fbcon_startup() 1026 struct display *t, *p = &fb_display[vc->vc_num]; in fbcon_init() 1160 static void fbcon_free_font(struct display *p, bool freefont) in fbcon_free_font() [all …]
|
/linux-4.1.27/arch/mips/lasat/ |
D | Kconfig | 2 tristate "PICVUE LCD display driver" 6 tristate "PICVUE LCD display driver /proc interface"
|
/linux-4.1.27/Documentation/devicetree/bindings/drm/atmel/ |
D | hlcdc-dc.txt | 7 - compatible: value should be "atmel,hlcdc-display-controller" 28 hlcdc-display-controller { 29 compatible = "atmel,hlcdc-display-controller";
|
/linux-4.1.27/Documentation/video4linux/ |
D | README.davinci-vpbe | 7 V4L2 display device driver 11 VPBE display controller 31 1. V4L2 display driver 50 API to set timings in VENC for a specific display resolution. As of this 63 PD display, it requires setting up the LCD controller port with a set of 84 vpbe display controller
|
/linux-4.1.27/drivers/video/fbdev/geode/ |
D | Kconfig | 18 Framebuffer driver for the display controller integrated into the 33 Framebuffer driver for the display controller integrated into the 48 Framebuffer driver for the display controller integrated into the
|
/linux-4.1.27/Documentation/devicetree/bindings/panel/ |
D | samsung,s6e8aa0.txt | 9 - display-timings: timings for the connected panel as described by [1] 24 [1]: Documentation/devicetree/bindings/video/display-timing.txt 43 display-timings {
|
D | samsung,ld9040.txt | 9 - display-timings: timings for the connected panel according to [1] 23 [1]: Documentation/devicetree/bindings/video/display-timing.txt 43 display-timings {
|
D | simple-panel.txt | 1 Simple display panel
|
/linux-4.1.27/drivers/media/platform/davinci/ |
D | Kconfig | 10 Enables Davinci VPIF module used for display devices. 11 This module is used for display on TI DM6467/DA850/OMAPL138 82 Enables Davinci VPBE module used for display devices. 83 This module is used for display on TI DM644x/DM365/DM355 84 based display devices.
|
/linux-4.1.27/drivers/staging/olpc_dcon/ |
D | Kconfig | 10 is present in the video pipeline between the primary display 12 panel. It allows the main processor/display controller to be 13 completely powered off while still retaining an image on the display.
|
/linux-4.1.27/drivers/video/fbdev/omap2/dss/ |
D | Makefile | 4 omapdss-y := core.o dss.o dss_features.o dispc.o dispc_coefs.o display.o \ 8 dispc-compat.o display-sysfs.o
|
D | Kconfig | 57 such as a display or a framebuffer chip. 92 SDI is a high speed one-way display serial bus between the host 93 processor and a display. 102 processor and a peripheral, such as a display or a framebuffer chip.
|
/linux-4.1.27/Documentation/devicetree/bindings/drm/msm/ |
D | mdp.txt | 1 Qualcomm adreno/snapdragon display controller 7 - interrupts: The interrupt signal from the display controller.
|
/linux-4.1.27/drivers/staging/media/lirc/ |
D | lirc_imon.c | 80 int display; /* not all controllers do */ member 251 if (!context->display) { in display_open() 290 if (!context->display) { in display_close() 719 context->display = 0; in imon_probe() 721 context->display = 1; in imon_probe() 768 if (context->display == 0) { in imon_probe() 865 context->display = 1; in imon_probe() 884 if (context->display && ifnum == 0) { in imon_probe() 962 if (context->display) in imon_disconnect()
|
/linux-4.1.27/drivers/clk/qcom/ |
D | Kconfig | 22 Say Y if you want to support multimedia devices such as display, 56 SD/eMMC, display, graphics, camera etc. 81 Say Y if you want to support multimedia devices such as display, 98 Say Y if you want to support multimedia devices such as display,
|
/linux-4.1.27/drivers/gpu/drm/msm/ |
D | NOTES | 4 display controller blocks at play: 9 (I don't have a completely clear picture on which display controller 19 display controller blocks. And I for sure don't want to have to deal 26 'struct msm_kms' implementations, depending on display controller. 47 the display controller is the "master" device.
|
/linux-4.1.27/include/linux/pinctrl/ |
D | pinconf-generic.h | 119 #define PCONFDUMP(a, b, c, d) { .param = a, .display = b, .format = c, \ 124 const char * const display; member
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | atmel-hlcdc.txt | 26 hlcdc-display-controller { 27 compatible = "atmel,hlcdc-display-controller";
|
D | mc13xxx.txt | 29 0 : Main display 30 1 : AUX display 43 0 : Main display 44 1 : AUX display
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | fw-decoder-api.txt | 176 Selects display standard 210 Video PTS bits 0:31 by display order 212 Video PTS bit 32 by display order 214 SCR bits 0:31 by display order 216 SCR bit 32 by display order 255 Number of display buffers. To decode all frames in reverse playback you
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_asic.c | 220 .display = { 288 .display = { 384 .display = { 452 .display = { 520 .display = { 588 .display = { 656 .display = { 724 .display = { 792 .display = { 860 .display = { [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/gpu/ |
D | st,stih4xx.txt | 21 - sti-display-subsystem: Master device for DRM sub-components 25 - compatible: "st,sti-display-subsystem" 29 must be a child of sti-display-subsystem 45 must be a child of sti-display-subsystem 103 must be a child of sti-display-subsystem 176 sti-display-subsystem { 177 compatible = "st,sti-display-subsystem";
|
D | nvidia,tegra20-host1x.txt | 105 - dc: display controller 121 - nvidia,head: The number of the display controller head. This is used to 125 Each display controller node has a child node, named "rgb", that represents 131 - nvidia,panel: phandle of a display panel 157 - nvidia,panel: phandle of a display panel 168 - dsi: display serial interface 193 - nvidia,panel: phandle of a display panel 221 - nvidia,panel: phandle of a display panel
|
/linux-4.1.27/Documentation/security/ |
D | IMA-templates.txt | 16 a new template is defined, the functions that generate and display 24 field, to generate and display data of a given type. 28 two functions, init() and show(), respectively to generate and display 47 The same mechanism is employed to display measurements entries.
|
/linux-4.1.27/arch/avr32/boards/merisc/ |
D | Makefile | 1 obj-y += setup.o flash.o display.o merisc_sysfs.o
|
/linux-4.1.27/Documentation/usb/ |
D | misc_usbsevseg.txt | 14 By default, the driver assumes the display is only 6 characters 17 For the 8 character display:
|
/linux-4.1.27/Documentation/ |
D | SM501.txt | 8 asynchronous serial ports, audio functions, and a dual display video interface. 43 buffers once a display mode is chosen. Indeed when a video mode change 46 Since video memory is difficult to move without changing the display
|
D | btmrvl.txt | 85 This command display the power save state. 88 This command display the host sleep state.
|
/linux-4.1.27/drivers/staging/sm750fb/ |
D | readme | 2 SM750 of Silicon MOtion is pci express display controller device. 4 - dual display
|
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/ |
D | sec_lproc.c | 130 if (sec->ps_policy->sp_cops->display) in sptlrpc_ctxs_lprocfs_seq_show() 131 sec->ps_policy->sp_cops->display(sec, seq); in sptlrpc_ctxs_lprocfs_seq_show()
|
/linux-4.1.27/drivers/pinctrl/ |
D | pinconf-generic.c | 80 seq_puts(s, items[i].display); in pinconf_generic_dump_one() 131 seq_printf(s, "%s: 0x%x", conf_items[i].display, in pinconf_generic_dump_config() 144 pctldev->desc->custom_conf_items[i].display, in pinconf_generic_dump_config()
|
/linux-4.1.27/tools/perf/ |
D | builtin-timechart.c | 97 int display; member 114 int display; member 1146 if (!c->display) { in draw_io_bars() 1260 if (!c->display) { in draw_process_bars() 1344 p->display = 0; in determine_display_tasks_filtered() 1355 c->display = 0; in determine_display_tasks_filtered() 1361 c->display = 1; in determine_display_tasks_filtered() 1362 p->display = 1; in determine_display_tasks_filtered() 1384 p->display = 0; in determine_display_tasks() 1392 p->display = 1; in determine_display_tasks() [all …]
|
D | builtin-help.c | 123 const char *display = getenv("DISPLAY"); in exec_man_konqueror() local 125 if (display && *display) { in exec_man_konqueror()
|
/linux-4.1.27/drivers/gpu/drm/sti/ |
D | NOTES | 1 1. stiH display hardware IP 3 The STMicroelectronics stiH SoCs use a common chain of HW display IP blocks:
|
/linux-4.1.27/drivers/gpu/drm/imx/ |
D | Makefile | 6 obj-$(CONFIG_DRM_IMX_PARALLEL_DISPLAY) += parallel-display.o
|
/linux-4.1.27/drivers/gpu/drm/atmel-hlcdc/ |
D | Kconfig | 10 Choose this option if you have an ATMEL SoC with an HLCDC display
|
/linux-4.1.27/drivers/staging/xgifb/ |
D | Kconfig | 2 tristate "XGI display support"
|
/linux-4.1.27/drivers/gpu/drm/tilcdc/ |
D | Kconfig | 12 Choose this option if you have an TI SoC with LCDC display
|
/linux-4.1.27/drivers/gpu/drm/omapdrm/ |
D | Kconfig | 15 DRM display driver for OMAP2/3/4 based boards.
|
/linux-4.1.27/fs/nls/ |
D | Kconfig | 282 If you want to display filenames with native language characters 291 If you want to display filenames with native language characters 321 If you want to display filenames with native language characters 333 If you want to display filenames with native language characters 344 If you want to display filenames with native language characters 354 If you want to display filenames with native language characters 364 If you want to display filenames with native language characters 375 If you want to display filenames with native language characters 384 If you want to display filenames with native language characters 393 If you want to display filenames with native language characters [all …]
|
/linux-4.1.27/drivers/sbus/char/ |
D | Kconfig | 63 This is the driver for the 7-segment display and LED present on 70 another UltraSPARC-IIi-cEngine boardset with a 7-segment display,
|
/linux-4.1.27/drivers/video/fbdev/mbx/ |
D | mbxdebugfs.c | 12 struct dentry *display; member 229 dbg->display = debugfs_create_file("display", 0444, dbg->dir, in mbxfb_debugfs_init() 247 debugfs_remove(dbg->display); in mbxfb_debugfs_remove()
|
/linux-4.1.27/arch/nios2/ |
D | Kconfig.debug | 12 Enables the display of the minimum amount of free stack which each
|
/linux-4.1.27/Documentation/scsi/ |
D | bnx2fc.txt | 40 5. "Symbolic Name" in 'fcoeadm -i' output would display if bnx2fc has claimed 66 create/destroy interfaces or to display lun/target information.
|
/linux-4.1.27/arch/x86/platform/ce4100/ |
D | falconfalls.dts | 82 display@2,0 { 152 display@8,0 { 162 display@8,1 {
|
/linux-4.1.27/Documentation/s390/ |
D | 00-INDEX | 6 - how to use the IBM 3270 display system support.
|
/linux-4.1.27/include/video/ |
D | s1d13xxxfb.h | 152 unsigned char display; member
|