Thanks @AldoG ,
For the response, i.MX93 EVK uses LPUART1 as default console port, but as my custom board is configured for LPUART8. I need to change my console from LPUART1 to LPUART8 and check in Header J1001. For that the modifications I had done:
u-boot-imx:
- Added lpuart8 node and disabled lpuart1 along with iomux.
- changed "console=ttyLP7,115200 earlycon\0" \ from ttyLP0" in /configs/imx93_evk.h file.
- Added
static iomux_v3_cfg_t const uart_pads[] = {
// MX93_PAD_UART1_RXD__LPUART1_RX | MUX_PAD_CTRL(UART_PAD_CTRL),
// MX93_PAD_UART1_TXD__LPUART1_TX | MUX_PAD_CTRL(UART_PAD_CTRL),
MX93_PAD_GPIO_IO13__LPUART8_RX | MUX_PAD_CTRL(UART_PAD_CTRL),
MX93_PAD_GPIO_IO12__LPUART8_TX | MUX_PAD_CTRL(UART_PAD_CTRL),
}; in /imx93_evk/imx93_evk.c file.
linux-imx:
Added lpuart8 node and disabled lpuart1 along with iomux.
imx-atf:
changed IMX_LPUART_BASE U(0x426a0000) from U(0x44380000) in /include/platform_def.h file.
meta-fresscale:
changed SERIAL_CONSOLES = "115200;ttyLP7" in /conf/machine/imx93-11x11-lpddr4x-evk.conf which includes header /conf/machine/include/imx93-evk.inc file.
optee-os:
changed set(CFG_UART_BASE UART1_BASE) to set(CFG_UART_BASE UART8_BASE).
For more info add zip folder which contains images of changes done. Please go through it and let me know update.
Thanks
Robbi
Thanks
Robbi