Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Dec 1996 07:19:50 -0800
From:      David Greenman <dg@root.com>
To:        Bradley Dunn <bradley@dunn.org>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: SMC EtherPower 10/100 (SMC9332BDT) 
Message-ID:  <199612171519.HAA07996@root.com>
In-Reply-To: Your message of "Tue, 17 Dec 1996 10:04:12 EST." <Pine.BSI.3.95.961217100052.14126A-100000@ns2.harborcom.net> 

next in thread | previous in thread | raw e-mail | index | archive | help
>On Mon, 16 Dec 1996, David Greenman wrote:
>
>> >On Sun, 15 Dec 1996, David Greenman wrote:
>> >
>> >>    Apply the following patch and add options "DE_HACK" into your kernel config
>> >> file. Let me know if it works.
>> >
>> >Did not work. Patch applied clean, kernel compiled fine with DE_HACK,
>> >probed correctly on boot, then de0: enabling BNC/AUI port. Arg.
>> 
>>    If it said "enabling BNC/AUI", then it didn't probe correctly since that
>> should only show up on 21040 (10Mbps only) based cards. In any case, you
>> should also (in addition to the patch) try the "link2" flag to ifconfig.
>
>Here is how it probes:
>de0 <Digital DC21140A Fast Ethernet> rev 32 int a irq 11 on pci0:10
>de0: SMC 8432BA DC21140A [10-100Mb/s] pass 2.0
>de0: address 00:00:c0:fa:2c:f8
>de0: enabling BNC/AUI port

   Blurch. Okay, look for this assignment:

    if (sc->tulip_chipid == TULIP_21140) {
        sc->tulip_boardsw = &tulip_21140_smc9332_boardsw;
        return;
    }

   ...and change it to use the generic one:

...
	sc->tulip_boardsw = &tulip_dc21140_generic_boardsw;
...

   If that doesn't work, well, sorry...I'm all out of hacks for now.

-DG

David Greenman
Core-team/Principal Architect, The FreeBSD Project



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199612171519.HAA07996>