netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ondrej Zary <linux@rainbow-software.org>
To: Florian Fainelli <f.fainelli@gmail.com>
Cc: Samuel Chessman <chessman@tux.org>,
	netdev <netdev@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 5/9] tlan: Restart autonegotiation on link loss
Date: Wed, 28 May 2014 08:39:00 +0200	[thread overview]
Message-ID: <201405280839.00973.linux@rainbow-software.org> (raw)
In-Reply-To: <CAGVrzcbD=OhzuWRuxJVG1SJeYDsOYaV2AozsWafBtX6gcF08vw@mail.gmail.com>

On Wednesday 28 May 2014, Florian Fainelli wrote:
> Hi,
>
> 2014-05-27 14:38 GMT-07:00 Ondrej Zary <linux@rainbow-software.org>:
> > When link is lost on a card which uses internal PHY for 10 Mbit speeds,
> > restart autonegotiation to allow switching between 10 and 100 Mbps
> > speeds.
>
> I think you should take a look at implementing libphy read/write stubs
> for this driver, that would allow you not to open-code such things.

Yes, that would be good. However, I don't want to do any major PHY-related 
changes to the driver because it supports cards with various PHY 
configurations and I don't have all the different hardware to test.

> > Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
> > ---
> >  drivers/net/ethernet/ti/tlan.c |   14 ++++++++++++++
> >  1 file changed, 14 insertions(+)
> >
> > diff --git a/drivers/net/ethernet/ti/tlan.c
> > b/drivers/net/ethernet/ti/tlan.c index 31d4a96..1047b3f 100644
> > --- a/drivers/net/ethernet/ti/tlan.c
> > +++ b/drivers/net/ethernet/ti/tlan.c
> > @@ -2721,6 +2721,7 @@ static void tlan_phy_finish_auto_neg(struct
> > net_device *dev) else if (!(mode & 0x0080) && (mode & 0x0040))
> >                 priv->tlan_full_duplex = true;
> >
> > +       /* switch to internal PHY for 10 Mbps */
> >         if ((!(mode & 0x0180)) &&
> >             (priv->adapter->flags & TLAN_ADAPTER_USE_INTERN_10) &&
> >             (priv->phy_num != 0)) {
> > @@ -2788,6 +2789,19 @@ static void tlan_phy_monitor(unsigned long data)
> >                                dev->name);
> >                         tlan_dio_write8(dev->base_addr, TLAN_LED_REG, 0);
> >                         netif_carrier_off(dev);
> > +                       if (priv->adapter->flags &
> > TLAN_ADAPTER_USE_INTERN_10) { +                               /* power
> > down internal PHY */
> > +                               u16 data = MII_GC_PDOWN | MII_GC_LOOPBK
> > +                                       | MII_GC_ISOLATE;
> > +                               tlan_mii_sync(dev->base_addr);
> > +                               tlan_mii_write_reg(dev, priv->phy[0],
> > +                                       MII_GEN_CTL, data);
> > +                               /* set to external PHY */
> > +                               priv->phy_num = 1;
> > +                               /* restart autonegotiation */
> > +                               tlan_set_timer(dev, (4*HZ/10),
> > TLAN_TIMER_PHY_PDOWN); +                               return;
> > +                       }
> >                 }
> >         }
> >
> > --
> > Ondrej Zary
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-kernel"
> > in the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at  http://www.tux.org/lkml/



-- 
Ondrej Zary

  reply	other threads:[~2014-05-28  6:39 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-27 21:38 [PATCH 0/9] tlan: Link handling improvements and Olicom fixes Ondrej Zary
2014-05-27 21:38 ` [PATCH 1/9] tlan: Enable activity LED on Olicom OC-2325 and OC-2326 Ondrej Zary
2014-05-27 21:38 ` [PATCH 2/9] tlan: Enable link monitoring Ondrej Zary
2014-05-27 21:38 ` [PATCH 3/9] tlan: Add ethtool support Ondrej Zary
2014-05-27 21:38 ` [PATCH 4/9] tlan: Fix MAC address byte order on OC-2325/OC-2326 Ondrej Zary
2014-05-27 21:38 ` [PATCH 5/9] tlan: Restart autonegotiation on link loss Ondrej Zary
2014-05-27 22:29   ` Florian Fainelli
2014-05-28  6:39     ` Ondrej Zary [this message]
2014-05-28 17:26       ` Florian Fainelli
2014-05-28 14:08   ` Sergei Shtylyov
2014-05-27 21:38 ` [PATCH 6/9] tlan: Don't scream if no link Ondrej Zary
2014-05-27 21:38 ` [PATCH 7/9] tlan: Make autonegotiation faster Ondrej Zary
2014-05-28 14:11   ` Sergei Shtylyov
2014-05-27 21:38 ` [PATCH 8/9] tlan: Add PHY reset timeout Ondrej Zary
2014-05-27 21:38 ` [PATCH 9/9] tlan: Don't disable internal PHY on cards that use it in 10 Mbps mode Ondrej Zary

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201405280839.00973.linux@rainbow-software.org \
    --to=linux@rainbow-software.org \
    --cc=chessman@tux.org \
    --cc=f.fainelli@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).