Part Number: AM5728
Tool/software: Linux
Hi, All
I need to use uart7 to communicate with external devices, but my uart7 is not work.
The device tree has been configured as follows:
+&uart7 {
+ status = "okay";
+
+ pinctrl-names = "default";
+ pinctrl-0 = <&uart7_pins_default>;
+};
&dra7_pmx_core {
...
+ uart7_pins_default: uart7_pins_default {
+ pinctrl-single,pins = <
+ DRA7XX_CORE_IOPAD(0x34E4, PIN_INPUT_PULLUP | MUX_MODE5) /* uart7 rx AD9*/
+ DRA7XX_CORE_IOPAD(0x34E8, PIN_OUTPUT_PULLUP | MUX_MODE5) /* uart7 tx AF9*/
+ >;
+ };
};
Did I have any missing configuration?
BTW: Uart3 has interrupts-extended configuration. Does uart7 need this configuration? If yes how should I configure the parameters?
&uart3 {
status = "okay";
interrupts-extended = <&crossbar_mpu GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>,
<&dra7_pmx_core 0x3f8>;
};
Peter
Thanks