~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/video/pxa168fb.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/video/pxa168fb.h (Version linux-6.12-rc7) and /include/video/pxa168fb.h (Version linux-5.16.20)


  1 /* SPDX-License-Identifier: GPL-2.0-only */         1 /* SPDX-License-Identifier: GPL-2.0-only */
  2 /*                                                  2 /*
  3  *  Copyright (C) 2009 Marvell International L      3  *  Copyright (C) 2009 Marvell International Ltd.
  4  */                                                 4  */
  5                                                     5 
  6 #ifndef __ASM_MACH_PXA168FB_H                       6 #ifndef __ASM_MACH_PXA168FB_H
  7 #define __ASM_MACH_PXA168FB_H                       7 #define __ASM_MACH_PXA168FB_H
  8                                                     8 
  9 #include <linux/fb.h>                               9 #include <linux/fb.h>
 10 #include <linux/interrupt.h>                       10 #include <linux/interrupt.h>
 11                                                    11 
 12 /* Dumb interface */                               12 /* Dumb interface */
 13 #define PIN_MODE_DUMB_24                0          13 #define PIN_MODE_DUMB_24                0
 14 #define PIN_MODE_DUMB_18_SPI            1          14 #define PIN_MODE_DUMB_18_SPI            1
 15 #define PIN_MODE_DUMB_18_GPIO           2          15 #define PIN_MODE_DUMB_18_GPIO           2
 16 #define PIN_MODE_DUMB_16_SPI            3          16 #define PIN_MODE_DUMB_16_SPI            3
 17 #define PIN_MODE_DUMB_16_GPIO           4          17 #define PIN_MODE_DUMB_16_GPIO           4
 18 #define PIN_MODE_DUMB_12_SPI_GPIO       5          18 #define PIN_MODE_DUMB_12_SPI_GPIO       5
 19 #define PIN_MODE_SMART_18_SPI           6          19 #define PIN_MODE_SMART_18_SPI           6
 20 #define PIN_MODE_SMART_16_SPI           7          20 #define PIN_MODE_SMART_16_SPI           7
 21 #define PIN_MODE_SMART_8_SPI_GPIO       8          21 #define PIN_MODE_SMART_8_SPI_GPIO       8
 22                                                    22 
 23 /* Dumb interface pin allocation */                23 /* Dumb interface pin allocation */
 24 #define DUMB_MODE_RGB565                0          24 #define DUMB_MODE_RGB565                0
 25 #define DUMB_MODE_RGB565_UPPER          1          25 #define DUMB_MODE_RGB565_UPPER          1
 26 #define DUMB_MODE_RGB666                2          26 #define DUMB_MODE_RGB666                2
 27 #define DUMB_MODE_RGB666_UPPER          3          27 #define DUMB_MODE_RGB666_UPPER          3
 28 #define DUMB_MODE_RGB444                4          28 #define DUMB_MODE_RGB444                4
 29 #define DUMB_MODE_RGB444_UPPER          5          29 #define DUMB_MODE_RGB444_UPPER          5
 30 #define DUMB_MODE_RGB888                6          30 #define DUMB_MODE_RGB888                6
 31                                                    31 
 32 /* default fb buffer size WVGA-32bits */           32 /* default fb buffer size WVGA-32bits */
 33 #define DEFAULT_FB_SIZE (800 * 480 * 4)            33 #define DEFAULT_FB_SIZE (800 * 480 * 4)
 34                                                    34 
 35 /*                                                 35 /*
 36  * Buffer pixel format                             36  * Buffer pixel format
 37  * bit0 is for rb swap.                            37  * bit0 is for rb swap.
 38  * bit12 is for Y UorV swap                        38  * bit12 is for Y UorV swap
 39  */                                                39  */
 40 #define PIX_FMT_RGB565          0                  40 #define PIX_FMT_RGB565          0
 41 #define PIX_FMT_BGR565          1                  41 #define PIX_FMT_BGR565          1
 42 #define PIX_FMT_RGB1555         2                  42 #define PIX_FMT_RGB1555         2
 43 #define PIX_FMT_BGR1555         3                  43 #define PIX_FMT_BGR1555         3
 44 #define PIX_FMT_RGB888PACK      4                  44 #define PIX_FMT_RGB888PACK      4
 45 #define PIX_FMT_BGR888PACK      5                  45 #define PIX_FMT_BGR888PACK      5
 46 #define PIX_FMT_RGB888UNPACK    6                  46 #define PIX_FMT_RGB888UNPACK    6
 47 #define PIX_FMT_BGR888UNPACK    7                  47 #define PIX_FMT_BGR888UNPACK    7
 48 #define PIX_FMT_RGBA888         8                  48 #define PIX_FMT_RGBA888         8
 49 #define PIX_FMT_BGRA888         9                  49 #define PIX_FMT_BGRA888         9
 50 #define PIX_FMT_YUV422PACK      10                 50 #define PIX_FMT_YUV422PACK      10
 51 #define PIX_FMT_YVU422PACK      11                 51 #define PIX_FMT_YVU422PACK      11
 52 #define PIX_FMT_YUV422PLANAR    12                 52 #define PIX_FMT_YUV422PLANAR    12
 53 #define PIX_FMT_YVU422PLANAR    13                 53 #define PIX_FMT_YVU422PLANAR    13
 54 #define PIX_FMT_YUV420PLANAR    14                 54 #define PIX_FMT_YUV420PLANAR    14
 55 #define PIX_FMT_YVU420PLANAR    15                 55 #define PIX_FMT_YVU420PLANAR    15
 56 #define PIX_FMT_PSEUDOCOLOR     20                 56 #define PIX_FMT_PSEUDOCOLOR     20
 57 #define PIX_FMT_UYVY422PACK     (0x1000|PIX_FM     57 #define PIX_FMT_UYVY422PACK     (0x1000|PIX_FMT_YUV422PACK)
 58                                                    58 
 59 /*                                                 59 /*
 60  * PXA LCD controller private state.               60  * PXA LCD controller private state.
 61  */                                                61  */
 62 struct pxa168fb_info {                             62 struct pxa168fb_info {
 63         struct device           *dev;              63         struct device           *dev;
 64         struct clk              *clk;              64         struct clk              *clk;
 65         struct fb_info          *info;             65         struct fb_info          *info;
 66                                                    66 
 67         void __iomem            *reg_base;         67         void __iomem            *reg_base;
 68         dma_addr_t              fb_start_dma;      68         dma_addr_t              fb_start_dma;
 69         u32                     pseudo_palette     69         u32                     pseudo_palette[16];
 70                                                    70 
 71         int                     pix_fmt;           71         int                     pix_fmt;
 72         unsigned                is_blanked:1;      72         unsigned                is_blanked:1;
 73         unsigned                panel_rbswap:1     73         unsigned                panel_rbswap:1;
 74         unsigned                active:1;          74         unsigned                active:1;
 75 };                                                 75 };
 76                                                    76 
 77 /*                                                 77 /*
 78  * PXA fb machine information                      78  * PXA fb machine information
 79  */                                                79  */
 80 struct pxa168fb_mach_info {                        80 struct pxa168fb_mach_info {
 81         char    id[16];                            81         char    id[16];
 82                                                    82 
 83         int             num_modes;                 83         int             num_modes;
 84         struct fb_videomode *modes;                84         struct fb_videomode *modes;
 85                                                    85 
 86         /*                                         86         /*
 87          * Pix_fmt                                 87          * Pix_fmt
 88          */                                        88          */
 89         unsigned        pix_fmt;                   89         unsigned        pix_fmt;
 90                                                    90 
 91         /*                                         91         /*
 92          * I/O pin allocation.                     92          * I/O pin allocation.
 93          */                                        93          */
 94         unsigned        io_pin_allocation_mode     94         unsigned        io_pin_allocation_mode:4;
 95                                                    95 
 96         /*                                         96         /*
 97          * Dumb panel -- assignment of R/G/B c     97          * Dumb panel -- assignment of R/G/B component info to the 24
 98          * available external data lanes.          98          * available external data lanes.
 99          */                                        99          */
100         unsigned        dumb_mode:4;              100         unsigned        dumb_mode:4;
101         unsigned        panel_rgb_reverse_lane    101         unsigned        panel_rgb_reverse_lanes:1;
102                                                   102 
103         /*                                        103         /*
104          * Dumb panel -- GPIO output data.        104          * Dumb panel -- GPIO output data.
105          */                                       105          */
106         unsigned        gpio_output_mask:8;       106         unsigned        gpio_output_mask:8;
107         unsigned        gpio_output_data:8;       107         unsigned        gpio_output_data:8;
108                                                   108 
109         /*                                        109         /*
110          * Dumb panel -- configurable output s    110          * Dumb panel -- configurable output signal polarity.
111          */                                       111          */
112         unsigned        invert_composite_blank    112         unsigned        invert_composite_blank:1;
113         unsigned        invert_pix_val_ena:1;     113         unsigned        invert_pix_val_ena:1;
114         unsigned        invert_pixclock:1;        114         unsigned        invert_pixclock:1;
115         unsigned        panel_rbswap:1;           115         unsigned        panel_rbswap:1;
116         unsigned        active:1;                 116         unsigned        active:1;
117         unsigned        enable_lcd:1;             117         unsigned        enable_lcd:1;
118 };                                                118 };
119                                                   119 
120 #endif /* __ASM_MACH_PXA168FB_H */                120 #endif /* __ASM_MACH_PXA168FB_H */
121                                                   121 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php