[PATCH v1 4/4] colibri-imx8x: enable i.MX specific SNVS configuration

2024-08-07 Thread max . oss . 09
From: Andrejs Cainikovs commit 242d1cd69b9f ("imx8: Configure SNVS") implemented IMX_SNVS_SEC_SC. Enable it. Signed-off-by: Andrejs Cainikovs Signed-off-by: Max Krummenacher --- configs/colibri-imx8x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/colibri-imx8x_defconf

[PATCH v1 2/4] apalis-imx8: enable i.MX specific BOOTAUX

2024-08-07 Thread max . oss . 09
From: Andrejs Cainikovs commit e8cd1f60d964 ("imx: imx8: bootaux: Add i.MX8 M4 boot support") implemented IMX_BOOTAUX. Enable it. Signed-off-by: Andrejs Cainikovs Signed-off-by: Max Krummenacher --- configs/apalis-imx8_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/apa

[PATCH v1 3/4] colibri-imx8x: enable i.MX specific BOOTAUX

2024-08-07 Thread max . oss . 09
From: Andrejs Cainikovs commit e8cd1f60d964 ("imx: imx8: bootaux: Add i.MX8 M4 boot support") implemented IMX_BOOTAUX. Enable it. Signed-off-by: Andrejs Cainikovs Signed-off-by: Max Krummenacher --- configs/colibri-imx8x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/c

[PATCH v1 1/4] board: apalis-imx8: add reset code

2024-08-07 Thread max . oss . 09
From: Andrejs Cainikovs With commit 922d4504bcab ("imx: scu_api: update to version 1.16 and add more APIs") added the reboot API. Add the board code to use that. Signed-off-by: Andrejs Cainikovs Signed-off-by: Max Krummenacher --- board/toradex/apalis-imx8/apalis-imx8.c | 8 1 file

[PATCH v1 0/4] apalis/colibri imx8: enable additional features

2024-08-07 Thread max . oss . 09
From: Max Krummenacher Enable and use additional features which have been added to U-Boot on the Apalis iMX8QM / Colibri iMX8X boards. Andrejs Cainikovs (4): board: apalis-imx8: add reset code apalis-imx8: enable i.MX specific BOOTAUX colibri-imx8x: enable i.MX specific BOOTAUX colibr

[PATCH] imx: imx8: fix build when CONFIG_IMX_BOOTAUX is set

2024-08-07 Thread max . oss . 09
From: Max Krummenacher Use correct function name. Fixes: e8cd1f60d964 ("imx: imx8: bootaux: Add i.MX8 M4 boot support") Signed-off-by: Max Krummenacher --- arch/arm/mach-imx/imx8/cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-imx/imx8/cpu.c b/arch/

[PATCH] headers: don't depend on errno.h being available

2024-01-18 Thread max . oss . 09
From: Max Krummenacher These headers follow the pattern: | #if CONFIG_IS_ENABLED(FANCY_FEATURE) | void foo(void); | #else | static inline void foo(void) { return -ENOSYS; } | #endif In the #else path ENOSYS is used, however linux/errno.h is not included. If errno.h has not been included alr