2 * Atheros AR71xx built-in ethernet mac driver
4 * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * Based on Atheros' AG7100 driver
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.
16 static void ag71xx_phy_link_adjust(struct net_device
*dev
)
18 struct ag71xx
*ag
= netdev_priv(dev
);
19 struct phy_device
*phydev
= ag
->phy_dev
;
21 int status_change
= 0;
23 spin_lock_irqsave(&ag
->lock
, flags
);
26 if (ag
->duplex
!= phydev
->duplex
27 || ag
->speed
!= phydev
->speed
) {
32 if (phydev
->link
!= ag
->link
)
35 ag
->link
= phydev
->link
;
36 ag
->duplex
= phydev
->duplex
;
37 ag
->speed
= phydev
->speed
;
40 ag71xx_link_adjust(ag
);
42 spin_unlock_irqrestore(&ag
->lock
, flags
);
45 void ag71xx_phy_start(struct ag71xx
*ag
)
48 phy_start(ag
->phy_dev
);
50 struct ag71xx_platform_data
*pdata
= ag71xx_get_pdata(ag
);
52 ag
->duplex
= pdata
->duplex
;
53 ag
->speed
= pdata
->speed
;
55 ag71xx_link_adjust(ag
);
59 void ag71xx_phy_stop(struct ag71xx
*ag
)
62 phy_stop(ag
->phy_dev
);
67 ag71xx_link_adjust(ag
);
71 static int ag71xx_phy_connect_fixed(struct ag71xx
*ag
)
73 struct net_device
*dev
= ag
->dev
;
74 struct ag71xx_platform_data
*pdata
= ag71xx_get_pdata(ag
);
77 /* use fixed settings */
78 switch (pdata
->speed
) {
84 printk(KERN_ERR
"%s: invalid speed specified\n",
93 static int ag71xx_phy_connect_multi(struct ag71xx
*ag
)
95 struct net_device
*dev
= ag
->dev
;
96 struct ag71xx_platform_data
*pdata
= ag71xx_get_pdata(ag
);
97 struct phy_device
*phydev
= NULL
;
102 for (phy_addr
= 0; phy_addr
< PHY_MAX_ADDR
; phy_addr
++) {
103 if (!(pdata
->phy_mask
& (1 << phy_addr
)))
106 if (ag
->mii_bus
->phy_map
[phy_addr
] == NULL
)
109 DBG("%s: PHY found at %s, uid=%08x\n",
111 dev_name(&ag
->mii_bus
->phy_map
[phy_addr
]->dev
),
112 ag
->mii_bus
->phy_map
[phy_addr
]->phy_id
);
115 phydev
= ag
->mii_bus
->phy_map
[phy_addr
];
122 printk(KERN_ERR
"%s: no PHY found with phy_mask=%08x\n",
123 dev
->name
, pdata
->phy_mask
);
127 ag
->phy_dev
= phy_connect(dev
, dev_name(&phydev
->dev
),
128 &ag71xx_phy_link_adjust
, 0, pdata
->phy_if_mode
);
130 if (IS_ERR(ag
->phy_dev
)) {
131 printk(KERN_ERR
"%s: could not connect to PHY at %s\n",
132 dev
->name
, dev_name(&phydev
->dev
));
133 return PTR_ERR(ag
->phy_dev
);
136 /* mask with MAC supported features */
138 phydev
->supported
&= PHY_GBIT_FEATURES
;
140 phydev
->supported
&= PHY_BASIC_FEATURES
;
142 phydev
->advertising
= phydev
->supported
;
144 printk(KERN_DEBUG
"%s: connected to PHY at %s "
145 "[uid=%08x, driver=%s]\n",
146 dev
->name
, dev_name(&phydev
->dev
),
147 phydev
->phy_id
, phydev
->drv
->name
);
155 printk(KERN_DEBUG
"%s: connected to %d PHYs\n",
156 dev
->name
, phy_count
);
157 ret
= ag71xx_phy_connect_fixed(ag
);
164 static int dev_is_class(struct device
*dev
, void *class)
166 if (dev
->class != NULL
&& !strcmp(dev
->class->name
, class))
172 static struct device
*dev_find_class(struct device
*parent
, char *class)
174 if (dev_is_class(parent
, class)) {
179 return device_find_child(parent
, class, dev_is_class
);
182 static struct mii_bus
*dev_to_mii_bus(struct device
*dev
)
186 d
= dev_find_class(dev
, "mdio_bus");
199 int ag71xx_phy_connect(struct ag71xx
*ag
)
201 struct ag71xx_platform_data
*pdata
= ag71xx_get_pdata(ag
);
203 ag
->mii_bus
= dev_to_mii_bus(pdata
->mii_bus_dev
);
204 if (ag
->mii_bus
== NULL
) {
205 printk(KERN_ERR
"%s: unable to find MII bus on device '%s'\n",
206 ag
->dev
->name
, dev_name(pdata
->mii_bus_dev
));
210 /* Reset the mdio bus explicitly */
211 if (ag
->mii_bus
->reset
) {
212 mutex_lock(&ag
->mii_bus
->mdio_lock
);
213 ag
->mii_bus
->reset(ag
->mii_bus
);
214 mutex_unlock(&ag
->mii_bus
->mdio_lock
);
218 return ag71xx_phy_connect_multi(ag
);
220 return ag71xx_phy_connect_fixed(ag
);
223 void ag71xx_phy_disconnect(struct ag71xx
*ag
)
226 phy_disconnect(ag
->phy_dev
);
This page took 0.060804 seconds and 5 git commands to generate.