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

TOMOYO Linux Cross Reference
Linux/include/video/udlfb.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/udlfb.h (Version linux-6.12-rc7) and /include/video/udlfb.h (Version linux-5.9.16)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef UDLFB_H                                     2 #ifndef UDLFB_H
  3 #define UDLFB_H                                     3 #define UDLFB_H
  4                                                     4 
  5 /*                                                  5 /*
  6  * TODO: Propose standard fb.h ioctl for repor      6  * TODO: Propose standard fb.h ioctl for reporting damage,
  7  * using _IOWR() and one of the existing area       7  * using _IOWR() and one of the existing area structs from fb.h
  8  * Consider these ioctls deprecated, but they'      8  * Consider these ioctls deprecated, but they're still used by the
  9  * DisplayLink X server as yet - need both to       9  * DisplayLink X server as yet - need both to be modified in tandem
 10  * when new ioctl(s) are ready.                    10  * when new ioctl(s) are ready.
 11  */                                                11  */
 12 #define DLFB_IOCTL_RETURN_EDID   0xAD              12 #define DLFB_IOCTL_RETURN_EDID   0xAD
 13 #define DLFB_IOCTL_REPORT_DAMAGE 0xAA              13 #define DLFB_IOCTL_REPORT_DAMAGE 0xAA
 14 struct dloarea {                                   14 struct dloarea {
 15         int x, y;                                  15         int x, y;
 16         int w, h;                                  16         int w, h;
 17         int x2, y2;                                17         int x2, y2;
 18 };                                                 18 };
 19                                                    19 
 20 struct urb_node {                                  20 struct urb_node {
 21         struct list_head entry;                    21         struct list_head entry;
 22         struct dlfb_data *dlfb;                    22         struct dlfb_data *dlfb;
 23         struct urb *urb;                           23         struct urb *urb;
 24 };                                                 24 };
 25                                                    25 
 26 struct urb_list {                                  26 struct urb_list {
 27         struct list_head list;                     27         struct list_head list;
 28         spinlock_t lock;                           28         spinlock_t lock;
 29         struct semaphore limit_sem;                29         struct semaphore limit_sem;
 30         int available;                             30         int available;
 31         int count;                                 31         int count;
 32         size_t size;                               32         size_t size;
 33 };                                                 33 };
 34                                                    34 
 35 struct dlfb_data {                                 35 struct dlfb_data {
 36         struct usb_device *udev;                   36         struct usb_device *udev;
 37         struct fb_info *info;                      37         struct fb_info *info;
 38         struct urb_list urbs;                      38         struct urb_list urbs;
 39         char *backing_buffer;                      39         char *backing_buffer;
 40         int fb_count;                              40         int fb_count;
 41         bool virtualized; /* true when physica     41         bool virtualized; /* true when physical usb device not present */
 42         atomic_t usb_active; /* 0 = update vir     42         atomic_t usb_active; /* 0 = update virtual buffer, but no usb traffic */
 43         atomic_t lost_pixels; /* 1 = a render      43         atomic_t lost_pixels; /* 1 = a render op failed. Need screen refresh */
 44         char *edid; /* null until we read edid     44         char *edid; /* null until we read edid from hw or get from sysfs */
 45         size_t edid_size;                          45         size_t edid_size;
 46         int sku_pixel_limit;                       46         int sku_pixel_limit;
 47         int base16;                                47         int base16;
 48         int base8;                                 48         int base8;
 49         u32 pseudo_palette[256];                   49         u32 pseudo_palette[256];
 50         int blank_mode; /*one of FB_BLANK_ */      50         int blank_mode; /*one of FB_BLANK_ */
 51         struct mutex render_mutex;                 51         struct mutex render_mutex;
 52         int damage_x;                              52         int damage_x;
 53         int damage_y;                              53         int damage_y;
 54         int damage_x2;                             54         int damage_x2;
 55         int damage_y2;                             55         int damage_y2;
 56         spinlock_t damage_lock;                    56         spinlock_t damage_lock;
 57         struct work_struct damage_work;            57         struct work_struct damage_work;
 58         struct fb_ops ops;                         58         struct fb_ops ops;
 59         /* blit-only rendering path metrics, e     59         /* blit-only rendering path metrics, exposed through sysfs */
 60         atomic_t bytes_rendered; /* raw pixel-     60         atomic_t bytes_rendered; /* raw pixel-bytes driver asked to render */
 61         atomic_t bytes_identical; /* saved eff     61         atomic_t bytes_identical; /* saved effort with backbuffer comparison */
 62         atomic_t bytes_sent; /* to usb, after      62         atomic_t bytes_sent; /* to usb, after compression including overhead */
 63         atomic_t cpu_kcycles_used; /* transpir     63         atomic_t cpu_kcycles_used; /* transpired during pixel processing */
 64         struct fb_var_screeninfo current_mode;     64         struct fb_var_screeninfo current_mode;
 65         struct list_head deferred_free;            65         struct list_head deferred_free;
 66 };                                                 66 };
 67                                                    67 
 68 #define NR_USB_REQUEST_I2C_SUB_IO 0x02             68 #define NR_USB_REQUEST_I2C_SUB_IO 0x02
 69 #define NR_USB_REQUEST_CHANNEL 0x12                69 #define NR_USB_REQUEST_CHANNEL 0x12
 70                                                    70 
 71 /* -BULK_SIZE as per usb-skeleton. Can we get      71 /* -BULK_SIZE as per usb-skeleton. Can we get full page and avoid overhead? */
 72 #define BULK_SIZE 512                              72 #define BULK_SIZE 512
 73 #define MAX_TRANSFER (PAGE_SIZE*16 - BULK_SIZE     73 #define MAX_TRANSFER (PAGE_SIZE*16 - BULK_SIZE)
 74 #define WRITES_IN_FLIGHT (4)                       74 #define WRITES_IN_FLIGHT (4)
 75                                                    75 
 76 #define MAX_VENDOR_DESCRIPTOR_SIZE 256             76 #define MAX_VENDOR_DESCRIPTOR_SIZE 256
 77                                                    77 
 78 #define GET_URB_TIMEOUT HZ                         78 #define GET_URB_TIMEOUT HZ
 79 #define FREE_URB_TIMEOUT (HZ*2)                    79 #define FREE_URB_TIMEOUT (HZ*2)
 80                                                    80 
 81 #define BPP                     2                  81 #define BPP                     2
 82 #define MAX_CMD_PIXELS          255                82 #define MAX_CMD_PIXELS          255
 83                                                    83 
 84 #define RLX_HEADER_BYTES        7                  84 #define RLX_HEADER_BYTES        7
 85 #define MIN_RLX_PIX_BYTES       4                  85 #define MIN_RLX_PIX_BYTES       4
 86 #define MIN_RLX_CMD_BYTES       (RLX_HEADER_BY     86 #define MIN_RLX_CMD_BYTES       (RLX_HEADER_BYTES + MIN_RLX_PIX_BYTES)
 87                                                    87 
 88 #define RLE_HEADER_BYTES        6                  88 #define RLE_HEADER_BYTES        6
 89 #define MIN_RLE_PIX_BYTES       3                  89 #define MIN_RLE_PIX_BYTES       3
 90 #define MIN_RLE_CMD_BYTES       (RLE_HEADER_BY     90 #define MIN_RLE_CMD_BYTES       (RLE_HEADER_BYTES + MIN_RLE_PIX_BYTES)
 91                                                    91 
 92 #define RAW_HEADER_BYTES        6                  92 #define RAW_HEADER_BYTES        6
 93 #define MIN_RAW_PIX_BYTES       2                  93 #define MIN_RAW_PIX_BYTES       2
 94 #define MIN_RAW_CMD_BYTES       (RAW_HEADER_BY     94 #define MIN_RAW_CMD_BYTES       (RAW_HEADER_BYTES + MIN_RAW_PIX_BYTES)
 95                                                    95 
 96 #define DL_DEFIO_WRITE_DELAY    msecs_to_jiffi     96 #define DL_DEFIO_WRITE_DELAY    msecs_to_jiffies(HZ <= 300 ? 4 : 10) /* optimal value for 720p video */
 97 #define DL_DEFIO_WRITE_DISABLE  (HZ*60) /* "di     97 #define DL_DEFIO_WRITE_DISABLE  (HZ*60) /* "disable" with long delay */
 98                                                    98 
 99 /* remove these once align.h patch is taken in     99 /* remove these once align.h patch is taken into kernel */
100 #define DL_ALIGN_UP(x, a) ALIGN(x, a)             100 #define DL_ALIGN_UP(x, a) ALIGN(x, a)
101 #define DL_ALIGN_DOWN(x, a) ALIGN_DOWN(x, a)      101 #define DL_ALIGN_DOWN(x, a) ALIGN_DOWN(x, a)
102                                                   102 
103 #endif                                            103 #endif
104                                                   104 

~ [ 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