All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Kiszka <jan.kiszka@siemens.com>
To: Heinrich Schuchardt <xypron.glpk@gmx.de>
Cc: U-Boot Mailing List <u-boot@lists.denx.de>,
	Ilias Apalodimas <ilias.apalodimas@linaro.org>
Subject: Re: [PATCH v3 2/3] efi_loader: Set default console colors on efi_cout_clear_screen if needed
Date: Mon, 7 Nov 2022 19:05:21 +0100	[thread overview]
Message-ID: <ad77bd2e-37d1-be7b-221d-056bdd86e8d0@siemens.com> (raw)
In-Reply-To: <e9a6d005-40a0-7924-8850-f612d97cf792@gmx.de>

On 07.11.22 18:06, Heinrich Schuchardt wrote:
> On 11/4/22 09:06, Jan Kiszka wrote:
>> From: Jan Kiszka <jan.kiszka@siemens.com>
>>
>> Ensures a consistent background color of the whole screen for succeeding
>> outputs as both demanded by the spec and implemented in EDK2 as well.
> 
> To which sentence in the UEFI 2.10 spec are you relating?
> 

12.4:

"EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.ClearScreen()

Clears the output device(s) display to the currently selected background
color."

That generally works - except for this default case.

>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>>   lib/efi_loader/efi_console.c | 6 ++++++
>>   1 file changed, 6 insertions(+)
>>
>> diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c
>> index 6ce0fcc168d..4228a509caf 100644
>> --- a/lib/efi_loader/efi_console.c
>> +++ b/lib/efi_loader/efi_console.c
>> @@ -495,6 +495,12 @@ static efi_status_t EFIAPI efi_cout_clear_screen(
>>   {
>>       EFI_ENTRY("%p", this);
>>
>> +    /* Set default colors if not done yet */
>> +    if (efi_con_mode.attribute == 0) {
>> +        efi_con_mode.attribute = 0x07;
>> +        printf(ESC "[0;37;40m");
> 
> These values are correct for CONFIG_SYS_WHITE_ON_BLACK=y. But for
> CONFIG_SYS_WHITE_ON_BLACK=n I would expect black letters on white as
> default.
> 
> This requires adding support background color values 100 - 107 (cf.
> https://en.wikipedia.org/w/index.php?title=ANSI_escape_code&section=15#3-bit_and_4-bit)
> in vidconsole_escape_char().
> 
> UEFI background color white should be translated to 107 if
> CONFIG_SYS_WHITE_ON_BLACK=n.

I don't think we handle CONFIG_SYS_WHITE_ON_BLACK=n in UEFI so far. It
likely requires translating all colors that apps so far select.
Otherwise, you will end up with white-on-EFI_WHITE.

> 
> It seems this patch is trying to solve a problem caused by patch 1 of
> the series. Or do I miss something?

Not at all, problem persists if you drop that patch. I've accidentally
accounted to "efi_loader: avoid EFI_CALL() for clearing screen", see
https://lore.kernel.org/u-boot/532ff3e2-06ba-3a3e-5cf9-2f4a9b7abb8c@siemens.com/
for a screen shot.

Jan

-- 
Siemens AG, Technology
Competence Center Embedded Linux


  reply	other threads:[~2022-11-07 18:05 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-04  8:06 [PATCH v3 0/3] efi_loader: console and network dependency improvements Jan Kiszka
2022-11-04  8:06 ` [PATCH v3 1/3] efi_loader: Avoid overwriting previous outputs on console screen clearing Jan Kiszka
2022-11-04 19:08   ` Simon Glass
2022-11-07 13:50     ` Jan Kiszka
2022-11-07 15:28       ` Simon Glass
2022-11-07 16:13         ` Heinrich Schuchardt
2022-11-07 17:32           ` Simon Glass
2022-11-07 17:55             ` Heinrich Schuchardt
2022-11-07 16:29   ` Heinrich Schuchardt
2022-11-07 16:41     ` Jan Kiszka
2022-11-07 17:18       ` Heinrich Schuchardt
2022-11-07 18:27         ` Jan Kiszka
2022-11-04  8:06 ` [PATCH v3 2/3] efi_loader: Set default console colors on efi_cout_clear_screen if needed Jan Kiszka
2022-11-07 17:00   ` Jan Kiszka
2022-11-07 17:06   ` Heinrich Schuchardt
2022-11-07 18:05     ` Jan Kiszka [this message]
2022-11-04  8:06 ` [PATCH v3 3/3] efi_loader: Let networking support depend on NETDEVICES Jan Kiszka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ad77bd2e-37d1-be7b-221d-056bdd86e8d0@siemens.com \
    --to=jan.kiszka@siemens.com \
    --cc=ilias.apalodimas@linaro.org \
    --cc=u-boot@lists.denx.de \
    --cc=xypron.glpk@gmx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.