From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: From: jmk@plan9.bell-labs.com To: 9fans@cse.psu.edu Subject: Re: [9fans] Intel PRO/100 VE (82562) In-Reply-To: <4028428F.7040904@ajft.org> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Date: Tue, 10 Feb 2004 10:43:27 -0500 Content-Transfer-Encoding: quoted-printable Topicbox-Message-UUID: dcdfb428-eacc-11e9-9e20-41e7f4b1d025 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 likel= y=20 > to be a minor change to include the 82562 cards, or would it need a=20 > whole new driver? I seem doomed to spend my life finding machines that= =20 > I can put plan9 on that have all but one bit of hardware supported! >=20 > My latest acquisition is a P4 with the above Intel network card, a=20 > Matrox G450 that seems to only work at 640x480x8 and ATA and SATA disk=20 > controllers where only the parallel ATA is recognised! Oh yeah, and it= s=20 > got a funny two-button mouse with a wheel on top too... >=20 > The relevant line from pci.txt is: > 2.8.0: 02.00.00 8086/1050 9 0:feaff000 4096 1:0000bc01 64 >=20 > Adrian >=20 > --------------------------------------------------------------- > Adrian Tritschler mailto:ajft@ajft.org > Latitude 38=C2=B0S, Longitude 145=C2=B0E, 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 =3D 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.