1 // SPDX-License-Identifier: GPL-2.0-only
3 * udlfb.c -- Framebuffer driver for DisplayLink USB controller
5 * Copyright (C) 2009 Roberto De Ioris <roberto@unbit.it>
6 * Copyright (C) 2009 Jaya Kumar <jayakumar.lkml@gmail.com>
7 * Copyright (C) 2009 Bernie Thompson <bernie@plugable.com>
9 * Layout is based on skeletonfb by James Simmons and Geert Uytterhoeven,
10 * usb-skeleton by GregKH.
12 * Device-specific portions based on information from Displaylink, with work
13 * from Florian Echtler, Henrik Bjerregaard Pedersen, and others.
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/usb.h>
20 #include <linux/uaccess.h>
23 #include <linux/vmalloc.h>
24 #include <linux/slab.h>
25 #include <linux/delay.h>
26 #include <asm/unaligned.h>
27 #include <video/udlfb.h>
30 static const struct fb_fix_screeninfo dlfb_fix
= {
32 .type
= FB_TYPE_PACKED_PIXELS
,
33 .visual
= FB_VISUAL_TRUECOLOR
,
37 .accel
= FB_ACCEL_NONE
,
40 static const u32 udlfb_info_flags
= FBINFO_DEFAULT
| FBINFO_READS_FAST
|
42 FBINFO_HWACCEL_IMAGEBLIT
| FBINFO_HWACCEL_FILLRECT
|
43 FBINFO_HWACCEL_COPYAREA
| FBINFO_MISC_ALWAYS_SETPAR
;
46 * There are many DisplayLink-based graphics products, all with unique PIDs.
47 * So we match on DisplayLink's VID + Vendor-Defined Interface Class (0xff)
48 * We also require a match on SubClass (0x00) and Protocol (0x00),
49 * which is compatible with all known USB 2.0 era graphics chips and firmware,
50 * but allows DisplayLink to increment those for any future incompatible chips
52 static const struct usb_device_id id_table
[] = {
54 .bInterfaceClass
= 0xff,
55 .bInterfaceSubClass
= 0x00,
56 .bInterfaceProtocol
= 0x00,
57 .match_flags
= USB_DEVICE_ID_MATCH_VENDOR
|
58 USB_DEVICE_ID_MATCH_INT_CLASS
|
59 USB_DEVICE_ID_MATCH_INT_SUBCLASS
|
60 USB_DEVICE_ID_MATCH_INT_PROTOCOL
,
64 MODULE_DEVICE_TABLE(usb
, id_table
);
67 static bool console
= true; /* Allow fbcon to open framebuffer */
68 static bool fb_defio
= true; /* Detect mmap writes using page faults */
69 static bool shadow
= true; /* Optionally disable shadow framebuffer */
70 static int pixel_limit
; /* Optionally force a pixel resolution limit */
72 struct dlfb_deferred_free
{
73 struct list_head list
;
77 static int dlfb_realloc_framebuffer(struct dlfb_data
*dlfb
, struct fb_info
*info
, u32 new_len
);
79 /* dlfb keeps a list of urbs for efficient bulk transfers */
80 static void dlfb_urb_completion(struct urb
*urb
);
81 static struct urb
*dlfb_get_urb(struct dlfb_data
*dlfb
);
82 static int dlfb_submit_urb(struct dlfb_data
*dlfb
, struct urb
* urb
, size_t len
);
83 static int dlfb_alloc_urb_list(struct dlfb_data
*dlfb
, int count
, size_t size
);
84 static void dlfb_free_urb_list(struct dlfb_data
*dlfb
);
87 * All DisplayLink bulk operations start with 0xAF, followed by specific code
88 * All operations are written to buffers which then later get sent to device
90 static char *dlfb_set_register(char *buf
, u8 reg
, u8 val
)
99 static char *dlfb_vidreg_lock(char *buf
)
101 return dlfb_set_register(buf
, 0xFF, 0x00);
104 static char *dlfb_vidreg_unlock(char *buf
)
106 return dlfb_set_register(buf
, 0xFF, 0xFF);
110 * Map FB_BLANK_* to DisplayLink register
112 * ----- -----------------------------
113 * 0x00 FB_BLANK_UNBLANK (0)
115 * 0x03 FB_BLANK_VSYNC_SUSPEND (2)
116 * 0x05 FB_BLANK_HSYNC_SUSPEND (3)
117 * 0x07 FB_BLANK_POWERDOWN (4) Note: requires modeset to come back
119 static char *dlfb_blanking(char *buf
, int fb_blank
)
124 case FB_BLANK_POWERDOWN
:
127 case FB_BLANK_HSYNC_SUSPEND
:
130 case FB_BLANK_VSYNC_SUSPEND
:
133 case FB_BLANK_NORMAL
:
140 buf
= dlfb_set_register(buf
, 0x1F, reg
);
145 static char *dlfb_set_color_depth(char *buf
, u8 selection
)
147 return dlfb_set_register(buf
, 0x00, selection
);
150 static char *dlfb_set_base16bpp(char *wrptr
, u32 base
)
152 /* the base pointer is 16 bits wide, 0x20 is hi byte. */
153 wrptr
= dlfb_set_register(wrptr
, 0x20, base
>> 16);
154 wrptr
= dlfb_set_register(wrptr
, 0x21, base
>> 8);
155 return dlfb_set_register(wrptr
, 0x22, base
);
159 * DisplayLink HW has separate 16bpp and 8bpp framebuffers.
160 * In 24bpp modes, the low 323 RGB bits go in the 8bpp framebuffer
162 static char *dlfb_set_base8bpp(char *wrptr
, u32 base
)
164 wrptr
= dlfb_set_register(wrptr
, 0x26, base
>> 16);
165 wrptr
= dlfb_set_register(wrptr
, 0x27, base
>> 8);
166 return dlfb_set_register(wrptr
, 0x28, base
);
169 static char *dlfb_set_register_16(char *wrptr
, u8 reg
, u16 value
)
171 wrptr
= dlfb_set_register(wrptr
, reg
, value
>> 8);
172 return dlfb_set_register(wrptr
, reg
+1, value
);
176 * This is kind of weird because the controller takes some
177 * register values in a different byte order than other registers.
179 static char *dlfb_set_register_16be(char *wrptr
, u8 reg
, u16 value
)
181 wrptr
= dlfb_set_register(wrptr
, reg
, value
);
182 return dlfb_set_register(wrptr
, reg
+1, value
>> 8);
186 * LFSR is linear feedback shift register. The reason we have this is
187 * because the display controller needs to minimize the clock depth of
188 * various counters used in the display path. So this code reverses the
189 * provided value into the lfsr16 value by counting backwards to get
190 * the value that needs to be set in the hardware comparator to get the
191 * same actual count. This makes sense once you read above a couple of
192 * times and think about it from a hardware perspective.
194 static u16
dlfb_lfsr16(u16 actual_count
)
196 u32 lv
= 0xFFFF; /* This is the lfsr value that the hw starts with */
198 while (actual_count
--) {
200 (((lv
>> 15) ^ (lv
>> 4) ^ (lv
>> 2) ^ (lv
>> 1)) & 1))
208 * This does LFSR conversion on the value that is to be written.
209 * See LFSR explanation above for more detail.
211 static char *dlfb_set_register_lfsr16(char *wrptr
, u8 reg
, u16 value
)
213 return dlfb_set_register_16(wrptr
, reg
, dlfb_lfsr16(value
));
217 * This takes a standard fbdev screeninfo struct and all of its monitor mode
218 * details and converts them into the DisplayLink equivalent register commands.
220 static char *dlfb_set_vid_cmds(char *wrptr
, struct fb_var_screeninfo
*var
)
226 /* x display start */
227 xds
= var
->left_margin
+ var
->hsync_len
;
228 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x01, xds
);
230 xde
= xds
+ var
->xres
;
231 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x03, xde
);
233 /* y display start */
234 yds
= var
->upper_margin
+ var
->vsync_len
;
235 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x05, yds
);
237 yde
= yds
+ var
->yres
;
238 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x07, yde
);
240 /* x end count is active + blanking - 1 */
241 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x09,
242 xde
+ var
->right_margin
- 1);
244 /* libdlo hardcodes hsync start to 1 */
245 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x0B, 1);
247 /* hsync end is width of sync pulse + 1 */
248 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x0D, var
->hsync_len
+ 1);
250 /* hpixels is active pixels */
251 wrptr
= dlfb_set_register_16(wrptr
, 0x0F, var
->xres
);
253 /* yendcount is vertical active + vertical blanking */
254 yec
= var
->yres
+ var
->upper_margin
+ var
->lower_margin
+
256 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x11, yec
);
258 /* libdlo hardcodes vsync start to 0 */
259 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x13, 0);
261 /* vsync end is width of vsync pulse */
262 wrptr
= dlfb_set_register_lfsr16(wrptr
, 0x15, var
->vsync_len
);
264 /* vpixels is active pixels */
265 wrptr
= dlfb_set_register_16(wrptr
, 0x17, var
->yres
);
267 /* convert picoseconds to 5kHz multiple for pclk5k = x * 1E12/5k */
268 wrptr
= dlfb_set_register_16be(wrptr
, 0x1B,
269 200*1000*1000/var
->pixclock
);
275 * This takes a standard fbdev screeninfo struct that was fetched or prepared
276 * and then generates the appropriate command sequence that then drives the
277 * display controller.
279 static int dlfb_set_video_mode(struct dlfb_data
*dlfb
,
280 struct fb_var_screeninfo
*var
)
288 if (!atomic_read(&dlfb
->usb_active
))
291 urb
= dlfb_get_urb(dlfb
);
295 buf
= (char *) urb
->transfer_buffer
;
298 * This first section has to do with setting the base address on the
299 * controller * associated with the display. There are 2 base
300 * pointers, currently, we only * use the 16 bpp segment.
302 wrptr
= dlfb_vidreg_lock(buf
);
303 wrptr
= dlfb_set_color_depth(wrptr
, 0x00);
304 /* set base for 16bpp segment to 0 */
305 wrptr
= dlfb_set_base16bpp(wrptr
, 0);
306 /* set base for 8bpp segment to end of fb */
307 wrptr
= dlfb_set_base8bpp(wrptr
, dlfb
->info
->fix
.smem_len
);
309 wrptr
= dlfb_set_vid_cmds(wrptr
, var
);
310 wrptr
= dlfb_blanking(wrptr
, FB_BLANK_UNBLANK
);
311 wrptr
= dlfb_vidreg_unlock(wrptr
);
313 writesize
= wrptr
- buf
;
315 retval
= dlfb_submit_urb(dlfb
, urb
, writesize
);
317 dlfb
->blank_mode
= FB_BLANK_UNBLANK
;
322 static int dlfb_ops_mmap(struct fb_info
*info
, struct vm_area_struct
*vma
)
324 unsigned long start
= vma
->vm_start
;
325 unsigned long size
= vma
->vm_end
- vma
->vm_start
;
326 unsigned long offset
= vma
->vm_pgoff
<< PAGE_SHIFT
;
327 unsigned long page
, pos
;
329 if (vma
->vm_pgoff
> (~0UL >> PAGE_SHIFT
))
331 if (size
> info
->fix
.smem_len
)
333 if (offset
> info
->fix
.smem_len
- size
)
336 pos
= (unsigned long)info
->fix
.smem_start
+ offset
;
338 dev_dbg(info
->dev
, "mmap() framebuffer addr:%lu size:%lu\n",
342 page
= vmalloc_to_pfn((void *)pos
);
343 if (remap_pfn_range(vma
, start
, page
, PAGE_SIZE
, PAGE_SHARED
))
348 if (size
> PAGE_SIZE
)
358 * Trims identical data from front and back of line
359 * Sets new front buffer address and width
360 * And returns byte count of identical pixels
361 * Assumes CPU natural alignment (unsigned long)
362 * for back and front buffer ptrs and width
364 static int dlfb_trim_hline(const u8
*bback
, const u8
**bfront
, int *width_bytes
)
367 const unsigned long *back
= (const unsigned long *) bback
;
368 const unsigned long *front
= (const unsigned long *) *bfront
;
369 const int width
= *width_bytes
/ sizeof(unsigned long);
370 int identical
= width
;
374 for (j
= 0; j
< width
; j
++) {
375 if (back
[j
] != front
[j
]) {
381 for (k
= width
- 1; k
> j
; k
--) {
382 if (back
[k
] != front
[k
]) {
388 identical
= start
+ (width
- end
);
389 *bfront
= (u8
*) &front
[start
];
390 *width_bytes
= (end
- start
) * sizeof(unsigned long);
392 return identical
* sizeof(unsigned long);
396 * Render a command stream for an encoded horizontal line segment of pixels.
398 * A command buffer holds several commands.
399 * It always begins with a fresh command header
400 * (the protocol doesn't require this, but we enforce it to allow
401 * multiple buffers to be potentially encoded and sent in parallel).
402 * A single command encodes one contiguous horizontal line of pixels
404 * The function relies on the client to do all allocation, so that
405 * rendering can be done directly to output buffers (e.g. USB URBs).
406 * The function fills the supplied command buffer, providing information
407 * on where it left off, so the client may call in again with additional
408 * buffers if the line will take several buffers to complete.
410 * A single command can transmit a maximum of 256 pixels,
411 * regardless of the compression ratio (protocol design limit).
412 * To the hardware, 0 for a size byte means 256
414 * Rather than 256 pixel commands which are either rl or raw encoded,
415 * the rlx command simply assumes alternating raw and rl spans within one cmd.
416 * This has a slightly larger header overhead, but produces more even results.
417 * It also processes all data (read and write) in a single pass.
418 * Performance benchmarks of common cases show it having just slightly better
419 * compression than 256 pixel raw or rle commands, with similar CPU consumpion.
420 * But for very rl friendly data, will compress not quite as well.
422 static void dlfb_compress_hline(
423 const uint16_t **pixel_start_ptr
,
424 const uint16_t *const pixel_end
,
425 uint32_t *device_address_ptr
,
426 uint8_t **command_buffer_ptr
,
427 const uint8_t *const cmd_buffer_end
,
428 unsigned long back_buffer_offset
,
431 const uint16_t *pixel
= *pixel_start_ptr
;
432 uint32_t dev_addr
= *device_address_ptr
;
433 uint8_t *cmd
= *command_buffer_ptr
;
435 while ((pixel_end
> pixel
) &&
436 (cmd_buffer_end
- MIN_RLX_CMD_BYTES
> cmd
)) {
437 uint8_t *raw_pixels_count_byte
= NULL
;
438 uint8_t *cmd_pixels_count_byte
= NULL
;
439 const uint16_t *raw_pixel_start
= NULL
;
440 const uint16_t *cmd_pixel_start
, *cmd_pixel_end
= NULL
;
442 if (back_buffer_offset
&&
443 *pixel
== *(u16
*)((u8
*)pixel
+ back_buffer_offset
)) {
452 *cmd
++ = dev_addr
>> 16;
453 *cmd
++ = dev_addr
>> 8;
456 cmd_pixels_count_byte
= cmd
++; /* we'll know this later */
457 cmd_pixel_start
= pixel
;
459 raw_pixels_count_byte
= cmd
++; /* we'll know this later */
460 raw_pixel_start
= pixel
;
462 cmd_pixel_end
= pixel
+ min3(MAX_CMD_PIXELS
+ 1UL,
463 (unsigned long)(pixel_end
- pixel
),
464 (unsigned long)(cmd_buffer_end
- 1 - cmd
) / BPP
);
466 if (back_buffer_offset
) {
467 /* note: the framebuffer may change under us, so we must test for underflow */
468 while (cmd_pixel_end
- 1 > pixel
&&
469 *(cmd_pixel_end
- 1) == *(u16
*)((u8
*)(cmd_pixel_end
- 1) + back_buffer_offset
))
473 while (pixel
< cmd_pixel_end
) {
474 const uint16_t * const repeating_pixel
= pixel
;
475 u16 pixel_value
= *pixel
;
477 put_unaligned_be16(pixel_value
, cmd
);
478 if (back_buffer_offset
)
479 *(u16
*)((u8
*)pixel
+ back_buffer_offset
) = pixel_value
;
483 if (unlikely((pixel
< cmd_pixel_end
) &&
484 (*pixel
== pixel_value
))) {
485 /* go back and fill in raw pixel count */
486 *raw_pixels_count_byte
= ((repeating_pixel
-
487 raw_pixel_start
) + 1) & 0xFF;
490 if (back_buffer_offset
)
491 *(u16
*)((u8
*)pixel
+ back_buffer_offset
) = pixel_value
;
493 } while ((pixel
< cmd_pixel_end
) &&
494 (*pixel
== pixel_value
));
496 /* immediately after raw data is repeat byte */
497 *cmd
++ = ((pixel
- repeating_pixel
) - 1) & 0xFF;
499 /* Then start another raw pixel span */
500 raw_pixel_start
= pixel
;
501 raw_pixels_count_byte
= cmd
++;
505 if (pixel
> raw_pixel_start
) {
506 /* finalize last RAW span */
507 *raw_pixels_count_byte
= (pixel
-raw_pixel_start
) & 0xFF;
509 /* undo unused byte */
513 *cmd_pixels_count_byte
= (pixel
- cmd_pixel_start
) & 0xFF;
514 dev_addr
+= (u8
*)pixel
- (u8
*)cmd_pixel_start
;
517 if (cmd_buffer_end
- MIN_RLX_CMD_BYTES
<= cmd
) {
518 /* Fill leftover bytes with no-ops */
519 if (cmd_buffer_end
> cmd
)
520 memset(cmd
, 0xAF, cmd_buffer_end
- cmd
);
521 cmd
= (uint8_t *) cmd_buffer_end
;
524 *command_buffer_ptr
= cmd
;
525 *pixel_start_ptr
= pixel
;
526 *device_address_ptr
= dev_addr
;
530 * There are 3 copies of every pixel: The front buffer that the fbdev
531 * client renders to, the actual framebuffer across the USB bus in hardware
532 * (that we can only write to, slowly, and can never read), and (optionally)
533 * our shadow copy that tracks what's been sent to that hardware buffer.
535 static int dlfb_render_hline(struct dlfb_data
*dlfb
, struct urb
**urb_ptr
,
536 const char *front
, char **urb_buf_ptr
,
537 u32 byte_offset
, u32 byte_width
,
538 int *ident_ptr
, int *sent_ptr
)
540 const u8
*line_start
, *line_end
, *next_pixel
;
541 u32 dev_addr
= dlfb
->base16
+ byte_offset
;
542 struct urb
*urb
= *urb_ptr
;
543 u8
*cmd
= *urb_buf_ptr
;
544 u8
*cmd_end
= (u8
*) urb
->transfer_buffer
+ urb
->transfer_buffer_length
;
545 unsigned long back_buffer_offset
= 0;
547 line_start
= (u8
*) (front
+ byte_offset
);
548 next_pixel
= line_start
;
549 line_end
= next_pixel
+ byte_width
;
551 if (dlfb
->backing_buffer
) {
553 const u8
*back_start
= (u8
*) (dlfb
->backing_buffer
556 back_buffer_offset
= (unsigned long)back_start
- (unsigned long)line_start
;
558 *ident_ptr
+= dlfb_trim_hline(back_start
, &next_pixel
,
561 offset
= next_pixel
- line_start
;
562 line_end
= next_pixel
+ byte_width
;
564 back_start
+= offset
;
565 line_start
+= offset
;
568 while (next_pixel
< line_end
) {
570 dlfb_compress_hline((const uint16_t **) &next_pixel
,
571 (const uint16_t *) line_end
, &dev_addr
,
572 (u8
**) &cmd
, (u8
*) cmd_end
, back_buffer_offset
,
575 if (cmd
>= cmd_end
) {
576 int len
= cmd
- (u8
*) urb
->transfer_buffer
;
577 if (dlfb_submit_urb(dlfb
, urb
, len
))
578 return 1; /* lost pixels is set */
580 urb
= dlfb_get_urb(dlfb
);
582 return 1; /* lost_pixels is set */
584 cmd
= urb
->transfer_buffer
;
585 cmd_end
= &cmd
[urb
->transfer_buffer_length
];
594 static int dlfb_handle_damage(struct dlfb_data
*dlfb
, int x
, int y
, int width
, int height
)
598 cycles_t start_cycles
, end_cycles
;
600 int bytes_identical
= 0;
604 start_cycles
= get_cycles();
606 mutex_lock(&dlfb
->render_mutex
);
608 aligned_x
= DL_ALIGN_DOWN(x
, sizeof(unsigned long));
609 width
= DL_ALIGN_UP(width
+ (x
-aligned_x
), sizeof(unsigned long));
613 (x
+ width
> dlfb
->info
->var
.xres
) ||
614 (y
+ height
> dlfb
->info
->var
.yres
)) {
619 if (!atomic_read(&dlfb
->usb_active
)) {
624 urb
= dlfb_get_urb(dlfb
);
629 cmd
= urb
->transfer_buffer
;
631 for (i
= y
; i
< y
+ height
; i
++) {
632 const int line_offset
= dlfb
->info
->fix
.line_length
* i
;
633 const int byte_offset
= line_offset
+ (x
* BPP
);
635 if (dlfb_render_hline(dlfb
, &urb
,
636 (char *) dlfb
->info
->fix
.smem_start
,
637 &cmd
, byte_offset
, width
* BPP
,
638 &bytes_identical
, &bytes_sent
))
642 if (cmd
> (char *) urb
->transfer_buffer
) {
644 if (cmd
< (char *) urb
->transfer_buffer
+ urb
->transfer_buffer_length
)
646 /* Send partial buffer remaining before exiting */
647 len
= cmd
- (char *) urb
->transfer_buffer
;
648 dlfb_submit_urb(dlfb
, urb
, len
);
651 dlfb_urb_completion(urb
);
654 atomic_add(bytes_sent
, &dlfb
->bytes_sent
);
655 atomic_add(bytes_identical
, &dlfb
->bytes_identical
);
656 atomic_add(width
*height
*2, &dlfb
->bytes_rendered
);
657 end_cycles
= get_cycles();
658 atomic_add(((unsigned int) ((end_cycles
- start_cycles
)
659 >> 10)), /* Kcycles */
660 &dlfb
->cpu_kcycles_used
);
665 mutex_unlock(&dlfb
->render_mutex
);
669 static void dlfb_init_damage(struct dlfb_data
*dlfb
)
671 dlfb
->damage_x
= INT_MAX
;
673 dlfb
->damage_y
= INT_MAX
;
677 static void dlfb_damage_work(struct work_struct
*w
)
679 struct dlfb_data
*dlfb
= container_of(w
, struct dlfb_data
, damage_work
);
682 spin_lock_irq(&dlfb
->damage_lock
);
684 x2
= dlfb
->damage_x2
;
686 y2
= dlfb
->damage_y2
;
687 dlfb_init_damage(dlfb
);
688 spin_unlock_irq(&dlfb
->damage_lock
);
690 if (x
< x2
&& y
< y2
)
691 dlfb_handle_damage(dlfb
, x
, y
, x2
- x
, y2
- y
);
694 static void dlfb_offload_damage(struct dlfb_data
*dlfb
, int x
, int y
, int width
, int height
)
700 if (x
>= x2
|| y
>= y2
)
703 spin_lock_irqsave(&dlfb
->damage_lock
, flags
);
704 dlfb
->damage_x
= min(x
, dlfb
->damage_x
);
705 dlfb
->damage_x2
= max(x2
, dlfb
->damage_x2
);
706 dlfb
->damage_y
= min(y
, dlfb
->damage_y
);
707 dlfb
->damage_y2
= max(y2
, dlfb
->damage_y2
);
708 spin_unlock_irqrestore(&dlfb
->damage_lock
, flags
);
710 schedule_work(&dlfb
->damage_work
);
714 * Path triggered by usermode clients who write to filesystem
715 * e.g. cat filename > /dev/fb1
716 * Not used by X Windows or text-mode console. But useful for testing.
717 * Slow because of extra copy and we must assume all pixels dirty.
719 static ssize_t
dlfb_ops_write(struct fb_info
*info
, const char __user
*buf
,
720 size_t count
, loff_t
*ppos
)
723 struct dlfb_data
*dlfb
= info
->par
;
724 u32 offset
= (u32
) *ppos
;
726 result
= fb_sys_write(info
, buf
, count
, ppos
);
729 int start
= max((int)(offset
/ info
->fix
.line_length
), 0);
730 int lines
= min((u32
)((result
/ info
->fix
.line_length
) + 1),
731 (u32
)info
->var
.yres
);
733 dlfb_handle_damage(dlfb
, 0, start
, info
->var
.xres
,
740 /* hardware has native COPY command (see libdlo), but not worth it for fbcon */
741 static void dlfb_ops_copyarea(struct fb_info
*info
,
742 const struct fb_copyarea
*area
)
745 struct dlfb_data
*dlfb
= info
->par
;
747 sys_copyarea(info
, area
);
749 dlfb_offload_damage(dlfb
, area
->dx
, area
->dy
,
750 area
->width
, area
->height
);
753 static void dlfb_ops_imageblit(struct fb_info
*info
,
754 const struct fb_image
*image
)
756 struct dlfb_data
*dlfb
= info
->par
;
758 sys_imageblit(info
, image
);
760 dlfb_offload_damage(dlfb
, image
->dx
, image
->dy
,
761 image
->width
, image
->height
);
764 static void dlfb_ops_fillrect(struct fb_info
*info
,
765 const struct fb_fillrect
*rect
)
767 struct dlfb_data
*dlfb
= info
->par
;
769 sys_fillrect(info
, rect
);
771 dlfb_offload_damage(dlfb
, rect
->dx
, rect
->dy
, rect
->width
,
776 * NOTE: fb_defio.c is holding info->fbdefio.mutex
777 * Touching ANY framebuffer memory that triggers a page fault
778 * in fb_defio will cause a deadlock, when it also tries to
779 * grab the same mutex.
781 static void dlfb_dpy_deferred_io(struct fb_info
*info
,
782 struct list_head
*pagelist
)
785 struct fb_deferred_io
*fbdefio
= info
->fbdefio
;
786 struct dlfb_data
*dlfb
= info
->par
;
789 cycles_t start_cycles
, end_cycles
;
791 int bytes_identical
= 0;
792 int bytes_rendered
= 0;
794 mutex_lock(&dlfb
->render_mutex
);
799 if (!atomic_read(&dlfb
->usb_active
))
802 start_cycles
= get_cycles();
804 urb
= dlfb_get_urb(dlfb
);
808 cmd
= urb
->transfer_buffer
;
810 /* walk the written page list and render each to device */
811 list_for_each_entry(cur
, &fbdefio
->pagelist
, lru
) {
813 if (dlfb_render_hline(dlfb
, &urb
, (char *) info
->fix
.smem_start
,
814 &cmd
, cur
->index
<< PAGE_SHIFT
,
815 PAGE_SIZE
, &bytes_identical
, &bytes_sent
))
817 bytes_rendered
+= PAGE_SIZE
;
820 if (cmd
> (char *) urb
->transfer_buffer
) {
822 if (cmd
< (char *) urb
->transfer_buffer
+ urb
->transfer_buffer_length
)
824 /* Send partial buffer remaining before exiting */
825 len
= cmd
- (char *) urb
->transfer_buffer
;
826 dlfb_submit_urb(dlfb
, urb
, len
);
829 dlfb_urb_completion(urb
);
832 atomic_add(bytes_sent
, &dlfb
->bytes_sent
);
833 atomic_add(bytes_identical
, &dlfb
->bytes_identical
);
834 atomic_add(bytes_rendered
, &dlfb
->bytes_rendered
);
835 end_cycles
= get_cycles();
836 atomic_add(((unsigned int) ((end_cycles
- start_cycles
)
837 >> 10)), /* Kcycles */
838 &dlfb
->cpu_kcycles_used
);
840 mutex_unlock(&dlfb
->render_mutex
);
843 static int dlfb_get_edid(struct dlfb_data
*dlfb
, char *edid
, int len
)
848 rbuf
= kmalloc(2, GFP_KERNEL
);
852 for (i
= 0; i
< len
; i
++) {
853 ret
= usb_control_msg(dlfb
->udev
,
854 usb_rcvctrlpipe(dlfb
->udev
, 0), 0x02,
855 (0x80 | (0x02 << 5)), i
<< 8, 0xA1,
856 rbuf
, 2, USB_CTRL_GET_TIMEOUT
);
858 dev_err(&dlfb
->udev
->dev
,
859 "Read EDID byte %d failed: %d\n", i
, ret
);
871 static int dlfb_ops_ioctl(struct fb_info
*info
, unsigned int cmd
,
875 struct dlfb_data
*dlfb
= info
->par
;
877 if (!atomic_read(&dlfb
->usb_active
))
880 /* TODO: Update X server to get this from sysfs instead */
881 if (cmd
== DLFB_IOCTL_RETURN_EDID
) {
882 void __user
*edid
= (void __user
*)arg
;
883 if (copy_to_user(edid
, dlfb
->edid
, dlfb
->edid_size
))
888 /* TODO: Help propose a standard fb.h ioctl to report mmap damage */
889 if (cmd
== DLFB_IOCTL_REPORT_DAMAGE
) {
892 if (copy_from_user(&area
, (void __user
*)arg
,
893 sizeof(struct dloarea
)))
897 * If we have a damage-aware client, turn fb_defio "off"
898 * To avoid perf imact of unnecessary page fault handling.
899 * Done by resetting the delay for this fb_info to a very
900 * long period. Pages will become writable and stay that way.
901 * Reset to normal value when all clients have closed this fb.
904 info
->fbdefio
->delay
= DL_DEFIO_WRITE_DISABLE
;
909 if (area
.x
> info
->var
.xres
)
910 area
.x
= info
->var
.xres
;
915 if (area
.y
> info
->var
.yres
)
916 area
.y
= info
->var
.yres
;
918 dlfb_handle_damage(dlfb
, area
.x
, area
.y
, area
.w
, area
.h
);
924 /* taken from vesafb */
926 dlfb_ops_setcolreg(unsigned regno
, unsigned red
, unsigned green
,
927 unsigned blue
, unsigned transp
, struct fb_info
*info
)
931 if (regno
>= info
->cmap
.len
)
935 if (info
->var
.red
.offset
== 10) {
937 ((u32
*) (info
->pseudo_palette
))[regno
] =
938 ((red
& 0xf800) >> 1) |
939 ((green
& 0xf800) >> 6) | ((blue
& 0xf800) >> 11);
942 ((u32
*) (info
->pseudo_palette
))[regno
] =
944 ((green
& 0xfc00) >> 5) | ((blue
& 0xf800) >> 11);
952 * It's common for several clients to have framebuffer open simultaneously.
953 * e.g. both fbcon and X. Makes things interesting.
954 * Assumes caller is holding info->lock (for open and release at least)
956 static int dlfb_ops_open(struct fb_info
*info
, int user
)
958 struct dlfb_data
*dlfb
= info
->par
;
961 * fbcon aggressively connects to first framebuffer it finds,
962 * preventing other clients (X) from working properly. Usually
963 * not what the user wants. Fail by default with option to enable.
965 if ((user
== 0) && (!console
))
968 /* If the USB device is gone, we don't accept new opens */
969 if (dlfb
->virtualized
)
974 if (fb_defio
&& (info
->fbdefio
== NULL
)) {
975 /* enable defio at last moment if not disabled by client */
977 struct fb_deferred_io
*fbdefio
;
979 fbdefio
= kzalloc(sizeof(struct fb_deferred_io
), GFP_KERNEL
);
982 fbdefio
->delay
= DL_DEFIO_WRITE_DELAY
;
983 fbdefio
->deferred_io
= dlfb_dpy_deferred_io
;
986 info
->fbdefio
= fbdefio
;
987 fb_deferred_io_init(info
);
990 dev_dbg(info
->dev
, "open, user=%d fb_info=%p count=%d\n",
991 user
, info
, dlfb
->fb_count
);
996 static void dlfb_ops_destroy(struct fb_info
*info
)
998 struct dlfb_data
*dlfb
= info
->par
;
1000 cancel_work_sync(&dlfb
->damage_work
);
1002 mutex_destroy(&dlfb
->render_mutex
);
1004 if (info
->cmap
.len
!= 0)
1005 fb_dealloc_cmap(&info
->cmap
);
1006 if (info
->monspecs
.modedb
)
1007 fb_destroy_modedb(info
->monspecs
.modedb
);
1008 vfree(info
->screen_base
);
1010 fb_destroy_modelist(&info
->modelist
);
1012 while (!list_empty(&dlfb
->deferred_free
)) {
1013 struct dlfb_deferred_free
*d
= list_entry(dlfb
->deferred_free
.next
, struct dlfb_deferred_free
, list
);
1018 vfree(dlfb
->backing_buffer
);
1020 usb_put_dev(dlfb
->udev
);
1023 /* Assume info structure is freed after this point */
1024 framebuffer_release(info
);
1028 * Assumes caller is holding info->lock mutex (for open and release at least)
1030 static int dlfb_ops_release(struct fb_info
*info
, int user
)
1032 struct dlfb_data
*dlfb
= info
->par
;
1036 if ((dlfb
->fb_count
== 0) && (info
->fbdefio
)) {
1037 fb_deferred_io_cleanup(info
);
1038 kfree(info
->fbdefio
);
1039 info
->fbdefio
= NULL
;
1042 dev_dbg(info
->dev
, "release, user=%d count=%d\n", user
, dlfb
->fb_count
);
1048 * Check whether a video mode is supported by the DisplayLink chip
1049 * We start from monitor's modes, so don't need to filter that here
1051 static int dlfb_is_valid_mode(struct fb_videomode
*mode
, struct dlfb_data
*dlfb
)
1053 if (mode
->xres
* mode
->yres
> dlfb
->sku_pixel_limit
)
1059 static void dlfb_var_color_format(struct fb_var_screeninfo
*var
)
1061 const struct fb_bitfield red
= { 11, 5, 0 };
1062 const struct fb_bitfield green
= { 5, 6, 0 };
1063 const struct fb_bitfield blue
= { 0, 5, 0 };
1065 var
->bits_per_pixel
= 16;
1071 static int dlfb_ops_check_var(struct fb_var_screeninfo
*var
,
1072 struct fb_info
*info
)
1074 struct fb_videomode mode
;
1075 struct dlfb_data
*dlfb
= info
->par
;
1077 /* set device-specific elements of var unrelated to mode */
1078 dlfb_var_color_format(var
);
1080 fb_var_to_videomode(&mode
, var
);
1082 if (!dlfb_is_valid_mode(&mode
, dlfb
))
1088 static int dlfb_ops_set_par(struct fb_info
*info
)
1090 struct dlfb_data
*dlfb
= info
->par
;
1092 u16
*pix_framebuffer
;
1094 struct fb_var_screeninfo fvs
;
1095 u32 line_length
= info
->var
.xres
* (info
->var
.bits_per_pixel
/ 8);
1097 /* clear the activate field because it causes spurious miscompares */
1100 fvs
.vmode
&= ~FB_VMODE_SMOOTH_XPAN
;
1102 if (!memcmp(&dlfb
->current_mode
, &fvs
, sizeof(struct fb_var_screeninfo
)))
1105 result
= dlfb_realloc_framebuffer(dlfb
, info
, info
->var
.yres
* line_length
);
1109 result
= dlfb_set_video_mode(dlfb
, &info
->var
);
1114 dlfb
->current_mode
= fvs
;
1115 info
->fix
.line_length
= line_length
;
1117 if (dlfb
->fb_count
== 0) {
1119 /* paint greenscreen */
1121 pix_framebuffer
= (u16
*) info
->screen_base
;
1122 for (i
= 0; i
< info
->fix
.smem_len
/ 2; i
++)
1123 pix_framebuffer
[i
] = 0x37e6;
1126 dlfb_handle_damage(dlfb
, 0, 0, info
->var
.xres
, info
->var
.yres
);
1131 /* To fonzi the jukebox (e.g. make blanking changes take effect) */
1132 static char *dlfb_dummy_render(char *buf
)
1135 *buf
++ = 0x6A; /* copy */
1136 *buf
++ = 0x00; /* from address*/
1139 *buf
++ = 0x01; /* one pixel */
1140 *buf
++ = 0x00; /* to address */
1147 * In order to come back from full DPMS off, we need to set the mode again
1149 static int dlfb_ops_blank(int blank_mode
, struct fb_info
*info
)
1151 struct dlfb_data
*dlfb
= info
->par
;
1155 dev_dbg(info
->dev
, "blank, mode %d --> %d\n",
1156 dlfb
->blank_mode
, blank_mode
);
1158 if ((dlfb
->blank_mode
== FB_BLANK_POWERDOWN
) &&
1159 (blank_mode
!= FB_BLANK_POWERDOWN
)) {
1161 /* returning from powerdown requires a fresh modeset */
1162 dlfb_set_video_mode(dlfb
, &info
->var
);
1165 urb
= dlfb_get_urb(dlfb
);
1169 bufptr
= (char *) urb
->transfer_buffer
;
1170 bufptr
= dlfb_vidreg_lock(bufptr
);
1171 bufptr
= dlfb_blanking(bufptr
, blank_mode
);
1172 bufptr
= dlfb_vidreg_unlock(bufptr
);
1174 /* seems like a render op is needed to have blank change take effect */
1175 bufptr
= dlfb_dummy_render(bufptr
);
1177 dlfb_submit_urb(dlfb
, urb
, bufptr
-
1178 (char *) urb
->transfer_buffer
);
1180 dlfb
->blank_mode
= blank_mode
;
1185 static const struct fb_ops dlfb_ops
= {
1186 .owner
= THIS_MODULE
,
1187 .fb_read
= fb_sys_read
,
1188 .fb_write
= dlfb_ops_write
,
1189 .fb_setcolreg
= dlfb_ops_setcolreg
,
1190 .fb_fillrect
= dlfb_ops_fillrect
,
1191 .fb_copyarea
= dlfb_ops_copyarea
,
1192 .fb_imageblit
= dlfb_ops_imageblit
,
1193 .fb_mmap
= dlfb_ops_mmap
,
1194 .fb_ioctl
= dlfb_ops_ioctl
,
1195 .fb_open
= dlfb_ops_open
,
1196 .fb_release
= dlfb_ops_release
,
1197 .fb_blank
= dlfb_ops_blank
,
1198 .fb_check_var
= dlfb_ops_check_var
,
1199 .fb_set_par
= dlfb_ops_set_par
,
1200 .fb_destroy
= dlfb_ops_destroy
,
1204 static void dlfb_deferred_vfree(struct dlfb_data
*dlfb
, void *mem
)
1206 struct dlfb_deferred_free
*d
= kmalloc(sizeof(struct dlfb_deferred_free
), GFP_KERNEL
);
1210 list_add(&d
->list
, &dlfb
->deferred_free
);
1214 * Assumes &info->lock held by caller
1215 * Assumes no active clients have framebuffer open
1217 static int dlfb_realloc_framebuffer(struct dlfb_data
*dlfb
, struct fb_info
*info
, u32 new_len
)
1219 u32 old_len
= info
->fix
.smem_len
;
1220 const void *old_fb
= (const void __force
*)info
->screen_base
;
1221 unsigned char *new_fb
;
1222 unsigned char *new_back
= NULL
;
1224 new_len
= PAGE_ALIGN(new_len
);
1226 if (new_len
> old_len
) {
1228 * Alloc system memory for virtual framebuffer
1230 new_fb
= vmalloc(new_len
);
1232 dev_err(info
->dev
, "Virtual framebuffer alloc failed\n");
1235 memset(new_fb
, 0xff, new_len
);
1237 if (info
->screen_base
) {
1238 memcpy(new_fb
, old_fb
, old_len
);
1239 dlfb_deferred_vfree(dlfb
, (void __force
*)info
->screen_base
);
1242 info
->screen_base
= (char __iomem
*)new_fb
;
1243 info
->fix
.smem_len
= new_len
;
1244 info
->fix
.smem_start
= (unsigned long) new_fb
;
1245 info
->flags
= udlfb_info_flags
;
1248 * Second framebuffer copy to mirror the framebuffer state
1249 * on the physical USB device. We can function without this.
1250 * But with imperfect damage info we may send pixels over USB
1251 * that were, in fact, unchanged - wasting limited USB bandwidth
1254 new_back
= vzalloc(new_len
);
1257 "No shadow/backing buffer allocated\n");
1259 dlfb_deferred_vfree(dlfb
, dlfb
->backing_buffer
);
1260 dlfb
->backing_buffer
= new_back
;
1267 * 1) Get EDID from hw, or use sw default
1268 * 2) Parse into various fb_info structs
1269 * 3) Allocate virtual framebuffer memory to back highest res mode
1271 * Parses EDID into three places used by various parts of fbdev:
1272 * fb_var_screeninfo contains the timing of the monitor's preferred mode
1273 * fb_info.monspecs is full parsed EDID info, including monspecs.modedb
1274 * fb_info.modelist is a linked list of all monitor & VESA modes which work
1276 * If EDID is not readable/valid, then modelist is all VESA modes,
1277 * monspecs is NULL, and fb_var_screeninfo is set to safe VESA mode
1278 * Returns 0 if successful
1280 static int dlfb_setup_modes(struct dlfb_data
*dlfb
,
1281 struct fb_info
*info
,
1282 char *default_edid
, size_t default_edid_size
)
1285 int i
, result
= 0, tries
= 3;
1286 struct device
*dev
= info
->device
;
1287 struct fb_videomode
*mode
;
1288 const struct fb_videomode
*default_vmode
= NULL
;
1291 /* only use mutex if info has been registered */
1292 mutex_lock(&info
->lock
);
1293 /* parent device is used otherwise */
1297 edid
= kmalloc(EDID_LENGTH
, GFP_KERNEL
);
1303 fb_destroy_modelist(&info
->modelist
);
1304 memset(&info
->monspecs
, 0, sizeof(info
->monspecs
));
1307 * Try to (re)read EDID from hardware first
1308 * EDID data may return, but not parse as valid
1309 * Try again a few times, in case of e.g. analog cable noise
1313 i
= dlfb_get_edid(dlfb
, edid
, EDID_LENGTH
);
1315 if (i
>= EDID_LENGTH
)
1316 fb_edid_to_monspecs(edid
, &info
->monspecs
);
1318 if (info
->monspecs
.modedb_len
> 0) {
1320 dlfb
->edid_size
= i
;
1325 /* If that fails, use a previously returned EDID if available */
1326 if (info
->monspecs
.modedb_len
== 0) {
1327 dev_err(dev
, "Unable to get valid EDID from device/display\n");
1330 fb_edid_to_monspecs(dlfb
->edid
, &info
->monspecs
);
1331 if (info
->monspecs
.modedb_len
> 0)
1332 dev_err(dev
, "Using previously queried EDID\n");
1336 /* If that fails, use the default EDID we were handed */
1337 if (info
->monspecs
.modedb_len
== 0) {
1338 if (default_edid_size
>= EDID_LENGTH
) {
1339 fb_edid_to_monspecs(default_edid
, &info
->monspecs
);
1340 if (info
->monspecs
.modedb_len
> 0) {
1341 memcpy(edid
, default_edid
, default_edid_size
);
1343 dlfb
->edid_size
= default_edid_size
;
1344 dev_err(dev
, "Using default/backup EDID\n");
1349 /* If we've got modes, let's pick a best default mode */
1350 if (info
->monspecs
.modedb_len
> 0) {
1352 for (i
= 0; i
< info
->monspecs
.modedb_len
; i
++) {
1353 mode
= &info
->monspecs
.modedb
[i
];
1354 if (dlfb_is_valid_mode(mode
, dlfb
)) {
1355 fb_add_videomode(mode
, &info
->modelist
);
1357 dev_dbg(dev
, "Specified mode %dx%d too big\n",
1358 mode
->xres
, mode
->yres
);
1360 /* if we've removed top/best mode */
1362 &= ~FB_MISC_1ST_DETAIL
;
1366 default_vmode
= fb_find_best_display(&info
->monspecs
,
1370 /* If everything else has failed, fall back to safe default mode */
1371 if (default_vmode
== NULL
) {
1373 struct fb_videomode fb_vmode
= {0};
1376 * Add the standard VESA modes to our modelist
1377 * Since we don't have EDID, there may be modes that
1378 * overspec monitor and/or are incorrect aspect ratio, etc.
1379 * But at least the user has a chance to choose
1381 for (i
= 0; i
< VESA_MODEDB_SIZE
; i
++) {
1382 mode
= (struct fb_videomode
*)&vesa_modes
[i
];
1383 if (dlfb_is_valid_mode(mode
, dlfb
))
1384 fb_add_videomode(mode
, &info
->modelist
);
1386 dev_dbg(dev
, "VESA mode %dx%d too big\n",
1387 mode
->xres
, mode
->yres
);
1391 * default to resolution safe for projectors
1392 * (since they are most common case without EDID)
1394 fb_vmode
.xres
= 800;
1395 fb_vmode
.yres
= 600;
1396 fb_vmode
.refresh
= 60;
1397 default_vmode
= fb_find_nearest_mode(&fb_vmode
,
1401 /* If we have good mode and no active clients*/
1402 if ((default_vmode
!= NULL
) && (dlfb
->fb_count
== 0)) {
1404 fb_videomode_to_var(&info
->var
, default_vmode
);
1405 dlfb_var_color_format(&info
->var
);
1408 * with mode size info, we can now alloc our framebuffer.
1410 memcpy(&info
->fix
, &dlfb_fix
, sizeof(dlfb_fix
));
1415 if (edid
&& (dlfb
->edid
!= edid
))
1419 mutex_unlock(&info
->lock
);
1424 static ssize_t
metrics_bytes_rendered_show(struct device
*fbdev
,
1425 struct device_attribute
*a
, char *buf
) {
1426 struct fb_info
*fb_info
= dev_get_drvdata(fbdev
);
1427 struct dlfb_data
*dlfb
= fb_info
->par
;
1428 return snprintf(buf
, PAGE_SIZE
, "%u\n",
1429 atomic_read(&dlfb
->bytes_rendered
));
1432 static ssize_t
metrics_bytes_identical_show(struct device
*fbdev
,
1433 struct device_attribute
*a
, char *buf
) {
1434 struct fb_info
*fb_info
= dev_get_drvdata(fbdev
);
1435 struct dlfb_data
*dlfb
= fb_info
->par
;
1436 return snprintf(buf
, PAGE_SIZE
, "%u\n",
1437 atomic_read(&dlfb
->bytes_identical
));
1440 static ssize_t
metrics_bytes_sent_show(struct device
*fbdev
,
1441 struct device_attribute
*a
, char *buf
) {
1442 struct fb_info
*fb_info
= dev_get_drvdata(fbdev
);
1443 struct dlfb_data
*dlfb
= fb_info
->par
;
1444 return snprintf(buf
, PAGE_SIZE
, "%u\n",
1445 atomic_read(&dlfb
->bytes_sent
));
1448 static ssize_t
metrics_cpu_kcycles_used_show(struct device
*fbdev
,
1449 struct device_attribute
*a
, char *buf
) {
1450 struct fb_info
*fb_info
= dev_get_drvdata(fbdev
);
1451 struct dlfb_data
*dlfb
= fb_info
->par
;
1452 return snprintf(buf
, PAGE_SIZE
, "%u\n",
1453 atomic_read(&dlfb
->cpu_kcycles_used
));
1456 static ssize_t
edid_show(
1458 struct kobject
*kobj
, struct bin_attribute
*a
,
1459 char *buf
, loff_t off
, size_t count
) {
1460 struct device
*fbdev
= kobj_to_dev(kobj
);
1461 struct fb_info
*fb_info
= dev_get_drvdata(fbdev
);
1462 struct dlfb_data
*dlfb
= fb_info
->par
;
1464 if (dlfb
->edid
== NULL
)
1467 if ((off
>= dlfb
->edid_size
) || (count
> dlfb
->edid_size
))
1470 if (off
+ count
> dlfb
->edid_size
)
1471 count
= dlfb
->edid_size
- off
;
1473 memcpy(buf
, dlfb
->edid
, count
);
1478 static ssize_t
edid_store(
1480 struct kobject
*kobj
, struct bin_attribute
*a
,
1481 char *src
, loff_t src_off
, size_t src_size
) {
1482 struct device
*fbdev
= kobj_to_dev(kobj
);
1483 struct fb_info
*fb_info
= dev_get_drvdata(fbdev
);
1484 struct dlfb_data
*dlfb
= fb_info
->par
;
1487 /* We only support write of entire EDID at once, no offset*/
1488 if ((src_size
!= EDID_LENGTH
) || (src_off
!= 0))
1491 ret
= dlfb_setup_modes(dlfb
, fb_info
, src
, src_size
);
1495 if (!dlfb
->edid
|| memcmp(src
, dlfb
->edid
, src_size
))
1498 ret
= dlfb_ops_set_par(fb_info
);
1505 static ssize_t
metrics_reset_store(struct device
*fbdev
,
1506 struct device_attribute
*attr
,
1507 const char *buf
, size_t count
)
1509 struct fb_info
*fb_info
= dev_get_drvdata(fbdev
);
1510 struct dlfb_data
*dlfb
= fb_info
->par
;
1512 atomic_set(&dlfb
->bytes_rendered
, 0);
1513 atomic_set(&dlfb
->bytes_identical
, 0);
1514 atomic_set(&dlfb
->bytes_sent
, 0);
1515 atomic_set(&dlfb
->cpu_kcycles_used
, 0);
1520 static const struct bin_attribute edid_attr
= {
1521 .attr
.name
= "edid",
1523 .size
= EDID_LENGTH
,
1528 static const struct device_attribute fb_device_attrs
[] = {
1529 __ATTR_RO(metrics_bytes_rendered
),
1530 __ATTR_RO(metrics_bytes_identical
),
1531 __ATTR_RO(metrics_bytes_sent
),
1532 __ATTR_RO(metrics_cpu_kcycles_used
),
1533 __ATTR(metrics_reset
, S_IWUSR
, NULL
, metrics_reset_store
),
1537 * This is necessary before we can communicate with the display controller.
1539 static int dlfb_select_std_channel(struct dlfb_data
*dlfb
)
1543 static const u8 set_def_chn
[] = {
1544 0x57, 0xCD, 0xDC, 0xA7,
1545 0x1C, 0x88, 0x5E, 0x15,
1546 0x60, 0xFE, 0xC6, 0x97,
1547 0x16, 0x3D, 0x47, 0xF2 };
1549 buf
= kmemdup(set_def_chn
, sizeof(set_def_chn
), GFP_KERNEL
);
1554 ret
= usb_control_msg(dlfb
->udev
, usb_sndctrlpipe(dlfb
->udev
, 0),
1555 NR_USB_REQUEST_CHANNEL
,
1556 (USB_DIR_OUT
| USB_TYPE_VENDOR
), 0, 0,
1557 buf
, sizeof(set_def_chn
), USB_CTRL_SET_TIMEOUT
);
1564 static int dlfb_parse_vendor_descriptor(struct dlfb_data
*dlfb
,
1565 struct usb_interface
*intf
)
1572 buf
= kzalloc(MAX_VENDOR_DESCRIPTOR_SIZE
, GFP_KERNEL
);
1577 total_len
= usb_get_descriptor(interface_to_usbdev(intf
),
1578 0x5f, /* vendor specific */
1579 0, desc
, MAX_VENDOR_DESCRIPTOR_SIZE
);
1581 /* if not found, look in configuration descriptor */
1582 if (total_len
< 0) {
1583 if (0 == usb_get_extra_descriptor(intf
->cur_altsetting
,
1585 total_len
= (int) desc
[0];
1588 if (total_len
> 5) {
1589 dev_info(&intf
->dev
,
1590 "vendor descriptor length: %d data: %11ph\n",
1593 if ((desc
[0] != total_len
) || /* descriptor length */
1594 (desc
[1] != 0x5f) || /* vendor descriptor type */
1595 (desc
[2] != 0x01) || /* version (2 bytes) */
1596 (desc
[3] != 0x00) ||
1597 (desc
[4] != total_len
- 2)) /* length after type */
1600 desc_end
= desc
+ total_len
;
1601 desc
+= 5; /* the fixed header we've already parsed */
1603 while (desc
< desc_end
) {
1608 key
|= (u16
)*desc
++ << 8;
1612 case 0x0200: { /* max_area */
1613 u32 max_area
= *desc
++;
1614 max_area
|= (u32
)*desc
++ << 8;
1615 max_area
|= (u32
)*desc
++ << 16;
1616 max_area
|= (u32
)*desc
++ << 24;
1617 dev_warn(&intf
->dev
,
1618 "DL chip limited to %d pixel modes\n",
1620 dlfb
->sku_pixel_limit
= max_area
;
1629 dev_info(&intf
->dev
, "vendor descriptor not available (%d)\n",
1636 /* allow udlfb to load for now even if firmware unrecognized */
1637 dev_err(&intf
->dev
, "Unrecognized vendor firmware descriptor\n");
1644 static int dlfb_usb_probe(struct usb_interface
*intf
,
1645 const struct usb_device_id
*id
)
1648 const struct device_attribute
*attr
;
1649 struct dlfb_data
*dlfb
;
1650 struct fb_info
*info
;
1651 int retval
= -ENOMEM
;
1652 struct usb_device
*usbdev
= interface_to_usbdev(intf
);
1654 /* usb initialization */
1655 dlfb
= kzalloc(sizeof(*dlfb
), GFP_KERNEL
);
1657 dev_err(&intf
->dev
, "%s: failed to allocate dlfb\n", __func__
);
1661 INIT_LIST_HEAD(&dlfb
->deferred_free
);
1663 dlfb
->udev
= usb_get_dev(usbdev
);
1664 usb_set_intfdata(intf
, dlfb
);
1666 dev_dbg(&intf
->dev
, "console enable=%d\n", console
);
1667 dev_dbg(&intf
->dev
, "fb_defio enable=%d\n", fb_defio
);
1668 dev_dbg(&intf
->dev
, "shadow enable=%d\n", shadow
);
1670 dlfb
->sku_pixel_limit
= 2048 * 1152; /* default to maximum */
1672 if (!dlfb_parse_vendor_descriptor(dlfb
, intf
)) {
1674 "firmware not recognized, incompatible device?\n");
1679 dev_warn(&intf
->dev
,
1680 "DL chip limit of %d overridden to %d\n",
1681 dlfb
->sku_pixel_limit
, pixel_limit
);
1682 dlfb
->sku_pixel_limit
= pixel_limit
;
1686 /* allocates framebuffer driver structure, not framebuffer memory */
1687 info
= framebuffer_alloc(0, &dlfb
->udev
->dev
);
1693 info
->pseudo_palette
= dlfb
->pseudo_palette
;
1694 dlfb
->ops
= dlfb_ops
;
1695 info
->fbops
= &dlfb
->ops
;
1697 mutex_init(&dlfb
->render_mutex
);
1698 dlfb_init_damage(dlfb
);
1699 spin_lock_init(&dlfb
->damage_lock
);
1700 INIT_WORK(&dlfb
->damage_work
, dlfb_damage_work
);
1702 INIT_LIST_HEAD(&info
->modelist
);
1704 if (!dlfb_alloc_urb_list(dlfb
, WRITES_IN_FLIGHT
, MAX_TRANSFER
)) {
1706 dev_err(&intf
->dev
, "unable to allocate urb list\n");
1710 /* We don't register a new USB class. Our client interface is dlfbev */
1712 retval
= fb_alloc_cmap(&info
->cmap
, 256, 0);
1714 dev_err(info
->device
, "cmap allocation failed: %d\n", retval
);
1718 retval
= dlfb_setup_modes(dlfb
, info
, NULL
, 0);
1720 dev_err(info
->device
,
1721 "unable to find common mode for display and adapter\n");
1725 /* ready to begin using device */
1727 atomic_set(&dlfb
->usb_active
, 1);
1728 dlfb_select_std_channel(dlfb
);
1730 dlfb_ops_check_var(&info
->var
, info
);
1731 retval
= dlfb_ops_set_par(info
);
1735 retval
= register_framebuffer(info
);
1737 dev_err(info
->device
, "unable to register framebuffer: %d\n",
1742 for (i
= 0; i
< ARRAY_SIZE(fb_device_attrs
); i
++) {
1743 attr
= &fb_device_attrs
[i
];
1744 retval
= device_create_file(info
->dev
, attr
);
1746 dev_warn(info
->device
,
1747 "failed to create '%s' attribute: %d\n",
1748 attr
->attr
.name
, retval
);
1751 retval
= device_create_bin_file(info
->dev
, &edid_attr
);
1753 dev_warn(info
->device
, "failed to create '%s' attribute: %d\n",
1754 edid_attr
.attr
.name
, retval
);
1756 dev_info(info
->device
,
1757 "%s is DisplayLink USB device (%dx%d, %dK framebuffer memory)\n",
1758 dev_name(info
->dev
), info
->var
.xres
, info
->var
.yres
,
1759 ((dlfb
->backing_buffer
) ?
1760 info
->fix
.smem_len
* 2 : info
->fix
.smem_len
) >> 10);
1765 dlfb_ops_destroy(dlfb
->info
);
1767 usb_put_dev(dlfb
->udev
);
1773 static void dlfb_usb_disconnect(struct usb_interface
*intf
)
1775 struct dlfb_data
*dlfb
;
1776 struct fb_info
*info
;
1779 dlfb
= usb_get_intfdata(intf
);
1782 dev_dbg(&intf
->dev
, "USB disconnect starting\n");
1784 /* we virtualize until all fb clients release. Then we free */
1785 dlfb
->virtualized
= true;
1787 /* When non-active we'll update virtual framebuffer, but no new urbs */
1788 atomic_set(&dlfb
->usb_active
, 0);
1790 /* this function will wait for all in-flight urbs to complete */
1791 dlfb_free_urb_list(dlfb
);
1793 /* remove udlfb's sysfs interfaces */
1794 for (i
= 0; i
< ARRAY_SIZE(fb_device_attrs
); i
++)
1795 device_remove_file(info
->dev
, &fb_device_attrs
[i
]);
1796 device_remove_bin_file(info
->dev
, &edid_attr
);
1798 unregister_framebuffer(info
);
1801 static struct usb_driver dlfb_driver
= {
1803 .probe
= dlfb_usb_probe
,
1804 .disconnect
= dlfb_usb_disconnect
,
1805 .id_table
= id_table
,
1808 module_usb_driver(dlfb_driver
);
1810 static void dlfb_urb_completion(struct urb
*urb
)
1812 struct urb_node
*unode
= urb
->context
;
1813 struct dlfb_data
*dlfb
= unode
->dlfb
;
1814 unsigned long flags
;
1816 switch (urb
->status
) {
1823 /* sync/async unlink faults aren't errors */
1826 dev_err(&dlfb
->udev
->dev
,
1827 "%s - nonzero write bulk status received: %d\n",
1828 __func__
, urb
->status
);
1829 atomic_set(&dlfb
->lost_pixels
, 1);
1833 urb
->transfer_buffer_length
= dlfb
->urbs
.size
; /* reset to actual */
1835 spin_lock_irqsave(&dlfb
->urbs
.lock
, flags
);
1836 list_add_tail(&unode
->entry
, &dlfb
->urbs
.list
);
1837 dlfb
->urbs
.available
++;
1838 spin_unlock_irqrestore(&dlfb
->urbs
.lock
, flags
);
1840 up(&dlfb
->urbs
.limit_sem
);
1843 static void dlfb_free_urb_list(struct dlfb_data
*dlfb
)
1845 int count
= dlfb
->urbs
.count
;
1846 struct list_head
*node
;
1847 struct urb_node
*unode
;
1850 /* keep waiting and freeing, until we've got 'em all */
1852 down(&dlfb
->urbs
.limit_sem
);
1854 spin_lock_irq(&dlfb
->urbs
.lock
);
1856 node
= dlfb
->urbs
.list
.next
; /* have reserved one with sem */
1857 list_del_init(node
);
1859 spin_unlock_irq(&dlfb
->urbs
.lock
);
1861 unode
= list_entry(node
, struct urb_node
, entry
);
1864 /* Free each separately allocated piece */
1865 usb_free_coherent(urb
->dev
, dlfb
->urbs
.size
,
1866 urb
->transfer_buffer
, urb
->transfer_dma
);
1871 dlfb
->urbs
.count
= 0;
1874 static int dlfb_alloc_urb_list(struct dlfb_data
*dlfb
, int count
, size_t size
)
1877 struct urb_node
*unode
;
1879 size_t wanted_size
= count
* size
;
1881 spin_lock_init(&dlfb
->urbs
.lock
);
1884 dlfb
->urbs
.size
= size
;
1885 INIT_LIST_HEAD(&dlfb
->urbs
.list
);
1887 sema_init(&dlfb
->urbs
.limit_sem
, 0);
1888 dlfb
->urbs
.count
= 0;
1889 dlfb
->urbs
.available
= 0;
1891 while (dlfb
->urbs
.count
* size
< wanted_size
) {
1892 unode
= kzalloc(sizeof(*unode
), GFP_KERNEL
);
1897 urb
= usb_alloc_urb(0, GFP_KERNEL
);
1904 buf
= usb_alloc_coherent(dlfb
->udev
, size
, GFP_KERNEL
,
1905 &urb
->transfer_dma
);
1909 if (size
> PAGE_SIZE
) {
1911 dlfb_free_urb_list(dlfb
);
1917 /* urb->transfer_buffer_length set to actual before submit */
1918 usb_fill_bulk_urb(urb
, dlfb
->udev
, usb_sndbulkpipe(dlfb
->udev
, 1),
1919 buf
, size
, dlfb_urb_completion
, unode
);
1920 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1922 list_add_tail(&unode
->entry
, &dlfb
->urbs
.list
);
1924 up(&dlfb
->urbs
.limit_sem
);
1926 dlfb
->urbs
.available
++;
1929 return dlfb
->urbs
.count
;
1932 static struct urb
*dlfb_get_urb(struct dlfb_data
*dlfb
)
1935 struct list_head
*entry
;
1936 struct urb_node
*unode
;
1938 /* Wait for an in-flight buffer to complete and get re-queued */
1939 ret
= down_timeout(&dlfb
->urbs
.limit_sem
, GET_URB_TIMEOUT
);
1941 atomic_set(&dlfb
->lost_pixels
, 1);
1942 dev_warn(&dlfb
->udev
->dev
,
1943 "wait for urb interrupted: %d available: %d\n",
1944 ret
, dlfb
->urbs
.available
);
1948 spin_lock_irq(&dlfb
->urbs
.lock
);
1950 BUG_ON(list_empty(&dlfb
->urbs
.list
)); /* reserved one with limit_sem */
1951 entry
= dlfb
->urbs
.list
.next
;
1952 list_del_init(entry
);
1953 dlfb
->urbs
.available
--;
1955 spin_unlock_irq(&dlfb
->urbs
.lock
);
1957 unode
= list_entry(entry
, struct urb_node
, entry
);
1961 static int dlfb_submit_urb(struct dlfb_data
*dlfb
, struct urb
*urb
, size_t len
)
1965 BUG_ON(len
> dlfb
->urbs
.size
);
1967 urb
->transfer_buffer_length
= len
; /* set to actual payload len */
1968 ret
= usb_submit_urb(urb
, GFP_KERNEL
);
1970 dlfb_urb_completion(urb
); /* because no one else will */
1971 atomic_set(&dlfb
->lost_pixels
, 1);
1972 dev_err(&dlfb
->udev
->dev
, "submit urb error: %d\n", ret
);
1977 module_param(console
, bool, S_IWUSR
| S_IRUSR
| S_IWGRP
| S_IRGRP
);
1978 MODULE_PARM_DESC(console
, "Allow fbcon to open framebuffer");
1980 module_param(fb_defio
, bool, S_IWUSR
| S_IRUSR
| S_IWGRP
| S_IRGRP
);
1981 MODULE_PARM_DESC(fb_defio
, "Page fault detection of mmap writes");
1983 module_param(shadow
, bool, S_IWUSR
| S_IRUSR
| S_IWGRP
| S_IRGRP
);
1984 MODULE_PARM_DESC(shadow
, "Shadow vid mem. Disable to save mem but lose perf");
1986 module_param(pixel_limit
, int, S_IWUSR
| S_IRUSR
| S_IWGRP
| S_IRGRP
);
1987 MODULE_PARM_DESC(pixel_limit
, "Force limit on max mode (in x*y pixels)");
1989 MODULE_AUTHOR("Roberto De Ioris <roberto@unbit.it>, "
1990 "Jaya Kumar <jayakumar.lkml@gmail.com>, "
1991 "Bernie Thompson <bernie@plugable.com>");
1992 MODULE_DESCRIPTION("DisplayLink kernel framebuffer driver");
1993 MODULE_LICENSE("GPL");