* [gentoo-user] pcmcia problems (cardmgr can't find device)
@ 2005-08-04 0:17 Lucien D.
2005-08-04 1:11 ` Jason Stubbs
2005-08-04 1:15 ` W.Kenworthy
0 siblings, 2 replies; 4+ messages in thread
From: Lucien D. @ 2005-08-04 0:17 UTC (permalink / raw
To: gentoo-user
phaedrus lu # cardmgr
cardmgr[10882]: no device drivers defined
cardmgr[10882]: no cards defined
cardmgr[10882]: no sockets found!
This is my problem, I've been troubleshooting it off and on for a
while now with no luck.
I'm running 2.6.11 gentoo-sources and version 3.2.8-r2 of pcmcia-cs.
Right now pcmcia support is compiled into the kernel, I have
previously tried it as a module with the same results. The computer
is a Dell inspiron 8200. Below is other relevant info
from lspci:
0000:02:01.0 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus
Controller
Subsystem: Dell: Unknown device 00d4
Flags: medium devsel, IRQ 255
Memory at 20001000 (32-bit, non-prefetchable) [disabled]
Bus: primary=02, secondary=03, subordinate=06, sec-latency=176
I/O window 0: 00000000-00000003 [disabled]
I/O window 1: 00000000-00000003 [disabled]
16-bit legacy interface ports at 0001
0000:02:01.1 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus
Controller
Subsystem: Dell: Unknown device 00d4
Flags: medium devsel, IRQ 255
Memory at 20002000 (32-bit, non-prefetchable) [disabled]
Bus: primary=02, secondary=07, subordinate=0a, sec-latency=176
I/O window 0: 00000000-00000003 [disabled]
I/O window 1: 00000000-00000003 [disabled]
16-bit legacy interface ports at 0001
phaedrus lu # zgrep CONFIG_PCMCIA /proc/config.gz
# CONFIG_PCMCIA_DEBUG is not set
CONFIG_PCMCIA=y
CONFIG_PCMCIA_PROBE=y
# CONFIG_PCMCIA_AHA152X is not set
# CONFIG_PCMCIA_FDOMAIN is not set
# CONFIG_PCMCIA_NINJA_SCSI is not set
# CONFIG_PCMCIA_QLOGIC is not set
# CONFIG_PCMCIA_SYM53C500 is not set
phaedrus conf.d # cat pcmcia | grep ^[^#]
CARDMGR_OPTS="-f"
SCHEME="home"
PCIC="yenta_socket"
PCIC_OPTS=""
PCIC_ALT="i82365"
PCIC_ALT_OPTS=""
CORE_OPTS=""
Any help would be appreciated. Thanks.
Lucien
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [gentoo-user] pcmcia problems (cardmgr can't find device)
2005-08-04 0:17 [gentoo-user] pcmcia problems (cardmgr can't find device) Lucien D.
@ 2005-08-04 1:11 ` Jason Stubbs
2005-08-04 2:11 ` Lucien D.
2005-08-04 1:15 ` W.Kenworthy
1 sibling, 1 reply; 4+ messages in thread
From: Jason Stubbs @ 2005-08-04 1:11 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 914 bytes --]
On Thursday 04 August 2005 09:17, Lucien D. wrote:
> phaedrus lu # zgrep CONFIG_PCMCIA /proc/config.gz
> # CONFIG_PCMCIA_DEBUG is not set
> CONFIG_PCMCIA=y
> CONFIG_PCMCIA_PROBE=y
> # CONFIG_PCMCIA_AHA152X is not set
> # CONFIG_PCMCIA_FDOMAIN is not set
> # CONFIG_PCMCIA_NINJA_SCSI is not set
> # CONFIG_PCMCIA_QLOGIC is not set
> # CONFIG_PCMCIA_SYM53C500 is not set
You're missing some important information here. Here's mine:
CONFIG_PCCARD=y
# CONFIG_PCMCIA_DEBUG is not set
CONFIG_PCMCIA=y
# CONFIG_PCMCIA_LOAD_CIS is not set
# CONFIG_PCMCIA_IOCTL is not set
CONFIG_CARDBUS=y
CONFIG_YENTA=y
# CONFIG_PD6729 is not set
# CONFIG_I82092 is not set
# CONFIG_TCIC is not set
CONFIG_PCCARD_NONSTATIC=y
CONFIG_CARDBUS enables support for 32-bit cards (which you probably want)
and you'll also need to enable at least one driver. Looking at your lspci
output, the Yenta driver should work fine.
--
Jason Stubbs
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [gentoo-user] pcmcia problems (cardmgr can't find device)
2005-08-04 0:17 [gentoo-user] pcmcia problems (cardmgr can't find device) Lucien D.
2005-08-04 1:11 ` Jason Stubbs
@ 2005-08-04 1:15 ` W.Kenworthy
1 sibling, 0 replies; 4+ messages in thread
From: W.Kenworthy @ 2005-08-04 1:15 UTC (permalink / raw
To: gentoo-user
Hint: Avoid d-link DWL-G650+ (atheros ACX111) based cards - they have a
resource conflict with this laptop resulting in a hard lockup.
Interesting, it works under dozeXP after loading the manufacturers
driver as per instructions (ndiswrapper, madwifi and the acx100 project
all suffer from this)
Make sure you compile as modules (doesnt seem to work when monolithic),
and check /etc/conf.d/pcmcia - mine is standard, but in the past I did
have to force yenta_socket to load and not the default (problem since
gone away)
Let me know if you need anything else
BillK
______________________________________
My Dell 8200 on gentoo-sources 2.6.12-r6
Default pcmcia loads the modules on startup (i have not modified it at
all), then card specific ones on insertion:
lsmod for modules associated with pcmcia and an old hermes/orinoco card
orinoco_cs 6792 1
orinoco 43152 1 orinoco_cs
hermes 6272 2 orinoco_cs,orinoco
yenta_socket 20488 3
rsrc_nonstatic 11392 1 yenta_socket
pcmcia_core 46108 4
orinoco_cs,pcmcia,yenta_socket,rsrc_nonstatic
bunyip ~ # rc-update -s |grep pcm
pcmcia | default
Grep .config for PCMCIA:
# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
# PCCARD (PCMCIA/CardBus) support
CONFIG_PCMCIA_DEBUG=y
CONFIG_PCMCIA=m
CONFIG_PCMCIA_PROBE=y
CONFIG_PARPORT_PC_PCMCIA=m
# PCMCIA SCSI adapter support
# CONFIG_PCMCIA_AHA152X is not set
# CONFIG_PCMCIA_FDOMAIN is not set
# CONFIG_PCMCIA_NINJA_SCSI is not set
# CONFIG_PCMCIA_QLOGIC is not set
# CONFIG_PCMCIA_SYM53C500 is not set
# CONFIG_PCMCIA_WAVELAN is not set
# CONFIG_PCMCIA_NETWAVE is not set
# CONFIG_PCMCIA_RAYCS is not set
CONFIG_PCMCIA_HERMES=m
# CONFIG_PCMCIA_WL3501 is not set
# PCMCIA network device support
CONFIG_NET_PCMCIA=y
CONFIG_PCMCIA_3C589=m
CONFIG_PCMCIA_3C574=m
CONFIG_PCMCIA_FMVJ18X=m
CONFIG_PCMCIA_PCNET=m
CONFIG_PCMCIA_NMCLAN=m
CONFIG_PCMCIA_SMC91C92=m
CONFIG_PCMCIA_XIRC2PS=m
CONFIG_PCMCIA_AXNET=m
# PCMCIA character devices
On Wed, 2005-08-03 at 20:17 -0400, Lucien D. wrote:
> phaedrus lu # cardmgr
> cardmgr[10882]: no device drivers defined
> cardmgr[10882]: no cards defined
> cardmgr[10882]: no sockets found!
>
> This is my problem, I've been troubleshooting it off and on for a
> while now with no luck.
>
> I'm running 2.6.11 gentoo-sources and version 3.2.8-r2 of pcmcia-cs.
> Right now pcmcia support is compiled into the kernel, I have
> previously tried it as a module with the same results. The computer
> is a Dell inspiron 8200. Below is other relevant info
>
> from lspci:
> 0000:02:01.0 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus
> Controller
> Subsystem: Dell: Unknown device 00d4
> Flags: medium devsel, IRQ 255
> Memory at 20001000 (32-bit, non-prefetchable) [disabled]
> Bus: primary=02, secondary=03, subordinate=06, sec-latency=176
> I/O window 0: 00000000-00000003 [disabled]
> I/O window 1: 00000000-00000003 [disabled]
> 16-bit legacy interface ports at 0001
>
> 0000:02:01.1 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus
> Controller
> Subsystem: Dell: Unknown device 00d4
> Flags: medium devsel, IRQ 255
> Memory at 20002000 (32-bit, non-prefetchable) [disabled]
> Bus: primary=02, secondary=07, subordinate=0a, sec-latency=176
> I/O window 0: 00000000-00000003 [disabled]
> I/O window 1: 00000000-00000003 [disabled]
> 16-bit legacy interface ports at 0001
>
> phaedrus lu # zgrep CONFIG_PCMCIA /proc/config.gz
> # CONFIG_PCMCIA_DEBUG is not set
> CONFIG_PCMCIA=y
> CONFIG_PCMCIA_PROBE=y
> # CONFIG_PCMCIA_AHA152X is not set
> # CONFIG_PCMCIA_FDOMAIN is not set
> # CONFIG_PCMCIA_NINJA_SCSI is not set
> # CONFIG_PCMCIA_QLOGIC is not set
> # CONFIG_PCMCIA_SYM53C500 is not set
>
> phaedrus conf.d # cat pcmcia | grep ^[^#]
> CARDMGR_OPTS="-f"
> SCHEME="home"
> PCIC="yenta_socket"
> PCIC_OPTS=""
> PCIC_ALT="i82365"
> PCIC_ALT_OPTS=""
> CORE_OPTS=""
>
>
>
>
> Any help would be appreciated. Thanks.
>
> Lucien
>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [gentoo-user] pcmcia problems (cardmgr can't find device)
2005-08-04 1:11 ` Jason Stubbs
@ 2005-08-04 2:11 ` Lucien D.
0 siblings, 0 replies; 4+ messages in thread
From: Lucien D. @ 2005-08-04 2:11 UTC (permalink / raw
To: gentoo-user
As my old high school CS teacher used to say, error due to "User
Headspace Misalignment."
I don't know what led me to enable it without enabling any drivers for
it, but that was my problem. Thanks for the help.
Lucien
On 8/3/05, Jason Stubbs <jstubbs@gentoo.org> wrote:
> On Thursday 04 August 2005 09:17, Lucien D. wrote:
> > phaedrus lu # zgrep CONFIG_PCMCIA /proc/config.gz
> > # CONFIG_PCMCIA_DEBUG is not set
> > CONFIG_PCMCIA=y
> > CONFIG_PCMCIA_PROBE=y
> > # CONFIG_PCMCIA_AHA152X is not set
> > # CONFIG_PCMCIA_FDOMAIN is not set
> > # CONFIG_PCMCIA_NINJA_SCSI is not set
> > # CONFIG_PCMCIA_QLOGIC is not set
> > # CONFIG_PCMCIA_SYM53C500 is not set
>
> You're missing some important information here. Here's mine:
>
> CONFIG_PCCARD=y
> # CONFIG_PCMCIA_DEBUG is not set
> CONFIG_PCMCIA=y
> # CONFIG_PCMCIA_LOAD_CIS is not set
> # CONFIG_PCMCIA_IOCTL is not set
> CONFIG_CARDBUS=y
>
> CONFIG_YENTA=y
> # CONFIG_PD6729 is not set
> # CONFIG_I82092 is not set
> # CONFIG_TCIC is not set
> CONFIG_PCCARD_NONSTATIC=y
>
>
> CONFIG_CARDBUS enables support for 32-bit cards (which you probably want)
> and you'll also need to enable at least one driver. Looking at your lspci
> output, the Yenta driver should work fine.
>
> --
> Jason Stubbs
>
>
>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-08-04 2:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-04 0:17 [gentoo-user] pcmcia problems (cardmgr can't find device) Lucien D.
2005-08-04 1:11 ` Jason Stubbs
2005-08-04 2:11 ` Lucien D.
2005-08-04 1:15 ` W.Kenworthy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox