From: Jeff Garzik <jgarzik@pobox.com>
To: Stefan Rompf <srompf@isg.de>
Cc: netdev@oss.sgi.com
Subject: Re: Patch: link state detection for 8139too against 2.4.20rc2 / 2.5
Date: Wed, 27 Nov 2002 23:58:38 -0500 [thread overview]
Message-ID: <3DE5A27E.50207@pobox.com> (raw)
In-Reply-To: <Pine.LNX.4.44.0210120013500.1159-100000@beohost.scyld.com>
Stefan Rompf wrote:
> Hi,
>
>
> >>Uhmmm, you don't need to poll with the rtl8139. There is a link change
> >>interrupt. Here is the recently added from rtl8139.c
> >
> >ok, I'll try this next time I have access to the card.
>
>
> ...that was some days ago. I've seen that Jeff is enhancing the MII
> interface library, so I used the functions provided there. Patch is
> against 2.4.20rc2 and 2.5 with some offset. Please apply if it looks
> good.
>
> Cheers, Stefan
>
>
> ------------------------------------------------------------------------
>
> --- linux/drivers/net/8139too.c.old 2002-11-19 00:32:04.000000000 +0100
> +++ linux/drivers/net/8139too.c 2002-11-21 22:32:39.000000000 +0100
> @@ -1335,18 +1335,7 @@
> struct rtl8139_private *tp = dev->priv;
>
> if (tp->phys[0] >= 0) {
> - u16 mii_lpa = mdio_read(dev, tp->phys[0], MII_LPA);
> - if (mii_lpa == 0xffff)
> - ; /* Not there */
> - else if ((mii_lpa & LPA_100FULL) == LPA_100FULL
> - || (mii_lpa & 0x00C0) == LPA_10FULL)
> - tp->mii.full_duplex = 1;
> -
> - printk (KERN_INFO"%s: Setting %s%s-duplex based on"
> - " auto-negotiated partner ability %4.4x.\n",
> - dev->name, mii_lpa == 0 ? "" :
> - (mii_lpa & 0x0180) ? "100mbps " : "10mbps ",
> - tp->mii.full_duplex ? "full" : "half", mii_lpa);
> + mii_check_media(&tp->mii, 1, 1);
close -- you don't want to unconditionally "initialize" the media
(mii_check_media second arg).
You can also kibbitz from 8139cp.c in 2.4.20-rc4 / 2.5.<recent> because
the phy code is gonna be pretty darned similar. Eventually the phy code
needs to move to a common 8139lib.c, because both old-8139 line and
8139C+ support external MII phys as well as the normal on-chip phy found
in most 8139s.
Jeff
prev parent reply other threads:[~2002-11-28 4:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-10-11 23:55 Patch: link state detection for 8139too against 2.5.41 Stefan Rompf
2002-10-12 4:14 ` Donald Becker
2002-10-13 12:49 ` Stefan Rompf
2002-10-14 17:42 ` Jeff Garzik
2002-11-24 12:47 ` Patch: link state detection for 8139too against 2.4.20rc2 / 2.5 Stefan Rompf
2002-12-09 22:36 ` Stefan Rompf
2002-12-09 23:25 ` Jeff Garzik
2002-11-28 4:58 ` Jeff Garzik [this message]
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=3DE5A27E.50207@pobox.com \
--to=jgarzik@pobox.com \
--cc=netdev@oss.sgi.com \
--cc=srompf@isg.de \
/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).