On Thu, Dec 05, 2024 at 08:05:39PM +0200, Vladimir Oltean wrote: > On Thu, Dec 05, 2024 at 06:17:18PM +0100, Christian Marangi wrote: > > I checked the examples and one problems that comes to me is how to model > > this if only MDIO is used as a comunication method. Ocelot have PCIE or > > SPI but this switch only comunicate with MDIO on his address. > > I don't see why this matters. There will be a top-level device driver, > which in this case will be an mdio_driver and will use mdiobus_{read,write} > to physically access registers. This driver will create regmaps and add > them to devres using devm_regmap_init(). From devres, DSA and other child > drivers can use dev_get_regmap(dev->parent) and perform their I/O through > regmap. > > This driver is already written for regmap, so part of the work can > already be reused. > > > So where should I place the SoC or MFD node? In the switch root node? > > The SoC should be placed on the host MDIO bus. And the Ethernet switch > component should be a child of the SoC. Ideally, so should be all other > switch peripherals: on the same level as the Ethernet switch. > Ohhhh ok, wasn't clear to me the MFD driver had to be placed in the mdio node. To make it clear this would be an implementation. mdio_bus: mdio-bus { #address-cells = <1>; #size-cells = <0>; ... mfd@1 { compatible = "airoha,an8855-mfd"; reg = <1>; nvmem_node { ... }; switch_node { ... }; }; }; Consider tho that recently I faced some problem with such structure with DT mainatiners asking to keep everything in the MFD node. But lets see how it goes. Well aware of the MFD API, (had to have some fun recently) so the only confusing part was the node placement. > > Also the big problem is how to model accessing the register with MDIO > > with an MFD implementation. > > > > Anyway just to make sure the Switch SoC doesn't expose an actualy MDIO > > bus, that is just to solve the problem with the Switch Address shared > > with one of the port. (Switch Address can be accessed by every switch > > port with a specific page set) > > Sorry, I don't understand this, can you explain more? "Switch Address > can be accessed by every switch port with a specific page set" > > In the code, I see that the priv->bus and priv->phy_base are used to > perform MDIO accesses for anything related to the switch. That's perfect, > it means that all switch registers are concentrated on a single MDIO > address, behind a single mdio_device. If that weren't the case, things > would get messy, because the Linux device model associates an MDIO device > with a single address on its bus. > > And then we have an8855_phy_read() and an8855_phy_write(), which in my > understanding are the ops of a fake MDIO controller, one which has no > registers or MDIO address space of its own, but is just a passthrough > towards the host MDIO bus's address space. I have no idea why you don't > just put a phy-handle from the switch user ports to PHYs located on the > host MDIO bus directly, and why you go through this middle entity, but I > expect you will clarify. Creating an MDIO bus from DSA for internal PHYs > is completely optional if no special handling is required. The difficulties I found (and maybe is very easy to solve and I'm missing something here) is that switch and internal PHY port have the same address and conflicts. Switch will be at address 1 (or 2 3 4 5... every port can access switch register with page 0x4) DSA port 0 will be at address 1, that is already occupied by the switch. Defining the DSA port node on the host MDIO bus works correctly for every port but for port 0 (the one at address 1), the kernel complains and is not init. (as it does conflict with the switch that is at the same address) (can't remember the exact warning) > > To explain again: In the MFD proposal, there is only one driver who has > access to the mdio_device from the host bus: the MFD driver. Depending > on how it implements the regmaps it presents to the children, it can > control page switching, etc etc. The child devices only operate with > regmaps, and have no idea of the underlying hardware access method. > > > But yes the problem is there... Function is not implemented but the > > switch have i2c interface, minimal CPU, GPIO and Timer in it. > > > > Happy to make the required changes, just very confused on how the final > > DT node structure. > > > > -- > > Ansuel > -- Ansuel