We have a custom board that connects the DM8148's EMAC1 to a Marvell switch (88E6350R).
To save space and cost we removed the PHYs and connected to one of the switch's MAC-only ports.
We disabled the RGMII delays in the DM8148 and enabled them instead on the switch.
U-boot works fine with some minor modifications to the PHY initialization / detection.
The kernel has been configured to use a fixed PHY and convinced the link is always present.
The kernel loads via Ethernet, but won't boot into the file system via NFS. (Appears to be a dropped TCP packet)
If we boot from flash I can ping small packets and telnet in to run a few commands.
Any commands that require a larger packet to be sent from the DM8148 usually fail. (>256MB)
Strictly pinging with 64Bytes we see 1-2% loss or 75% loss if 512Byte packets are sent.
The hw_stats for the CPSW driver show some CRC errors too.
It appears that we were having similar issues as in this post:
http://e2e.ti.com/support/dsp/davinci_digital_media_processors/f/716/p/241392/857273.aspx#857273
But not luck after implementing the patch.
We are using PSP_04.04.00.01.
Any help would be appreciated!