Subject: Re: IBM IDE PC Card -support
To: None <macallan@NetBSD.org>
From: Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>
List: port-i386
Date: 06/20/2006 04:42:19
macallan@NetBSD.org wrote:

> > pcmcia0 function 0: <PCMCIA, IDE CARD, F1> (manufacturer 0xffffffff, 
> > product 0xffffffff)
> >  not configured
> 
> So for some reason the PCMCIA code failed to read manufacturer and 
> product ID from your card and that's most likely the reason why it 
> didn't attach. Maybe hosed CIS data, who knows.

According to wdc_pcmcia.c, not all pcmcia devices have
sane vendor/product IDs. You could add an entry to
wdc_pcmcia_product[] in wdc_pcmcia.c like:
---
	{ { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
	  {"PCMCIA", "IDE CARD", NULL, NULL} }, 2 },
---
Izumi Tsutsui