Other Parts Discussed in Thread: PMP
Tool/software:
Hi All,
Custom Board : Based Ti sitara AM5728
OS version :VxWorks 21.07.
I'm facing issue with configuring Uart1 on Custom board.
I have been added its property in dts file as below,
serial1: serial@4806A000
{
compatible = "ti,am5-uart";
reg = <0x4806A000 0x1000>;
interrupts = <72 0 4>;
clocks = <&uart1_gfclk_mux>;
clock-names = "uart1_gfclk_mux";
pinmux-0 = <&uart1_pads>;
};
//pin information
uart1_pads: uart1pads /* */
{
pin-set = <
0x17E0 0xE0000 /* rxd -> ball pin B27 */
0x17E4 0xA0000 /* txd -> Ball pin C26*/
>;
};
and i can serial port ,
-> devs
drv refs name
1 [ 3] /
0 [ 3] /dev/null
7 [ 3] /devm
4 [ 5] /eeprom/0
15 [ 3] /input/event
18 [141] /mmc1
0 [ 3] /null
9 [ 3] /ram
14 [ 3] /romfs
6 [ 3] /shm
3 [ 5] /ttyS0
3 [ 5] /ttyS1
2 [ 3] /tyCo/0 ==> /ttyS0
2 [ 3] /tyCo/1 ==> /ttyS1 //this uart1
I'm not able send and receive data over on it .Can anyone please help me with this.
Also , can you guys confirm me is this configuration correct for uart1 in dts file.