-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ERROR: Unable to read status (-110) with Marvell 88e6190x on x86 #35
Comments
Try to address a single register and see if that works better for you. E.g:
|
I have the same problem. I have tried guessing at addresses but everything comes back Can anyone suggest the addresses to use for Marvell LinkStreet switch chips? Do these need to be initializes with |
There's always the option of just trying every address, which will be in the inclusive range You do not need any initialization via any other interface, but it is not uncommon that the chip's |
Forgive me if this have been mentioned already, but the switch address is mentioned as 0,16 in the config file above. Guessing this is not hex, on my ia3000, I'm trying ./mdio/mdio ixgbe* mvls 0x10 raw 0:3 |
Congrats! That's the expected value. The least significant nibble holds the chip revision, which in your case is 1, hence the difference from my example, which assumed revision 0. |
@jasonhensler Do you know any software or capability to configure the ports on the 88e6190X in the ia3000? (Sorry if this is getting off topic from MDIO-tools specifically.) |
@sl0wfi I suspect normal Linux Distributed Switch could be used if Device Tree is provided somehow like https://gist.github.com/ZoranStojsavljevic/423b96e2ca3bd581f7ce417cb410c465. Problem is x86 normally does not have Device Trees but one could be injected by the boot loader like grub (https://www.gnu.org/software/grub/manual/grub/html_node/devicetree.html#devicetree) if flattened DTB (https://devicetree-specification.readthedocs.io/en/stable/flattened-format.html) could be created. There are some limited examples on x86 like https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/x86/platform/ce4100/falconfalls.dts, it'll probably need to be compiled to a binary format afterwards with something like https://github.com/dgibson/dtc. I have not tested any of that btw. |
@salekseev I suspect that we will face issues with the x550/ixgbe driver not implementing mdio natively or would that not be required if we had proper DTS file? Unfortunately for us, att vyatta seems to be using dpdk for the switch setup, skipping an /dev/mdio device completely. However the Firebox M270 m270 and netgate xg-7100 have used Intel phys to a 88e6190x so it should be possible. Any pointer on this would be very welcomed. |
@wkz could you give some guidance on how to find meaningful registers for 88e6190x now that we figured out its address on the platform like: Writing to some of those registers should allow us to set ports configuration even without DSA support loaded, right? Also,
|
You really need the functional specification for your device, which I have, but can't share with you because the world is broken. Some say there are ways of finding datasheets for older devices online, like the "marvell 6097 datasheet", using popular search engines. That might be worth a shot 🤷♂️ Armed with that, and the knowledge that while the port registers used to (e.g. on 6097) start at offset 0x10, they start at offset 0x0 in the 6190, you should be able to make sense of most of the dump above. Focus on registers 0, 1, and 4. The U-Boot driver might be a good source of info. It is much more to the point than the Linux driver, since it only does the most essential setup. Re: |
@wkz I have a copy of the data sheet, including Link Street® 88E6390X/88E6390/88E6290/88E6190X/88E6190 Switch Functional Specification (it's ridiculous that it's being distributed under NDA) but I'm struggling to translate pins etc to registers access. Sorry, I'm no hardware engineer. Do you think you could give me an example based on either 6097 (offset 0x10) or 6190 (offset 0x0) to configure a switch port. To enable it and to set port vlan to 1 for example? I appreciate your help and babysitting btw. |
For a builtin copper port, you probably have to:
For (R)GMII or SERDES interfaces, you might also have to:
Again, the U-Boot sources are probably the most distilled code you'll find which does this. If you want to setup VLANs, you'll need to load and entry into the VTU, update the port's PVID register. At this point I would probably spend the time on figuring out how to supply a DTB to your kernel so that you can make use of the |
This is more of fishing for help. I have a device made by Silicom as a uCPE router for ATT (ATT-V150) that is Intel C3000 (x86) based and includes a Marvell 88E6190X switch. Attaching system architecture diagram:
Appliance and switch work with commercial vyatta software which inits the switch in userspace, something like:
But I've been struggling to get it discovered with Linux DSA and MV88E6XXX driver. As well as getting
mdio-tools
to talk to it via MDIO bus:Any advice would be greatly appreciated.
The text was updated successfully, but these errors were encountered: