On 03.07.19 17:55, Andrew Lunn wrote: > On Wed, Jul 03, 2019 at 03:10:34PM +0200, Benjamin Beckmeyer wrote: >> Hey folks, >> >> I'm having a problem with a custom i.mx6ul board. When DSA is loaded I can't >> get access to the switch via MDIO, but the DSA is working properly. I set up >> a bridge for testing and the switch is in forwarding mode and i can ping the >> board. But the MDIO access isn't working at address 2 for the switch. When I >> delete the DSA from the devicetree and start the board up, I can access the >> switch via MDIO. >> >> With DSA up and running: >> >> mii -i 2 0 0x9800 >> mii -i 2 1 >> phyid:2, reg:0x01 -> 0x4000 >> mii -i 2 0 0x9803 >> mii -i 2 1 >> phyid:2, reg:0x01 -> 0x4000 >> mii -i 2 1 0x1883 >> mii -i 2 1 >> phyid:2, reg:0x01 -> 0x4000 > Hi Benjamin > > I'm guessing that the driver is also using register 0 and 1 at the > same time you are, e.g. to poll the PHYs for link status etc. > > There are trace points for MDIO, so you can get the kernel to log all > registers access. That should confirm if i'm right. > > Andrew
Hi Andrew, I will do so. Haven't done it before, so maybe it takes some time. I'm just wondering why I haven't these problems with another switching chip. Here we use the 88E6390 in multi chip addressing mode, in the other custom board we have a 88E6321 in single chip addressing mode, but there the registers would be polled too. Maybe you know a answer? Thanks again for your fast reply.