mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org, Ahmad Fatoum <a.fatoum@barebox.org>
Subject: Re: [PATCH 00/15] efi: loader preparatory patches
Date: Mon, 02 Jun 2025 14:24:56 +0200	[thread overview]
Message-ID: <174886709677.925768.2958517538502623435.b4-ty@pengutronix.de> (raw)
In-Reply-To: <20250527212300.575031-1-a.fatoum@barebox.org>


On Tue, 27 May 2025 23:22:45 +0200, Ahmad Fatoum wrote:
> A random collection of patches in preparation for EFI loader support.
> 
> Ahmad Fatoum (15):
>   lib: wchar: add wide char string comparison functions
>   ARM: select HW_HAS_PCI architecture wide
>   efi: types: define efi_char16_t as wchar_t
>   efi: types: document efi_physical_addr_t being always 64-bit
>   efi: payload: early-mem: EFI_ALLOCATE_ANY_PAGES on non-x86
>   string: implement kmemdup_nul
>   efi: types: implement efi_phys_to_virt/efi_virt_to_phys helpers
>   efi: return pointer from efi_earlymem_alloc
>   efi: payload: image: use new efi_phys_to_virt helper
>   efi: payload: iomem: use virt_start if set
>   efi: use size_t for UINTN array sizes instead of unsigned long
>   efi: payload: unify duplicate code in ifdef
>   efi: payload: use efi_virt_to_phys instead of pointer to u64 casts
>   clocksource: efi: use DIV_ROUND_DOWN_ULL for 64-bit devision
>   efi: payload: use ktime_to_us to avoid plain 64-bit division
> 
> [...]

Applied, thanks!

[01/15] lib: wchar: add wide char string comparison functions
        https://git.pengutronix.de/cgit/barebox/commit/?id=0dce3af7da6e (link may not be stable)
[02/15] ARM: select HW_HAS_PCI architecture wide
        https://git.pengutronix.de/cgit/barebox/commit/?id=fc027c51b187 (link may not be stable)
[03/15] efi: types: define efi_char16_t as wchar_t
        https://git.pengutronix.de/cgit/barebox/commit/?id=7ed44975bf0e (link may not be stable)
[04/15] efi: types: document efi_physical_addr_t being always 64-bit
        https://git.pengutronix.de/cgit/barebox/commit/?id=6612845bb188 (link may not be stable)
[05/15] efi: payload: early-mem: EFI_ALLOCATE_ANY_PAGES on non-x86
        https://git.pengutronix.de/cgit/barebox/commit/?id=6094ad7b6001 (link may not be stable)
[06/15] string: implement kmemdup_nul
        https://git.pengutronix.de/cgit/barebox/commit/?id=dffbd63f6d79 (link may not be stable)
[07/15] efi: types: implement efi_phys_to_virt/efi_virt_to_phys helpers
        https://git.pengutronix.de/cgit/barebox/commit/?id=d403f30c3563 (link may not be stable)
[08/15] efi: return pointer from efi_earlymem_alloc
        https://git.pengutronix.de/cgit/barebox/commit/?id=c72620d46e1f (link may not be stable)
[09/15] efi: payload: image: use new efi_phys_to_virt helper
        https://git.pengutronix.de/cgit/barebox/commit/?id=99ef8b4f5845 (link may not be stable)
[10/15] efi: payload: iomem: use virt_start if set
        https://git.pengutronix.de/cgit/barebox/commit/?id=418b05b292b6 (link may not be stable)
[11/15] efi: use size_t for UINTN array sizes instead of unsigned long
        https://git.pengutronix.de/cgit/barebox/commit/?id=0f729d87d754 (link may not be stable)
[12/15] efi: payload: unify duplicate code in ifdef
        https://git.pengutronix.de/cgit/barebox/commit/?id=e15ef61066c3 (link may not be stable)
[13/15] efi: payload: use efi_virt_to_phys instead of pointer to u64 casts
        https://git.pengutronix.de/cgit/barebox/commit/?id=32d47f04fcfb (link may not be stable)
[14/15] clocksource: efi: use DIV_ROUND_DOWN_ULL for 64-bit devision
        https://git.pengutronix.de/cgit/barebox/commit/?id=cc8b33296a67 (link may not be stable)
[15/15] efi: payload: use ktime_to_us to avoid plain 64-bit division
        https://git.pengutronix.de/cgit/barebox/commit/?id=194148f70564 (link may not be stable)

Best regards,
-- 
Sascha Hauer <s.hauer@pengutronix.de>




      parent reply	other threads:[~2025-06-02 12:33 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-27 21:22 Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 01/15] lib: wchar: add wide char string comparison functions Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 02/15] ARM: select HW_HAS_PCI architecture wide Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 03/15] efi: types: define efi_char16_t as wchar_t Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 04/15] efi: types: document efi_physical_addr_t being always 64-bit Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 05/15] efi: payload: early-mem: EFI_ALLOCATE_ANY_PAGES on non-x86 Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 06/15] string: implement kmemdup_nul Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 07/15] efi: types: implement efi_phys_to_virt/efi_virt_to_phys helpers Ahmad Fatoum
2025-06-02 12:13   ` Sascha Hauer
2025-06-02 12:14     ` Ahmad Fatoum
2025-06-02 12:25       ` Sascha Hauer
2025-05-27 21:22 ` [PATCH 08/15] efi: return pointer from efi_earlymem_alloc Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 09/15] efi: payload: image: use new efi_phys_to_virt helper Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 10/15] efi: payload: iomem: use virt_start if set Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 11/15] efi: use size_t for UINTN array sizes instead of unsigned long Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 12/15] efi: payload: unify duplicate code in ifdef Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 13/15] efi: payload: use efi_virt_to_phys instead of pointer to u64 casts Ahmad Fatoum
2025-05-27 21:22 ` [PATCH 14/15] clocksource: efi: use DIV_ROUND_DOWN_ULL for 64-bit devision Ahmad Fatoum
2025-05-27 21:23 ` [PATCH 15/15] efi: payload: use ktime_to_us to avoid plain 64-bit division Ahmad Fatoum
2025-06-02 12:24 ` Sascha Hauer [this message]

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=174886709677.925768.2958517538502623435.b4-ty@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=a.fatoum@barebox.org \
    --cc=barebox@lists.infradead.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox