Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Sep 2000 12:41:49 -0400
From:      "Sean O'Connell" <sean@stat.Duke.EDU>
To:        froekjaerf@netscape.net
Cc:        FreeBSD mobile <freebsd-mobile@FreeBSD.ORG>
Subject:   Re: Linksys PCM100
Message-ID:  <20000929124149.L63894@stat.Duke.EDU>
In-Reply-To: <11875D7B.49412C80.0F2A144B@netscape.net>; from froekjaerf@netscape.net on Fri, Sep 29, 2000 at 12:30:31PM -0400
References:  <11875D7B.49412C80.0F2A144B@netscape.net>

next in thread | previous in thread | raw e-mail | index | archive | help
froekjaerf@netscape.net stated:
: I bought a Linksys PCM100 (not PCMPC100), but i cant get it to work.
: I have installed 4.1 release from CD on a asus 7400 laptop.
: 
: It did not have an entry in the pccard.conf, so i copied the one for PCMPC100 and changed the identification string.
: 
: #Linksys EtherFast 10/100 PC Card (PCM100)
: card "Linksys" "EtherFast 10/100 Integrated PC Card (PCM100)"
:     config  0x7 "ed0" ?
:     insert  logger -t pccard:$device -s Linksys Fast 100-BaseT inserted
:     insert  /etc/pccard_ether $device
:     remove  logger -t pccard:$device -s Linksys Fast 100-BaseT removed
:     remove  /sbin/ifconfig $device delete
: 
: I have tried with both Irq 3, 7 and auto. 7 is what W2K uses.
: 
: But when i insert the card it says device not configured.
: Here is the output:
: 
: pccardd[48]: Card "Linksys"("EtherFast 10/100 Integrated PC Card (PCM100)") [Ver 1.0] [ ] matched "Linksys" ("EtherFast 10/100 Integrated PC Card (PCM100)") [(null)] [(null)]
: pccardd[48]: driver allocation failed for Linksys(EtherFast 10/100 Integrated PC Card (PCM100)): Device not configured
: 
: I don't know what other information might be relevant?

: config> di ed0

: pcic0: <VLSI 82C146> at port 0x3e0 iomem 0xd0000 irq 10 on isa0
: pcic0: management irq 10
: pccard0: <PC Card bus -- kludge version> on pcic0
: pccard1: <PC Card bus -- kludge version> on pcic0

: sio1: configured irq 3 not in bitmap of probed irqs 0

: ppc0: <Parallel port> at port 0x378-0x37f irq 7 on isa0
: unknown0: <LT Win Modem> at port 0x2f8-0x2ff irq 3 drq 5,6 on isa0

: ad0: 9590MB <IBM-DCXA-210000> [19485/16/63] at ata0-master using UDMA33
: acd0: CDROM <CD-224E> at ata0-slave using PIO4
: Mounting root from ufs:/dev/ad0s3a
: pccard: card inserted, slot 1

Hi-

This is most definitely an irq conflict.

1) for starters, you are disalbeing ed0 in /boot/kernel.conf which
   is the driver that this card will use

2) irq 7 has the parallel port on it (FreeBSD doesn't do shared
   interrupts on ISA -> pccards for now)

3) irq 3 is used by the putrid winmodem.  if you can disable it in
   the bios, then you can use irq 3.

4) you could put your pcic in polling mode and use irq 10 for the
   nic, by changing the "device pcicN at blah" lines in your kernel
   to just "device pcic0 at isa?"

5) irq 9 might be free (I'll have to look again ... I didn't see,
   but you ought to double check your device manager)

6) Mark Ovens posted a wonderful little script to look at your irqs

---------------------- %< -------------------------------------
#!/bin/sh
# script .. lifted from Mark Ovens off of FreeBSD-STABLE list
# Date: Fri, 29 Sep 2000 00:46:07 +0100
# From: Mark Ovens <marko@FreeBSD.ORG>


dmesg | \
grep -i 'irq [0-9][0-9]*' | \
sed 's/\(^[a-z0-9]*[: ]\).*\(irq [0-9][0-9]*\).*/\1 \2/' | \
sort -n +2 -3
---------------------- %< -------------------------------------

7) with notebooks, I strongly recommend whittling the generic
   kernel down to just the hardware present ...

-----------------------------------------------------------------------
Sean O'Connell                                Email: sean@stat.Duke.EDU
Institute of Statistics and Decision Sciences Phone: (919) 684-5419
Duke University                               Fax:   (919) 684-8594


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-mobile" in the body of the message




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