Hi,
I'm currently working on imx8mmini SoM where im trying to communicate with an external M7 controller throught uart1(/dev/ttymxc0).
This is my dt node:
uart1: serial@30860000 {
compatible = "fsl,imx8mm-uart", "fsl,imx6q-uart";
reg = <0x30860000 0x10000>;
interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&clk IMX8MM_CLK_UART1_ROOT>,
<&clk IMX8MM_CLK_UART1_ROOT>;
clock-names = "ipg", "per";
dmas = <&sdma1 22 4 0>, <&sdma1 23 4 0>;
dma-names = "rx", "tx";
status = "disabled";
};
I have enabled the dt node on my custom dts file.
1. How can i enable the idle line detection for my UART1 ?
2.How can i set the ICD frame as 16 frames ?

Any help on the above problem would be appreciated
Thankyou