Re: [PATCH v2 1/2] bootm: replace CONFIG_BOOTM_FORCE_SIGNED_IMAGES with helper

2024-04-09 Thread Sascha Hauer
On Mon, 08 Apr 2024 16:31:30 +0200, Marco Felsch wrote: > In preparation for allowing even CONFIG_BOOTM_FORCE_SIGNED_IMAGES=n > configurations to force boot of only signed images, replace direct > use of IS_ENABLED(CONFIG_BOOTM_FORCE_SIGNED_IMAGES) with a helper that > queries a static variable t

Re: [PATCH] mci: sdhci: fix dma mapping

2024-04-09 Thread Sascha Hauer
On Mon, 08 Apr 2024 18:31:01 +0200, Marco Felsch wrote: > In case of MMC_DATA_READ the dest address should be used and in case of > MMC_DATA_WRITE the src address should be used. We had no issues for now > since both dest and src point to same address due to the union. > > Applied, thanks! [1

Re: [PATCH] mci: arasan: rework register_sdclk

2024-04-09 Thread Sascha Hauer
On Tue, Apr 09, 2024 at 07:57:20AM +0200, Steffen Trumtrar wrote: > Instead of guarding this at compile time, always call register_sdclk > with the correct clk_ops, like in linux. > > Currently only ZynqMP and default arasan ops are supported. > > Signed-off-by: Steffen Trumtrar > --- > Instead

Re: [PATCH] mci: arasan: rework register_sdclk

2024-04-09 Thread Sascha Hauer
On Tue, 09 Apr 2024 07:57:20 +0200, Steffen Trumtrar wrote: > Instead of guarding this at compile time, always call register_sdclk > with the correct clk_ops, like in linux. > > Currently only ZynqMP and default arasan ops are supported. > > Applied, thanks! [1/1] mci: arasan: rework registe

Re: [PATCH] gpio: Add Intel gpio controller support

2024-04-09 Thread Ahmad Fatoum
Hello Tomas, On 09.04.24 09:14, Tomas Marek wrote: > Signed-off-by: Tomas Marek Thanks for your patch. I have a soft spot for barebox-as-efi-payload, so it's cool to see you contributing new features. It also makes me curious what more drivers are you intending to contribute. :-) Some review b

[PATCH] gpio: Add Intel gpio controller support

2024-04-09 Thread Tomas Marek
Signed-off-by: Tomas Marek --- drivers/gpio/Kconfig | 5 + drivers/gpio/Makefile | 1 + drivers/gpio/gpio-intel.c | 198 + include/platform_data/gpio-intel.h | 10 ++ 4 files changed, 214 insertions(+) create mode 100644 driver