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
);
51 ag71xx_link_adjust(ag
);
55 void ag71xx_phy_stop(struct ag71xx
*ag
)
58 phy_stop(ag
->phy_dev
);
61 ag71xx_link_adjust(ag
);
65 static int ag71xx_phy_connect_fixed(struct ag71xx
*ag
)
67 struct net_device
*dev
= ag
->dev
;
68 struct ag71xx_platform_data
*pdata
= ag71xx_get_pdata(ag
);
71 /* use fixed settings */
72 switch (pdata
->speed
) {
78 printk(KERN_ERR
"%s: invalid speed specified\n", dev
->name
);
83 printk(KERN_DEBUG
"%s: using fixed link parameters\n", dev
->name
);
85 ag
->duplex
= pdata
->duplex
;
86 ag
->speed
= pdata
->speed
;
91 static int ag71xx_phy_connect_multi(struct ag71xx
*ag
)
93 struct net_device
*dev
= ag
->dev
;
94 struct ag71xx_platform_data
*pdata
= ag71xx_get_pdata(ag
);
95 struct phy_device
*phydev
= NULL
;
99 for (phy_addr
= 0; phy_addr
< PHY_MAX_ADDR
; phy_addr
++) {
100 if (!(pdata
->phy_mask
& (1 << phy_addr
)))
103 if (ag
->mii_bus
->phy_map
[phy_addr
] == NULL
)
106 DBG("%s: PHY found at %s, uid=%08x\n",
108 dev_name(&ag
->mii_bus
->phy_map
[phy_addr
]->dev
),
109 ag
->mii_bus
->phy_map
[phy_addr
]->phy_id
);
112 phydev
= ag
->mii_bus
->phy_map
[phy_addr
];
116 printk(KERN_ERR
"%s: no PHY found with phy_mask=%08x\n",
117 dev
->name
, pdata
->phy_mask
);
121 ag
->phy_dev
= phy_connect(dev
, dev_name(&phydev
->dev
),
122 &ag71xx_phy_link_adjust
, 0,
125 if (IS_ERR(ag
->phy_dev
)) {
126 printk(KERN_ERR
"%s: could not connect to PHY at %s\n",
127 dev
->name
, dev_name(&phydev
->dev
));
128 return PTR_ERR(ag
->phy_dev
);
131 /* mask with MAC supported features */
133 phydev
->supported
&= PHY_GBIT_FEATURES
;
135 phydev
->supported
&= PHY_BASIC_FEATURES
;
137 phydev
->advertising
= phydev
->supported
;
139 printk(KERN_DEBUG
"%s: connected to PHY at %s [uid=%08x, driver=%s]\n",
140 dev
->name
, dev_name(&phydev
->dev
),
141 phydev
->phy_id
, phydev
->drv
->name
);
150 static int dev_is_class(struct device
*dev
, void *class)
152 if (dev
->class != NULL
&& !strcmp(dev
->class->name
, class))
158 static struct device
*dev_find_class(struct device
*parent
, char *class)
160 if (dev_is_class(parent
, class)) {
165 return device_find_child(parent
, class, dev_is_class
);
168 static struct mii_bus
*dev_to_mii_bus(struct device
*dev
)
172 d
= dev_find_class(dev
, "mdio_bus");
185 int ag71xx_phy_connect(struct ag71xx
*ag
)
187 struct ag71xx_platform_data
*pdata
= ag71xx_get_pdata(ag
);
189 ag
->mii_bus
= dev_to_mii_bus(pdata
->mii_bus_dev
);
190 if (ag
->mii_bus
== NULL
) {
191 printk(KERN_ERR
"%s: unable to find MII bus on device '%s'\n",
192 ag
->dev
->name
, dev_name(pdata
->mii_bus_dev
));
196 /* Reset the mdio bus explicitly */
197 if (ag
->mii_bus
->reset
) {
198 mutex_lock(&ag
->mii_bus
->mdio_lock
);
199 ag
->mii_bus
->reset(ag
->mii_bus
);
200 mutex_unlock(&ag
->mii_bus
->mdio_lock
);
204 return ag71xx_phy_connect_multi(ag
);
206 return ag71xx_phy_connect_fixed(ag
);
209 void ag71xx_phy_disconnect(struct ag71xx
*ag
)
212 phy_disconnect(ag
->phy_dev
);
This page took 0.059659 seconds and 5 git commands to generate.