Subject: Re: Asante 10/100 nubus network card
To: None <briggs@netbsd.org>
From: Jason R Thorpe <thorpej@zembu.com>
List: port-mac68k
Date: 03/24/2001 14:35:50
On Sat, Mar 24, 2001 at 03:06:00PM -0500, Allen Briggs wrote:

 > Yes.  At least to some extent.  It should be using the sm* driver, and I
 > think it's available in 1.5 as well as -current.  I need to bang on the
 > driver some more, though.  The MAC can not do full-duplex, but the PHY
 > can.  The PHY auto-detects and uses full-duplex at the moment unless you
 > explicitly tell it that you want 100baseTX.

Actually, this is pretty easy to fix.

Change your:

	mii_attach(&sc->sc_dev, &sc->sc_mii, 0xffffffff, ...);

to:

	mii_attach(&sc->sc_dev, &sc->sc_mii, ~(BMSR_100TXFDX|BMSR_10TFDX), ...);

That should mask out the full-duplex capabilities from the PHY.

-- 
        -- Jason R. Thorpe <thorpej@zembu.com>