ar71xx: ag71xx_phy: Fix compilation for debug messages
[openwrt/openwrt.git] / target / linux / ar71xx / files / drivers / net / ethernet / atheros / ag71xx / ag71xx_phy.c
1 /*
2 * Atheros AR71xx built-in ethernet mac driver
3 *
4 * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 *
7 * Based on Atheros' AG7100 driver
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
12 */
13
14 #include "ag71xx.h"
15
16 static void ag71xx_phy_link_adjust(struct net_device *dev)
17 {
18 struct ag71xx *ag = netdev_priv(dev);
19 struct phy_device *phydev = ag->phy_dev;
20 unsigned long flags;
21 int status_change = 0;
22
23 spin_lock_irqsave(&ag->lock, flags);
24
25 if (phydev->link) {
26 if (ag->duplex != phydev->duplex
27 || ag->speed != phydev->speed) {
28 status_change = 1;
29 }
30 }
31
32 if (phydev->link != ag->link)
33 status_change = 1;
34
35 ag->link = phydev->link;
36 ag->duplex = phydev->duplex;
37 ag->speed = phydev->speed;
38
39 if (status_change)
40 ag71xx_link_adjust(ag);
41
42 spin_unlock_irqrestore(&ag->lock, flags);
43 }
44
45 void ag71xx_phy_start(struct ag71xx *ag)
46 {
47 struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
48
49 if (ag->phy_dev) {
50 phy_start(ag->phy_dev);
51 } else if (pdata->mii_bus_dev && pdata->switch_data) {
52 ag71xx_ar7240_start(ag);
53 } else {
54 ag->link = 1;
55 ag71xx_link_adjust(ag);
56 }
57 }
58
59 void ag71xx_phy_stop(struct ag71xx *ag)
60 {
61 struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
62 unsigned long flags;
63
64 if (ag->phy_dev)
65 phy_stop(ag->phy_dev);
66 else if (pdata->mii_bus_dev && pdata->switch_data)
67 ag71xx_ar7240_stop(ag);
68
69 spin_lock_irqsave(&ag->lock, flags);
70 if (ag->link) {
71 ag->link = 0;
72 ag71xx_link_adjust(ag);
73 }
74 spin_unlock_irqrestore(&ag->lock, flags);
75 }
76
77 static int ag71xx_phy_connect_fixed(struct ag71xx *ag)
78 {
79 struct device *dev = &ag->pdev->dev;
80 struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
81 int ret = 0;
82
83 /* use fixed settings */
84 switch (pdata->speed) {
85 case SPEED_10:
86 case SPEED_100:
87 case SPEED_1000:
88 break;
89 default:
90 dev_err(dev, "invalid speed specified\n");
91 ret = -EINVAL;
92 break;
93 }
94
95 dev_dbg(dev, "using fixed link parameters\n");
96
97 ag->duplex = pdata->duplex;
98 ag->speed = pdata->speed;
99
100 return ret;
101 }
102
103 static int ag71xx_phy_connect_multi(struct ag71xx *ag)
104 {
105 struct device *dev = &ag->pdev->dev;
106 struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
107 struct phy_device *phydev = NULL;
108 int phy_addr;
109 int ret = 0;
110
111 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
112 if (!(pdata->phy_mask & (1 << phy_addr)))
113 continue;
114
115 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
116 if (ag->mii_bus->phy_map[phy_addr] == NULL)
117 continue;
118
119 DBG("%s: PHY found at %s, uid=%08x\n",
120 dev_name(dev),
121 dev_name(&ag->mii_bus->phy_map[phy_addr]->dev),
122 &ag->mii_bus->phy_map[phy_addr]->phy_id),
123 &ag->mii_bus->phy_map[phy_addr]->phy_id : 0);
124
125 if (phydev == NULL)
126 phydev = ag->mii_bus->phy_map[phy_addr];
127 #else
128 if (ag->mii_bus->mdio_map[phy_addr] == NULL)
129 continue;
130
131 DBG("%s: PHY found at %s, uid=%08x\n",
132 dev_name(dev),
133 dev_name(&ag->mii_bus->mdio_map[phy_addr]->dev),
134 mdiobus_get_phy(ag->mii_bus, phy_addr) ?
135 mdiobus_get_phy(ag->mii_bus, phy_addr)->phy_id : 0);
136
137 if (phydev == NULL)
138 phydev = mdiobus_get_phy(ag->mii_bus, phy_addr);
139 #endif
140 }
141
142 if (!phydev) {
143 dev_err(dev, "no PHY found with phy_mask=%08x\n",
144 pdata->phy_mask);
145 return -ENODEV;
146 }
147
148 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
149 ag->phy_dev = phy_connect(ag->dev, dev_name(&phydev->dev),
150 #else
151 ag->phy_dev = phy_connect(ag->dev, phydev_name(phydev),
152 #endif
153 &ag71xx_phy_link_adjust,
154 pdata->phy_if_mode);
155
156 if (IS_ERR(ag->phy_dev)) {
157 dev_err(dev, "could not connect to PHY at %s\n",
158 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
159 dev_name(&phydev->dev));
160 #else
161 phydev_name(phydev));
162 #endif
163 return PTR_ERR(ag->phy_dev);
164 }
165
166 /* mask with MAC supported features */
167 if (pdata->has_gbit)
168 phydev->supported &= PHY_GBIT_FEATURES;
169 else
170 phydev->supported &= PHY_BASIC_FEATURES;
171
172 phydev->advertising = phydev->supported;
173
174 dev_info(dev, "connected to PHY at %s [uid=%08x, driver=%s]\n",
175 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
176 dev_name(&phydev->dev),
177 #else
178 phydev_name(phydev),
179 #endif
180 phydev->phy_id, phydev->drv->name);
181
182 ag->link = 0;
183 ag->speed = 0;
184 ag->duplex = -1;
185
186 return ret;
187 }
188
189 static int dev_is_class(struct device *dev, void *class)
190 {
191 if (dev->class != NULL && !strcmp(dev->class->name, class))
192 return 1;
193
194 return 0;
195 }
196
197 static struct device *dev_find_class(struct device *parent, char *class)
198 {
199 if (dev_is_class(parent, class)) {
200 get_device(parent);
201 return parent;
202 }
203
204 return device_find_child(parent, class, dev_is_class);
205 }
206
207 static struct mii_bus *dev_to_mii_bus(struct device *dev)
208 {
209 struct device *d;
210
211 d = dev_find_class(dev, "mdio_bus");
212 if (d != NULL) {
213 struct mii_bus *bus;
214
215 bus = to_mii_bus(d);
216 put_device(d);
217
218 return bus;
219 }
220
221 return NULL;
222 }
223
224 int ag71xx_phy_connect(struct ag71xx *ag)
225 {
226 struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
227
228 if (pdata->mii_bus_dev == NULL ||
229 pdata->mii_bus_dev->bus == NULL )
230 return ag71xx_phy_connect_fixed(ag);
231
232 ag->mii_bus = dev_to_mii_bus(pdata->mii_bus_dev);
233 if (ag->mii_bus == NULL) {
234 dev_err(&ag->pdev->dev, "unable to find MII bus on device '%s'\n",
235 dev_name(pdata->mii_bus_dev));
236 return -ENODEV;
237 }
238
239 /* Reset the mdio bus explicitly */
240 if (ag->mii_bus->reset) {
241 mutex_lock(&ag->mii_bus->mdio_lock);
242 ag->mii_bus->reset(ag->mii_bus);
243 mutex_unlock(&ag->mii_bus->mdio_lock);
244 }
245
246 if (pdata->switch_data)
247 return ag71xx_ar7240_init(ag);
248
249 if (pdata->phy_mask)
250 return ag71xx_phy_connect_multi(ag);
251
252 return ag71xx_phy_connect_fixed(ag);
253 }
254
255 void ag71xx_phy_disconnect(struct ag71xx *ag)
256 {
257 struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
258
259 if (pdata->switch_data)
260 ag71xx_ar7240_cleanup(ag);
261 else if (ag->phy_dev)
262 phy_disconnect(ag->phy_dev);
263 }