]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/phy/mdio-mux.c
Merge remote-tracking branches 'asoc/fix/dpcm', 'asoc/fix/imx', 'asoc/fix/msm8916...
[mirror_ubuntu-artful-kernel.git] / drivers / net / phy / mdio-mux.c
CommitLineData
0ca2997d
DD
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2011, 2012 Cavium, Inc.
7 */
8
9#include <linux/platform_device.h>
10#include <linux/mdio-mux.h>
11#include <linux/of_mdio.h>
12#include <linux/device.h>
13#include <linux/module.h>
14#include <linux/phy.h>
15
16#define DRV_VERSION "1.0"
17#define DRV_DESCRIPTION "MDIO bus multiplexer driver"
18
19struct mdio_mux_child_bus;
20
21struct mdio_mux_parent_bus {
22 struct mii_bus *mii_bus;
23 int current_child;
24 int parent_id;
25 void *switch_data;
26 int (*switch_fn)(int current_child, int desired_child, void *data);
27
28 /* List of our children linked through their next fields. */
29 struct mdio_mux_child_bus *children;
30};
31
32struct mdio_mux_child_bus {
33 struct mii_bus *mii_bus;
34 struct mdio_mux_parent_bus *parent;
35 struct mdio_mux_child_bus *next;
36 int bus_number;
0ca2997d
DD
37};
38
39/*
40 * The parent bus' lock is used to order access to the switch_fn.
41 */
42static int mdio_mux_read(struct mii_bus *bus, int phy_id, int regnum)
43{
44 struct mdio_mux_child_bus *cb = bus->priv;
45 struct mdio_mux_parent_bus *pb = cb->parent;
46 int r;
47
9a6f2b01 48 mutex_lock_nested(&pb->mii_bus->mdio_lock, MDIO_MUTEX_MUX);
0ca2997d
DD
49 r = pb->switch_fn(pb->current_child, cb->bus_number, pb->switch_data);
50 if (r)
51 goto out;
52
53 pb->current_child = cb->bus_number;
54
55 r = pb->mii_bus->read(pb->mii_bus, phy_id, regnum);
56out:
57 mutex_unlock(&pb->mii_bus->mdio_lock);
58
59 return r;
60}
61
62/*
63 * The parent bus' lock is used to order access to the switch_fn.
64 */
65static int mdio_mux_write(struct mii_bus *bus, int phy_id,
66 int regnum, u16 val)
67{
68 struct mdio_mux_child_bus *cb = bus->priv;
69 struct mdio_mux_parent_bus *pb = cb->parent;
70
71 int r;
72
9a6f2b01 73 mutex_lock_nested(&pb->mii_bus->mdio_lock, MDIO_MUTEX_MUX);
0ca2997d
DD
74 r = pb->switch_fn(pb->current_child, cb->bus_number, pb->switch_data);
75 if (r)
76 goto out;
77
78 pb->current_child = cb->bus_number;
79
80 r = pb->mii_bus->write(pb->mii_bus, phy_id, regnum, val);
81out:
82 mutex_unlock(&pb->mii_bus->mdio_lock);
83
84 return r;
85}
86
87static int parent_count;
88
89int mdio_mux_init(struct device *dev,
90 int (*switch_fn)(int cur, int desired, void *data),
91 void **mux_handle,
f20e6657
PK
92 void *data,
93 struct mii_bus *mux_bus)
0ca2997d
DD
94{
95 struct device_node *parent_bus_node;
96 struct device_node *child_bus_node;
97 int r, ret_val;
98 struct mii_bus *parent_bus;
99 struct mdio_mux_parent_bus *pb;
100 struct mdio_mux_child_bus *cb;
101
102 if (!dev->of_node)
103 return -ENODEV;
104
f20e6657
PK
105 if (!mux_bus) {
106 parent_bus_node = of_parse_phandle(dev->of_node,
107 "mdio-parent-bus", 0);
0ca2997d 108
f20e6657
PK
109 if (!parent_bus_node)
110 return -ENODEV;
111
112 parent_bus = of_mdio_find_bus(parent_bus_node);
113 if (!parent_bus) {
114 ret_val = -EPROBE_DEFER;
115 goto err_parent_bus;
116 }
117 } else {
a78c16e1 118 parent_bus_node = NULL;
f20e6657
PK
119 parent_bus = mux_bus;
120 }
0ca2997d 121
0ca2997d
DD
122 pb = devm_kzalloc(dev, sizeof(*pb), GFP_KERNEL);
123 if (pb == NULL) {
124 ret_val = -ENOMEM;
b6016166 125 goto err_pb_kz;
0ca2997d
DD
126 }
127
128 pb->switch_data = data;
129 pb->switch_fn = switch_fn;
130 pb->current_child = -1;
131 pb->parent_id = parent_count++;
132 pb->mii_bus = parent_bus;
133
134 ret_val = -ENODEV;
61abcb7b 135 for_each_available_child_of_node(dev->of_node, child_bus_node) {
9d15e5cc 136 int v;
0ca2997d 137
457839ed
MB
138 r = of_property_read_u32(child_bus_node, "reg", &v);
139 if (r) {
342fa196
JM
140 dev_err(dev,
141 "Error: Failed to find reg for child %s\n",
142 of_node_full_name(child_bus_node));
0ca2997d 143 continue;
342fa196 144 }
0ca2997d
DD
145
146 cb = devm_kzalloc(dev, sizeof(*cb), GFP_KERNEL);
147 if (cb == NULL) {
148 dev_err(dev,
342fa196
JM
149 "Error: Failed to allocate memory for child %s\n",
150 of_node_full_name(child_bus_node));
0ca2997d 151 ret_val = -ENOMEM;
342fa196 152 continue;
0ca2997d
DD
153 }
154 cb->bus_number = v;
155 cb->parent = pb;
20b08e1a 156
0ca2997d 157 cb->mii_bus = mdiobus_alloc();
20b08e1a 158 if (!cb->mii_bus) {
342fa196
JM
159 dev_err(dev,
160 "Error: Failed to allocate MDIO bus for child %s\n",
161 of_node_full_name(child_bus_node));
20b08e1a 162 ret_val = -ENOMEM;
b6016166 163 devm_kfree(dev, cb);
342fa196 164 continue;
20b08e1a 165 }
0ca2997d 166 cb->mii_bus->priv = cb;
e7f4dc35 167
0ca2997d
DD
168 cb->mii_bus->name = "mdio_mux";
169 snprintf(cb->mii_bus->id, MII_BUS_ID_SIZE, "%x.%x",
170 pb->parent_id, v);
171 cb->mii_bus->parent = dev;
172 cb->mii_bus->read = mdio_mux_read;
173 cb->mii_bus->write = mdio_mux_write;
174 r = of_mdiobus_register(cb->mii_bus, child_bus_node);
175 if (r) {
342fa196
JM
176 dev_err(dev,
177 "Error: Failed to register MDIO bus for child %s\n",
178 of_node_full_name(child_bus_node));
0ca2997d
DD
179 mdiobus_free(cb->mii_bus);
180 devm_kfree(dev, cb);
181 } else {
0ca2997d
DD
182 cb->next = pb->children;
183 pb->children = cb;
184 }
185 }
186 if (pb->children) {
187 *mux_handle = pb;
188 dev_info(dev, "Version " DRV_VERSION "\n");
189 return 0;
190 }
a1364421 191
342fa196 192 dev_err(dev, "Error: No acceptable child buses found\n");
b6016166
JM
193 devm_kfree(dev, pb);
194err_pb_kz:
a1364421 195 /* balance the reference of_mdio_find_bus() took */
b6016166
JM
196 if (!mux_bus)
197 put_device(&parent_bus->dev);
0ca2997d 198err_parent_bus:
a78c16e1 199 of_node_put(parent_bus_node);
0ca2997d
DD
200 return ret_val;
201}
202EXPORT_SYMBOL_GPL(mdio_mux_init);
203
204void mdio_mux_uninit(void *mux_handle)
205{
206 struct mdio_mux_parent_bus *pb = mux_handle;
207 struct mdio_mux_child_bus *cb = pb->children;
208
209 while (cb) {
210 mdiobus_unregister(cb->mii_bus);
211 mdiobus_free(cb->mii_bus);
212 cb = cb->next;
213 }
a1364421
RK
214
215 /* balance the reference of_mdio_find_bus() in mdio_mux_init() took */
216 put_device(&pb->mii_bus->dev);
0ca2997d
DD
217}
218EXPORT_SYMBOL_GPL(mdio_mux_uninit);
219
220MODULE_DESCRIPTION(DRV_DESCRIPTION);
221MODULE_VERSION(DRV_VERSION);
222MODULE_AUTHOR("David Daney");
223MODULE_LICENSE("GPL");