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.

Linux/AM5726: Configuring debug UART in MLO

Part Number: AM5726

Tool/software: Linux

I'm trying to set the debug uart in MLO after changing the am57xx-idk-common.dtsi file to contain

chosen {

    stdout-path = &uart2;

}

&uart2 {

    status = "okay";

}

In serial_find_console_or_panic(), I end up with fdtdec_get_chosen_node(blob, "stdout-path") == -1

I do see the device tree code trying to match "serial@4806c000" but I have not yet figured out what else I am missing.

Please advise