Server IP : 127.0.1.1 / Your IP : 216.73.216.172 Web Server : Apache/2.4.52 (Ubuntu) System : Linux bahcrestlinepropertiesllc 5.15.0-113-generic #123-Ubuntu SMP Mon Jun 10 08:16:17 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/modules/5.15.0-113-generic/build/include/linux/platform_data/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __VIDEO_EP93XX_H #define __VIDEO_EP93XX_H struct platform_device; struct fb_info; /* VideoAttributes flags */ #define EP93XXFB_STATE_MACHINE_ENABLE (1 << 0) #define EP93XXFB_PIXEL_CLOCK_ENABLE (1 << 1) #define EP93XXFB_VSYNC_ENABLE (1 << 2) #define EP93XXFB_PIXEL_DATA_ENABLE (1 << 3) #define EP93XXFB_COMPOSITE_SYNC (1 << 4) #define EP93XXFB_SYNC_VERT_HIGH (1 << 5) #define EP93XXFB_SYNC_HORIZ_HIGH (1 << 6) #define EP93XXFB_SYNC_BLANK_HIGH (1 << 7) #define EP93XXFB_PCLK_FALLING (1 << 8) #define EP93XXFB_ENABLE_AC (1 << 9) #define EP93XXFB_ENABLE_LCD (1 << 10) #define EP93XXFB_ENABLE_CCIR (1 << 12) #define EP93XXFB_USE_PARALLEL_INTERFACE (1 << 13) #define EP93XXFB_ENABLE_INTERRUPT (1 << 14) #define EP93XXFB_USB_INTERLACE (1 << 16) #define EP93XXFB_USE_EQUALIZATION (1 << 17) #define EP93XXFB_USE_DOUBLE_HORZ (1 << 18) #define EP93XXFB_USE_DOUBLE_VERT (1 << 19) #define EP93XXFB_USE_BLANK_PIXEL (1 << 20) #define EP93XXFB_USE_SDCSN0 (0 << 21) #define EP93XXFB_USE_SDCSN1 (1 << 21) #define EP93XXFB_USE_SDCSN2 (2 << 21) #define EP93XXFB_USE_SDCSN3 (3 << 21) #define EP93XXFB_ENABLE (EP93XXFB_STATE_MACHINE_ENABLE | \ EP93XXFB_PIXEL_CLOCK_ENABLE | \ EP93XXFB_VSYNC_ENABLE | \ EP93XXFB_PIXEL_DATA_ENABLE) struct ep93xxfb_mach_info { unsigned int flags; int (*setup)(struct platform_device *pdev); void (*teardown)(struct platform_device *pdev); void (*blank)(int blank_mode, struct fb_info *info); }; #endif /* __VIDEO_EP93XX_H */