[PATCH] arm: dts: imx8mm_evk: Fix PMIC definition

2023-09-26 Thread Alexander Koch
ase):rel_imx_5.4.70_2.3.6-0-g15e8ff164 NOTICE: BL31: Built : 13:51:09, Sep 4 2023 Fix by re-applying the device tree changes from 4c07a21e5. Signed-off-by: Alexander Koch --- arch/arm/dts/imx8mm-evk-u-boot.dtsi | 4 +- arch/arm/dts/imx8mm-evk.dtsi| 126 ++

Using secondary UART for board initialization

2024-11-12 Thread Alexander Koch
Hi all, I need to write to (and read from) a UART during board initialization that is not the same UART the U-Boot serial console is running on. I'm using CONFIG_DM_SERIAL so I've extended my .dts to enable the additional UART (including pinmux registers). In my board init code I can find the ser

Re: Using secondary UART for board initialization

2024-11-13 Thread Alexander Koch
> All `serial_putc()`-like functions that I could find are either static to the > actual driver and thus not accessible from `board_init()` or do not accept a > `struct udevice *` as a parameter and seem to work on the main U-Boot serial > console device only. Reading other board code I think I ha