9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: jmk@plan9.bell-labs.com
To: 9fans@cse.psu.edu
Subject: Re: [9fans] Intel PRO/100 VE (82562)
Date: Tue, 10 Feb 2004 10:43:27 -0500	[thread overview]
Message-ID: <d852819aef58c9b8a2a6b71b305b2a86@plan9.bell-labs.com> (raw)
In-Reply-To: <4028428F.7040904@ajft.org>

On Mon Feb  9 21:39:34 EST 2004, ajft@ajft.org wrote:
> I see that there's a driver for the 82543 gigabit ethernet, is it likely 
> to be a minor change to include the 82562 cards, or would it need a 
> whole new driver?  I seem doomed to spend my life finding machines that 
> I can put plan9 on that have all but one bit of hardware supported!
> 
> My latest acquisition is a P4 with the above Intel network card, a 
> Matrox G450 that seems to only work at 640x480x8 and ATA and SATA disk 
> controllers where only the parallel ATA is recognised!  Oh yeah, and its 
> got a funny two-button mouse with a wheel on top too...
> 
> The relevant line from pci.txt is:
> 2.8.0:  02.00.00 8086/1050   9 0:feaff000 4096 1:0000bc01 64
> 
> 	Adrian
> 
> ---------------------------------------------------------------
> Adrian Tritschler                          mailto:ajft@ajft.org
> Latitude 38°S, Longitude 145°E, Altitude 50m,      Shoe size 44
> ---------------------------------------------------------------

Try adding the device ID 0x1050 to the relevant case in ether82557.c
and let me know what happens, e.g.

		switch(p->did){
		default:
			continue;
		case 0x1031:		/* Intel 82562EM */
		case 0x1050:		/* */
		case 0x2449:		/* Intel 82562ET */
			nop = 1;
			/*FALLTHROUGH*/
		case 0x1209:		/* Intel 82559ER */
		case 0x1229:		/* Intel 8255[789] */
			break;
		}

There may be bugs/features to be worked around, but I think it's just
another variant of the 82557 embedded in a hub.


      parent reply	other threads:[~2004-02-10 15:43 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-02-10  2:31 Adrian Tritschler
2004-02-10  4:13 ` Geoff Collyer
2004-02-10 15:43 ` jmk [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=d852819aef58c9b8a2a6b71b305b2a86@plan9.bell-labs.com \
    --to=jmk@plan9.bell-labs.com \
    --cc=9fans@cse.psu.edu \
    /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).