I want to get uImage from windows pc to dm365 based board in uboot boot loader. Ethernet phy is detected by u-boot.
davinci_eth_phy_detect(), ALIVE = 0x00000002
Ethernet PHY: DP83848 @ 0x01
For testing tftp transfer i am disconnecting pc from network and connecting it directly to board.Below configuration i use in the u-boot,
netmask=255.255.255.0
ethaddr=00:0C:0C:0A:FF:EC
ipaddr=192.168.178.156
serverip=192.168.178.129
gatewayip=192.168.178.1
gateway=192.168.178.1
When i ping pc from board ping reports "host is alive" but i am not able to ping a device from a board.(i dont know if that is required to be done.)
Then i run "tftpd32" on windows pc, i set root/base folder appropriately.
And when i give below command request times out
tftpboot 0x80700000 uImage
When i do same procedure in my colleague's pc, there tftp works fine . In that pc too ping works one way from board to pc, it doesnt work from pc to board.
I have added tftpd32 utility in allowed program list in windows firewall, What could be a problem ? any suggestions ??