This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM5728: Add entry in device for Custom AM5728 Board

Part Number: AM5728


Tool/software:

Hi,

In our custom Am5728 board ,In our new board we have added uart 8 for RS-485 .

So How can add entry this uart_8 in device tree(dts file) ?.

like configuration reg, interrupts ,clock.

example is below.

serial2: serial@4806C000 /* rs485 */
{
compatible = "ti,am5-uart";
reg = <0x4806C000 0x1000>;
interrupts = <105 0 4>;
clocks = <&uart2_gfclk_mux>;
clock-names = "uart2_gfclk_mux";
pinmux-0 = <&uart2_pads>;
};

Also, explain each configuration parameter brief how to add in future.