projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[realview] update to kernel 3.0
[openwrt.git]
/
target
/
linux
/
ar71xx
/
files
/
drivers
/
net
/
ag71xx
/
ag71xx_phy.c
diff --git
a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c
b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c
index
9c76544
..
7550027
100644
(file)
--- a/
target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c
+++ b/
target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c
@@
-44,8
+44,12
@@
static void ag71xx_phy_link_adjust(struct net_device *dev)
void ag71xx_phy_start(struct ag71xx *ag)
{
void ag71xx_phy_start(struct ag71xx *ag)
{
+ struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
+
if (ag->phy_dev) {
phy_start(ag->phy_dev);
if (ag->phy_dev) {
phy_start(ag->phy_dev);
+ } else if (pdata->has_ar7240_switch) {
+ ag71xx_ar7240_start(ag);
} else {
ag->link = 1;
ag71xx_link_adjust(ag);
} else {
ag->link = 1;
ag71xx_link_adjust(ag);
@@
-54,9
+58,13
@@
void ag71xx_phy_start(struct ag71xx *ag)
void ag71xx_phy_stop(struct ag71xx *ag)
{
void ag71xx_phy_stop(struct ag71xx *ag)
{
+ struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
+
if (ag->phy_dev) {
phy_stop(ag->phy_dev);
} else {
if (ag->phy_dev) {
phy_stop(ag->phy_dev);
} else {
+ if (pdata->has_ar7240_switch)
+ ag71xx_ar7240_stop(ag);
ag->link = 0;
ag71xx_link_adjust(ag);
}
ag->link = 0;
ag71xx_link_adjust(ag);
}
@@
-182,7
+190,7
@@
static struct mii_bus *dev_to_mii_bus(struct device *dev)
return NULL;
}
return NULL;
}
-int ag71xx_phy_connect(struct ag71xx *ag)
+int
__devinit
ag71xx_phy_connect(struct ag71xx *ag)
{
struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
{
struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
@@
-200,6
+208,9
@@
int ag71xx_phy_connect(struct ag71xx *ag)
mutex_unlock(&ag->mii_bus->mdio_lock);
}
mutex_unlock(&ag->mii_bus->mdio_lock);
}
+ if (pdata->has_ar7240_switch)
+ return ag71xx_ar7240_init(ag);
+
if (pdata->phy_mask)
return ag71xx_phy_connect_multi(ag);
if (pdata->phy_mask)
return ag71xx_phy_connect_multi(ag);
@@
-208,6
+219,10
@@
int ag71xx_phy_connect(struct ag71xx *ag)
void ag71xx_phy_disconnect(struct ag71xx *ag)
{
void ag71xx_phy_disconnect(struct ag71xx *ag)
{
- if (ag->phy_dev)
+ struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
+
+ if (pdata->has_ar7240_switch)
+ ag71xx_ar7240_cleanup(ag);
+ else if (ag->phy_dev)
phy_disconnect(ag->phy_dev);
}
phy_disconnect(ag->phy_dev);
}
This page took
0.025846 seconds
and
4
git commands to generate.