public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Dave Jones <davej@codemonkey.org.uk>
To: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Cc: jgarzik@pobox.net
Subject: Re: [PATCH] better ali1563 integrated ethernet support
Date: Mon, 12 May 2003 12:30:38 +0100	[thread overview]
Message-ID: <20030512113038.GA31870@suse.de> (raw)
In-Reply-To: <200305111914.h4BJES3g007061@hera.kernel.org>

On Sun, May 11, 2003 at 06:24:44PM +0000, Linux Kernel wrote:
 > ChangeSet 1.1111, 2003/05/11 14:24:44-04:00, dean@arctic.org
 > 
 > 	[PATCH] better ali1563 integrated ethernet support
 > 	
 > 	it turns out the tulip driver is a much better driver for the integrated
 > 	ali1563 ethernet than the dmfe driver... the dmfe driver gets tx timeouts
 > 	every ~15s and can't receive over 5MB/s.  but with the small tulip patch
 > 	below i'm seeing 11MB/s+ in both directions without problems.
 > 
 > diff -Nru a/drivers/net/tulip/tulip_core.c b/drivers/net/tulip/tulip_core.c
 > --- a/drivers/net/tulip/tulip_core.c	Sun May 11 12:14:32 2003
 > +++ b/drivers/net/tulip/tulip_core.c	Sun May 11 12:14:32 2003
 > @@ -223,6 +223,7 @@
 >  	{ 0x1626, 0x8410, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
 >  	{ 0x1737, 0xAB09, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
 >  	{ 0x17B3, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
 > + 	{ 0x10b9, 0x5261, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X },	/* ALi 1563 integrated ethernet */
 >  	{ } /* terminate list */
 >  };
 >  MODULE_DEVICE_TABLE(pci, tulip_pci_tbl);

 ...
  
 >  #if defined(__sparc__)
 >          /* DM9102A needs 32-dword alignment/burst length on sparc - chip bug? */
 > -        if (pdev->vendor == 0x1282 && pdev->device == 0x9102)
 > +	if ((pdev->vendor == 0x1282 && pdev->device == 0x9102)
 > +		|| (pdev->vendor == 0x10b9 && pdev->device == 0x5261))
 >                  csr0 = (csr0 & ~0xff00) | 0xe000;
 >  #endif

Integrated ALi 1563 on a sparc ?

		Dave


       reply	other threads:[~2003-05-12 11:17 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <200305111914.h4BJES3g007061@hera.kernel.org>
2003-05-12 11:30 ` Dave Jones [this message]
2003-05-12 17:31   ` [PATCH] better ali1563 integrated ethernet support dean gaudet
2003-05-12 17:34     ` Dave Jones

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=20030512113038.GA31870@suse.de \
    --to=davej@codemonkey.org.uk \
    --cc=jgarzik@pobox.net \
    --cc=linux-kernel@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