[PATCH] spi: fsl_qspi: Move AHB read buffer config after LUT

2025-04-24 Thread Pawel Kochanowski
iour (hang) untill first 'sf read' op is executed. Move the BFGENCR write to fsl_qspi_prepare_lut() to ensure that the setup is consistent. AHB reads will use the default LUT(index 0) setup by previous boot stage untill the first read op. Signed-off-by: Pawel Kochanowski --- drivers

[PATCH] crypto: fsl - Add cache flush after job descriptor swap

2025-04-13 Thread Pawel Kochanowski
On devices with CONFIG_SYS_FSL_SEC_BE an endianess swap is done before sending descriptor to SEC/CAAM engine. A cache flush needs to be performed to ensure that the updated descriptor is taken into account. Signed-off-by: Pawel Kochanowski --- drivers/crypto/fsl/jr.c | 11 +-- 1 file

[PATCH] crypto: fsl - Fix RNG generation for lengths greater than 16 bytes

2025-04-07 Thread Pawel Kochanowski
Signed-off-by: Pawel Kochanowski --- drivers/crypto/fsl/rng.c | 14 ++ 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/drivers/crypto/fsl/rng.c b/drivers/crypto/fsl/rng.c index 06364948052..440b26e3c94 100644 --- a/drivers/crypto/fsl/rng.c +++ b/drivers/crypto/fsl/rng.c

[PATCH v2] efi: Make FDT extra space configurable

2025-03-18 Thread Pawel Kochanowski
potential corruption when resizing FDT after EFI boot, especially when firmware like FMAN requires additional space. Signed-off-by: Gabriel Nesteruk Signed-off-by: Pawel Kochanowski --- Changes since version 1: - Removed custom CONFIG_FDT_EXTRA_SPACE in favor of already present SYS_FDT_PAD - Use the

[PATCH] efi: Make FDT extra space configurable

2025-02-10 Thread Pawel Kochanowski
amount of extra space reserved for FDT expansion. The default remains 0x3000. This change prevents potential corruption when resizing FDT after EFI boot, especially when firmware like FMAN requires additional space. Signed-off-by: Gabriel Nesteruk Signed-off-by: Pawel Kochanowski --- lib/efi_loader