1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2011, 2012 Cavium, Inc.
6 #include <linux/platform_device.h>
7 #include <linux/mdio-mux.h>
8 #include <linux/of_mdio.h>
9 #include <linux/device.h>
10 #include <linux/module.h>
11 #include <linux/phy.h>
13 #define DRV_DESCRIPTION "MDIO bus multiplexer driver"
15 struct mdio_mux_child_bus
;
17 struct mdio_mux_parent_bus
{
18 struct mii_bus
*mii_bus
;
22 int (*switch_fn
)(int current_child
, int desired_child
, void *data
);
24 /* List of our children linked through their next fields. */
25 struct mdio_mux_child_bus
*children
;
28 struct mdio_mux_child_bus
{
29 struct mii_bus
*mii_bus
;
30 struct mdio_mux_parent_bus
*parent
;
31 struct mdio_mux_child_bus
*next
;
36 * The parent bus' lock is used to order access to the switch_fn.
38 static int mdio_mux_read(struct mii_bus
*bus
, int phy_id
, int regnum
)
40 struct mdio_mux_child_bus
*cb
= bus
->priv
;
41 struct mdio_mux_parent_bus
*pb
= cb
->parent
;
44 mutex_lock_nested(&pb
->mii_bus
->mdio_lock
, MDIO_MUTEX_MUX
);
45 r
= pb
->switch_fn(pb
->current_child
, cb
->bus_number
, pb
->switch_data
);
49 pb
->current_child
= cb
->bus_number
;
51 r
= pb
->mii_bus
->read(pb
->mii_bus
, phy_id
, regnum
);
53 mutex_unlock(&pb
->mii_bus
->mdio_lock
);
59 * The parent bus' lock is used to order access to the switch_fn.
61 static int mdio_mux_write(struct mii_bus
*bus
, int phy_id
,
64 struct mdio_mux_child_bus
*cb
= bus
->priv
;
65 struct mdio_mux_parent_bus
*pb
= cb
->parent
;
69 mutex_lock_nested(&pb
->mii_bus
->mdio_lock
, MDIO_MUTEX_MUX
);
70 r
= pb
->switch_fn(pb
->current_child
, cb
->bus_number
, pb
->switch_data
);
74 pb
->current_child
= cb
->bus_number
;
76 r
= pb
->mii_bus
->write(pb
->mii_bus
, phy_id
, regnum
, val
);
78 mutex_unlock(&pb
->mii_bus
->mdio_lock
);
83 static int parent_count
;
85 int mdio_mux_init(struct device
*dev
,
86 struct device_node
*mux_node
,
87 int (*switch_fn
)(int cur
, int desired
, void *data
),
90 struct mii_bus
*mux_bus
)
92 struct device_node
*parent_bus_node
;
93 struct device_node
*child_bus_node
;
95 struct mii_bus
*parent_bus
;
96 struct mdio_mux_parent_bus
*pb
;
97 struct mdio_mux_child_bus
*cb
;
103 parent_bus_node
= of_parse_phandle(mux_node
,
104 "mdio-parent-bus", 0);
106 if (!parent_bus_node
)
109 parent_bus
= of_mdio_find_bus(parent_bus_node
);
111 ret_val
= -EPROBE_DEFER
;
115 parent_bus_node
= NULL
;
116 parent_bus
= mux_bus
;
117 get_device(&parent_bus
->dev
);
120 pb
= devm_kzalloc(dev
, sizeof(*pb
), GFP_KERNEL
);
126 pb
->switch_data
= data
;
127 pb
->switch_fn
= switch_fn
;
128 pb
->current_child
= -1;
129 pb
->parent_id
= parent_count
++;
130 pb
->mii_bus
= parent_bus
;
133 for_each_available_child_of_node(mux_node
, child_bus_node
) {
136 r
= of_property_read_u32(child_bus_node
, "reg", &v
);
139 "Error: Failed to find reg for child %pOF\n",
144 cb
= devm_kzalloc(dev
, sizeof(*cb
), GFP_KERNEL
);
152 cb
->mii_bus
= mdiobus_alloc();
158 cb
->mii_bus
->priv
= cb
;
160 cb
->mii_bus
->name
= "mdio_mux";
161 snprintf(cb
->mii_bus
->id
, MII_BUS_ID_SIZE
, "%x.%x",
163 cb
->mii_bus
->parent
= dev
;
164 cb
->mii_bus
->read
= mdio_mux_read
;
165 cb
->mii_bus
->write
= mdio_mux_write
;
166 r
= of_mdiobus_register(cb
->mii_bus
, child_bus_node
);
169 "Error: Failed to register MDIO bus for child %pOF\n",
171 mdiobus_free(cb
->mii_bus
);
174 cb
->next
= pb
->children
;
183 dev_err(dev
, "Error: No acceptable child buses found\n");
186 put_device(&parent_bus
->dev
);
188 of_node_put(parent_bus_node
);
191 EXPORT_SYMBOL_GPL(mdio_mux_init
);
193 void mdio_mux_uninit(void *mux_handle
)
195 struct mdio_mux_parent_bus
*pb
= mux_handle
;
196 struct mdio_mux_child_bus
*cb
= pb
->children
;
199 mdiobus_unregister(cb
->mii_bus
);
200 mdiobus_free(cb
->mii_bus
);
204 put_device(&pb
->mii_bus
->dev
);
206 EXPORT_SYMBOL_GPL(mdio_mux_uninit
);
208 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
209 MODULE_AUTHOR("David Daney");
210 MODULE_LICENSE("GPL v2");