]> git.baikalelectronics.ru Git - kernel.git/commit
fbcon: Fix accelerated fbdev scrolling while logo is still shown
authorHelge Deller <deller@gmx.de>
Thu, 2 Jun 2022 20:08:38 +0000 (22:08 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 12:22:51 +0000 (14:22 +0200)
commitbbf739a05296272def0e7511f989627ffbaf801a
tree6c10b8985fd4bbd73835375d61c7718995882b24
parenta7a2026105dd42d315b4501b4ff33349b8534627
fbcon: Fix accelerated fbdev scrolling while logo is still shown

commit bafa55f81888c443e18bb6e577244850b3d8018e upstream.

There is no need to directly skip over to the SCROLL_REDRAW case while
the logo is still shown.

When using DRM, this change has no effect because the code will reach
the SCROLL_REDRAW case immediately anyway.

But if you run an accelerated fbdev driver and have
FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION enabled, console scrolling is
slowed down by factors so that it feels as if you use a 9600 baud
terminal.

So, drop those unnecessary checks and speed up fbdev console
acceleration during bootup.

Cc: stable@vger.kernel.org # v5.10+
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Helge Deller <deller@gmx.de>
Link: https://patchwork.freedesktop.org/patch/msgid/YpkYxk7wsBPx3po+@p100
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/video/fbdev/core/fbcon.c