blob: 58fb5732831a4325f31ba7e66ef15aeb4a026516 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Greg Kroah-Hartman39e7df52009-06-03 14:47:00 -07002#ifndef UDLFB_H
3#define UDLFB_H
Roberto De Ioris88e58b12009-06-03 14:03:06 -07004
Bernie Thompson530f43a2010-02-15 06:46:21 -08005/*
6 * TODO: Propose standard fb.h ioctl for reporting damage,
7 * using _IOWR() and one of the existing area structs from fb.h
8 * Consider these ioctls deprecated, but they're still used by the
9 * DisplayLink X server as yet - need both to be modified in tandem
10 * when new ioctl(s) are ready.
11 */
12#define DLFB_IOCTL_RETURN_EDID 0xAD
13#define DLFB_IOCTL_REPORT_DAMAGE 0xAA
14struct dloarea {
15 int x, y;
16 int w, h;
17 int x2, y2;
18};
Roberto De Ioris88e58b12009-06-03 14:03:06 -070019
Bernie Thompson4a4854d2010-02-15 06:45:55 -080020struct urb_node {
21 struct list_head entry;
Ladislav Michl7ea46202018-01-15 17:04:22 +010022 struct dlfb_data *dlfb;
Bernie Thompson4a4854d2010-02-15 06:45:55 -080023 struct urb *urb;
24};
25
26struct urb_list {
27 struct list_head list;
28 spinlock_t lock;
29 struct semaphore limit_sem;
30 int available;
31 int count;
32 size_t size;
33};
34
Roberto De Ioris88e58b12009-06-03 14:03:06 -070035struct dlfb_data {
36 struct usb_device *udev;
Roberto De Ioris88e58b12009-06-03 14:03:06 -070037 struct fb_info *info;
Bernie Thompson4a4854d2010-02-15 06:45:55 -080038 struct urb_list urbs;
Roberto De Ioris88e58b12009-06-03 14:03:06 -070039 char *backing_buffer;
Bernie Thompson7d9485e2010-02-15 06:46:08 -080040 int fb_count;
Bernie Thompson33077b82010-09-05 16:35:19 -070041 bool virtualized; /* true when physical usb device not present */
Bernie Thompson7d9485e2010-02-15 06:46:08 -080042 atomic_t usb_active; /* 0 = update virtual buffer, but no usb traffic */
Bernie Thompson4a4854d2010-02-15 06:45:55 -080043 atomic_t lost_pixels; /* 1 = a render op failed. Need screen refresh */
Bernie Thompson18dffdf2010-09-05 16:35:23 -070044 char *edid; /* null until we read edid from hw or get from sysfs */
45 size_t edid_size;
Bernie Thompson7d9485e2010-02-15 06:46:08 -080046 int sku_pixel_limit;
Roberto De Ioris88e58b12009-06-03 14:03:06 -070047 int base16;
48 int base8;
Bernie Thompson59277b62009-11-24 15:52:21 -080049 u32 pseudo_palette[256];
Bernie Thompson58e7c3b2011-08-21 13:34:11 -070050 int blank_mode; /*one of FB_BLANK_ */
Mikulas Patockababc2502019-04-01 17:46:57 +020051 struct mutex render_mutex;
Mikulas Patocka6b11f9d2019-04-01 17:46:56 +020052 int damage_x;
53 int damage_y;
54 int damage_x2;
55 int damage_y2;
56 spinlock_t damage_lock;
57 struct work_struct damage_work;
Mikulas Patocka2c29cfc2018-07-25 15:41:55 +020058 struct fb_ops ops;
Bernie Thompson7d9485e2010-02-15 06:46:08 -080059 /* blit-only rendering path metrics, exposed through sysfs */
60 atomic_t bytes_rendered; /* raw pixel-bytes driver asked to render */
61 atomic_t bytes_identical; /* saved effort with backbuffer comparison */
62 atomic_t bytes_sent; /* to usb, after compression including overhead */
63 atomic_t cpu_kcycles_used; /* transpired during pixel processing */
Mikulas Patocka564f1802018-07-25 15:41:55 +020064 struct fb_var_screeninfo current_mode;
Mikulas Patocka74339142018-07-25 15:41:56 +020065 struct list_head deferred_free;
Roberto De Ioris88e58b12009-06-03 14:03:06 -070066};
67
Bernie Thompsoncc403dc2010-02-15 06:45:49 -080068#define NR_USB_REQUEST_I2C_SUB_IO 0x02
69#define NR_USB_REQUEST_CHANNEL 0x12
70
Bernie Thompson4a4854d2010-02-15 06:45:55 -080071/* -BULK_SIZE as per usb-skeleton. Can we get full page and avoid overhead? */
72#define BULK_SIZE 512
73#define MAX_TRANSFER (PAGE_SIZE*16 - BULK_SIZE)
74#define WRITES_IN_FLIGHT (4)
75
Bernie Thompson18dffdf2010-09-05 16:35:23 -070076#define MAX_VENDOR_DESCRIPTOR_SIZE 256
77
Bernie Thompson4a4854d2010-02-15 06:45:55 -080078#define GET_URB_TIMEOUT HZ
79#define FREE_URB_TIMEOUT (HZ*2)
80
Bernie Thompson530f43a2010-02-15 06:46:21 -080081#define BPP 2
82#define MAX_CMD_PIXELS 255
Roberto De Ioris88e58b12009-06-03 14:03:06 -070083
Bernie Thompson530f43a2010-02-15 06:46:21 -080084#define RLX_HEADER_BYTES 7
85#define MIN_RLX_PIX_BYTES 4
86#define MIN_RLX_CMD_BYTES (RLX_HEADER_BYTES + MIN_RLX_PIX_BYTES)
Roberto De Ioris7316bc52009-06-10 23:02:19 -070087
Bernie Thompson530f43a2010-02-15 06:46:21 -080088#define RLE_HEADER_BYTES 6
89#define MIN_RLE_PIX_BYTES 3
90#define MIN_RLE_CMD_BYTES (RLE_HEADER_BYTES + MIN_RLE_PIX_BYTES)
Roberto De Ioris7316bc52009-06-10 23:02:19 -070091
Bernie Thompson530f43a2010-02-15 06:46:21 -080092#define RAW_HEADER_BYTES 6
93#define MIN_RAW_PIX_BYTES 2
94#define MIN_RAW_CMD_BYTES (RAW_HEADER_BYTES + MIN_RAW_PIX_BYTES)
Roberto De Ioris7316bc52009-06-10 23:02:19 -070095
Mikulas Patockabb241532018-07-25 15:41:55 +020096#define DL_DEFIO_WRITE_DELAY msecs_to_jiffies(HZ <= 300 ? 4 : 10) /* optimal value for 720p video */
Bernie Thompson5bea1fb2010-09-05 18:28:29 -070097#define DL_DEFIO_WRITE_DISABLE (HZ*60) /* "disable" with long delay */
98
Bernie Thompson530f43a2010-02-15 06:46:21 -080099/* remove these once align.h patch is taken into kernel */
100#define DL_ALIGN_UP(x, a) ALIGN(x, a)
Krzysztof Kozlowskied067d42017-04-11 20:08:34 +0200101#define DL_ALIGN_DOWN(x, a) ALIGN_DOWN(x, a)
Greg Kroah-Hartman39e7df52009-06-03 14:47:00 -0700102
103#endif