Hi,
I am not using uboot. But I followed the same open source uboot code. In fm_eth_send function,
I am stuck at this point,
for (i = 0; muram_readw(&txbd->status) & TxBD_READY; i++) {
udelay(100);
if (i > 0x10000) {
printf("%s: Tx error, txbd->status = 0x%x\n",
dev->name, muram_readw(&txbd->status));
return 0;
}
}
Packets are not transmitted out.
How do I debug this issue?
Thanks
Manjushree K