From 2bc892cf56acbce5d76f3a0c50908b44f8dc49a6 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Tue, 1 Jan 2019 22:28:47 +0100 Subject: libgfxinit: Add options to limit framebuffer size Add maximum width and height options and set the default to 2560x1600 (WQXGA). The framebuffer will be scaled up to the displays' native resolutions. So this should help with tiny fonts on high-DPI displays. For laptops, reasonable defaults can be set at the mainboard level. Change-Id: I47fba063629260c3a2854caf7a73f1a1e933d063 Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/c/30585 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons Reviewed-by: Patrick Georgi --- src/device/Kconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/device') diff --git a/src/device/Kconfig b/src/device/Kconfig index 85f1d65719..b90b15f6b3 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -445,6 +445,22 @@ config LINEAR_FRAMEBUFFER def_bool y depends on VBE_LINEAR_FRAMEBUFFER || GENERIC_LINEAR_FRAMEBUFFER +config LINEAR_FRAMEBUFFER_MAX_WIDTH + int "Maximum width in pixels" + depends on LINEAR_FRAMEBUFFER && MAINBOARD_USE_LIBGFXINIT + default 2560 + help + Set the maximum width of the framebuffer. This may help with + default fonts too tiny for high-resolution displays. + +config LINEAR_FRAMEBUFFER_MAX_HEIGHT + int "Maximum height in pixels" + depends on LINEAR_FRAMEBUFFER && MAINBOARD_USE_LIBGFXINIT + default 1600 + help + Set the maximum height of the framebuffer. This may help with + default fonts too tiny for high-resolution displays. + endmenu # "Display" config SMBUS_HAS_AUX_CHANNELS -- cgit v1.2.3