Blame SOURCES/0004-MdeModulePkg-TerminalDxe-add-other-text-resolutions-.patch

be6997
From 83f28ee21b44c881c793bae51a9bf84dcb17304f Mon Sep 17 00:00:00 2001
7439a5
From: Laszlo Ersek <lersek@redhat.com>
7439a5
Date: Tue, 25 Feb 2014 18:40:35 +0100
7439a5
Subject: MdeModulePkg: TerminalDxe: add other text resolutions (RHEL only)
7439a5
be6997
Notes for rebase to edk2-stable202202:
be6997
be6997
- Minor context changes due to 1436aea4d MdeModulePkg: Apply uncrustify changes
be6997
7439a5
Notes about the RHEL-8.3/20200603-ca407c7246bf [edk2-stable202005] ->
7439a5
RHEL-8.5/20210520-e1999b264f1f [edk2-stable202105] rebase:
7439a5
7439a5
- no change
7439a5
7439a5
Notes about the RHEL-8.2/20190904-37eef91017ad [edk2-stable201908] ->
7439a5
RHEL-8.3/20200603-ca407c7246bf [edk2-stable202005] rebase:
7439a5
7439a5
- no changes
7439a5
7439a5
Notes about the RHEL-8.1/20190308-89910a39dcfd [edk2-stable201903] ->
7439a5
RHEL-8.2/20190904-37eef91017ad [edk2-stable201908] rebase:
7439a5
7439a5
- no changes
7439a5
7439a5
Notes about the RHEL-8.0/20180508-ee3198e672e2 ->
7439a5
RHEL-8.1/20190308-89910a39dcfd rebase:
7439a5
7439a5
- no change
7439a5
7439a5
Notes about the RHEL-7.6/ovmf-20180508-2.gitee3198e672e2.el7 ->
7439a5
RHEL-8.0/20180508-ee3198e672e2 rebase:
7439a5
7439a5
- reorder the rebase changelog in the commit message so that it reads like
7439a5
  a blog: place more recent entries near the top
7439a5
- no changes to the patch body
7439a5
7439a5
Notes about the 20171011-92d07e48907f -> 20180508-ee3198e672e2 rebase:
7439a5
7439a5
- update commit message as requested in
7439a5
  <https://bugzilla.redhat.com/show_bug.cgi?id=1503316#c0>
