Part Number:AM3352
Tool/software: Linux
Hi Team,
We met one issue on the StarterKit EVM with the Linux EZSDK 8.0 when trying to reproduce customers' issues.
I did the same test on 2 StarterKit EVMs, but the results are the same.
Below is the step to reproduce the issue on StarterKit EVM:
1. use the pre-built images and ti-sdk filesystem to make the booting SD card then boot the StarterKit EVM.
2. connected the two RGMII port 1 to a router (gateway: 10.83.130.1) and RGMII port 2 to another router (gateway: 192.168.1.1)
3. use ping command to set up the connection on RGMII2. ping 192.168.1.1 &. This will make the port working continuously.
4. use the test script to test RGMII1. Then the issue will be seen within 20min.
Test Scripts:(can directly input in the console).
cnt = 0
while [ 1 ]
do
cnt=$(($cnt + 1))
echo "count=$cnt"
sleep 2
ifconfig eth0 down
sleep 1
ifconfig eth0 up
sleep 5
lost=`ping -c 3 -W 6 10.85.130.1 | grep 'packet loss'|awk '{print $7}'|tr -d '%'`
if [ $lost == 0 ]; then
echo "host is alive"
else
echo "host is not alive"
break
fi
done
Issue log could be seen as attached.
Two StarterKit EVM showed the same issue log. Could someone help to provide how to solve this issue?(Please visit the site to view this file)(Please visit the site to view this file)