Greg Kroah-Hartman | 39e7df5 | 2009-06-03 14:47:00 -0700 | [diff] [blame] | 1 | #ifndef UDLFB_H |
| 2 | #define UDLFB_H |
Roberto De Ioris | 88e58b1 | 2009-06-03 14:03:06 -0700 | [diff] [blame] | 3 | |
Bernie Thompson | 530f43a | 2010-02-15 06:46:21 -0800 | [diff] [blame] | 4 | /* |
| 5 | * TODO: Propose standard fb.h ioctl for reporting damage, |
| 6 | * using _IOWR() and one of the existing area structs from fb.h |
| 7 | * Consider these ioctls deprecated, but they're still used by the |
| 8 | * DisplayLink X server as yet - need both to be modified in tandem |
| 9 | * when new ioctl(s) are ready. |
| 10 | */ |
| 11 | #define DLFB_IOCTL_RETURN_EDID 0xAD |
| 12 | #define DLFB_IOCTL_REPORT_DAMAGE 0xAA |
| 13 | struct dloarea { |
| 14 | int x, y; |
| 15 | int w, h; |
| 16 | int x2, y2; |
| 17 | }; |
Roberto De Ioris | 88e58b1 | 2009-06-03 14:03:06 -0700 | [diff] [blame] | 18 | |
Bernie Thompson | 4a4854d | 2010-02-15 06:45:55 -0800 | [diff] [blame] | 19 | struct urb_node { |
| 20 | struct list_head entry; |
| 21 | struct dlfb_data *dev; |
Bernie Thompson | 5bea1fb | 2010-09-05 18:28:29 -0700 | [diff] [blame] | 22 | struct delayed_work release_urb_work; |
Bernie Thompson | 4a4854d | 2010-02-15 06:45:55 -0800 | [diff] [blame] | 23 | struct urb *urb; |
| 24 | }; |
| 25 | |
| 26 | struct 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 Ioris | 88e58b1 | 2009-06-03 14:03:06 -0700 | [diff] [blame] | 35 | struct dlfb_data { |
| 36 | struct usb_device *udev; |
Bernie Thompson | 4a4854d | 2010-02-15 06:45:55 -0800 | [diff] [blame] | 37 | struct device *gdev; /* &udev->dev */ |
Roberto De Ioris | 88e58b1 | 2009-06-03 14:03:06 -0700 | [diff] [blame] | 38 | struct fb_info *info; |
Bernie Thompson | 4a4854d | 2010-02-15 06:45:55 -0800 | [diff] [blame] | 39 | struct urb_list urbs; |
| 40 | struct kref kref; |
Roberto De Ioris | 88e58b1 | 2009-06-03 14:03:06 -0700 | [diff] [blame] | 41 | char *backing_buffer; |
Bernie Thompson | 7d9485e | 2010-02-15 06:46:08 -0800 | [diff] [blame] | 42 | int fb_count; |
Bernie Thompson | 33077b8 | 2010-09-05 16:35:19 -0700 | [diff] [blame] | 43 | bool virtualized; /* true when physical usb device not present */ |
Bernie Thompson | 8d21547 | 2012-03-01 17:35:48 -0800 | [diff] [blame] | 44 | struct delayed_work init_framebuffer_work; |
Bernie Thompson | 33077b8 | 2010-09-05 16:35:19 -0700 | [diff] [blame] | 45 | struct delayed_work free_framebuffer_work; |
Bernie Thompson | 7d9485e | 2010-02-15 06:46:08 -0800 | [diff] [blame] | 46 | atomic_t usb_active; /* 0 = update virtual buffer, but no usb traffic */ |
Bernie Thompson | 4a4854d | 2010-02-15 06:45:55 -0800 | [diff] [blame] | 47 | atomic_t lost_pixels; /* 1 = a render op failed. Need screen refresh */ |
Bernie Thompson | 18dffdf | 2010-09-05 16:35:23 -0700 | [diff] [blame] | 48 | char *edid; /* null until we read edid from hw or get from sysfs */ |
| 49 | size_t edid_size; |
Bernie Thompson | 7d9485e | 2010-02-15 06:46:08 -0800 | [diff] [blame] | 50 | int sku_pixel_limit; |
Roberto De Ioris | 88e58b1 | 2009-06-03 14:03:06 -0700 | [diff] [blame] | 51 | int base16; |
| 52 | int base8; |
Bernie Thompson | 59277b6 | 2009-11-24 15:52:21 -0800 | [diff] [blame] | 53 | u32 pseudo_palette[256]; |
Bernie Thompson | 58e7c3b | 2011-08-21 13:34:11 -0700 | [diff] [blame] | 54 | int blank_mode; /*one of FB_BLANK_ */ |
Bernie Thompson | 7d9485e | 2010-02-15 06:46:08 -0800 | [diff] [blame] | 55 | /* blit-only rendering path metrics, exposed through sysfs */ |
| 56 | atomic_t bytes_rendered; /* raw pixel-bytes driver asked to render */ |
| 57 | atomic_t bytes_identical; /* saved effort with backbuffer comparison */ |
| 58 | atomic_t bytes_sent; /* to usb, after compression including overhead */ |
| 59 | atomic_t cpu_kcycles_used; /* transpired during pixel processing */ |
Roberto De Ioris | 88e58b1 | 2009-06-03 14:03:06 -0700 | [diff] [blame] | 60 | }; |
| 61 | |
Bernie Thompson | cc403dc | 2010-02-15 06:45:49 -0800 | [diff] [blame] | 62 | #define NR_USB_REQUEST_I2C_SUB_IO 0x02 |
| 63 | #define NR_USB_REQUEST_CHANNEL 0x12 |
| 64 | |
Bernie Thompson | 4a4854d | 2010-02-15 06:45:55 -0800 | [diff] [blame] | 65 | /* -BULK_SIZE as per usb-skeleton. Can we get full page and avoid overhead? */ |
| 66 | #define BULK_SIZE 512 |
| 67 | #define MAX_TRANSFER (PAGE_SIZE*16 - BULK_SIZE) |
| 68 | #define WRITES_IN_FLIGHT (4) |
| 69 | |
Bernie Thompson | 18dffdf | 2010-09-05 16:35:23 -0700 | [diff] [blame] | 70 | #define MAX_VENDOR_DESCRIPTOR_SIZE 256 |
| 71 | |
Bernie Thompson | 4a4854d | 2010-02-15 06:45:55 -0800 | [diff] [blame] | 72 | #define GET_URB_TIMEOUT HZ |
| 73 | #define FREE_URB_TIMEOUT (HZ*2) |
| 74 | |
Bernie Thompson | 530f43a | 2010-02-15 06:46:21 -0800 | [diff] [blame] | 75 | #define BPP 2 |
| 76 | #define MAX_CMD_PIXELS 255 |
Roberto De Ioris | 88e58b1 | 2009-06-03 14:03:06 -0700 | [diff] [blame] | 77 | |
Bernie Thompson | 530f43a | 2010-02-15 06:46:21 -0800 | [diff] [blame] | 78 | #define RLX_HEADER_BYTES 7 |
| 79 | #define MIN_RLX_PIX_BYTES 4 |
| 80 | #define MIN_RLX_CMD_BYTES (RLX_HEADER_BYTES + MIN_RLX_PIX_BYTES) |
Roberto De Ioris | 7316bc5 | 2009-06-10 23:02:19 -0700 | [diff] [blame] | 81 | |
Bernie Thompson | 530f43a | 2010-02-15 06:46:21 -0800 | [diff] [blame] | 82 | #define RLE_HEADER_BYTES 6 |
| 83 | #define MIN_RLE_PIX_BYTES 3 |
| 84 | #define MIN_RLE_CMD_BYTES (RLE_HEADER_BYTES + MIN_RLE_PIX_BYTES) |
Roberto De Ioris | 7316bc5 | 2009-06-10 23:02:19 -0700 | [diff] [blame] | 85 | |
Bernie Thompson | 530f43a | 2010-02-15 06:46:21 -0800 | [diff] [blame] | 86 | #define RAW_HEADER_BYTES 6 |
| 87 | #define MIN_RAW_PIX_BYTES 2 |
| 88 | #define MIN_RAW_CMD_BYTES (RAW_HEADER_BYTES + MIN_RAW_PIX_BYTES) |
Roberto De Ioris | 7316bc5 | 2009-06-10 23:02:19 -0700 | [diff] [blame] | 89 | |
Bernie Thompson | 5bea1fb | 2010-09-05 18:28:29 -0700 | [diff] [blame] | 90 | #define DL_DEFIO_WRITE_DELAY 5 /* fb_deferred_io.delay in jiffies */ |
| 91 | #define DL_DEFIO_WRITE_DISABLE (HZ*60) /* "disable" with long delay */ |
| 92 | |
Bernie Thompson | 530f43a | 2010-02-15 06:46:21 -0800 | [diff] [blame] | 93 | /* remove these once align.h patch is taken into kernel */ |
| 94 | #define DL_ALIGN_UP(x, a) ALIGN(x, a) |
| 95 | #define DL_ALIGN_DOWN(x, a) ALIGN(x-(a-1), a) |
Greg Kroah-Hartman | 39e7df5 | 2009-06-03 14:47:00 -0700 | [diff] [blame] | 96 | |
| 97 | #endif |