7439a5
7439a5
Notes about the 20170228-c325e41585e3 -> 20171011-92d07e48907f rebase:
7439a5
7439a5
- no changes
7439a5
7439a5
Notes about the 20160608b-988715a -> 20170228-c325e41585e3 rebase:
7439a5
7439a5
- adapt commit 0bc77c63de03 (code and commit message) to upstream commit
7439a5
  390b95a49c14 ("MdeModulePkg/TerminalDxe: Refine
7439a5
  InitializeTerminalConsoleTextMode", 2017-01-10).
7439a5
7439a5
When the console output is multiplexed to several devices by
7439a5
ConSplitterDxe, then ConSplitterDxe builds an intersection of text modes
7439a5
supported by all console output devices.
7439a5
7439a5
Two notable output devices are provided by:
7439a5
(1) MdeModulePkg/Universal/Console/GraphicsConsoleDxe,
7439a5
(2) MdeModulePkg/Universal/Console/TerminalDxe.
7439a5
7439a5
GraphicsConsoleDxe supports four modes at most -- see
7439a5
InitializeGraphicsConsoleTextMode() and "mGraphicsConsoleModeData":
7439a5
7439a5
(1a) 80x25 (required by the UEFI spec as mode 0),
7439a5
(1b) 80x50 (not necessarily supported, but if it is, then the UEFI spec
7439a5
     requires the driver to provide it as mode 1),
7439a5
(1c) 100x31 (corresponding to graphics resolution 800x600, which the UEFI
7439a5
     spec requires from all plug-in graphics devices),
7439a5
(1d) "full screen" resolution, derived form the underlying GOP's
7439a5
     horizontal and vertical resolutions with division by EFI_GLYPH_WIDTH
7439a5
     (8) and EFI_GLYPH_HEIGHT (19), respectively.
7439a5
7439a5
The automatic "full screen resolution" makes GraphicsConsoleDxe's
7439a5
character console very flexible. However, TerminalDxe (which runs on
7439a5
serial ports) only provides the following fixed resolutions -- see
7439a5
InitializeTerminalConsoleTextMode() and "mTerminalConsoleModeData":
7439a5
7439a5
(2a) 80x25 (required by the UEFI spec as mode 0),
7439a5
(2b) 80x50 (since the character resolution of a serial device cannot be
7439a5
     interrogated easily, this is added unconditionally as mode 1),
7439a5
(2c) 100x31 (since the character resolution of a serial device cannot be
7439a5
     interrogated easily, this is added unconditionally as mode 2).
7439a5
7439a5
When ConSplitterDxe combines (1) and (2), multiplexing console output to
7439a5
both video output and serial terminal, the list of commonly supported text
7439a5
modes (ie. the "intersection") comprises:
7439a5
7439a5
(3a) 80x25, unconditionally, from (1a) and (2a),
7439a5
(3b) 80x50, if the graphics console provides at least 640x950 pixel
7439a5
     resolution, from (1b) and (2b)
7439a5
(3c) 100x31, if the graphics device is a plug-in one (because in that case
7439a5
     800x600 is a mandated pixel resolution), from (1c) and (2c).
7439a5
7439a5
Unfortunately, the "full screen resolution" (1d) of the GOP-based text
7439a5
console is not available in general.
7439a5
7439a5
Mitigate this problem by extending "mTerminalConsoleModeData" with a
7439a5
handful of text resolutions that are derived from widespread maximal pixel
7439a5
resolutions. This way TerminalDxe won't cause ConSplitterDxe to filter out
7439a5
the most frequent (1d) values from the intersection, and eg. the MODE
7439a5
command in the UEFI shell will offer the "best" (ie. full screen)
7439a5
resolution too.
7439a5
7439a5
Upstreaming efforts for this patch have been discontinued; it was clear
7439a5
from the off-list thread that consensus was impossible to reach.
7439a5
7439a5
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
7439a5
(cherry picked from commit 99dc3720ac86059f60156197328cc433603c536e)
7439a5
(cherry picked from commit d2066c1748f885043026c51dec1bc8d6d406ae8f)
7439a5
(cherry picked from commit 1facdd58e946c584a3dc1e5be8f2f837b5a7c621)
7439a5
(cherry picked from commit 28faeb5f94b4866b9da16cf2a1e4e0fc09a26e37)
7439a5
(cherry picked from commit 4e4e15b80a5b2103eadd495ef4a830d46dd4ed51)
7439a5
(cherry picked from commit 12cb13a1da913912bd9148ce8f2353a75be77f18)
7439a5
(cherry picked from commit 82b9edc5fef3a07227a45059bbe821af7b9abd69)
7439a5
---
7439a5
 .../Universal/Console/TerminalDxe/Terminal.c  | 41 +++++++++++++++++--
7439a5
 1 file changed, 38 insertions(+), 3 deletions(-)
7439a5
7439a5
diff --git a/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c b/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c
be6997
index e2d779c783..dfd9c96773 100644
7439a5
--- a/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c
7439a5
+++ b/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c
be6997
@@ -112,9 +112,44 @@ TERMINAL_DEV  mTerminalDevTemplate = {
7439a5
 };
7439a5
 
be6997
 TERMINAL_CONSOLE_MODE_DATA  mTerminalConsoleModeData[] = {
be6997
-  { 80,  25 },
be6997
-  { 80,  50 },
be6997
-  { 100, 31 },
7439a5
+  {   80,  25 }, // from graphics resolution  640 x  480
7439a5
+  {   80,  50 }, // from graphics resolution  640 x  960
7439a5
+  {  100,  25 }, // from graphics resolution  800 x  480
7439a5
+  {  100,  31 }, // from graphics resolution  800 x  600
7439a5
+  {  104,  32 }, // from graphics resolution  832 x  624
7439a5
+  {  120,  33 }, // from graphics resolution  960 x  640
7439a5
+  {  128,  31 }, // from graphics resolution 1024 x  600
7439a5
+  {  128,  40 }, // from graphics resolution 1024 x  768
7439a5
+  {  144,  45 }, // from graphics resolution 1152 x  864
7439a5
+  {  144,  45 }, // from graphics resolution 1152 x  870
7439a5
+  {  160,  37 }, // from graphics resolution 1280 x  720
7439a5
+  {  160,  40 }, // from graphics resolution 1280 x  760
7439a5
+  {  160,  40 }, // from graphics resolution 1280 x  768
7439a5
+  {  160,  42 }, // from graphics resolution 1280 x  800
7439a5
+  {  160,  50 }, // from graphics resolution 1280 x  960
7439a5
+  {  160,  53 }, // from graphics resolution 1280 x 1024
7439a5
+  {  170,  40 }, // from graphics resolution 1360 x  768
7439a5
+  {  170,  40 }, // from graphics resolution 1366 x  768
7439a5
+  {  175,  55 }, // from graphics resolution 1400 x 1050
7439a5
+  {  180,  47 }, // from graphics resolution 1440 x  900
7439a5
+  {  200,  47 }, // from graphics resolution 1600 x  900
7439a5
+  {  200,  63 }, // from graphics resolution 1600 x 1200
7439a5
+  {  210,  55 }, // from graphics resolution 1680 x 1050
7439a5
+  {  240,  56 }, // from graphics resolution 1920 x 1080
7439a5
+  {  240,  63 }, // from graphics resolution 1920 x 1200
7439a5
+  {  240,  75 }, // from graphics resolution 1920 x 1440
7439a5
+  {  250, 105 }, // from graphics resolution 2000 x 2000
7439a5
+  {  256,  80 }, // from graphics resolution 2048 x 1536
7439a5
+  {  256, 107 }, // from graphics resolution 2048 x 2048
7439a5
+  {  320,  75 }, // from graphics resolution 2560 x 1440
7439a5
+  {  320,  84 }, // from graphics resolution 2560 x 1600
7439a5
+  {  320, 107 }, // from graphics resolution 2560 x 2048
7439a5
+  {  350, 110 }, // from graphics resolution 2800 x 2100
7439a5
+  {  400, 126 }, // from graphics resolution 3200 x 2400
7439a5
+  {  480, 113 }, // from graphics resolution 3840 x 2160
7439a5
+  {  512, 113 }, // from graphics resolution 4096 x 2160
7439a5
+  {  960, 227 }, // from graphics resolution 7680 x 4320
7439a5
+  { 1024, 227 }, // from graphics resolution 8192 x 4320
7439a5
   //
7439a5
   // New modes can be added here.
7439a5
   //
7439a5
-- 
be6997
2.31.1
7439a5