Re: [U-Boot] Can a standalone application send data via Ethernet in U-Boot?

2013-11-29 Thread rvijay435
> Hm... I'm notr sure what exactly you are trying to do here - I cannot > find the string "tsec_miiphy_write" anywhere in the U-Boot source > code. Hi Wolfgang, tsec_miiphy_write function is present in drivers/net/tsec.c of the U-Boot-201009 version which I downloaded. The flow of calls is: ts

Re: [U-Boot] Can a standalone application send data via Ethernet in U-Boot?

2013-10-23 Thread rvijay435
Dear Wolfgang, Can I use tsec_miiphy_write () function which is defined in drivers/net/tsec.c for sending the data from standalone application via Ethernet. I am trying to export this function and use it. The files I edited for exporting are: "include/exports.h", "include/_exports.h", "common/expor

Re: [U-Boot] Can a standalone application send data via Ethernet in U-Boot?

2013-10-21 Thread rvijay435
Dear Wolfgang, > it would be nice if you would disclose your real name... Vijay Kishore. Thanks for your reply. So, now I will start modifying the registers related to Ethernet and try to send the data over Ethernet. -- View this message in context: http://u-boot.10912.n7.nabble.com/Can-a-s

[U-Boot] Can a standalone application send data via Ethernet in U-Boot?

2013-10-17 Thread rvijay435
In Linux, we have sendto and recvfrom calls to send and receive data from the external devices connected via Ethernet. Now I am executing my code on U-Boot as a standalone application. I need to replace these socket calls which should be independent of OS. Are there any APIs/drivers provided in U-