diff options
author | Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> | 2009-08-27 19:25:03 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-08-29 03:19:35 -0400 |
commit | 4923576b8ac5bfd36ab2beb176aeb747aaab7e41 (patch) | |
tree | c58e0194bf64bd60e1bd01bf4c474a8cb1bc1284 /drivers/net/sh_eth.c | |
parent | 2db9517ef3dd48790c02a531e2b0db1957afd891 (diff) |
net: sh_eth: add value of ether_link pin in platform_data
The method of ETHER_LINK pin is board dependence.
This patch adding paramters are:
- no_ether_link : If set to 1, do not use ETHER_LINK
- ether_link_active_low : If set to 1, ETHER_LINK is active low.
Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sh_eth.c')
-rw-r--r-- | drivers/net/sh_eth.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index 4c4dcbf19026..f49d0800c1d1 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c | |||
@@ -772,13 +772,15 @@ static void sh_eth_error(struct net_device *ndev, int intr_status) | |||
772 | mdp->stats.tx_carrier_errors++; | 772 | mdp->stats.tx_carrier_errors++; |
773 | if (felic_stat & ECSR_LCHNG) { | 773 | if (felic_stat & ECSR_LCHNG) { |
774 | /* Link Changed */ | 774 | /* Link Changed */ |
775 | if (mdp->cd->no_psr) { | 775 | if (mdp->cd->no_psr || mdp->no_ether_link) { |
776 | if (mdp->link == PHY_DOWN) | 776 | if (mdp->link == PHY_DOWN) |
777 | link_stat = 0; | 777 | link_stat = 0; |
778 | else | 778 | else |
779 | link_stat = PHY_ST_LINK; | 779 | link_stat = PHY_ST_LINK; |
780 | } else { | 780 | } else { |
781 | link_stat = (ctrl_inl(ioaddr + PSR)); | 781 | link_stat = (ctrl_inl(ioaddr + PSR)); |
782 | if (mdp->ether_link_active_low) | ||
783 | link_stat = ~link_stat; | ||
782 | } | 784 | } |
783 | if (!(link_stat & PHY_ST_LINK)) { | 785 | if (!(link_stat & PHY_ST_LINK)) { |
784 | /* Link Down : disable tx and rx */ | 786 | /* Link Down : disable tx and rx */ |
@@ -1410,6 +1412,8 @@ static int sh_eth_drv_probe(struct platform_device *pdev) | |||
1410 | mdp->phy_id = pd->phy; | 1412 | mdp->phy_id = pd->phy; |
1411 | /* EDMAC endian */ | 1413 | /* EDMAC endian */ |
1412 | mdp->edmac_endian = pd->edmac_endian; | 1414 | mdp->edmac_endian = pd->edmac_endian; |
1415 | mdp->no_ether_link = pd->no_ether_link; | ||
1416 | mdp->ether_link_active_low = pd->ether_link_active_low; | ||
1413 | 1417 | ||
1414 | /* set cpu data */ | 1418 | /* set cpu data */ |
1415 | mdp->cd = &sh_eth_my_cpu_data; | 1419 | mdp->cd = &sh_eth_my_cpu_data; |