Skip to content

Commit 1148836

Browse files
hdellerdanvet
authored andcommitted
Revert "fbdev: Garbage collect fbdev scrolling acceleration, part 1 (from TODO list)"
This reverts commit b3ec8cd. Revert the second (of 2) commits which disabled scrolling acceleration in fbcon/fbdev. It introduced a regression for fbdev-supported graphic cards because of the performance penalty by doing screen scrolling by software instead of using the existing graphic card 2D hardware acceleration. Console scrolling acceleration was disabled by dropping code which checked at runtime the driver hardware capabilities for the BINFO_HWACCEL_COPYAREA or FBINFO_HWACCEL_FILLRECT flags and if set, it enabled scrollmode SCROLL_MOVE which uses hardware acceleration to move screen contents. After dropping those checks scrollmode was hard-wired to SCROLL_REDRAW instead, which forces all graphic cards to redraw every character at the new screen position when scrolling. This change effectively disabled all hardware-based scrolling acceleration for ALL drivers, because now all kind of 2D hardware acceleration (bitblt, fillrect) in the drivers isn't used any longer. The original commit message mentions that only 3 DRM drivers (nouveau, omapdrm and gma500) used hardware acceleration in the past and thus code for checking and using scrolling acceleration is obsolete. This statement is NOT TRUE, because beside the DRM drivers there are around 35 other fbdev drivers which depend on fbdev/fbcon and still provide hardware acceleration for fbdev/fbcon. The original commit message also states that syzbot found lots of bugs in fbcon and thus it's "often the solution to just delete code and remove features". This is true, and the bugs - which actually affected all users of fbcon, including DRM - were fixed, or code was dropped like e.g. the support for software scrollback in vgacon (commit 973c096). So to further analyze which bugs were found by syzbot, I've looked through all patches in drivers/video which were tagged with syzbot or syzkaller back to year 2005. The vast majority fixed the reported issues on a higher level, e.g. when screen is to be resized, or when font size is to be changed. The few ones which touched driver code fixed a real driver bug, e.g. by adding a check. But NONE of those patches touched code of either the SCROLL_MOVE or the SCROLL_REDRAW case. That means, there was no real reason why SCROLL_MOVE had to be ripped-out and just SCROLL_REDRAW had to be used instead. The only reason I can imagine so far was that SCROLL_MOVE wasn't used by DRM and as such it was assumed that it could go away. That argument completely missed the fact that SCROLL_MOVE is still heavily used by fbdev (non-DRM) drivers. Some people mention that using memcpy() instead of the hardware acceleration is pretty much the same speed. But that's not true, at least not for older graphic cards and machines where we see speed decreases by factor 10 and more and thus this change leads to console responsiveness way worse than before. That's why the original commit is to be reverted. By reverting we reintroduce hardware-based scrolling acceleration and fix the performance regression for fbdev drivers. There isn't any impact on DRM when reverting those patches. Signed-off-by: Helge Deller <[email protected]> Acked-by: Geert Uytterhoeven <[email protected]> Acked-by: Sven Schnelle <[email protected]> Cc: [email protected] # v5.16+ Signed-off-by: Helge Deller <[email protected]> Signed-off-by: Daniel Vetter <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 92c4cfa commit 1148836

File tree

11 files changed

+678
-51
lines changed

11 files changed

+678
-51
lines changed

Documentation/gpu/todo.rst

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -303,19 +303,16 @@ Level: Advanced
303303
Garbage collect fbdev scrolling acceleration
304304
--------------------------------------------
305305

306-
Scroll acceleration has been disabled in fbcon. Now it works as the old
307-
SCROLL_REDRAW mode. A ton of code was removed in fbcon.c and the hook bmove was
308-
removed from fbcon_ops.
309-
Remaining tasks:
306+
Scroll acceleration is disabled in fbcon by hard-wiring p->scrollmode =
307+
SCROLL_REDRAW. There's a ton of code this will allow us to remove:
310308

311-
- a bunch of the hooks in fbcon_ops could be removed or simplified by calling
309+
- lots of code in fbcon.c
310+
311+
- a bunch of the hooks in fbcon_ops, maybe the remaining hooks could be called
312312
directly instead of the function table (with a switch on p->rotate)
313313

314314
- fb_copyarea is unused after this, and can be deleted from all drivers
315315

316-
- after that, fb_copyarea can be deleted from fb_ops in include/linux/fb.h as
317-
well as cfb_copyarea
318-
319316
Note that not all acceleration code can be deleted, since clearing and cursor
320317
support is still accelerated, which might be good candidates for further
321318
deletion projects.

drivers/video/fbdev/core/bitblit.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,21 @@ static void update_attr(u8 *dst, u8 *src, int attribute,
4343
}
4444
}
4545

46+
static void bit_bmove(struct vc_data *vc, struct fb_info *info, int sy,
47+
int sx, int dy, int dx, int height, int width)
48+
{
49+
struct fb_copyarea area;
50+
51+
area.sx = sx * vc->vc_font.width;
52+
area.sy = sy * vc->vc_font.height;
53+
area.dx = dx * vc->vc_font.width;
54+
area.dy = dy * vc->vc_font.height;
55+
area.height = height * vc->vc_font.height;
56+
area.width = width * vc->vc_font.width;
57+
58+
info->fbops->fb_copyarea(info, &area);
59+
}
60+
4661
static void bit_clear(struct vc_data *vc, struct fb_info *info, int sy,
4762
int sx, int height, int width)
4863
{
@@ -378,6 +393,7 @@ static int bit_update_start(struct fb_info *info)
378393

379394
void fbcon_set_bitops(struct fbcon_ops *ops)
380395
{
396+
ops->bmove = bit_bmove;
381397
ops->clear = bit_clear;
382398
ops->putcs = bit_putcs;
383399
ops->clear_margins = bit_clear_margins;

0 commit comments

Comments
 (0)