/usr/src/linux-headers-5.15.0-190/include/video
NameSizeModeActions
atmel_lcdc.h62980644editdlrm
aty128.h135930644editdlrm
broadsheetfb.h21690644editdlrm
cirrus.h58010644editdlrm
cvisionppc.h15770644editdlrm
da8xx-fb.h20030644editdlrm
display_timing.h31880644editdlrm
edid.h2280644editdlrm
gbe.h106940644editdlrm
hecubafb.h15400644editdlrm
ili9320.h57940644editdlrm
imx-ipu-image-convert.h66850644editdlrm
imx-ipu-v3.h167770644editdlrm
kyro.h24190644editdlrm
mach64.h480590644editdlrm
maxinefb.h12680644editdlrm
metronomefb.h15200644editdlrm
mipi_display.h50740644editdlrm
mmp_disp.h71880644editdlrm
neomagic.h50140644editdlrm
newport.h191260644editdlrm
of_display_timing.h8140644editdlrm
of_videomode.h3670644editdlrm
omap-panel-data.h16970644editdlrm
omapfb_dss.h244790644editdlrm
omapvrfb.h18330644editdlrm
permedia2.h91750644editdlrm
platform_lcd.h4400644editdlrm
pm3fb.h463990644editdlrm
pmag-ba-fb.h10480644editdlrm
pmagb-b-fb.h24000644editdlrm
pxa168fb.h25930644editdlrm
radeon.h1118360644editdlrm
s1d13xxxfb.h101880644editdlrm
sa1100fb.h12940644editdlrm
samsung_fimd.h174250644editdlrm
sh_mobile_lcdc.h61350644editdlrm
sisfb.h6060644editdlrm
sstfb.h113330644editdlrm
tdfx.h54450644editdlrm
tgafb.h71060644editdlrm
trident.h33120644editdlrm
udlfb.h29980644editdlrm
uvesafb.h29200644editdlrm
vga.h140530644editdlrm
videomode.h13790644editdlrm
w100fb.h36560644editdlrm
Edit: /usr/src/linux-headers-5.15.0-190/include/video/sa1100fb.h (1294B)
/* * StrongARM 1100 LCD Controller Frame Buffer Device * * Copyright (C) 1999 Eric A. Thomas * Based on acornfb.c Copyright (C) Russell King. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive * for more details. */ #ifndef _VIDEO_SA1100FB_H #define _VIDEO_SA1100FB_H #include #include #define RGB_4 0 #define RGB_8 1 #define RGB_16 2 #define NR_RGB 3 /* These are the bitfields for each display depth that we support. */ struct sa1100fb_rgb { struct fb_bitfield red; struct fb_bitfield green; struct fb_bitfield blue; struct fb_bitfield transp; }; /* This structure describes the machine which we are running on. */ struct sa1100fb_mach_info { u_long pixclock; u_short xres; u_short yres; u_char bpp; u_char hsync_len; u_char left_margin; u_char right_margin; u_char vsync_len; u_char upper_margin; u_char lower_margin; u_char sync; u_int cmap_greyscale:1, cmap_inverse:1, cmap_static:1, unused:29; u_int lccr0; u_int lccr3; /* Overrides for the default RGB maps */ const struct sa1100fb_rgb *rgb[NR_RGB]; void (*backlight_power)(int); void (*lcd_power)(int); void (*set_visual)(u32); }; #endif