Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /usr/src/linux-headers-4.4.0-79/arch/blackfin/include/asm/ |
Upload File : |
/* * Blackfin LCD Framebuffer driver SHARP LQ035Q1DH02 * * Copyright 2008-2009 Analog Devices Inc. * Licensed under the GPL-2 or later. */ #ifndef BFIN_LQ035Q1_H #define BFIN_LQ035Q1_H /* * LCD Modes */ #define LQ035_RL (0 << 8) /* Right -> Left Scan */ #define LQ035_LR (1 << 8) /* Left -> Right Scan */ #define LQ035_TB (1 << 9) /* Top -> Botton Scan */ #define LQ035_BT (0 << 9) /* Botton -> Top Scan */ #define LQ035_BGR (1 << 11) /* Use BGR format */ #define LQ035_RGB (0 << 11) /* Use RGB format */ #define LQ035_NORM (1 << 13) /* Reversal */ #define LQ035_REV (0 << 13) /* Reversal */ /* * PPI Modes */ #define USE_RGB565_16_BIT_PPI 1 #define USE_RGB565_8_BIT_PPI 2 #define USE_RGB888_8_BIT_PPI 3 struct bfin_lq035q1fb_disp_info { unsigned mode; unsigned ppi_mode; /* GPIOs */ int use_bl; unsigned gpio_bl; }; #endif /* BFIN_LQ035Q1_H */