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

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

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

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