1*12eb90f1SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 2f7018c21STomi Valkeinen /* 3f7018c21STomi Valkeinen * udlfb.c -- Framebuffer driver for DisplayLink USB controller 4f7018c21STomi Valkeinen * 5f7018c21STomi Valkeinen * Copyright (C) 2009 Roberto De Ioris <roberto@unbit.it> 6f7018c21STomi Valkeinen * Copyright (C) 2009 Jaya Kumar <jayakumar.lkml@gmail.com> 7f7018c21STomi Valkeinen * Copyright (C) 2009 Bernie Thompson <bernie@plugable.com> 8f7018c21STomi Valkeinen * 9f7018c21STomi Valkeinen * Layout is based on skeletonfb by James Simmons and Geert Uytterhoeven, 10f7018c21STomi Valkeinen * usb-skeleton by GregKH. 11f7018c21STomi Valkeinen * 12f7018c21STomi Valkeinen * Device-specific portions based on information from Displaylink, with work 13f7018c21STomi Valkeinen * from Florian Echtler, Henrik Bjerregaard Pedersen, and others. 14f7018c21STomi Valkeinen */ 15f7018c21STomi Valkeinen 16f7018c21STomi Valkeinen #include <linux/module.h> 17f7018c21STomi Valkeinen #include <linux/kernel.h> 18f7018c21STomi Valkeinen #include <linux/init.h> 19f7018c21STomi Valkeinen #include <linux/usb.h> 20f7018c21STomi Valkeinen #include <linux/uaccess.h> 21f7018c21STomi Valkeinen #include <linux/mm.h> 22f7018c21STomi Valkeinen #include <linux/fb.h> 23f7018c21STomi Valkeinen #include <linux/vmalloc.h> 24f7018c21STomi Valkeinen #include <linux/slab.h> 25f7018c21STomi Valkeinen #include <linux/delay.h> 264e705e17SMikulas Patocka #include <asm/unaligned.h> 27f7018c21STomi Valkeinen #include <video/udlfb.h> 28f7018c21STomi Valkeinen #include "edid.h" 29f7018c21STomi Valkeinen 30fa738a5cSLadislav Michl static const struct fb_fix_screeninfo dlfb_fix = { 31f7018c21STomi Valkeinen .id = "udlfb", 32f7018c21STomi Valkeinen .type = FB_TYPE_PACKED_PIXELS, 33f7018c21STomi Valkeinen .visual = FB_VISUAL_TRUECOLOR, 34f7018c21STomi Valkeinen .xpanstep = 0, 35f7018c21STomi Valkeinen .ypanstep = 0, 36f7018c21STomi Valkeinen .ywrapstep = 0, 37f7018c21STomi Valkeinen .accel = FB_ACCEL_NONE, 38f7018c21STomi Valkeinen }; 39f7018c21STomi Valkeinen 40f7018c21STomi Valkeinen static const u32 udlfb_info_flags = FBINFO_DEFAULT | FBINFO_READS_FAST | 41f7018c21STomi Valkeinen FBINFO_VIRTFB | 42f7018c21STomi Valkeinen FBINFO_HWACCEL_IMAGEBLIT | FBINFO_HWACCEL_FILLRECT | 43f7018c21STomi Valkeinen FBINFO_HWACCEL_COPYAREA | FBINFO_MISC_ALWAYS_SETPAR; 44f7018c21STomi Valkeinen 45f7018c21STomi Valkeinen /* 46f7018c21STomi Valkeinen * There are many DisplayLink-based graphics products, all with unique PIDs. 47f7018c21STomi Valkeinen * So we match on DisplayLink's VID + Vendor-Defined Interface Class (0xff) 48f7018c21STomi Valkeinen * We also require a match on SubClass (0x00) and Protocol (0x00), 49f7018c21STomi Valkeinen * which is compatible with all known USB 2.0 era graphics chips and firmware, 50f7018c21STomi Valkeinen * but allows DisplayLink to increment those for any future incompatible chips 51f7018c21STomi Valkeinen */ 5269de8496SArvind Yadav static const struct usb_device_id id_table[] = { 53f7018c21STomi Valkeinen {.idVendor = 0x17e9, 54f7018c21STomi Valkeinen .bInterfaceClass = 0xff, 55f7018c21STomi Valkeinen .bInterfaceSubClass = 0x00, 56f7018c21STomi Valkeinen .bInterfaceProtocol = 0x00, 57f7018c21STomi Valkeinen .match_flags = USB_DEVICE_ID_MATCH_VENDOR | 58f7018c21STomi Valkeinen USB_DEVICE_ID_MATCH_INT_CLASS | 59f7018c21STomi Valkeinen USB_DEVICE_ID_MATCH_INT_SUBCLASS | 60f7018c21STomi Valkeinen USB_DEVICE_ID_MATCH_INT_PROTOCOL, 61f7018c21STomi Valkeinen }, 62f7018c21STomi Valkeinen {}, 63f7018c21STomi Valkeinen }; 64f7018c21STomi Valkeinen MODULE_DEVICE_TABLE(usb, id_table); 65f7018c21STomi Valkeinen 66f7018c21STomi Valkeinen /* module options */ 67f7018c21STomi Valkeinen static bool console = 1; /* Allow fbcon to open framebuffer */ 68f7018c21STomi Valkeinen static bool fb_defio = 1; /* Detect mmap writes using page faults */ 69f7018c21STomi Valkeinen static bool shadow = 1; /* Optionally disable shadow framebuffer */ 70f7018c21STomi Valkeinen static int pixel_limit; /* Optionally force a pixel resolution limit */ 71f7018c21STomi Valkeinen 727433914eSMikulas Patocka struct dlfb_deferred_free { 737433914eSMikulas Patocka struct list_head list; 747433914eSMikulas Patocka void *mem; 757433914eSMikulas Patocka }; 767433914eSMikulas Patocka 777433914eSMikulas Patocka static int dlfb_realloc_framebuffer(struct dlfb_data *dlfb, struct fb_info *info, u32 new_len); 787433914eSMikulas Patocka 79f7018c21STomi Valkeinen /* dlfb keeps a list of urbs for efficient bulk transfers */ 80f7018c21STomi Valkeinen static void dlfb_urb_completion(struct urb *urb); 817ea46206SLadislav Michl static struct urb *dlfb_get_urb(struct dlfb_data *dlfb); 827ea46206SLadislav Michl static int dlfb_submit_urb(struct dlfb_data *dlfb, struct urb * urb, size_t len); 837ea46206SLadislav Michl static int dlfb_alloc_urb_list(struct dlfb_data *dlfb, int count, size_t size); 847ea46206SLadislav Michl static void dlfb_free_urb_list(struct dlfb_data *dlfb); 85f7018c21STomi Valkeinen 86f7018c21STomi Valkeinen /* 87f7018c21STomi Valkeinen * All DisplayLink bulk operations start with 0xAF, followed by specific code 88f7018c21STomi Valkeinen * All operations are written to buffers which then later get sent to device 89f7018c21STomi Valkeinen */ 90f7018c21STomi Valkeinen static char *dlfb_set_register(char *buf, u8 reg, u8 val) 91f7018c21STomi Valkeinen { 92f7018c21STomi Valkeinen *buf++ = 0xAF; 93f7018c21STomi Valkeinen *buf++ = 0x20; 94f7018c21STomi Valkeinen *buf++ = reg; 95f7018c21STomi Valkeinen *buf++ = val; 96f7018c21STomi Valkeinen return buf; 97f7018c21STomi Valkeinen } 98f7018c21STomi Valkeinen 99f7018c21STomi Valkeinen static char *dlfb_vidreg_lock(char *buf) 100f7018c21STomi Valkeinen { 101f7018c21STomi Valkeinen return dlfb_set_register(buf, 0xFF, 0x00); 102f7018c21STomi Valkeinen } 103f7018c21STomi Valkeinen 104f7018c21STomi Valkeinen static char *dlfb_vidreg_unlock(char *buf) 105f7018c21STomi Valkeinen { 106f7018c21STomi Valkeinen return dlfb_set_register(buf, 0xFF, 0xFF); 107f7018c21STomi Valkeinen } 108f7018c21STomi Valkeinen 109f7018c21STomi Valkeinen /* 110f7018c21STomi Valkeinen * Map FB_BLANK_* to DisplayLink register 111f7018c21STomi Valkeinen * DLReg FB_BLANK_* 112f7018c21STomi Valkeinen * ----- ----------------------------- 113f7018c21STomi Valkeinen * 0x00 FB_BLANK_UNBLANK (0) 114f7018c21STomi Valkeinen * 0x01 FB_BLANK (1) 115f7018c21STomi Valkeinen * 0x03 FB_BLANK_VSYNC_SUSPEND (2) 116f7018c21STomi Valkeinen * 0x05 FB_BLANK_HSYNC_SUSPEND (3) 117f7018c21STomi Valkeinen * 0x07 FB_BLANK_POWERDOWN (4) Note: requires modeset to come back 118f7018c21STomi Valkeinen */ 119f7018c21STomi Valkeinen static char *dlfb_blanking(char *buf, int fb_blank) 120f7018c21STomi Valkeinen { 121f7018c21STomi Valkeinen u8 reg; 122f7018c21STomi Valkeinen 123f7018c21STomi Valkeinen switch (fb_blank) { 124f7018c21STomi Valkeinen case FB_BLANK_POWERDOWN: 125f7018c21STomi Valkeinen reg = 0x07; 126f7018c21STomi Valkeinen break; 127f7018c21STomi Valkeinen case FB_BLANK_HSYNC_SUSPEND: 128f7018c21STomi Valkeinen reg = 0x05; 129f7018c21STomi Valkeinen break; 130f7018c21STomi Valkeinen case FB_BLANK_VSYNC_SUSPEND: 131f7018c21STomi Valkeinen reg = 0x03; 132f7018c21STomi Valkeinen break; 133f7018c21STomi Valkeinen case FB_BLANK_NORMAL: 134f7018c21STomi Valkeinen reg = 0x01; 135f7018c21STomi Valkeinen break; 136f7018c21STomi Valkeinen default: 137f7018c21STomi Valkeinen reg = 0x00; 138f7018c21STomi Valkeinen } 139f7018c21STomi Valkeinen 140f7018c21STomi Valkeinen buf = dlfb_set_register(buf, 0x1F, reg); 141f7018c21STomi Valkeinen 142f7018c21STomi Valkeinen return buf; 143f7018c21STomi Valkeinen } 144f7018c21STomi Valkeinen 145f7018c21STomi Valkeinen static char *dlfb_set_color_depth(char *buf, u8 selection) 146f7018c21STomi Valkeinen { 147f7018c21STomi Valkeinen return dlfb_set_register(buf, 0x00, selection); 148f7018c21STomi Valkeinen } 149f7018c21STomi Valkeinen 150f7018c21STomi Valkeinen static char *dlfb_set_base16bpp(char *wrptr, u32 base) 151f7018c21STomi Valkeinen { 152f7018c21STomi Valkeinen /* the base pointer is 16 bits wide, 0x20 is hi byte. */ 153f7018c21STomi Valkeinen wrptr = dlfb_set_register(wrptr, 0x20, base >> 16); 154f7018c21STomi Valkeinen wrptr = dlfb_set_register(wrptr, 0x21, base >> 8); 155f7018c21STomi Valkeinen return dlfb_set_register(wrptr, 0x22, base); 156f7018c21STomi Valkeinen } 157f7018c21STomi Valkeinen 158f7018c21STomi Valkeinen /* 159f7018c21STomi Valkeinen * DisplayLink HW has separate 16bpp and 8bpp framebuffers. 160f7018c21STomi Valkeinen * In 24bpp modes, the low 323 RGB bits go in the 8bpp framebuffer 161f7018c21STomi Valkeinen */ 162f7018c21STomi Valkeinen static char *dlfb_set_base8bpp(char *wrptr, u32 base) 163f7018c21STomi Valkeinen { 164f7018c21STomi Valkeinen wrptr = dlfb_set_register(wrptr, 0x26, base >> 16); 165f7018c21STomi Valkeinen wrptr = dlfb_set_register(wrptr, 0x27, base >> 8); 166f7018c21STomi Valkeinen return dlfb_set_register(wrptr, 0x28, base); 167f7018c21STomi Valkeinen } 168f7018c21STomi Valkeinen 169f7018c21STomi Valkeinen static char *dlfb_set_register_16(char *wrptr, u8 reg, u16 value) 170f7018c21STomi Valkeinen { 171f7018c21STomi Valkeinen wrptr = dlfb_set_register(wrptr, reg, value >> 8); 172f7018c21STomi Valkeinen return dlfb_set_register(wrptr, reg+1, value); 173f7018c21STomi Valkeinen } 174f7018c21STomi Valkeinen 175f7018c21STomi Valkeinen /* 176f7018c21STomi Valkeinen * This is kind of weird because the controller takes some 177f7018c21STomi Valkeinen * register values in a different byte order than other registers. 178f7018c21STomi Valkeinen */ 179f7018c21STomi Valkeinen static char *dlfb_set_register_16be(char *wrptr, u8 reg, u16 value) 180f7018c21STomi Valkeinen { 181f7018c21STomi Valkeinen wrptr = dlfb_set_register(wrptr, reg, value); 182f7018c21STomi Valkeinen return dlfb_set_register(wrptr, reg+1, value >> 8); 183f7018c21STomi Valkeinen } 184f7018c21STomi Valkeinen 185f7018c21STomi Valkeinen /* 186f7018c21STomi Valkeinen * LFSR is linear feedback shift register. The reason we have this is 187f7018c21STomi Valkeinen * because the display controller needs to minimize the clock depth of 188f7018c21STomi Valkeinen * various counters used in the display path. So this code reverses the 189f7018c21STomi Valkeinen * provided value into the lfsr16 value by counting backwards to get 190f7018c21STomi Valkeinen * the value that needs to be set in the hardware comparator to get the 191f7018c21STomi Valkeinen * same actual count. This makes sense once you read above a couple of 192f7018c21STomi Valkeinen * times and think about it from a hardware perspective. 193f7018c21STomi Valkeinen */ 194f7018c21STomi Valkeinen static u16 dlfb_lfsr16(u16 actual_count) 195f7018c21STomi Valkeinen { 196f7018c21STomi Valkeinen u32 lv = 0xFFFF; /* This is the lfsr value that the hw starts with */ 197f7018c21STomi Valkeinen 198f7018c21STomi Valkeinen while (actual_count--) { 199f7018c21STomi Valkeinen lv = ((lv << 1) | 200f7018c21STomi Valkeinen (((lv >> 15) ^ (lv >> 4) ^ (lv >> 2) ^ (lv >> 1)) & 1)) 201f7018c21STomi Valkeinen & 0xFFFF; 202f7018c21STomi Valkeinen } 203f7018c21STomi Valkeinen 204f7018c21STomi Valkeinen return (u16) lv; 205f7018c21STomi Valkeinen } 206f7018c21STomi Valkeinen 207f7018c21STomi Valkeinen /* 208f7018c21STomi Valkeinen * This does LFSR conversion on the value that is to be written. 209f7018c21STomi Valkeinen * See LFSR explanation above for more detail. 210f7018c21STomi Valkeinen */ 211f7018c21STomi Valkeinen static char *dlfb_set_register_lfsr16(char *wrptr, u8 reg, u16 value) 212f7018c21STomi Valkeinen { 213f7018c21STomi Valkeinen return dlfb_set_register_16(wrptr, reg, dlfb_lfsr16(value)); 214f7018c21STomi Valkeinen } 215f7018c21STomi Valkeinen 216f7018c21STomi Valkeinen /* 217f7018c21STomi Valkeinen * This takes a standard fbdev screeninfo struct and all of its monitor mode 218f7018c21STomi Valkeinen * details and converts them into the DisplayLink equivalent register commands. 219f7018c21STomi Valkeinen */ 220f7018c21STomi Valkeinen static char *dlfb_set_vid_cmds(char *wrptr, struct fb_var_screeninfo *var) 221f7018c21STomi Valkeinen { 222f7018c21STomi Valkeinen u16 xds, yds; 223f7018c21STomi Valkeinen u16 xde, yde; 224f7018c21STomi Valkeinen u16 yec; 225f7018c21STomi Valkeinen 226f7018c21STomi Valkeinen /* x display start */ 227f7018c21STomi Valkeinen xds = var->left_margin + var->hsync_len; 228f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x01, xds); 229f7018c21STomi Valkeinen /* x display end */ 230f7018c21STomi Valkeinen xde = xds + var->xres; 231f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x03, xde); 232f7018c21STomi Valkeinen 233f7018c21STomi Valkeinen /* y display start */ 234f7018c21STomi Valkeinen yds = var->upper_margin + var->vsync_len; 235f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x05, yds); 236f7018c21STomi Valkeinen /* y display end */ 237f7018c21STomi Valkeinen yde = yds + var->yres; 238f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x07, yde); 239f7018c21STomi Valkeinen 240f7018c21STomi Valkeinen /* x end count is active + blanking - 1 */ 241f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x09, 242f7018c21STomi Valkeinen xde + var->right_margin - 1); 243f7018c21STomi Valkeinen 244f7018c21STomi Valkeinen /* libdlo hardcodes hsync start to 1 */ 245f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x0B, 1); 246f7018c21STomi Valkeinen 247f7018c21STomi Valkeinen /* hsync end is width of sync pulse + 1 */ 248f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x0D, var->hsync_len + 1); 249f7018c21STomi Valkeinen 250f7018c21STomi Valkeinen /* hpixels is active pixels */ 251f7018c21STomi Valkeinen wrptr = dlfb_set_register_16(wrptr, 0x0F, var->xres); 252f7018c21STomi Valkeinen 253f7018c21STomi Valkeinen /* yendcount is vertical active + vertical blanking */ 254f7018c21STomi Valkeinen yec = var->yres + var->upper_margin + var->lower_margin + 255f7018c21STomi Valkeinen var->vsync_len; 256f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x11, yec); 257f7018c21STomi Valkeinen 258f7018c21STomi Valkeinen /* libdlo hardcodes vsync start to 0 */ 259f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x13, 0); 260f7018c21STomi Valkeinen 261f7018c21STomi Valkeinen /* vsync end is width of vsync pulse */ 262f7018c21STomi Valkeinen wrptr = dlfb_set_register_lfsr16(wrptr, 0x15, var->vsync_len); 263f7018c21STomi Valkeinen 264f7018c21STomi Valkeinen /* vpixels is active pixels */ 265f7018c21STomi Valkeinen wrptr = dlfb_set_register_16(wrptr, 0x17, var->yres); 266f7018c21STomi Valkeinen 267f7018c21STomi Valkeinen /* convert picoseconds to 5kHz multiple for pclk5k = x * 1E12/5k */ 268f7018c21STomi Valkeinen wrptr = dlfb_set_register_16be(wrptr, 0x1B, 269f7018c21STomi Valkeinen 200*1000*1000/var->pixclock); 270f7018c21STomi Valkeinen 271f7018c21STomi Valkeinen return wrptr; 272f7018c21STomi Valkeinen } 273f7018c21STomi Valkeinen 274f7018c21STomi Valkeinen /* 275f7018c21STomi Valkeinen * This takes a standard fbdev screeninfo struct that was fetched or prepared 276f7018c21STomi Valkeinen * and then generates the appropriate command sequence that then drives the 277f7018c21STomi Valkeinen * display controller. 278f7018c21STomi Valkeinen */ 2797ea46206SLadislav Michl static int dlfb_set_video_mode(struct dlfb_data *dlfb, 280f7018c21STomi Valkeinen struct fb_var_screeninfo *var) 281f7018c21STomi Valkeinen { 282f7018c21STomi Valkeinen char *buf; 283f7018c21STomi Valkeinen char *wrptr; 284f63cb8d7SAlexey Klimov int retval; 285f7018c21STomi Valkeinen int writesize; 286f7018c21STomi Valkeinen struct urb *urb; 287f7018c21STomi Valkeinen 2887ea46206SLadislav Michl if (!atomic_read(&dlfb->usb_active)) 289f7018c21STomi Valkeinen return -EPERM; 290f7018c21STomi Valkeinen 2917ea46206SLadislav Michl urb = dlfb_get_urb(dlfb); 292f7018c21STomi Valkeinen if (!urb) 293f7018c21STomi Valkeinen return -ENOMEM; 294f7018c21STomi Valkeinen 295f7018c21STomi Valkeinen buf = (char *) urb->transfer_buffer; 296f7018c21STomi Valkeinen 297f7018c21STomi Valkeinen /* 298f7018c21STomi Valkeinen * This first section has to do with setting the base address on the 299f7018c21STomi Valkeinen * controller * associated with the display. There are 2 base 300f7018c21STomi Valkeinen * pointers, currently, we only * use the 16 bpp segment. 301f7018c21STomi Valkeinen */ 302f7018c21STomi Valkeinen wrptr = dlfb_vidreg_lock(buf); 303f7018c21STomi Valkeinen wrptr = dlfb_set_color_depth(wrptr, 0x00); 304f7018c21STomi Valkeinen /* set base for 16bpp segment to 0 */ 305f7018c21STomi Valkeinen wrptr = dlfb_set_base16bpp(wrptr, 0); 306f7018c21STomi Valkeinen /* set base for 8bpp segment to end of fb */ 3077ea46206SLadislav Michl wrptr = dlfb_set_base8bpp(wrptr, dlfb->info->fix.smem_len); 308f7018c21STomi Valkeinen 309f7018c21STomi Valkeinen wrptr = dlfb_set_vid_cmds(wrptr, var); 310f7018c21STomi Valkeinen wrptr = dlfb_blanking(wrptr, FB_BLANK_UNBLANK); 311f7018c21STomi Valkeinen wrptr = dlfb_vidreg_unlock(wrptr); 312f7018c21STomi Valkeinen 313f7018c21STomi Valkeinen writesize = wrptr - buf; 314f7018c21STomi Valkeinen 3157ea46206SLadislav Michl retval = dlfb_submit_urb(dlfb, urb, writesize); 316f7018c21STomi Valkeinen 3177ea46206SLadislav Michl dlfb->blank_mode = FB_BLANK_UNBLANK; 318f7018c21STomi Valkeinen 319f7018c21STomi Valkeinen return retval; 320f7018c21STomi Valkeinen } 321f7018c21STomi Valkeinen 322f7018c21STomi Valkeinen static int dlfb_ops_mmap(struct fb_info *info, struct vm_area_struct *vma) 323f7018c21STomi Valkeinen { 324f7018c21STomi Valkeinen unsigned long start = vma->vm_start; 325f7018c21STomi Valkeinen unsigned long size = vma->vm_end - vma->vm_start; 326f7018c21STomi Valkeinen unsigned long offset = vma->vm_pgoff << PAGE_SHIFT; 327f7018c21STomi Valkeinen unsigned long page, pos; 328f7018c21STomi Valkeinen 329f7018c21STomi Valkeinen if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT)) 330f7018c21STomi Valkeinen return -EINVAL; 331f7018c21STomi Valkeinen if (size > info->fix.smem_len) 332f7018c21STomi Valkeinen return -EINVAL; 333f7018c21STomi Valkeinen if (offset > info->fix.smem_len - size) 334f7018c21STomi Valkeinen return -EINVAL; 335f7018c21STomi Valkeinen 336f7018c21STomi Valkeinen pos = (unsigned long)info->fix.smem_start + offset; 337f7018c21STomi Valkeinen 3385865889fSLadislav Michl dev_dbg(info->dev, "mmap() framebuffer addr:%lu size:%lu\n", 339f7018c21STomi Valkeinen pos, size); 340f7018c21STomi Valkeinen 341f7018c21STomi Valkeinen while (size > 0) { 342f7018c21STomi Valkeinen page = vmalloc_to_pfn((void *)pos); 343f7018c21STomi Valkeinen if (remap_pfn_range(vma, start, page, PAGE_SIZE, PAGE_SHARED)) 344f7018c21STomi Valkeinen return -EAGAIN; 345f7018c21STomi Valkeinen 346f7018c21STomi Valkeinen start += PAGE_SIZE; 347f7018c21STomi Valkeinen pos += PAGE_SIZE; 348f7018c21STomi Valkeinen if (size > PAGE_SIZE) 349f7018c21STomi Valkeinen size -= PAGE_SIZE; 350f7018c21STomi Valkeinen else 351f7018c21STomi Valkeinen size = 0; 352f7018c21STomi Valkeinen } 353f7018c21STomi Valkeinen 354f7018c21STomi Valkeinen return 0; 355f7018c21STomi Valkeinen } 356f7018c21STomi Valkeinen 357f7018c21STomi Valkeinen /* 358f7018c21STomi Valkeinen * Trims identical data from front and back of line 359f7018c21STomi Valkeinen * Sets new front buffer address and width 360f7018c21STomi Valkeinen * And returns byte count of identical pixels 361f7018c21STomi Valkeinen * Assumes CPU natural alignment (unsigned long) 362f7018c21STomi Valkeinen * for back and front buffer ptrs and width 363f7018c21STomi Valkeinen */ 364f7018c21STomi Valkeinen static int dlfb_trim_hline(const u8 *bback, const u8 **bfront, int *width_bytes) 365f7018c21STomi Valkeinen { 366f7018c21STomi Valkeinen int j, k; 367f7018c21STomi Valkeinen const unsigned long *back = (const unsigned long *) bback; 368f7018c21STomi Valkeinen const unsigned long *front = (const unsigned long *) *bfront; 369f7018c21STomi Valkeinen const int width = *width_bytes / sizeof(unsigned long); 370f7018c21STomi Valkeinen int identical = width; 371f7018c21STomi Valkeinen int start = width; 372f7018c21STomi Valkeinen int end = width; 373f7018c21STomi Valkeinen 374f7018c21STomi Valkeinen for (j = 0; j < width; j++) { 375f7018c21STomi Valkeinen if (back[j] != front[j]) { 376f7018c21STomi Valkeinen start = j; 377f7018c21STomi Valkeinen break; 378f7018c21STomi Valkeinen } 379f7018c21STomi Valkeinen } 380f7018c21STomi Valkeinen 381f7018c21STomi Valkeinen for (k = width - 1; k > j; k--) { 382f7018c21STomi Valkeinen if (back[k] != front[k]) { 383f7018c21STomi Valkeinen end = k+1; 384f7018c21STomi Valkeinen break; 385f7018c21STomi Valkeinen } 386f7018c21STomi Valkeinen } 387f7018c21STomi Valkeinen 388f7018c21STomi Valkeinen identical = start + (width - end); 389f7018c21STomi Valkeinen *bfront = (u8 *) &front[start]; 390f7018c21STomi Valkeinen *width_bytes = (end - start) * sizeof(unsigned long); 391f7018c21STomi Valkeinen 392f7018c21STomi Valkeinen return identical * sizeof(unsigned long); 393f7018c21STomi Valkeinen } 394f7018c21STomi Valkeinen 395f7018c21STomi Valkeinen /* 396f7018c21STomi Valkeinen * Render a command stream for an encoded horizontal line segment of pixels. 397f7018c21STomi Valkeinen * 398f7018c21STomi Valkeinen * A command buffer holds several commands. 399f7018c21STomi Valkeinen * It always begins with a fresh command header 400f7018c21STomi Valkeinen * (the protocol doesn't require this, but we enforce it to allow 401f7018c21STomi Valkeinen * multiple buffers to be potentially encoded and sent in parallel). 402f7018c21STomi Valkeinen * A single command encodes one contiguous horizontal line of pixels 403f7018c21STomi Valkeinen * 404f7018c21STomi Valkeinen * The function relies on the client to do all allocation, so that 405f7018c21STomi Valkeinen * rendering can be done directly to output buffers (e.g. USB URBs). 406f7018c21STomi Valkeinen * The function fills the supplied command buffer, providing information 407f7018c21STomi Valkeinen * on where it left off, so the client may call in again with additional 408f7018c21STomi Valkeinen * buffers if the line will take several buffers to complete. 409f7018c21STomi Valkeinen * 410f7018c21STomi Valkeinen * A single command can transmit a maximum of 256 pixels, 411f7018c21STomi Valkeinen * regardless of the compression ratio (protocol design limit). 412f7018c21STomi Valkeinen * To the hardware, 0 for a size byte means 256 413f7018c21STomi Valkeinen * 414f7018c21STomi Valkeinen * Rather than 256 pixel commands which are either rl or raw encoded, 415f7018c21STomi Valkeinen * the rlx command simply assumes alternating raw and rl spans within one cmd. 416f7018c21STomi Valkeinen * This has a slightly larger header overhead, but produces more even results. 417f7018c21STomi Valkeinen * It also processes all data (read and write) in a single pass. 418f7018c21STomi Valkeinen * Performance benchmarks of common cases show it having just slightly better 419f7018c21STomi Valkeinen * compression than 256 pixel raw or rle commands, with similar CPU consumpion. 420f7018c21STomi Valkeinen * But for very rl friendly data, will compress not quite as well. 421f7018c21STomi Valkeinen */ 422f7018c21STomi Valkeinen static void dlfb_compress_hline( 423f7018c21STomi Valkeinen const uint16_t **pixel_start_ptr, 424f7018c21STomi Valkeinen const uint16_t *const pixel_end, 425f7018c21STomi Valkeinen uint32_t *device_address_ptr, 426f7018c21STomi Valkeinen uint8_t **command_buffer_ptr, 4278f3c39b8SMikulas Patocka const uint8_t *const cmd_buffer_end, 4288f3c39b8SMikulas Patocka unsigned long back_buffer_offset, 4298f3c39b8SMikulas Patocka int *ident_ptr) 430f7018c21STomi Valkeinen { 431f7018c21STomi Valkeinen const uint16_t *pixel = *pixel_start_ptr; 432f7018c21STomi Valkeinen uint32_t dev_addr = *device_address_ptr; 433f7018c21STomi Valkeinen uint8_t *cmd = *command_buffer_ptr; 434f7018c21STomi Valkeinen 435f7018c21STomi Valkeinen while ((pixel_end > pixel) && 436f7018c21STomi Valkeinen (cmd_buffer_end - MIN_RLX_CMD_BYTES > cmd)) { 437f7018c21STomi Valkeinen uint8_t *raw_pixels_count_byte = NULL; 438f7018c21STomi Valkeinen uint8_t *cmd_pixels_count_byte = NULL; 439f7018c21STomi Valkeinen const uint16_t *raw_pixel_start = NULL; 440f7018c21STomi Valkeinen const uint16_t *cmd_pixel_start, *cmd_pixel_end = NULL; 441f7018c21STomi Valkeinen 4428f3c39b8SMikulas Patocka if (back_buffer_offset && 4438f3c39b8SMikulas Patocka *pixel == *(u16 *)((u8 *)pixel + back_buffer_offset)) { 4448f3c39b8SMikulas Patocka pixel++; 4458f3c39b8SMikulas Patocka dev_addr += BPP; 4468f3c39b8SMikulas Patocka (*ident_ptr)++; 4478f3c39b8SMikulas Patocka continue; 4488f3c39b8SMikulas Patocka } 4498f3c39b8SMikulas Patocka 450f7018c21STomi Valkeinen *cmd++ = 0xAF; 451f7018c21STomi Valkeinen *cmd++ = 0x6B; 452115e7759SLadislav Michl *cmd++ = dev_addr >> 16; 453115e7759SLadislav Michl *cmd++ = dev_addr >> 8; 454115e7759SLadislav Michl *cmd++ = dev_addr; 455f7018c21STomi Valkeinen 456f7018c21STomi Valkeinen cmd_pixels_count_byte = cmd++; /* we'll know this later */ 457f7018c21STomi Valkeinen cmd_pixel_start = pixel; 458f7018c21STomi Valkeinen 459f7018c21STomi Valkeinen raw_pixels_count_byte = cmd++; /* we'll know this later */ 460f7018c21STomi Valkeinen raw_pixel_start = pixel; 461f7018c21STomi Valkeinen 4624e705e17SMikulas Patocka cmd_pixel_end = pixel + min3(MAX_CMD_PIXELS + 1UL, 4634e705e17SMikulas Patocka (unsigned long)(pixel_end - pixel), 4644e705e17SMikulas Patocka (unsigned long)(cmd_buffer_end - 1 - cmd) / BPP); 465f7018c21STomi Valkeinen 4668f3c39b8SMikulas Patocka if (back_buffer_offset) { 4678f3c39b8SMikulas Patocka /* note: the framebuffer may change under us, so we must test for underflow */ 4688f3c39b8SMikulas Patocka while (cmd_pixel_end - 1 > pixel && 4698f3c39b8SMikulas Patocka *(cmd_pixel_end - 1) == *(u16 *)((u8 *)(cmd_pixel_end - 1) + back_buffer_offset)) 4708f3c39b8SMikulas Patocka cmd_pixel_end--; 4718f3c39b8SMikulas Patocka } 4728f3c39b8SMikulas Patocka 473f7018c21STomi Valkeinen while (pixel < cmd_pixel_end) { 474f7018c21STomi Valkeinen const uint16_t * const repeating_pixel = pixel; 4758f3c39b8SMikulas Patocka u16 pixel_value = *pixel; 476f7018c21STomi Valkeinen 4778f3c39b8SMikulas Patocka put_unaligned_be16(pixel_value, cmd); 4788f3c39b8SMikulas Patocka if (back_buffer_offset) 4798f3c39b8SMikulas Patocka *(u16 *)((u8 *)pixel + back_buffer_offset) = pixel_value; 4804e705e17SMikulas Patocka cmd += 2; 481f7018c21STomi Valkeinen pixel++; 482f7018c21STomi Valkeinen 483f7018c21STomi Valkeinen if (unlikely((pixel < cmd_pixel_end) && 4848f3c39b8SMikulas Patocka (*pixel == pixel_value))) { 485f7018c21STomi Valkeinen /* go back and fill in raw pixel count */ 486f7018c21STomi Valkeinen *raw_pixels_count_byte = ((repeating_pixel - 487f7018c21STomi Valkeinen raw_pixel_start) + 1) & 0xFF; 488f7018c21STomi Valkeinen 4898f3c39b8SMikulas Patocka do { 4908f3c39b8SMikulas Patocka if (back_buffer_offset) 4918f3c39b8SMikulas Patocka *(u16 *)((u8 *)pixel + back_buffer_offset) = pixel_value; 492f7018c21STomi Valkeinen pixel++; 4938f3c39b8SMikulas Patocka } while ((pixel < cmd_pixel_end) && 4948f3c39b8SMikulas Patocka (*pixel == pixel_value)); 495f7018c21STomi Valkeinen 496f7018c21STomi Valkeinen /* immediately after raw data is repeat byte */ 497f7018c21STomi Valkeinen *cmd++ = ((pixel - repeating_pixel) - 1) & 0xFF; 498f7018c21STomi Valkeinen 499f7018c21STomi Valkeinen /* Then start another raw pixel span */ 500f7018c21STomi Valkeinen raw_pixel_start = pixel; 501f7018c21STomi Valkeinen raw_pixels_count_byte = cmd++; 502f7018c21STomi Valkeinen } 503f7018c21STomi Valkeinen } 504f7018c21STomi Valkeinen 505f7018c21STomi Valkeinen if (pixel > raw_pixel_start) { 506f7018c21STomi Valkeinen /* finalize last RAW span */ 507f7018c21STomi Valkeinen *raw_pixels_count_byte = (pixel-raw_pixel_start) & 0xFF; 5084e705e17SMikulas Patocka } else { 5094e705e17SMikulas Patocka /* undo unused byte */ 5104e705e17SMikulas Patocka cmd--; 511f7018c21STomi Valkeinen } 512f7018c21STomi Valkeinen 513f7018c21STomi Valkeinen *cmd_pixels_count_byte = (pixel - cmd_pixel_start) & 0xFF; 5144e705e17SMikulas Patocka dev_addr += (u8 *)pixel - (u8 *)cmd_pixel_start; 515f7018c21STomi Valkeinen } 516f7018c21STomi Valkeinen 5174e705e17SMikulas Patocka if (cmd_buffer_end - MIN_RLX_CMD_BYTES <= cmd) { 518f7018c21STomi Valkeinen /* Fill leftover bytes with no-ops */ 519f7018c21STomi Valkeinen if (cmd_buffer_end > cmd) 520f7018c21STomi Valkeinen memset(cmd, 0xAF, cmd_buffer_end - cmd); 521f7018c21STomi Valkeinen cmd = (uint8_t *) cmd_buffer_end; 522f7018c21STomi Valkeinen } 523f7018c21STomi Valkeinen 524f7018c21STomi Valkeinen *command_buffer_ptr = cmd; 525f7018c21STomi Valkeinen *pixel_start_ptr = pixel; 526f7018c21STomi Valkeinen *device_address_ptr = dev_addr; 527f7018c21STomi Valkeinen } 528f7018c21STomi Valkeinen 529f7018c21STomi Valkeinen /* 530f7018c21STomi Valkeinen * There are 3 copies of every pixel: The front buffer that the fbdev 531f7018c21STomi Valkeinen * client renders to, the actual framebuffer across the USB bus in hardware 532f7018c21STomi Valkeinen * (that we can only write to, slowly, and can never read), and (optionally) 533f7018c21STomi Valkeinen * our shadow copy that tracks what's been sent to that hardware buffer. 534f7018c21STomi Valkeinen */ 5357ea46206SLadislav Michl static int dlfb_render_hline(struct dlfb_data *dlfb, struct urb **urb_ptr, 536f7018c21STomi Valkeinen const char *front, char **urb_buf_ptr, 537f7018c21STomi Valkeinen u32 byte_offset, u32 byte_width, 538f7018c21STomi Valkeinen int *ident_ptr, int *sent_ptr) 539f7018c21STomi Valkeinen { 540f7018c21STomi Valkeinen const u8 *line_start, *line_end, *next_pixel; 5417ea46206SLadislav Michl u32 dev_addr = dlfb->base16 + byte_offset; 542f7018c21STomi Valkeinen struct urb *urb = *urb_ptr; 543f7018c21STomi Valkeinen u8 *cmd = *urb_buf_ptr; 544f7018c21STomi Valkeinen u8 *cmd_end = (u8 *) urb->transfer_buffer + urb->transfer_buffer_length; 5458f3c39b8SMikulas Patocka unsigned long back_buffer_offset = 0; 546f7018c21STomi Valkeinen 547f7018c21STomi Valkeinen line_start = (u8 *) (front + byte_offset); 548f7018c21STomi Valkeinen next_pixel = line_start; 549f7018c21STomi Valkeinen line_end = next_pixel + byte_width; 550f7018c21STomi Valkeinen 5517ea46206SLadislav Michl if (dlfb->backing_buffer) { 552f7018c21STomi Valkeinen int offset; 5537ea46206SLadislav Michl const u8 *back_start = (u8 *) (dlfb->backing_buffer 554f7018c21STomi Valkeinen + byte_offset); 555f7018c21STomi Valkeinen 5568f3c39b8SMikulas Patocka back_buffer_offset = (unsigned long)back_start - (unsigned long)line_start; 5578f3c39b8SMikulas Patocka 558f7018c21STomi Valkeinen *ident_ptr += dlfb_trim_hline(back_start, &next_pixel, 559f7018c21STomi Valkeinen &byte_width); 560f7018c21STomi Valkeinen 561f7018c21STomi Valkeinen offset = next_pixel - line_start; 562f7018c21STomi Valkeinen line_end = next_pixel + byte_width; 563f7018c21STomi Valkeinen dev_addr += offset; 564f7018c21STomi Valkeinen back_start += offset; 565f7018c21STomi Valkeinen line_start += offset; 566f7018c21STomi Valkeinen } 567f7018c21STomi Valkeinen 568f7018c21STomi Valkeinen while (next_pixel < line_end) { 569f7018c21STomi Valkeinen 570f7018c21STomi Valkeinen dlfb_compress_hline((const uint16_t **) &next_pixel, 571f7018c21STomi Valkeinen (const uint16_t *) line_end, &dev_addr, 5728f3c39b8SMikulas Patocka (u8 **) &cmd, (u8 *) cmd_end, back_buffer_offset, 5738f3c39b8SMikulas Patocka ident_ptr); 574f7018c21STomi Valkeinen 575f7018c21STomi Valkeinen if (cmd >= cmd_end) { 576f7018c21STomi Valkeinen int len = cmd - (u8 *) urb->transfer_buffer; 5777ea46206SLadislav Michl if (dlfb_submit_urb(dlfb, urb, len)) 578f7018c21STomi Valkeinen return 1; /* lost pixels is set */ 579f7018c21STomi Valkeinen *sent_ptr += len; 5807ea46206SLadislav Michl urb = dlfb_get_urb(dlfb); 581f7018c21STomi Valkeinen if (!urb) 582f7018c21STomi Valkeinen return 1; /* lost_pixels is set */ 583f7018c21STomi Valkeinen *urb_ptr = urb; 584f7018c21STomi Valkeinen cmd = urb->transfer_buffer; 585f7018c21STomi Valkeinen cmd_end = &cmd[urb->transfer_buffer_length]; 586f7018c21STomi Valkeinen } 587f7018c21STomi Valkeinen } 588f7018c21STomi Valkeinen 589f7018c21STomi Valkeinen *urb_buf_ptr = cmd; 590f7018c21STomi Valkeinen 591f7018c21STomi Valkeinen return 0; 592f7018c21STomi Valkeinen } 593f7018c21STomi Valkeinen 594bd86b6c5SMikulas Patocka static int dlfb_handle_damage(struct dlfb_data *dlfb, int x, int y, int width, int height) 595f7018c21STomi Valkeinen { 596babc250eSMikulas Patocka int i, ret; 597f7018c21STomi Valkeinen char *cmd; 598f7018c21STomi Valkeinen cycles_t start_cycles, end_cycles; 599f7018c21STomi Valkeinen int bytes_sent = 0; 600f7018c21STomi Valkeinen int bytes_identical = 0; 601f7018c21STomi Valkeinen struct urb *urb; 602f7018c21STomi Valkeinen int aligned_x; 603f7018c21STomi Valkeinen 604f7018c21STomi Valkeinen start_cycles = get_cycles(); 605f7018c21STomi Valkeinen 606babc250eSMikulas Patocka mutex_lock(&dlfb->render_mutex); 607babc250eSMikulas Patocka 608f7018c21STomi Valkeinen aligned_x = DL_ALIGN_DOWN(x, sizeof(unsigned long)); 609f7018c21STomi Valkeinen width = DL_ALIGN_UP(width + (x-aligned_x), sizeof(unsigned long)); 610f7018c21STomi Valkeinen x = aligned_x; 611f7018c21STomi Valkeinen 612f7018c21STomi Valkeinen if ((width <= 0) || 6137ea46206SLadislav Michl (x + width > dlfb->info->var.xres) || 614babc250eSMikulas Patocka (y + height > dlfb->info->var.yres)) { 615babc250eSMikulas Patocka ret = -EINVAL; 616babc250eSMikulas Patocka goto unlock_ret; 617babc250eSMikulas Patocka } 618f7018c21STomi Valkeinen 619babc250eSMikulas Patocka if (!atomic_read(&dlfb->usb_active)) { 620babc250eSMikulas Patocka ret = 0; 621babc250eSMikulas Patocka goto unlock_ret; 622babc250eSMikulas Patocka } 623f7018c21STomi Valkeinen 6247ea46206SLadislav Michl urb = dlfb_get_urb(dlfb); 625babc250eSMikulas Patocka if (!urb) { 626babc250eSMikulas Patocka ret = 0; 627babc250eSMikulas Patocka goto unlock_ret; 628babc250eSMikulas Patocka } 629f7018c21STomi Valkeinen cmd = urb->transfer_buffer; 630f7018c21STomi Valkeinen 631f7018c21STomi Valkeinen for (i = y; i < y + height ; i++) { 6327ea46206SLadislav Michl const int line_offset = dlfb->info->fix.line_length * i; 633f7018c21STomi Valkeinen const int byte_offset = line_offset + (x * BPP); 634f7018c21STomi Valkeinen 6357ea46206SLadislav Michl if (dlfb_render_hline(dlfb, &urb, 6367ea46206SLadislav Michl (char *) dlfb->info->fix.smem_start, 637f7018c21STomi Valkeinen &cmd, byte_offset, width * BPP, 638f7018c21STomi Valkeinen &bytes_identical, &bytes_sent)) 639f7018c21STomi Valkeinen goto error; 640f7018c21STomi Valkeinen } 641f7018c21STomi Valkeinen 642f7018c21STomi Valkeinen if (cmd > (char *) urb->transfer_buffer) { 6434e705e17SMikulas Patocka int len; 6444e705e17SMikulas Patocka if (cmd < (char *) urb->transfer_buffer + urb->transfer_buffer_length) 6454e705e17SMikulas Patocka *cmd++ = 0xAF; 646f7018c21STomi Valkeinen /* Send partial buffer remaining before exiting */ 6474e705e17SMikulas Patocka len = cmd - (char *) urb->transfer_buffer; 648bd86b6c5SMikulas Patocka dlfb_submit_urb(dlfb, urb, len); 649f7018c21STomi Valkeinen bytes_sent += len; 650f7018c21STomi Valkeinen } else 651f7018c21STomi Valkeinen dlfb_urb_completion(urb); 652f7018c21STomi Valkeinen 653f7018c21STomi Valkeinen error: 6547ea46206SLadislav Michl atomic_add(bytes_sent, &dlfb->bytes_sent); 6557ea46206SLadislav Michl atomic_add(bytes_identical, &dlfb->bytes_identical); 6567ea46206SLadislav Michl atomic_add(width*height*2, &dlfb->bytes_rendered); 657f7018c21STomi Valkeinen end_cycles = get_cycles(); 658f7018c21STomi Valkeinen atomic_add(((unsigned int) ((end_cycles - start_cycles) 659f7018c21STomi Valkeinen >> 10)), /* Kcycles */ 6607ea46206SLadislav Michl &dlfb->cpu_kcycles_used); 661f7018c21STomi Valkeinen 662babc250eSMikulas Patocka ret = 0; 663babc250eSMikulas Patocka 664babc250eSMikulas Patocka unlock_ret: 665babc250eSMikulas Patocka mutex_unlock(&dlfb->render_mutex); 666babc250eSMikulas Patocka return ret; 667f7018c21STomi Valkeinen } 668f7018c21STomi Valkeinen 6696b11f9d8SMikulas Patocka static void dlfb_init_damage(struct dlfb_data *dlfb) 6706b11f9d8SMikulas Patocka { 6716b11f9d8SMikulas Patocka dlfb->damage_x = INT_MAX; 6726b11f9d8SMikulas Patocka dlfb->damage_x2 = 0; 6736b11f9d8SMikulas Patocka dlfb->damage_y = INT_MAX; 6746b11f9d8SMikulas Patocka dlfb->damage_y2 = 0; 6756b11f9d8SMikulas Patocka } 6766b11f9d8SMikulas Patocka 6776b11f9d8SMikulas Patocka static void dlfb_damage_work(struct work_struct *w) 6786b11f9d8SMikulas Patocka { 6796b11f9d8SMikulas Patocka struct dlfb_data *dlfb = container_of(w, struct dlfb_data, damage_work); 6806b11f9d8SMikulas Patocka int x, x2, y, y2; 6816b11f9d8SMikulas Patocka 6826b11f9d8SMikulas Patocka spin_lock_irq(&dlfb->damage_lock); 6836b11f9d8SMikulas Patocka x = dlfb->damage_x; 6846b11f9d8SMikulas Patocka x2 = dlfb->damage_x2; 6856b11f9d8SMikulas Patocka y = dlfb->damage_y; 6866b11f9d8SMikulas Patocka y2 = dlfb->damage_y2; 6876b11f9d8SMikulas Patocka dlfb_init_damage(dlfb); 6886b11f9d8SMikulas Patocka spin_unlock_irq(&dlfb->damage_lock); 6896b11f9d8SMikulas Patocka 6906b11f9d8SMikulas Patocka if (x < x2 && y < y2) 6916b11f9d8SMikulas Patocka dlfb_handle_damage(dlfb, x, y, x2 - x, y2 - y); 6926b11f9d8SMikulas Patocka } 6936b11f9d8SMikulas Patocka 6946b11f9d8SMikulas Patocka static void dlfb_offload_damage(struct dlfb_data *dlfb, int x, int y, int width, int height) 6956b11f9d8SMikulas Patocka { 6966b11f9d8SMikulas Patocka unsigned long flags; 6976b11f9d8SMikulas Patocka int x2 = x + width; 6986b11f9d8SMikulas Patocka int y2 = y + height; 6996b11f9d8SMikulas Patocka 7006b11f9d8SMikulas Patocka if (x >= x2 || y >= y2) 7016b11f9d8SMikulas Patocka return; 7026b11f9d8SMikulas Patocka 7036b11f9d8SMikulas Patocka spin_lock_irqsave(&dlfb->damage_lock, flags); 7046b11f9d8SMikulas Patocka dlfb->damage_x = min(x, dlfb->damage_x); 7056b11f9d8SMikulas Patocka dlfb->damage_x2 = max(x2, dlfb->damage_x2); 7066b11f9d8SMikulas Patocka dlfb->damage_y = min(y, dlfb->damage_y); 7076b11f9d8SMikulas Patocka dlfb->damage_y2 = max(y2, dlfb->damage_y2); 7086b11f9d8SMikulas Patocka spin_unlock_irqrestore(&dlfb->damage_lock, flags); 7096b11f9d8SMikulas Patocka 7106b11f9d8SMikulas Patocka schedule_work(&dlfb->damage_work); 7116b11f9d8SMikulas Patocka } 7126b11f9d8SMikulas Patocka 713f7018c21STomi Valkeinen /* 714f7018c21STomi Valkeinen * Path triggered by usermode clients who write to filesystem 715f7018c21STomi Valkeinen * e.g. cat filename > /dev/fb1 716f7018c21STomi Valkeinen * Not used by X Windows or text-mode console. But useful for testing. 717f7018c21STomi Valkeinen * Slow because of extra copy and we must assume all pixels dirty. 718f7018c21STomi Valkeinen */ 719f7018c21STomi Valkeinen static ssize_t dlfb_ops_write(struct fb_info *info, const char __user *buf, 720f7018c21STomi Valkeinen size_t count, loff_t *ppos) 721f7018c21STomi Valkeinen { 722f7018c21STomi Valkeinen ssize_t result; 7237ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 724f7018c21STomi Valkeinen u32 offset = (u32) *ppos; 725f7018c21STomi Valkeinen 726f7018c21STomi Valkeinen result = fb_sys_write(info, buf, count, ppos); 727f7018c21STomi Valkeinen 728f7018c21STomi Valkeinen if (result > 0) { 729f7018c21STomi Valkeinen int start = max((int)(offset / info->fix.line_length), 0); 730f7018c21STomi Valkeinen int lines = min((u32)((result / info->fix.line_length) + 1), 731f7018c21STomi Valkeinen (u32)info->var.yres); 732f7018c21STomi Valkeinen 7337ea46206SLadislav Michl dlfb_handle_damage(dlfb, 0, start, info->var.xres, 734bd86b6c5SMikulas Patocka lines); 735f7018c21STomi Valkeinen } 736f7018c21STomi Valkeinen 737f7018c21STomi Valkeinen return result; 738f7018c21STomi Valkeinen } 739f7018c21STomi Valkeinen 740f7018c21STomi Valkeinen /* hardware has native COPY command (see libdlo), but not worth it for fbcon */ 741f7018c21STomi Valkeinen static void dlfb_ops_copyarea(struct fb_info *info, 742f7018c21STomi Valkeinen const struct fb_copyarea *area) 743f7018c21STomi Valkeinen { 744f7018c21STomi Valkeinen 7457ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 746f7018c21STomi Valkeinen 747f7018c21STomi Valkeinen sys_copyarea(info, area); 748f7018c21STomi Valkeinen 7496b11f9d8SMikulas Patocka dlfb_offload_damage(dlfb, area->dx, area->dy, 750bd86b6c5SMikulas Patocka area->width, area->height); 751f7018c21STomi Valkeinen } 752f7018c21STomi Valkeinen 753f7018c21STomi Valkeinen static void dlfb_ops_imageblit(struct fb_info *info, 754f7018c21STomi Valkeinen const struct fb_image *image) 755f7018c21STomi Valkeinen { 7567ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 757f7018c21STomi Valkeinen 758f7018c21STomi Valkeinen sys_imageblit(info, image); 759f7018c21STomi Valkeinen 7606b11f9d8SMikulas Patocka dlfb_offload_damage(dlfb, image->dx, image->dy, 761bd86b6c5SMikulas Patocka image->width, image->height); 762f7018c21STomi Valkeinen } 763f7018c21STomi Valkeinen 764f7018c21STomi Valkeinen static void dlfb_ops_fillrect(struct fb_info *info, 765f7018c21STomi Valkeinen const struct fb_fillrect *rect) 766f7018c21STomi Valkeinen { 7677ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 768f7018c21STomi Valkeinen 769f7018c21STomi Valkeinen sys_fillrect(info, rect); 770f7018c21STomi Valkeinen 7716b11f9d8SMikulas Patocka dlfb_offload_damage(dlfb, rect->dx, rect->dy, rect->width, 772bd86b6c5SMikulas Patocka rect->height); 773f7018c21STomi Valkeinen } 774f7018c21STomi Valkeinen 775f7018c21STomi Valkeinen /* 776f7018c21STomi Valkeinen * NOTE: fb_defio.c is holding info->fbdefio.mutex 777f7018c21STomi Valkeinen * Touching ANY framebuffer memory that triggers a page fault 778f7018c21STomi Valkeinen * in fb_defio will cause a deadlock, when it also tries to 779f7018c21STomi Valkeinen * grab the same mutex. 780f7018c21STomi Valkeinen */ 781f7018c21STomi Valkeinen static void dlfb_dpy_deferred_io(struct fb_info *info, 782f7018c21STomi Valkeinen struct list_head *pagelist) 783f7018c21STomi Valkeinen { 784f7018c21STomi Valkeinen struct page *cur; 785f7018c21STomi Valkeinen struct fb_deferred_io *fbdefio = info->fbdefio; 7867ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 787f7018c21STomi Valkeinen struct urb *urb; 788f7018c21STomi Valkeinen char *cmd; 789f7018c21STomi Valkeinen cycles_t start_cycles, end_cycles; 790f7018c21STomi Valkeinen int bytes_sent = 0; 791f7018c21STomi Valkeinen int bytes_identical = 0; 792f7018c21STomi Valkeinen int bytes_rendered = 0; 793f7018c21STomi Valkeinen 794babc250eSMikulas Patocka mutex_lock(&dlfb->render_mutex); 795babc250eSMikulas Patocka 796f7018c21STomi Valkeinen if (!fb_defio) 797babc250eSMikulas Patocka goto unlock_ret; 798f7018c21STomi Valkeinen 7997ea46206SLadislav Michl if (!atomic_read(&dlfb->usb_active)) 800babc250eSMikulas Patocka goto unlock_ret; 801f7018c21STomi Valkeinen 802f7018c21STomi Valkeinen start_cycles = get_cycles(); 803f7018c21STomi Valkeinen 8047ea46206SLadislav Michl urb = dlfb_get_urb(dlfb); 805f7018c21STomi Valkeinen if (!urb) 806babc250eSMikulas Patocka goto unlock_ret; 807f7018c21STomi Valkeinen 808f7018c21STomi Valkeinen cmd = urb->transfer_buffer; 809f7018c21STomi Valkeinen 810f7018c21STomi Valkeinen /* walk the written page list and render each to device */ 811f7018c21STomi Valkeinen list_for_each_entry(cur, &fbdefio->pagelist, lru) { 812f7018c21STomi Valkeinen 8137ea46206SLadislav Michl if (dlfb_render_hline(dlfb, &urb, (char *) info->fix.smem_start, 814f7018c21STomi Valkeinen &cmd, cur->index << PAGE_SHIFT, 815f7018c21STomi Valkeinen PAGE_SIZE, &bytes_identical, &bytes_sent)) 816f7018c21STomi Valkeinen goto error; 817f7018c21STomi Valkeinen bytes_rendered += PAGE_SIZE; 818f7018c21STomi Valkeinen } 819f7018c21STomi Valkeinen 820f7018c21STomi Valkeinen if (cmd > (char *) urb->transfer_buffer) { 8214e705e17SMikulas Patocka int len; 8224e705e17SMikulas Patocka if (cmd < (char *) urb->transfer_buffer + urb->transfer_buffer_length) 8234e705e17SMikulas Patocka *cmd++ = 0xAF; 824f7018c21STomi Valkeinen /* Send partial buffer remaining before exiting */ 8254e705e17SMikulas Patocka len = cmd - (char *) urb->transfer_buffer; 8267ea46206SLadislav Michl dlfb_submit_urb(dlfb, urb, len); 827f7018c21STomi Valkeinen bytes_sent += len; 828f7018c21STomi Valkeinen } else 829f7018c21STomi Valkeinen dlfb_urb_completion(urb); 830f7018c21STomi Valkeinen 831f7018c21STomi Valkeinen error: 8327ea46206SLadislav Michl atomic_add(bytes_sent, &dlfb->bytes_sent); 8337ea46206SLadislav Michl atomic_add(bytes_identical, &dlfb->bytes_identical); 8347ea46206SLadislav Michl atomic_add(bytes_rendered, &dlfb->bytes_rendered); 835f7018c21STomi Valkeinen end_cycles = get_cycles(); 836f7018c21STomi Valkeinen atomic_add(((unsigned int) ((end_cycles - start_cycles) 837f7018c21STomi Valkeinen >> 10)), /* Kcycles */ 8387ea46206SLadislav Michl &dlfb->cpu_kcycles_used); 839babc250eSMikulas Patocka unlock_ret: 840babc250eSMikulas Patocka mutex_unlock(&dlfb->render_mutex); 841f7018c21STomi Valkeinen } 842f7018c21STomi Valkeinen 8437ea46206SLadislav Michl static int dlfb_get_edid(struct dlfb_data *dlfb, char *edid, int len) 844f7018c21STomi Valkeinen { 8455865889fSLadislav Michl int i, ret; 846f7018c21STomi Valkeinen char *rbuf; 847f7018c21STomi Valkeinen 848f7018c21STomi Valkeinen rbuf = kmalloc(2, GFP_KERNEL); 849f7018c21STomi Valkeinen if (!rbuf) 850f7018c21STomi Valkeinen return 0; 851f7018c21STomi Valkeinen 852f7018c21STomi Valkeinen for (i = 0; i < len; i++) { 8537ea46206SLadislav Michl ret = usb_control_msg(dlfb->udev, 8547ea46206SLadislav Michl usb_rcvctrlpipe(dlfb->udev, 0), 0x02, 855c9876947SLadislav Michl (0x80 | (0x02 << 5)), i << 8, 0xA1, 856c9876947SLadislav Michl rbuf, 2, USB_CTRL_GET_TIMEOUT); 857c9876947SLadislav Michl if (ret < 2) { 8585865889fSLadislav Michl dev_err(&dlfb->udev->dev, 8595865889fSLadislav Michl "Read EDID byte %d failed: %d\n", i, ret); 860f7018c21STomi Valkeinen i--; 861f7018c21STomi Valkeinen break; 862f7018c21STomi Valkeinen } 863f7018c21STomi Valkeinen edid[i] = rbuf[1]; 864f7018c21STomi Valkeinen } 865f7018c21STomi Valkeinen 866f7018c21STomi Valkeinen kfree(rbuf); 867f7018c21STomi Valkeinen 868f7018c21STomi Valkeinen return i; 869f7018c21STomi Valkeinen } 870f7018c21STomi Valkeinen 871f7018c21STomi Valkeinen static int dlfb_ops_ioctl(struct fb_info *info, unsigned int cmd, 872f7018c21STomi Valkeinen unsigned long arg) 873f7018c21STomi Valkeinen { 874f7018c21STomi Valkeinen 8757ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 876f7018c21STomi Valkeinen 8777ea46206SLadislav Michl if (!atomic_read(&dlfb->usb_active)) 878f7018c21STomi Valkeinen return 0; 879f7018c21STomi Valkeinen 880f7018c21STomi Valkeinen /* TODO: Update X server to get this from sysfs instead */ 881f7018c21STomi Valkeinen if (cmd == DLFB_IOCTL_RETURN_EDID) { 882f7018c21STomi Valkeinen void __user *edid = (void __user *)arg; 8837ea46206SLadislav Michl if (copy_to_user(edid, dlfb->edid, dlfb->edid_size)) 884f7018c21STomi Valkeinen return -EFAULT; 885f7018c21STomi Valkeinen return 0; 886f7018c21STomi Valkeinen } 887f7018c21STomi Valkeinen 888f7018c21STomi Valkeinen /* TODO: Help propose a standard fb.h ioctl to report mmap damage */ 889f7018c21STomi Valkeinen if (cmd == DLFB_IOCTL_REPORT_DAMAGE) { 890f7018c21STomi Valkeinen struct dloarea area; 891f7018c21STomi Valkeinen 892f7018c21STomi Valkeinen if (copy_from_user(&area, (void __user *)arg, 893f7018c21STomi Valkeinen sizeof(struct dloarea))) 894f7018c21STomi Valkeinen return -EFAULT; 895f7018c21STomi Valkeinen 896f7018c21STomi Valkeinen /* 897f7018c21STomi Valkeinen * If we have a damage-aware client, turn fb_defio "off" 898f7018c21STomi Valkeinen * To avoid perf imact of unnecessary page fault handling. 899f7018c21STomi Valkeinen * Done by resetting the delay for this fb_info to a very 900f7018c21STomi Valkeinen * long period. Pages will become writable and stay that way. 901f7018c21STomi Valkeinen * Reset to normal value when all clients have closed this fb. 902f7018c21STomi Valkeinen */ 903f7018c21STomi Valkeinen if (info->fbdefio) 904f7018c21STomi Valkeinen info->fbdefio->delay = DL_DEFIO_WRITE_DISABLE; 905f7018c21STomi Valkeinen 906f7018c21STomi Valkeinen if (area.x < 0) 907f7018c21STomi Valkeinen area.x = 0; 908f7018c21STomi Valkeinen 909f7018c21STomi Valkeinen if (area.x > info->var.xres) 910f7018c21STomi Valkeinen area.x = info->var.xres; 911f7018c21STomi Valkeinen 912f7018c21STomi Valkeinen if (area.y < 0) 913f7018c21STomi Valkeinen area.y = 0; 914f7018c21STomi Valkeinen 915f7018c21STomi Valkeinen if (area.y > info->var.yres) 916f7018c21STomi Valkeinen area.y = info->var.yres; 917f7018c21STomi Valkeinen 918bd86b6c5SMikulas Patocka dlfb_handle_damage(dlfb, area.x, area.y, area.w, area.h); 919f7018c21STomi Valkeinen } 920f7018c21STomi Valkeinen 921f7018c21STomi Valkeinen return 0; 922f7018c21STomi Valkeinen } 923f7018c21STomi Valkeinen 924f7018c21STomi Valkeinen /* taken from vesafb */ 925f7018c21STomi Valkeinen static int 926f7018c21STomi Valkeinen dlfb_ops_setcolreg(unsigned regno, unsigned red, unsigned green, 927f7018c21STomi Valkeinen unsigned blue, unsigned transp, struct fb_info *info) 928f7018c21STomi Valkeinen { 929f7018c21STomi Valkeinen int err = 0; 930f7018c21STomi Valkeinen 931f7018c21STomi Valkeinen if (regno >= info->cmap.len) 932f7018c21STomi Valkeinen return 1; 933f7018c21STomi Valkeinen 934f7018c21STomi Valkeinen if (regno < 16) { 935f7018c21STomi Valkeinen if (info->var.red.offset == 10) { 936f7018c21STomi Valkeinen /* 1:5:5:5 */ 937f7018c21STomi Valkeinen ((u32 *) (info->pseudo_palette))[regno] = 938f7018c21STomi Valkeinen ((red & 0xf800) >> 1) | 939f7018c21STomi Valkeinen ((green & 0xf800) >> 6) | ((blue & 0xf800) >> 11); 940f7018c21STomi Valkeinen } else { 941f7018c21STomi Valkeinen /* 0:5:6:5 */ 942f7018c21STomi Valkeinen ((u32 *) (info->pseudo_palette))[regno] = 943f7018c21STomi Valkeinen ((red & 0xf800)) | 944f7018c21STomi Valkeinen ((green & 0xfc00) >> 5) | ((blue & 0xf800) >> 11); 945f7018c21STomi Valkeinen } 946f7018c21STomi Valkeinen } 947f7018c21STomi Valkeinen 948f7018c21STomi Valkeinen return err; 949f7018c21STomi Valkeinen } 950f7018c21STomi Valkeinen 951f7018c21STomi Valkeinen /* 952f7018c21STomi Valkeinen * It's common for several clients to have framebuffer open simultaneously. 953f7018c21STomi Valkeinen * e.g. both fbcon and X. Makes things interesting. 954f7018c21STomi Valkeinen * Assumes caller is holding info->lock (for open and release at least) 955f7018c21STomi Valkeinen */ 956f7018c21STomi Valkeinen static int dlfb_ops_open(struct fb_info *info, int user) 957f7018c21STomi Valkeinen { 9587ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 959f7018c21STomi Valkeinen 960f7018c21STomi Valkeinen /* 961f7018c21STomi Valkeinen * fbcon aggressively connects to first framebuffer it finds, 962f7018c21STomi Valkeinen * preventing other clients (X) from working properly. Usually 963f7018c21STomi Valkeinen * not what the user wants. Fail by default with option to enable. 964f7018c21STomi Valkeinen */ 965f7018c21STomi Valkeinen if ((user == 0) && (!console)) 966f7018c21STomi Valkeinen return -EBUSY; 967f7018c21STomi Valkeinen 968f7018c21STomi Valkeinen /* If the USB device is gone, we don't accept new opens */ 9697ea46206SLadislav Michl if (dlfb->virtualized) 970f7018c21STomi Valkeinen return -ENODEV; 971f7018c21STomi Valkeinen 9727ea46206SLadislav Michl dlfb->fb_count++; 973f7018c21STomi Valkeinen 974f7018c21STomi Valkeinen if (fb_defio && (info->fbdefio == NULL)) { 975f7018c21STomi Valkeinen /* enable defio at last moment if not disabled by client */ 976f7018c21STomi Valkeinen 977f7018c21STomi Valkeinen struct fb_deferred_io *fbdefio; 978f7018c21STomi Valkeinen 979f7018c21STomi Valkeinen fbdefio = kzalloc(sizeof(struct fb_deferred_io), GFP_KERNEL); 980f7018c21STomi Valkeinen 981f7018c21STomi Valkeinen if (fbdefio) { 982f7018c21STomi Valkeinen fbdefio->delay = DL_DEFIO_WRITE_DELAY; 983f7018c21STomi Valkeinen fbdefio->deferred_io = dlfb_dpy_deferred_io; 984f7018c21STomi Valkeinen } 985f7018c21STomi Valkeinen 986f7018c21STomi Valkeinen info->fbdefio = fbdefio; 987f7018c21STomi Valkeinen fb_deferred_io_init(info); 988f7018c21STomi Valkeinen } 989f7018c21STomi Valkeinen 9905865889fSLadislav Michl dev_dbg(info->dev, "open, user=%d fb_info=%p count=%d\n", 9915865889fSLadislav Michl user, info, dlfb->fb_count); 992f7018c21STomi Valkeinen 993f7018c21STomi Valkeinen return 0; 994f7018c21STomi Valkeinen } 995f7018c21STomi Valkeinen 99668a958a9SMikulas Patocka static void dlfb_ops_destroy(struct fb_info *info) 997f7018c21STomi Valkeinen { 99868a958a9SMikulas Patocka struct dlfb_data *dlfb = info->par; 999f7018c21STomi Valkeinen 10006b11f9d8SMikulas Patocka cancel_work_sync(&dlfb->damage_work); 10016b11f9d8SMikulas Patocka 1002babc250eSMikulas Patocka mutex_destroy(&dlfb->render_mutex); 1003babc250eSMikulas Patocka 1004f7018c21STomi Valkeinen if (info->cmap.len != 0) 1005f7018c21STomi Valkeinen fb_dealloc_cmap(&info->cmap); 1006f7018c21STomi Valkeinen if (info->monspecs.modedb) 1007f7018c21STomi Valkeinen fb_destroy_modedb(info->monspecs.modedb); 1008f7018c21STomi Valkeinen vfree(info->screen_base); 1009f7018c21STomi Valkeinen 1010f7018c21STomi Valkeinen fb_destroy_modelist(&info->modelist); 1011f7018c21STomi Valkeinen 101268a958a9SMikulas Patocka while (!list_empty(&dlfb->deferred_free)) { 101368a958a9SMikulas Patocka struct dlfb_deferred_free *d = list_entry(dlfb->deferred_free.next, struct dlfb_deferred_free, list); 101468a958a9SMikulas Patocka list_del(&d->list); 101568a958a9SMikulas Patocka vfree(d->mem); 101668a958a9SMikulas Patocka kfree(d); 101768a958a9SMikulas Patocka } 101868a958a9SMikulas Patocka vfree(dlfb->backing_buffer); 101968a958a9SMikulas Patocka kfree(dlfb->edid); 102068a958a9SMikulas Patocka usb_put_dev(dlfb->udev); 102168a958a9SMikulas Patocka kfree(dlfb); 1022f7018c21STomi Valkeinen 1023f7018c21STomi Valkeinen /* Assume info structure is freed after this point */ 1024f7018c21STomi Valkeinen framebuffer_release(info); 1025f7018c21STomi Valkeinen } 1026f7018c21STomi Valkeinen 1027f7018c21STomi Valkeinen /* 1028f7018c21STomi Valkeinen * Assumes caller is holding info->lock mutex (for open and release at least) 1029f7018c21STomi Valkeinen */ 1030f7018c21STomi Valkeinen static int dlfb_ops_release(struct fb_info *info, int user) 1031f7018c21STomi Valkeinen { 10327ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 1033f7018c21STomi Valkeinen 10347ea46206SLadislav Michl dlfb->fb_count--; 1035f7018c21STomi Valkeinen 10367ea46206SLadislav Michl if ((dlfb->fb_count == 0) && (info->fbdefio)) { 1037f7018c21STomi Valkeinen fb_deferred_io_cleanup(info); 1038f7018c21STomi Valkeinen kfree(info->fbdefio); 1039f7018c21STomi Valkeinen info->fbdefio = NULL; 1040f7018c21STomi Valkeinen info->fbops->fb_mmap = dlfb_ops_mmap; 1041f7018c21STomi Valkeinen } 1042f7018c21STomi Valkeinen 10435865889fSLadislav Michl dev_dbg(info->dev, "release, user=%d count=%d\n", user, dlfb->fb_count); 1044f7018c21STomi Valkeinen 1045f7018c21STomi Valkeinen return 0; 1046f7018c21STomi Valkeinen } 1047f7018c21STomi Valkeinen 1048f7018c21STomi Valkeinen /* 1049f7018c21STomi Valkeinen * Check whether a video mode is supported by the DisplayLink chip 1050f7018c21STomi Valkeinen * We start from monitor's modes, so don't need to filter that here 1051f7018c21STomi Valkeinen */ 10525865889fSLadislav Michl static int dlfb_is_valid_mode(struct fb_videomode *mode, struct dlfb_data *dlfb) 1053f7018c21STomi Valkeinen { 10545865889fSLadislav Michl if (mode->xres * mode->yres > dlfb->sku_pixel_limit) 1055f7018c21STomi Valkeinen return 0; 1056f7018c21STomi Valkeinen 1057f7018c21STomi Valkeinen return 1; 1058f7018c21STomi Valkeinen } 1059f7018c21STomi Valkeinen 1060f7018c21STomi Valkeinen static void dlfb_var_color_format(struct fb_var_screeninfo *var) 1061f7018c21STomi Valkeinen { 1062f7018c21STomi Valkeinen const struct fb_bitfield red = { 11, 5, 0 }; 1063f7018c21STomi Valkeinen const struct fb_bitfield green = { 5, 6, 0 }; 1064f7018c21STomi Valkeinen const struct fb_bitfield blue = { 0, 5, 0 }; 1065f7018c21STomi Valkeinen 1066f7018c21STomi Valkeinen var->bits_per_pixel = 16; 1067f7018c21STomi Valkeinen var->red = red; 1068f7018c21STomi Valkeinen var->green = green; 1069f7018c21STomi Valkeinen var->blue = blue; 1070f7018c21STomi Valkeinen } 1071f7018c21STomi Valkeinen 1072f7018c21STomi Valkeinen static int dlfb_ops_check_var(struct fb_var_screeninfo *var, 1073f7018c21STomi Valkeinen struct fb_info *info) 1074f7018c21STomi Valkeinen { 1075f7018c21STomi Valkeinen struct fb_videomode mode; 10765865889fSLadislav Michl struct dlfb_data *dlfb = info->par; 1077f7018c21STomi Valkeinen 1078f7018c21STomi Valkeinen /* set device-specific elements of var unrelated to mode */ 1079f7018c21STomi Valkeinen dlfb_var_color_format(var); 1080f7018c21STomi Valkeinen 1081f7018c21STomi Valkeinen fb_var_to_videomode(&mode, var); 1082f7018c21STomi Valkeinen 10835865889fSLadislav Michl if (!dlfb_is_valid_mode(&mode, dlfb)) 1084f7018c21STomi Valkeinen return -EINVAL; 1085f7018c21STomi Valkeinen 1086f7018c21STomi Valkeinen return 0; 1087f7018c21STomi Valkeinen } 1088f7018c21STomi Valkeinen 1089f7018c21STomi Valkeinen static int dlfb_ops_set_par(struct fb_info *info) 1090f7018c21STomi Valkeinen { 10917ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 1092f7018c21STomi Valkeinen int result; 1093f7018c21STomi Valkeinen u16 *pix_framebuffer; 1094f7018c21STomi Valkeinen int i; 1095564f1807SMikulas Patocka struct fb_var_screeninfo fvs; 10967433914eSMikulas Patocka u32 line_length = info->var.xres * (info->var.bits_per_pixel / 8); 1097564f1807SMikulas Patocka 1098564f1807SMikulas Patocka /* clear the activate field because it causes spurious miscompares */ 1099564f1807SMikulas Patocka fvs = info->var; 1100564f1807SMikulas Patocka fvs.activate = 0; 1101564f1807SMikulas Patocka fvs.vmode &= ~FB_VMODE_SMOOTH_XPAN; 1102564f1807SMikulas Patocka 1103564f1807SMikulas Patocka if (!memcmp(&dlfb->current_mode, &fvs, sizeof(struct fb_var_screeninfo))) 1104564f1807SMikulas Patocka return 0; 1105f7018c21STomi Valkeinen 11067433914eSMikulas Patocka result = dlfb_realloc_framebuffer(dlfb, info, info->var.yres * line_length); 11077433914eSMikulas Patocka if (result) 11087433914eSMikulas Patocka return result; 11097433914eSMikulas Patocka 11107ea46206SLadislav Michl result = dlfb_set_video_mode(dlfb, &info->var); 1111f7018c21STomi Valkeinen 1112564f1807SMikulas Patocka if (result) 1113564f1807SMikulas Patocka return result; 1114564f1807SMikulas Patocka 1115564f1807SMikulas Patocka dlfb->current_mode = fvs; 11167433914eSMikulas Patocka info->fix.line_length = line_length; 1117564f1807SMikulas Patocka 1118564f1807SMikulas Patocka if (dlfb->fb_count == 0) { 1119f7018c21STomi Valkeinen 1120f7018c21STomi Valkeinen /* paint greenscreen */ 1121f7018c21STomi Valkeinen 1122f7018c21STomi Valkeinen pix_framebuffer = (u16 *) info->screen_base; 1123f7018c21STomi Valkeinen for (i = 0; i < info->fix.smem_len / 2; i++) 1124f7018c21STomi Valkeinen pix_framebuffer[i] = 0x37e6; 11257433914eSMikulas Patocka } 1126f7018c21STomi Valkeinen 1127bd86b6c5SMikulas Patocka dlfb_handle_damage(dlfb, 0, 0, info->var.xres, info->var.yres); 1128f7018c21STomi Valkeinen 1129564f1807SMikulas Patocka return 0; 1130f7018c21STomi Valkeinen } 1131f7018c21STomi Valkeinen 1132f7018c21STomi Valkeinen /* To fonzi the jukebox (e.g. make blanking changes take effect) */ 1133f7018c21STomi Valkeinen static char *dlfb_dummy_render(char *buf) 1134f7018c21STomi Valkeinen { 1135f7018c21STomi Valkeinen *buf++ = 0xAF; 1136f7018c21STomi Valkeinen *buf++ = 0x6A; /* copy */ 1137f7018c21STomi Valkeinen *buf++ = 0x00; /* from address*/ 1138f7018c21STomi Valkeinen *buf++ = 0x00; 1139f7018c21STomi Valkeinen *buf++ = 0x00; 1140f7018c21STomi Valkeinen *buf++ = 0x01; /* one pixel */ 1141f7018c21STomi Valkeinen *buf++ = 0x00; /* to address */ 1142f7018c21STomi Valkeinen *buf++ = 0x00; 1143f7018c21STomi Valkeinen *buf++ = 0x00; 1144f7018c21STomi Valkeinen return buf; 1145f7018c21STomi Valkeinen } 1146f7018c21STomi Valkeinen 1147f7018c21STomi Valkeinen /* 1148f7018c21STomi Valkeinen * In order to come back from full DPMS off, we need to set the mode again 1149f7018c21STomi Valkeinen */ 1150f7018c21STomi Valkeinen static int dlfb_ops_blank(int blank_mode, struct fb_info *info) 1151f7018c21STomi Valkeinen { 11527ea46206SLadislav Michl struct dlfb_data *dlfb = info->par; 1153f7018c21STomi Valkeinen char *bufptr; 1154f7018c21STomi Valkeinen struct urb *urb; 1155f7018c21STomi Valkeinen 11565865889fSLadislav Michl dev_dbg(info->dev, "blank, mode %d --> %d\n", 11575865889fSLadislav Michl dlfb->blank_mode, blank_mode); 1158f7018c21STomi Valkeinen 11597ea46206SLadislav Michl if ((dlfb->blank_mode == FB_BLANK_POWERDOWN) && 1160f7018c21STomi Valkeinen (blank_mode != FB_BLANK_POWERDOWN)) { 1161f7018c21STomi Valkeinen 1162f7018c21STomi Valkeinen /* returning from powerdown requires a fresh modeset */ 11637ea46206SLadislav Michl dlfb_set_video_mode(dlfb, &info->var); 1164f7018c21STomi Valkeinen } 1165f7018c21STomi Valkeinen 11667ea46206SLadislav Michl urb = dlfb_get_urb(dlfb); 1167f7018c21STomi Valkeinen if (!urb) 1168f7018c21STomi Valkeinen return 0; 1169f7018c21STomi Valkeinen 1170f7018c21STomi Valkeinen bufptr = (char *) urb->transfer_buffer; 1171f7018c21STomi Valkeinen bufptr = dlfb_vidreg_lock(bufptr); 1172f7018c21STomi Valkeinen bufptr = dlfb_blanking(bufptr, blank_mode); 1173f7018c21STomi Valkeinen bufptr = dlfb_vidreg_unlock(bufptr); 1174f7018c21STomi Valkeinen 1175f7018c21STomi Valkeinen /* seems like a render op is needed to have blank change take effect */ 1176f7018c21STomi Valkeinen bufptr = dlfb_dummy_render(bufptr); 1177f7018c21STomi Valkeinen 11787ea46206SLadislav Michl dlfb_submit_urb(dlfb, urb, bufptr - 1179f7018c21STomi Valkeinen (char *) urb->transfer_buffer); 1180f7018c21STomi Valkeinen 11817ea46206SLadislav Michl dlfb->blank_mode = blank_mode; 1182f7018c21STomi Valkeinen 1183f7018c21STomi Valkeinen return 0; 1184f7018c21STomi Valkeinen } 1185f7018c21STomi Valkeinen 1186f7018c21STomi Valkeinen static struct fb_ops dlfb_ops = { 1187f7018c21STomi Valkeinen .owner = THIS_MODULE, 1188f7018c21STomi Valkeinen .fb_read = fb_sys_read, 1189f7018c21STomi Valkeinen .fb_write = dlfb_ops_write, 1190f7018c21STomi Valkeinen .fb_setcolreg = dlfb_ops_setcolreg, 1191f7018c21STomi Valkeinen .fb_fillrect = dlfb_ops_fillrect, 1192f7018c21STomi Valkeinen .fb_copyarea = dlfb_ops_copyarea, 1193f7018c21STomi Valkeinen .fb_imageblit = dlfb_ops_imageblit, 1194f7018c21STomi Valkeinen .fb_mmap = dlfb_ops_mmap, 1195f7018c21STomi Valkeinen .fb_ioctl = dlfb_ops_ioctl, 1196f7018c21STomi Valkeinen .fb_open = dlfb_ops_open, 1197f7018c21STomi Valkeinen .fb_release = dlfb_ops_release, 1198f7018c21STomi Valkeinen .fb_blank = dlfb_ops_blank, 1199f7018c21STomi Valkeinen .fb_check_var = dlfb_ops_check_var, 1200f7018c21STomi Valkeinen .fb_set_par = dlfb_ops_set_par, 120168a958a9SMikulas Patocka .fb_destroy = dlfb_ops_destroy, 1202f7018c21STomi Valkeinen }; 1203f7018c21STomi Valkeinen 1204f7018c21STomi Valkeinen 12057433914eSMikulas Patocka static void dlfb_deferred_vfree(struct dlfb_data *dlfb, void *mem) 12067433914eSMikulas Patocka { 12077433914eSMikulas Patocka struct dlfb_deferred_free *d = kmalloc(sizeof(struct dlfb_deferred_free), GFP_KERNEL); 12087433914eSMikulas Patocka if (!d) 12097433914eSMikulas Patocka return; 12107433914eSMikulas Patocka d->mem = mem; 12117433914eSMikulas Patocka list_add(&d->list, &dlfb->deferred_free); 12127433914eSMikulas Patocka } 12137433914eSMikulas Patocka 1214f7018c21STomi Valkeinen /* 1215f7018c21STomi Valkeinen * Assumes &info->lock held by caller 1216f7018c21STomi Valkeinen * Assumes no active clients have framebuffer open 1217f7018c21STomi Valkeinen */ 12187433914eSMikulas Patocka static int dlfb_realloc_framebuffer(struct dlfb_data *dlfb, struct fb_info *info, u32 new_len) 1219f7018c21STomi Valkeinen { 12207433914eSMikulas Patocka u32 old_len = info->fix.smem_len; 12217433914eSMikulas Patocka const void *old_fb = (const void __force *)info->screen_base; 1222f7018c21STomi Valkeinen unsigned char *new_fb; 1223f7018c21STomi Valkeinen unsigned char *new_back = NULL; 1224f7018c21STomi Valkeinen 12257433914eSMikulas Patocka new_len = PAGE_ALIGN(new_len); 1226f7018c21STomi Valkeinen 12277433914eSMikulas Patocka if (new_len > old_len) { 1228f7018c21STomi Valkeinen /* 1229f7018c21STomi Valkeinen * Alloc system memory for virtual framebuffer 1230f7018c21STomi Valkeinen */ 1231f7018c21STomi Valkeinen new_fb = vmalloc(new_len); 1232f7018c21STomi Valkeinen if (!new_fb) { 12335865889fSLadislav Michl dev_err(info->dev, "Virtual framebuffer alloc failed\n"); 12343c097b06SMarkus Elfring return -ENOMEM; 1235f7018c21STomi Valkeinen } 12367433914eSMikulas Patocka memset(new_fb, 0xff, new_len); 1237f7018c21STomi Valkeinen 1238f7018c21STomi Valkeinen if (info->screen_base) { 1239f7018c21STomi Valkeinen memcpy(new_fb, old_fb, old_len); 12407433914eSMikulas Patocka dlfb_deferred_vfree(dlfb, (void __force *)info->screen_base); 1241f7018c21STomi Valkeinen } 1242f7018c21STomi Valkeinen 12437433914eSMikulas Patocka info->screen_base = (char __iomem *)new_fb; 12447433914eSMikulas Patocka info->fix.smem_len = new_len; 1245f7018c21STomi Valkeinen info->fix.smem_start = (unsigned long) new_fb; 1246f7018c21STomi Valkeinen info->flags = udlfb_info_flags; 1247f7018c21STomi Valkeinen 1248f7018c21STomi Valkeinen /* 1249f7018c21STomi Valkeinen * Second framebuffer copy to mirror the framebuffer state 1250f7018c21STomi Valkeinen * on the physical USB device. We can function without this. 1251f7018c21STomi Valkeinen * But with imperfect damage info we may send pixels over USB 1252f7018c21STomi Valkeinen * that were, in fact, unchanged - wasting limited USB bandwidth 1253f7018c21STomi Valkeinen */ 1254f7018c21STomi Valkeinen if (shadow) 1255f7018c21STomi Valkeinen new_back = vzalloc(new_len); 1256f7018c21STomi Valkeinen if (!new_back) 12575865889fSLadislav Michl dev_info(info->dev, 12585865889fSLadislav Michl "No shadow/backing buffer allocated\n"); 1259f7018c21STomi Valkeinen else { 12607433914eSMikulas Patocka dlfb_deferred_vfree(dlfb, dlfb->backing_buffer); 12617ea46206SLadislav Michl dlfb->backing_buffer = new_back; 1262f7018c21STomi Valkeinen } 1263f7018c21STomi Valkeinen } 12643c097b06SMarkus Elfring return 0; 1265f7018c21STomi Valkeinen } 1266f7018c21STomi Valkeinen 1267f7018c21STomi Valkeinen /* 1268f7018c21STomi Valkeinen * 1) Get EDID from hw, or use sw default 1269f7018c21STomi Valkeinen * 2) Parse into various fb_info structs 1270f7018c21STomi Valkeinen * 3) Allocate virtual framebuffer memory to back highest res mode 1271f7018c21STomi Valkeinen * 1272f7018c21STomi Valkeinen * Parses EDID into three places used by various parts of fbdev: 1273f7018c21STomi Valkeinen * fb_var_screeninfo contains the timing of the monitor's preferred mode 1274f7018c21STomi Valkeinen * fb_info.monspecs is full parsed EDID info, including monspecs.modedb 1275f7018c21STomi Valkeinen * fb_info.modelist is a linked list of all monitor & VESA modes which work 1276f7018c21STomi Valkeinen * 1277f7018c21STomi Valkeinen * If EDID is not readable/valid, then modelist is all VESA modes, 1278f7018c21STomi Valkeinen * monspecs is NULL, and fb_var_screeninfo is set to safe VESA mode 1279f7018c21STomi Valkeinen * Returns 0 if successful 1280f7018c21STomi Valkeinen */ 12817ea46206SLadislav Michl static int dlfb_setup_modes(struct dlfb_data *dlfb, 1282f7018c21STomi Valkeinen struct fb_info *info, 1283f7018c21STomi Valkeinen char *default_edid, size_t default_edid_size) 1284f7018c21STomi Valkeinen { 1285f7018c21STomi Valkeinen char *edid; 12865865889fSLadislav Michl int i, result = 0, tries = 3; 12875865889fSLadislav Michl struct device *dev = info->device; 12885865889fSLadislav Michl struct fb_videomode *mode; 12895865889fSLadislav Michl const struct fb_videomode *default_vmode = NULL; 1290f7018c21STomi Valkeinen 12915865889fSLadislav Michl if (info->dev) { 12925865889fSLadislav Michl /* only use mutex if info has been registered */ 1293f7018c21STomi Valkeinen mutex_lock(&info->lock); 12945865889fSLadislav Michl /* parent device is used otherwise */ 12955865889fSLadislav Michl dev = info->dev; 12965865889fSLadislav Michl } 1297f7018c21STomi Valkeinen 1298f7018c21STomi Valkeinen edid = kmalloc(EDID_LENGTH, GFP_KERNEL); 1299f7018c21STomi Valkeinen if (!edid) { 1300f7018c21STomi Valkeinen result = -ENOMEM; 1301f7018c21STomi Valkeinen goto error; 1302f7018c21STomi Valkeinen } 1303f7018c21STomi Valkeinen 1304f7018c21STomi Valkeinen fb_destroy_modelist(&info->modelist); 1305f7018c21STomi Valkeinen memset(&info->monspecs, 0, sizeof(info->monspecs)); 1306f7018c21STomi Valkeinen 1307f7018c21STomi Valkeinen /* 1308f7018c21STomi Valkeinen * Try to (re)read EDID from hardware first 1309f7018c21STomi Valkeinen * EDID data may return, but not parse as valid 1310f7018c21STomi Valkeinen * Try again a few times, in case of e.g. analog cable noise 1311f7018c21STomi Valkeinen */ 1312f7018c21STomi Valkeinen while (tries--) { 1313f7018c21STomi Valkeinen 13147ea46206SLadislav Michl i = dlfb_get_edid(dlfb, edid, EDID_LENGTH); 1315f7018c21STomi Valkeinen 1316f7018c21STomi Valkeinen if (i >= EDID_LENGTH) 1317f7018c21STomi Valkeinen fb_edid_to_monspecs(edid, &info->monspecs); 1318f7018c21STomi Valkeinen 1319f7018c21STomi Valkeinen if (info->monspecs.modedb_len > 0) { 13207ea46206SLadislav Michl dlfb->edid = edid; 13217ea46206SLadislav Michl dlfb->edid_size = i; 1322f7018c21STomi Valkeinen break; 1323f7018c21STomi Valkeinen } 1324f7018c21STomi Valkeinen } 1325f7018c21STomi Valkeinen 1326f7018c21STomi Valkeinen /* If that fails, use a previously returned EDID if available */ 1327f7018c21STomi Valkeinen if (info->monspecs.modedb_len == 0) { 13285865889fSLadislav Michl dev_err(dev, "Unable to get valid EDID from device/display\n"); 1329f7018c21STomi Valkeinen 13307ea46206SLadislav Michl if (dlfb->edid) { 13317ea46206SLadislav Michl fb_edid_to_monspecs(dlfb->edid, &info->monspecs); 1332f7018c21STomi Valkeinen if (info->monspecs.modedb_len > 0) 13335865889fSLadislav Michl dev_err(dev, "Using previously queried EDID\n"); 1334f7018c21STomi Valkeinen } 1335f7018c21STomi Valkeinen } 1336f7018c21STomi Valkeinen 1337f7018c21STomi Valkeinen /* If that fails, use the default EDID we were handed */ 1338f7018c21STomi Valkeinen if (info->monspecs.modedb_len == 0) { 1339f7018c21STomi Valkeinen if (default_edid_size >= EDID_LENGTH) { 1340f7018c21STomi Valkeinen fb_edid_to_monspecs(default_edid, &info->monspecs); 1341f7018c21STomi Valkeinen if (info->monspecs.modedb_len > 0) { 1342f7018c21STomi Valkeinen memcpy(edid, default_edid, default_edid_size); 13437ea46206SLadislav Michl dlfb->edid = edid; 13447ea46206SLadislav Michl dlfb->edid_size = default_edid_size; 13455865889fSLadislav Michl dev_err(dev, "Using default/backup EDID\n"); 1346f7018c21STomi Valkeinen } 1347f7018c21STomi Valkeinen } 1348f7018c21STomi Valkeinen } 1349f7018c21STomi Valkeinen 1350f7018c21STomi Valkeinen /* If we've got modes, let's pick a best default mode */ 1351f7018c21STomi Valkeinen if (info->monspecs.modedb_len > 0) { 1352f7018c21STomi Valkeinen 1353f7018c21STomi Valkeinen for (i = 0; i < info->monspecs.modedb_len; i++) { 13545865889fSLadislav Michl mode = &info->monspecs.modedb[i]; 13555865889fSLadislav Michl if (dlfb_is_valid_mode(mode, dlfb)) { 13565865889fSLadislav Michl fb_add_videomode(mode, &info->modelist); 13575865889fSLadislav Michl } else { 13585865889fSLadislav Michl dev_dbg(dev, "Specified mode %dx%d too big\n", 13595865889fSLadislav Michl mode->xres, mode->yres); 1360f7018c21STomi Valkeinen if (i == 0) 1361f7018c21STomi Valkeinen /* if we've removed top/best mode */ 1362f7018c21STomi Valkeinen info->monspecs.misc 1363f7018c21STomi Valkeinen &= ~FB_MISC_1ST_DETAIL; 1364f7018c21STomi Valkeinen } 1365f7018c21STomi Valkeinen } 1366f7018c21STomi Valkeinen 1367f7018c21STomi Valkeinen default_vmode = fb_find_best_display(&info->monspecs, 1368f7018c21STomi Valkeinen &info->modelist); 1369f7018c21STomi Valkeinen } 1370f7018c21STomi Valkeinen 1371f7018c21STomi Valkeinen /* If everything else has failed, fall back to safe default mode */ 1372f7018c21STomi Valkeinen if (default_vmode == NULL) { 1373f7018c21STomi Valkeinen 1374f7018c21STomi Valkeinen struct fb_videomode fb_vmode = {0}; 1375f7018c21STomi Valkeinen 1376f7018c21STomi Valkeinen /* 1377f7018c21STomi Valkeinen * Add the standard VESA modes to our modelist 1378f7018c21STomi Valkeinen * Since we don't have EDID, there may be modes that 1379f7018c21STomi Valkeinen * overspec monitor and/or are incorrect aspect ratio, etc. 1380f7018c21STomi Valkeinen * But at least the user has a chance to choose 1381f7018c21STomi Valkeinen */ 1382f7018c21STomi Valkeinen for (i = 0; i < VESA_MODEDB_SIZE; i++) { 13835865889fSLadislav Michl mode = (struct fb_videomode *)&vesa_modes[i]; 13845865889fSLadislav Michl if (dlfb_is_valid_mode(mode, dlfb)) 13855865889fSLadislav Michl fb_add_videomode(mode, &info->modelist); 13865865889fSLadislav Michl else 13875865889fSLadislav Michl dev_dbg(dev, "VESA mode %dx%d too big\n", 13885865889fSLadislav Michl mode->xres, mode->yres); 1389f7018c21STomi Valkeinen } 1390f7018c21STomi Valkeinen 1391f7018c21STomi Valkeinen /* 1392f7018c21STomi Valkeinen * default to resolution safe for projectors 1393f7018c21STomi Valkeinen * (since they are most common case without EDID) 1394f7018c21STomi Valkeinen */ 1395f7018c21STomi Valkeinen fb_vmode.xres = 800; 1396f7018c21STomi Valkeinen fb_vmode.yres = 600; 1397f7018c21STomi Valkeinen fb_vmode.refresh = 60; 1398f7018c21STomi Valkeinen default_vmode = fb_find_nearest_mode(&fb_vmode, 1399f7018c21STomi Valkeinen &info->modelist); 1400f7018c21STomi Valkeinen } 1401f7018c21STomi Valkeinen 1402f7018c21STomi Valkeinen /* If we have good mode and no active clients*/ 14037ea46206SLadislav Michl if ((default_vmode != NULL) && (dlfb->fb_count == 0)) { 1404f7018c21STomi Valkeinen 1405f7018c21STomi Valkeinen fb_videomode_to_var(&info->var, default_vmode); 1406f7018c21STomi Valkeinen dlfb_var_color_format(&info->var); 1407f7018c21STomi Valkeinen 1408f7018c21STomi Valkeinen /* 1409f7018c21STomi Valkeinen * with mode size info, we can now alloc our framebuffer. 1410f7018c21STomi Valkeinen */ 1411f7018c21STomi Valkeinen memcpy(&info->fix, &dlfb_fix, sizeof(dlfb_fix)); 1412f7018c21STomi Valkeinen } else 1413f7018c21STomi Valkeinen result = -EINVAL; 1414f7018c21STomi Valkeinen 1415f7018c21STomi Valkeinen error: 14167ea46206SLadislav Michl if (edid && (dlfb->edid != edid)) 1417f7018c21STomi Valkeinen kfree(edid); 1418f7018c21STomi Valkeinen 1419f7018c21STomi Valkeinen if (info->dev) 1420f7018c21STomi Valkeinen mutex_unlock(&info->lock); 1421f7018c21STomi Valkeinen 1422f7018c21STomi Valkeinen return result; 1423f7018c21STomi Valkeinen } 1424f7018c21STomi Valkeinen 1425f7018c21STomi Valkeinen static ssize_t metrics_bytes_rendered_show(struct device *fbdev, 1426f7018c21STomi Valkeinen struct device_attribute *a, char *buf) { 1427f7018c21STomi Valkeinen struct fb_info *fb_info = dev_get_drvdata(fbdev); 14287ea46206SLadislav Michl struct dlfb_data *dlfb = fb_info->par; 1429f7018c21STomi Valkeinen return snprintf(buf, PAGE_SIZE, "%u\n", 14307ea46206SLadislav Michl atomic_read(&dlfb->bytes_rendered)); 1431f7018c21STomi Valkeinen } 1432f7018c21STomi Valkeinen 1433f7018c21STomi Valkeinen static ssize_t metrics_bytes_identical_show(struct device *fbdev, 1434f7018c21STomi Valkeinen struct device_attribute *a, char *buf) { 1435f7018c21STomi Valkeinen struct fb_info *fb_info = dev_get_drvdata(fbdev); 14367ea46206SLadislav Michl struct dlfb_data *dlfb = fb_info->par; 1437f7018c21STomi Valkeinen return snprintf(buf, PAGE_SIZE, "%u\n", 14387ea46206SLadislav Michl atomic_read(&dlfb->bytes_identical)); 1439f7018c21STomi Valkeinen } 1440f7018c21STomi Valkeinen 1441f7018c21STomi Valkeinen static ssize_t metrics_bytes_sent_show(struct device *fbdev, 1442f7018c21STomi Valkeinen struct device_attribute *a, char *buf) { 1443f7018c21STomi Valkeinen struct fb_info *fb_info = dev_get_drvdata(fbdev); 14447ea46206SLadislav Michl struct dlfb_data *dlfb = fb_info->par; 1445f7018c21STomi Valkeinen return snprintf(buf, PAGE_SIZE, "%u\n", 14467ea46206SLadislav Michl atomic_read(&dlfb->bytes_sent)); 1447f7018c21STomi Valkeinen } 1448f7018c21STomi Valkeinen 1449f7018c21STomi Valkeinen static ssize_t metrics_cpu_kcycles_used_show(struct device *fbdev, 1450f7018c21STomi Valkeinen struct device_attribute *a, char *buf) { 1451f7018c21STomi Valkeinen struct fb_info *fb_info = dev_get_drvdata(fbdev); 14527ea46206SLadislav Michl struct dlfb_data *dlfb = fb_info->par; 1453f7018c21STomi Valkeinen return snprintf(buf, PAGE_SIZE, "%u\n", 14547ea46206SLadislav Michl atomic_read(&dlfb->cpu_kcycles_used)); 1455f7018c21STomi Valkeinen } 1456f7018c21STomi Valkeinen 1457f7018c21STomi Valkeinen static ssize_t edid_show( 1458f7018c21STomi Valkeinen struct file *filp, 1459f7018c21STomi Valkeinen struct kobject *kobj, struct bin_attribute *a, 1460f7018c21STomi Valkeinen char *buf, loff_t off, size_t count) { 1461f7018c21STomi Valkeinen struct device *fbdev = container_of(kobj, struct device, kobj); 1462f7018c21STomi Valkeinen struct fb_info *fb_info = dev_get_drvdata(fbdev); 14637ea46206SLadislav Michl struct dlfb_data *dlfb = fb_info->par; 1464f7018c21STomi Valkeinen 14657ea46206SLadislav Michl if (dlfb->edid == NULL) 1466f7018c21STomi Valkeinen return 0; 1467f7018c21STomi Valkeinen 14687ea46206SLadislav Michl if ((off >= dlfb->edid_size) || (count > dlfb->edid_size)) 1469f7018c21STomi Valkeinen return 0; 1470f7018c21STomi Valkeinen 14717ea46206SLadislav Michl if (off + count > dlfb->edid_size) 14727ea46206SLadislav Michl count = dlfb->edid_size - off; 1473f7018c21STomi Valkeinen 14747ea46206SLadislav Michl memcpy(buf, dlfb->edid, count); 1475f7018c21STomi Valkeinen 1476f7018c21STomi Valkeinen return count; 1477f7018c21STomi Valkeinen } 1478f7018c21STomi Valkeinen 1479f7018c21STomi Valkeinen static ssize_t edid_store( 1480f7018c21STomi Valkeinen struct file *filp, 1481f7018c21STomi Valkeinen struct kobject *kobj, struct bin_attribute *a, 1482f7018c21STomi Valkeinen char *src, loff_t src_off, size_t src_size) { 1483f7018c21STomi Valkeinen struct device *fbdev = container_of(kobj, struct device, kobj); 1484f7018c21STomi Valkeinen struct fb_info *fb_info = dev_get_drvdata(fbdev); 14857ea46206SLadislav Michl struct dlfb_data *dlfb = fb_info->par; 1486f7018c21STomi Valkeinen int ret; 1487f7018c21STomi Valkeinen 1488f7018c21STomi Valkeinen /* We only support write of entire EDID at once, no offset*/ 1489f7018c21STomi Valkeinen if ((src_size != EDID_LENGTH) || (src_off != 0)) 1490f7018c21STomi Valkeinen return -EINVAL; 1491f7018c21STomi Valkeinen 14927ea46206SLadislav Michl ret = dlfb_setup_modes(dlfb, fb_info, src, src_size); 1493f7018c21STomi Valkeinen if (ret) 1494f7018c21STomi Valkeinen return ret; 1495f7018c21STomi Valkeinen 14967ea46206SLadislav Michl if (!dlfb->edid || memcmp(src, dlfb->edid, src_size)) 1497f7018c21STomi Valkeinen return -EINVAL; 1498f7018c21STomi Valkeinen 14997433914eSMikulas Patocka ret = dlfb_ops_set_par(fb_info); 15007433914eSMikulas Patocka if (ret) 15017433914eSMikulas Patocka return ret; 15027433914eSMikulas Patocka 1503f7018c21STomi Valkeinen return src_size; 1504f7018c21STomi Valkeinen } 1505f7018c21STomi Valkeinen 1506f7018c21STomi Valkeinen static ssize_t metrics_reset_store(struct device *fbdev, 1507f7018c21STomi Valkeinen struct device_attribute *attr, 1508f7018c21STomi Valkeinen const char *buf, size_t count) 1509f7018c21STomi Valkeinen { 1510f7018c21STomi Valkeinen struct fb_info *fb_info = dev_get_drvdata(fbdev); 15117ea46206SLadislav Michl struct dlfb_data *dlfb = fb_info->par; 1512f7018c21STomi Valkeinen 15137ea46206SLadislav Michl atomic_set(&dlfb->bytes_rendered, 0); 15147ea46206SLadislav Michl atomic_set(&dlfb->bytes_identical, 0); 15157ea46206SLadislav Michl atomic_set(&dlfb->bytes_sent, 0); 15167ea46206SLadislav Michl atomic_set(&dlfb->cpu_kcycles_used, 0); 1517f7018c21STomi Valkeinen 1518f7018c21STomi Valkeinen return count; 1519f7018c21STomi Valkeinen } 1520f7018c21STomi Valkeinen 1521598b2eedSBhumika Goyal static const struct bin_attribute edid_attr = { 1522f7018c21STomi Valkeinen .attr.name = "edid", 1523f7018c21STomi Valkeinen .attr.mode = 0666, 1524f7018c21STomi Valkeinen .size = EDID_LENGTH, 1525f7018c21STomi Valkeinen .read = edid_show, 1526f7018c21STomi Valkeinen .write = edid_store 1527f7018c21STomi Valkeinen }; 1528f7018c21STomi Valkeinen 1529fa738a5cSLadislav Michl static const struct device_attribute fb_device_attrs[] = { 1530f7018c21STomi Valkeinen __ATTR_RO(metrics_bytes_rendered), 1531f7018c21STomi Valkeinen __ATTR_RO(metrics_bytes_identical), 1532f7018c21STomi Valkeinen __ATTR_RO(metrics_bytes_sent), 1533f7018c21STomi Valkeinen __ATTR_RO(metrics_cpu_kcycles_used), 1534f7018c21STomi Valkeinen __ATTR(metrics_reset, S_IWUSR, NULL, metrics_reset_store), 1535f7018c21STomi Valkeinen }; 1536f7018c21STomi Valkeinen 1537f7018c21STomi Valkeinen /* 1538f7018c21STomi Valkeinen * This is necessary before we can communicate with the display controller. 1539f7018c21STomi Valkeinen */ 15407ea46206SLadislav Michl static int dlfb_select_std_channel(struct dlfb_data *dlfb) 1541f7018c21STomi Valkeinen { 1542f7018c21STomi Valkeinen int ret; 154345f580c4SMaksim Salau void *buf; 154445f580c4SMaksim Salau static const u8 set_def_chn[] = { 154545f580c4SMaksim Salau 0x57, 0xCD, 0xDC, 0xA7, 1546f7018c21STomi Valkeinen 0x1C, 0x88, 0x5E, 0x15, 1547f7018c21STomi Valkeinen 0x60, 0xFE, 0xC6, 0x97, 1548f7018c21STomi Valkeinen 0x16, 0x3D, 0x47, 0xF2 }; 1549f7018c21STomi Valkeinen 155045f580c4SMaksim Salau buf = kmemdup(set_def_chn, sizeof(set_def_chn), GFP_KERNEL); 155145f580c4SMaksim Salau 155245f580c4SMaksim Salau if (!buf) 155345f580c4SMaksim Salau return -ENOMEM; 155445f580c4SMaksim Salau 15557ea46206SLadislav Michl ret = usb_control_msg(dlfb->udev, usb_sndctrlpipe(dlfb->udev, 0), 1556f7018c21STomi Valkeinen NR_USB_REQUEST_CHANNEL, 1557f7018c21STomi Valkeinen (USB_DIR_OUT | USB_TYPE_VENDOR), 0, 0, 155845f580c4SMaksim Salau buf, sizeof(set_def_chn), USB_CTRL_SET_TIMEOUT); 155945f580c4SMaksim Salau 156045f580c4SMaksim Salau kfree(buf); 156145f580c4SMaksim Salau 1562f7018c21STomi Valkeinen return ret; 1563f7018c21STomi Valkeinen } 1564f7018c21STomi Valkeinen 15657ea46206SLadislav Michl static int dlfb_parse_vendor_descriptor(struct dlfb_data *dlfb, 15665865889fSLadislav Michl struct usb_interface *intf) 1567f7018c21STomi Valkeinen { 1568f7018c21STomi Valkeinen char *desc; 1569f7018c21STomi Valkeinen char *buf; 1570f7018c21STomi Valkeinen char *desc_end; 1571f63cb8d7SAlexey Klimov int total_len; 1572f7018c21STomi Valkeinen 1573f7018c21STomi Valkeinen buf = kzalloc(MAX_VENDOR_DESCRIPTOR_SIZE, GFP_KERNEL); 1574f7018c21STomi Valkeinen if (!buf) 1575f7018c21STomi Valkeinen return false; 1576f7018c21STomi Valkeinen desc = buf; 1577f7018c21STomi Valkeinen 15785865889fSLadislav Michl total_len = usb_get_descriptor(interface_to_usbdev(intf), 1579f7018c21STomi Valkeinen 0x5f, /* vendor specific */ 1580f7018c21STomi Valkeinen 0, desc, MAX_VENDOR_DESCRIPTOR_SIZE); 1581f7018c21STomi Valkeinen 1582f7018c21STomi Valkeinen /* if not found, look in configuration descriptor */ 1583f7018c21STomi Valkeinen if (total_len < 0) { 15845865889fSLadislav Michl if (0 == usb_get_extra_descriptor(intf->cur_altsetting, 1585f7018c21STomi Valkeinen 0x5f, &desc)) 1586f7018c21STomi Valkeinen total_len = (int) desc[0]; 1587f7018c21STomi Valkeinen } 1588f7018c21STomi Valkeinen 1589f7018c21STomi Valkeinen if (total_len > 5) { 15905865889fSLadislav Michl dev_info(&intf->dev, 15915865889fSLadislav Michl "vendor descriptor length: %d data: %11ph\n", 15925865889fSLadislav Michl total_len, desc); 1593f7018c21STomi Valkeinen 1594f7018c21STomi Valkeinen if ((desc[0] != total_len) || /* descriptor length */ 1595f7018c21STomi Valkeinen (desc[1] != 0x5f) || /* vendor descriptor type */ 1596f7018c21STomi Valkeinen (desc[2] != 0x01) || /* version (2 bytes) */ 1597f7018c21STomi Valkeinen (desc[3] != 0x00) || 1598f7018c21STomi Valkeinen (desc[4] != total_len - 2)) /* length after type */ 1599f7018c21STomi Valkeinen goto unrecognized; 1600f7018c21STomi Valkeinen 1601f7018c21STomi Valkeinen desc_end = desc + total_len; 1602f7018c21STomi Valkeinen desc += 5; /* the fixed header we've already parsed */ 1603f7018c21STomi Valkeinen 1604f7018c21STomi Valkeinen while (desc < desc_end) { 1605f7018c21STomi Valkeinen u8 length; 1606f7018c21STomi Valkeinen u16 key; 1607f7018c21STomi Valkeinen 1608115e7759SLadislav Michl key = *desc++; 1609115e7759SLadislav Michl key |= (u16)*desc++ << 8; 1610115e7759SLadislav Michl length = *desc++; 1611f7018c21STomi Valkeinen 1612f7018c21STomi Valkeinen switch (key) { 1613f7018c21STomi Valkeinen case 0x0200: { /* max_area */ 1614115e7759SLadislav Michl u32 max_area = *desc++; 1615115e7759SLadislav Michl max_area |= (u32)*desc++ << 8; 1616115e7759SLadislav Michl max_area |= (u32)*desc++ << 16; 1617115e7759SLadislav Michl max_area |= (u32)*desc++ << 24; 16185865889fSLadislav Michl dev_warn(&intf->dev, 16195865889fSLadislav Michl "DL chip limited to %d pixel modes\n", 1620f7018c21STomi Valkeinen max_area); 16217ea46206SLadislav Michl dlfb->sku_pixel_limit = max_area; 1622f7018c21STomi Valkeinen break; 1623f7018c21STomi Valkeinen } 1624f7018c21STomi Valkeinen default: 1625f7018c21STomi Valkeinen break; 1626f7018c21STomi Valkeinen } 1627f7018c21STomi Valkeinen desc += length; 1628f7018c21STomi Valkeinen } 1629f7018c21STomi Valkeinen } else { 16305865889fSLadislav Michl dev_info(&intf->dev, "vendor descriptor not available (%d)\n", 16315865889fSLadislav Michl total_len); 1632f7018c21STomi Valkeinen } 1633f7018c21STomi Valkeinen 1634f7018c21STomi Valkeinen goto success; 1635f7018c21STomi Valkeinen 1636f7018c21STomi Valkeinen unrecognized: 1637f7018c21STomi Valkeinen /* allow udlfb to load for now even if firmware unrecognized */ 16385865889fSLadislav Michl dev_err(&intf->dev, "Unrecognized vendor firmware descriptor\n"); 1639f7018c21STomi Valkeinen 1640f7018c21STomi Valkeinen success: 1641f7018c21STomi Valkeinen kfree(buf); 1642f7018c21STomi Valkeinen return true; 1643f7018c21STomi Valkeinen } 1644f7018c21STomi Valkeinen 16455865889fSLadislav Michl static int dlfb_usb_probe(struct usb_interface *intf, 1646f7018c21STomi Valkeinen const struct usb_device_id *id) 1647f7018c21STomi Valkeinen { 164868a958a9SMikulas Patocka int i; 164968a958a9SMikulas Patocka const struct device_attribute *attr; 16507ea46206SLadislav Michl struct dlfb_data *dlfb; 165168a958a9SMikulas Patocka struct fb_info *info; 1652f7018c21STomi Valkeinen int retval = -ENOMEM; 16535865889fSLadislav Michl struct usb_device *usbdev = interface_to_usbdev(intf); 1654f7018c21STomi Valkeinen 1655f7018c21STomi Valkeinen /* usb initialization */ 16567ea46206SLadislav Michl dlfb = kzalloc(sizeof(*dlfb), GFP_KERNEL); 16575865889fSLadislav Michl if (!dlfb) { 16585865889fSLadislav Michl dev_err(&intf->dev, "%s: failed to allocate dlfb\n", __func__); 1659c143a559SDan Carpenter return -ENOMEM; 1660f7018c21STomi Valkeinen } 1661f7018c21STomi Valkeinen 16627433914eSMikulas Patocka INIT_LIST_HEAD(&dlfb->deferred_free); 1663f7018c21STomi Valkeinen 166468a958a9SMikulas Patocka dlfb->udev = usb_get_dev(usbdev); 16655865889fSLadislav Michl usb_set_intfdata(intf, dlfb); 1666f7018c21STomi Valkeinen 16675865889fSLadislav Michl dev_dbg(&intf->dev, "console enable=%d\n", console); 16685865889fSLadislav Michl dev_dbg(&intf->dev, "fb_defio enable=%d\n", fb_defio); 16695865889fSLadislav Michl dev_dbg(&intf->dev, "shadow enable=%d\n", shadow); 1670f7018c21STomi Valkeinen 16717ea46206SLadislav Michl dlfb->sku_pixel_limit = 2048 * 1152; /* default to maximum */ 1672f7018c21STomi Valkeinen 16735865889fSLadislav Michl if (!dlfb_parse_vendor_descriptor(dlfb, intf)) { 16745865889fSLadislav Michl dev_err(&intf->dev, 16755865889fSLadislav Michl "firmware not recognized, incompatible device?\n"); 1676f7018c21STomi Valkeinen goto error; 1677f7018c21STomi Valkeinen } 1678f7018c21STomi Valkeinen 1679f7018c21STomi Valkeinen if (pixel_limit) { 16805865889fSLadislav Michl dev_warn(&intf->dev, 16815865889fSLadislav Michl "DL chip limit of %d overridden to %d\n", 16827ea46206SLadislav Michl dlfb->sku_pixel_limit, pixel_limit); 16837ea46206SLadislav Michl dlfb->sku_pixel_limit = pixel_limit; 1684f7018c21STomi Valkeinen } 1685f7018c21STomi Valkeinen 1686f7018c21STomi Valkeinen 1687f7018c21STomi Valkeinen /* allocates framebuffer driver structure, not framebuffer memory */ 16887ea46206SLadislav Michl info = framebuffer_alloc(0, &dlfb->udev->dev); 1689f7018c21STomi Valkeinen if (!info) { 16905865889fSLadislav Michl dev_err(&dlfb->udev->dev, "framebuffer_alloc failed\n"); 1691f7018c21STomi Valkeinen goto error; 1692f7018c21STomi Valkeinen } 1693f7018c21STomi Valkeinen 16947ea46206SLadislav Michl dlfb->info = info; 16957ea46206SLadislav Michl info->par = dlfb; 16967ea46206SLadislav Michl info->pseudo_palette = dlfb->pseudo_palette; 16972c29cfc3SMikulas Patocka dlfb->ops = dlfb_ops; 16982c29cfc3SMikulas Patocka info->fbops = &dlfb->ops; 1699f7018c21STomi Valkeinen 1700babc250eSMikulas Patocka mutex_init(&dlfb->render_mutex); 17016b11f9d8SMikulas Patocka dlfb_init_damage(dlfb); 17026b11f9d8SMikulas Patocka spin_lock_init(&dlfb->damage_lock); 17036b11f9d8SMikulas Patocka INIT_WORK(&dlfb->damage_work, dlfb_damage_work); 17046b11f9d8SMikulas Patocka 170568a958a9SMikulas Patocka INIT_LIST_HEAD(&info->modelist); 170668a958a9SMikulas Patocka 170768a958a9SMikulas Patocka if (!dlfb_alloc_urb_list(dlfb, WRITES_IN_FLIGHT, MAX_TRANSFER)) { 170868a958a9SMikulas Patocka retval = -ENOMEM; 170968a958a9SMikulas Patocka dev_err(&intf->dev, "unable to allocate urb list\n"); 171068a958a9SMikulas Patocka goto error; 171168a958a9SMikulas Patocka } 171268a958a9SMikulas Patocka 171368a958a9SMikulas Patocka /* We don't register a new USB class. Our client interface is dlfbev */ 171468a958a9SMikulas Patocka 1715f7018c21STomi Valkeinen retval = fb_alloc_cmap(&info->cmap, 256, 0); 1716f7018c21STomi Valkeinen if (retval < 0) { 17175865889fSLadislav Michl dev_err(info->device, "cmap allocation failed: %d\n", retval); 1718f7018c21STomi Valkeinen goto error; 1719f7018c21STomi Valkeinen } 1720f7018c21STomi Valkeinen 17217ea46206SLadislav Michl retval = dlfb_setup_modes(dlfb, info, NULL, 0); 1722f7018c21STomi Valkeinen if (retval != 0) { 17235865889fSLadislav Michl dev_err(info->device, 17245865889fSLadislav Michl "unable to find common mode for display and adapter\n"); 1725f7018c21STomi Valkeinen goto error; 1726f7018c21STomi Valkeinen } 1727f7018c21STomi Valkeinen 1728f7018c21STomi Valkeinen /* ready to begin using device */ 1729f7018c21STomi Valkeinen 17307ea46206SLadislav Michl atomic_set(&dlfb->usb_active, 1); 17317ea46206SLadislav Michl dlfb_select_std_channel(dlfb); 1732f7018c21STomi Valkeinen 1733f7018c21STomi Valkeinen dlfb_ops_check_var(&info->var, info); 17347433914eSMikulas Patocka retval = dlfb_ops_set_par(info); 17357433914eSMikulas Patocka if (retval) 17367433914eSMikulas Patocka goto error; 1737f7018c21STomi Valkeinen 1738f7018c21STomi Valkeinen retval = register_framebuffer(info); 1739f7018c21STomi Valkeinen if (retval < 0) { 17405865889fSLadislav Michl dev_err(info->device, "unable to register framebuffer: %d\n", 17415865889fSLadislav Michl retval); 1742f7018c21STomi Valkeinen goto error; 1743f7018c21STomi Valkeinen } 1744f7018c21STomi Valkeinen 1745f7018c21STomi Valkeinen for (i = 0; i < ARRAY_SIZE(fb_device_attrs); i++) { 17465865889fSLadislav Michl attr = &fb_device_attrs[i]; 17475865889fSLadislav Michl retval = device_create_file(info->dev, attr); 17485865889fSLadislav Michl if (retval) 17495865889fSLadislav Michl dev_warn(info->device, 17505865889fSLadislav Michl "failed to create '%s' attribute: %d\n", 17515865889fSLadislav Michl attr->attr.name, retval); 1752f7018c21STomi Valkeinen } 1753f7018c21STomi Valkeinen 1754f7018c21STomi Valkeinen retval = device_create_bin_file(info->dev, &edid_attr); 17555865889fSLadislav Michl if (retval) 17565865889fSLadislav Michl dev_warn(info->device, "failed to create '%s' attribute: %d\n", 17575865889fSLadislav Michl edid_attr.attr.name, retval); 1758f7018c21STomi Valkeinen 17595865889fSLadislav Michl dev_info(info->device, 17605865889fSLadislav Michl "%s is DisplayLink USB device (%dx%d, %dK framebuffer memory)\n", 17615865889fSLadislav Michl dev_name(info->dev), info->var.xres, info->var.yres, 17627ea46206SLadislav Michl ((dlfb->backing_buffer) ? 1763f7018c21STomi Valkeinen info->fix.smem_len * 2 : info->fix.smem_len) >> 10); 176468a958a9SMikulas Patocka return 0; 1765f7018c21STomi Valkeinen 1766f7018c21STomi Valkeinen error: 176768a958a9SMikulas Patocka if (dlfb->info) { 176868a958a9SMikulas Patocka dlfb_ops_destroy(dlfb->info); 1769c143a559SDan Carpenter } else { 177068a958a9SMikulas Patocka usb_put_dev(dlfb->udev); 177168a958a9SMikulas Patocka kfree(dlfb); 177268a958a9SMikulas Patocka } 177368a958a9SMikulas Patocka return retval; 1774f7018c21STomi Valkeinen } 1775f7018c21STomi Valkeinen 17765865889fSLadislav Michl static void dlfb_usb_disconnect(struct usb_interface *intf) 1777f7018c21STomi Valkeinen { 17787ea46206SLadislav Michl struct dlfb_data *dlfb; 1779f7018c21STomi Valkeinen struct fb_info *info; 1780f7018c21STomi Valkeinen int i; 1781f7018c21STomi Valkeinen 17825865889fSLadislav Michl dlfb = usb_get_intfdata(intf); 17837ea46206SLadislav Michl info = dlfb->info; 1784f7018c21STomi Valkeinen 17855865889fSLadislav Michl dev_dbg(&intf->dev, "USB disconnect starting\n"); 1786f7018c21STomi Valkeinen 1787f7018c21STomi Valkeinen /* we virtualize until all fb clients release. Then we free */ 17887ea46206SLadislav Michl dlfb->virtualized = true; 1789f7018c21STomi Valkeinen 1790f7018c21STomi Valkeinen /* When non-active we'll update virtual framebuffer, but no new urbs */ 17917ea46206SLadislav Michl atomic_set(&dlfb->usb_active, 0); 1792f7018c21STomi Valkeinen 1793f7018c21STomi Valkeinen /* this function will wait for all in-flight urbs to complete */ 17947ea46206SLadislav Michl dlfb_free_urb_list(dlfb); 1795f7018c21STomi Valkeinen 1796f7018c21STomi Valkeinen /* remove udlfb's sysfs interfaces */ 1797f7018c21STomi Valkeinen for (i = 0; i < ARRAY_SIZE(fb_device_attrs); i++) 1798f7018c21STomi Valkeinen device_remove_file(info->dev, &fb_device_attrs[i]); 1799f7018c21STomi Valkeinen device_remove_bin_file(info->dev, &edid_attr); 1800f7018c21STomi Valkeinen 180168a958a9SMikulas Patocka unregister_framebuffer(info); 1802f7018c21STomi Valkeinen } 1803f7018c21STomi Valkeinen 1804f7018c21STomi Valkeinen static struct usb_driver dlfb_driver = { 1805f7018c21STomi Valkeinen .name = "udlfb", 1806f7018c21STomi Valkeinen .probe = dlfb_usb_probe, 1807f7018c21STomi Valkeinen .disconnect = dlfb_usb_disconnect, 1808f7018c21STomi Valkeinen .id_table = id_table, 1809f7018c21STomi Valkeinen }; 1810f7018c21STomi Valkeinen 1811f7018c21STomi Valkeinen module_usb_driver(dlfb_driver); 1812f7018c21STomi Valkeinen 1813f7018c21STomi Valkeinen static void dlfb_urb_completion(struct urb *urb) 1814f7018c21STomi Valkeinen { 1815f7018c21STomi Valkeinen struct urb_node *unode = urb->context; 18167ea46206SLadislav Michl struct dlfb_data *dlfb = unode->dlfb; 1817f7018c21STomi Valkeinen unsigned long flags; 1818f7018c21STomi Valkeinen 18195865889fSLadislav Michl switch (urb->status) { 18205865889fSLadislav Michl case 0: 18215865889fSLadislav Michl /* success */ 18225865889fSLadislav Michl break; 18235865889fSLadislav Michl case -ECONNRESET: 18245865889fSLadislav Michl case -ENOENT: 18255865889fSLadislav Michl case -ESHUTDOWN: 1826f7018c21STomi Valkeinen /* sync/async unlink faults aren't errors */ 18275865889fSLadislav Michl break; 18285865889fSLadislav Michl default: 18295865889fSLadislav Michl dev_err(&dlfb->udev->dev, 18305865889fSLadislav Michl "%s - nonzero write bulk status received: %d\n", 1831f7018c21STomi Valkeinen __func__, urb->status); 18327ea46206SLadislav Michl atomic_set(&dlfb->lost_pixels, 1); 18335865889fSLadislav Michl break; 1834f7018c21STomi Valkeinen } 1835f7018c21STomi Valkeinen 18367ea46206SLadislav Michl urb->transfer_buffer_length = dlfb->urbs.size; /* reset to actual */ 1837f7018c21STomi Valkeinen 18387ea46206SLadislav Michl spin_lock_irqsave(&dlfb->urbs.lock, flags); 18397ea46206SLadislav Michl list_add_tail(&unode->entry, &dlfb->urbs.list); 18407ea46206SLadislav Michl dlfb->urbs.available++; 18417ea46206SLadislav Michl spin_unlock_irqrestore(&dlfb->urbs.lock, flags); 1842f7018c21STomi Valkeinen 18437ea46206SLadislav Michl up(&dlfb->urbs.limit_sem); 1844f7018c21STomi Valkeinen } 1845f7018c21STomi Valkeinen 18467ea46206SLadislav Michl static void dlfb_free_urb_list(struct dlfb_data *dlfb) 1847f7018c21STomi Valkeinen { 18487ea46206SLadislav Michl int count = dlfb->urbs.count; 1849f7018c21STomi Valkeinen struct list_head *node; 1850f7018c21STomi Valkeinen struct urb_node *unode; 1851f7018c21STomi Valkeinen struct urb *urb; 1852f7018c21STomi Valkeinen 1853f7018c21STomi Valkeinen /* keep waiting and freeing, until we've got 'em all */ 1854f7018c21STomi Valkeinen while (count--) { 18559d0aa601SMikulas Patocka down(&dlfb->urbs.limit_sem); 1856f7018c21STomi Valkeinen 1857cb782a3fSMikulas Patocka spin_lock_irq(&dlfb->urbs.lock); 1858f7018c21STomi Valkeinen 18597ea46206SLadislav Michl node = dlfb->urbs.list.next; /* have reserved one with sem */ 1860f7018c21STomi Valkeinen list_del_init(node); 1861f7018c21STomi Valkeinen 1862cb782a3fSMikulas Patocka spin_unlock_irq(&dlfb->urbs.lock); 1863f7018c21STomi Valkeinen 1864f7018c21STomi Valkeinen unode = list_entry(node, struct urb_node, entry); 1865f7018c21STomi Valkeinen urb = unode->urb; 1866f7018c21STomi Valkeinen 1867f7018c21STomi Valkeinen /* Free each separately allocated piece */ 18687ea46206SLadislav Michl usb_free_coherent(urb->dev, dlfb->urbs.size, 1869f7018c21STomi Valkeinen urb->transfer_buffer, urb->transfer_dma); 1870f7018c21STomi Valkeinen usb_free_urb(urb); 1871f7018c21STomi Valkeinen kfree(node); 1872f7018c21STomi Valkeinen } 1873f7018c21STomi Valkeinen 18747ea46206SLadislav Michl dlfb->urbs.count = 0; 1875f7018c21STomi Valkeinen } 1876f7018c21STomi Valkeinen 18777ea46206SLadislav Michl static int dlfb_alloc_urb_list(struct dlfb_data *dlfb, int count, size_t size) 1878f7018c21STomi Valkeinen { 1879f7018c21STomi Valkeinen struct urb *urb; 1880f7018c21STomi Valkeinen struct urb_node *unode; 1881f7018c21STomi Valkeinen char *buf; 1882080fb524SMikulas Patocka size_t wanted_size = count * size; 1883f7018c21STomi Valkeinen 18847ea46206SLadislav Michl spin_lock_init(&dlfb->urbs.lock); 1885f7018c21STomi Valkeinen 1886080fb524SMikulas Patocka retry: 18877ea46206SLadislav Michl dlfb->urbs.size = size; 18887ea46206SLadislav Michl INIT_LIST_HEAD(&dlfb->urbs.list); 1889f7018c21STomi Valkeinen 1890080fb524SMikulas Patocka sema_init(&dlfb->urbs.limit_sem, 0); 1891080fb524SMikulas Patocka dlfb->urbs.count = 0; 1892080fb524SMikulas Patocka dlfb->urbs.available = 0; 1893080fb524SMikulas Patocka 1894080fb524SMikulas Patocka while (dlfb->urbs.count * size < wanted_size) { 189574fb2519SMarkus Elfring unode = kzalloc(sizeof(*unode), GFP_KERNEL); 1896f7018c21STomi Valkeinen if (!unode) 1897f7018c21STomi Valkeinen break; 18987ea46206SLadislav Michl unode->dlfb = dlfb; 1899f7018c21STomi Valkeinen 1900f7018c21STomi Valkeinen urb = usb_alloc_urb(0, GFP_KERNEL); 1901f7018c21STomi Valkeinen if (!urb) { 1902f7018c21STomi Valkeinen kfree(unode); 1903f7018c21STomi Valkeinen break; 1904f7018c21STomi Valkeinen } 1905f7018c21STomi Valkeinen unode->urb = urb; 1906f7018c21STomi Valkeinen 1907080fb524SMikulas Patocka buf = usb_alloc_coherent(dlfb->udev, size, GFP_KERNEL, 1908f7018c21STomi Valkeinen &urb->transfer_dma); 1909f7018c21STomi Valkeinen if (!buf) { 1910f7018c21STomi Valkeinen kfree(unode); 1911f7018c21STomi Valkeinen usb_free_urb(urb); 1912080fb524SMikulas Patocka if (size > PAGE_SIZE) { 1913080fb524SMikulas Patocka size /= 2; 1914080fb524SMikulas Patocka dlfb_free_urb_list(dlfb); 1915080fb524SMikulas Patocka goto retry; 1916080fb524SMikulas Patocka } 1917f7018c21STomi Valkeinen break; 1918f7018c21STomi Valkeinen } 1919f7018c21STomi Valkeinen 1920f7018c21STomi Valkeinen /* urb->transfer_buffer_length set to actual before submit */ 19217ea46206SLadislav Michl usb_fill_bulk_urb(urb, dlfb->udev, usb_sndbulkpipe(dlfb->udev, 1), 1922f7018c21STomi Valkeinen buf, size, dlfb_urb_completion, unode); 1923f7018c21STomi Valkeinen urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; 1924f7018c21STomi Valkeinen 19257ea46206SLadislav Michl list_add_tail(&unode->entry, &dlfb->urbs.list); 1926f7018c21STomi Valkeinen 1927080fb524SMikulas Patocka up(&dlfb->urbs.limit_sem); 1928080fb524SMikulas Patocka dlfb->urbs.count++; 1929080fb524SMikulas Patocka dlfb->urbs.available++; 1930f7018c21STomi Valkeinen } 1931f7018c21STomi Valkeinen 1932080fb524SMikulas Patocka return dlfb->urbs.count; 1933f7018c21STomi Valkeinen } 1934f7018c21STomi Valkeinen 19357ea46206SLadislav Michl static struct urb *dlfb_get_urb(struct dlfb_data *dlfb) 1936f7018c21STomi Valkeinen { 1937f63cb8d7SAlexey Klimov int ret; 1938f7018c21STomi Valkeinen struct list_head *entry; 1939f7018c21STomi Valkeinen struct urb_node *unode; 1940f7018c21STomi Valkeinen 1941f7018c21STomi Valkeinen /* Wait for an in-flight buffer to complete and get re-queued */ 19427ea46206SLadislav Michl ret = down_timeout(&dlfb->urbs.limit_sem, GET_URB_TIMEOUT); 1943f7018c21STomi Valkeinen if (ret) { 19447ea46206SLadislav Michl atomic_set(&dlfb->lost_pixels, 1); 19455865889fSLadislav Michl dev_warn(&dlfb->udev->dev, 19465865889fSLadislav Michl "wait for urb interrupted: %d available: %d\n", 19477ea46206SLadislav Michl ret, dlfb->urbs.available); 1948acea8d5fSLadislav Michl return NULL; 1949f7018c21STomi Valkeinen } 1950f7018c21STomi Valkeinen 1951cb782a3fSMikulas Patocka spin_lock_irq(&dlfb->urbs.lock); 1952f7018c21STomi Valkeinen 19537ea46206SLadislav Michl BUG_ON(list_empty(&dlfb->urbs.list)); /* reserved one with limit_sem */ 19547ea46206SLadislav Michl entry = dlfb->urbs.list.next; 1955f7018c21STomi Valkeinen list_del_init(entry); 19567ea46206SLadislav Michl dlfb->urbs.available--; 1957f7018c21STomi Valkeinen 1958cb782a3fSMikulas Patocka spin_unlock_irq(&dlfb->urbs.lock); 1959f7018c21STomi Valkeinen 1960f7018c21STomi Valkeinen unode = list_entry(entry, struct urb_node, entry); 1961acea8d5fSLadislav Michl return unode->urb; 1962f7018c21STomi Valkeinen } 1963f7018c21STomi Valkeinen 19647ea46206SLadislav Michl static int dlfb_submit_urb(struct dlfb_data *dlfb, struct urb *urb, size_t len) 1965f7018c21STomi Valkeinen { 1966f7018c21STomi Valkeinen int ret; 1967f7018c21STomi Valkeinen 19687ea46206SLadislav Michl BUG_ON(len > dlfb->urbs.size); 1969f7018c21STomi Valkeinen 1970f7018c21STomi Valkeinen urb->transfer_buffer_length = len; /* set to actual payload len */ 1971f7018c21STomi Valkeinen ret = usb_submit_urb(urb, GFP_KERNEL); 1972f7018c21STomi Valkeinen if (ret) { 1973f7018c21STomi Valkeinen dlfb_urb_completion(urb); /* because no one else will */ 19747ea46206SLadislav Michl atomic_set(&dlfb->lost_pixels, 1); 19755865889fSLadislav Michl dev_err(&dlfb->udev->dev, "submit urb error: %d\n", ret); 1976f7018c21STomi Valkeinen } 1977f7018c21STomi Valkeinen return ret; 1978f7018c21STomi Valkeinen } 1979f7018c21STomi Valkeinen 1980f7018c21STomi Valkeinen module_param(console, bool, S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP); 1981f7018c21STomi Valkeinen MODULE_PARM_DESC(console, "Allow fbcon to open framebuffer"); 1982f7018c21STomi Valkeinen 1983f7018c21STomi Valkeinen module_param(fb_defio, bool, S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP); 1984f7018c21STomi Valkeinen MODULE_PARM_DESC(fb_defio, "Page fault detection of mmap writes"); 1985f7018c21STomi Valkeinen 1986f7018c21STomi Valkeinen module_param(shadow, bool, S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP); 1987f7018c21STomi Valkeinen MODULE_PARM_DESC(shadow, "Shadow vid mem. Disable to save mem but lose perf"); 1988f7018c21STomi Valkeinen 1989f7018c21STomi Valkeinen module_param(pixel_limit, int, S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP); 1990f7018c21STomi Valkeinen MODULE_PARM_DESC(pixel_limit, "Force limit on max mode (in x*y pixels)"); 1991f7018c21STomi Valkeinen 1992f7018c21STomi Valkeinen MODULE_AUTHOR("Roberto De Ioris <roberto@unbit.it>, " 1993f7018c21STomi Valkeinen "Jaya Kumar <jayakumar.lkml@gmail.com>, " 1994f7018c21STomi Valkeinen "Bernie Thompson <bernie@plugable.com>"); 1995f7018c21STomi Valkeinen MODULE_DESCRIPTION("DisplayLink kernel framebuffer driver"); 1996f7018c21STomi Valkeinen MODULE_LICENSE("GPL"); 1997f7018c21STomi Valkeinen 1998