Re: Problems configuring Vadem VG-469 PCMCIA controller.

2000-04-28 Thread Dave Belfer-Shevett

On Thu, 27 Apr 2000, Warner Losh wrote:
 Add the vendor ID to pccard/pcic.c:
 static struct isa_pnp_id pcic_ids[] = {
   {PCIC_PNP_82365,NULL},  /* PNP0E00 */
   {PCIC_PNP_CL_PD6720,NULL},  /* PNP0E01 */
   {PCIC_PNP_VLSI_82C146,  NULL},  /* PNP0E02 */
   {PCIC_PNP_82365_CARDBUS,NULL},  /* PNP0E03 */
   {0}
 };

Thanks to the wonders of Mr Bill Paul and others, we are up and running
beautifully.  Changing that structure to:

static struct isa_pnp_id pcic_ids[] = {
{PCIC_PNP_82365,NULL},  /* PNP0E00 */
{PCIC_PNP_CL_PD6720,NULL},  /* PNP0E01 */
{PCIC_PNP_VLSI_82C146,  NULL},  /* PNP0E02 */
{PCIC_PNP_82365_CARDBUS,NULL},  /* PNP0E03 */
{0x1802a904,NULL},
{0}
};

has fixed the problem.  Note that that identifier is what pnpinfo
reported:

Logical Device ID: AEI0218 0x1802a904 #0
Vendor register funcs 00
I/O Range 0x3e0 .. 0x3fe, alignment 0x2, len 0x2
[16-bit addr]
End Tag

Since we knew the controller was the same as the others (the Vadem), just
adding that ID fixed thinks up.

Thanks to everyone who answered, and specially to Bill who a) wrote  the
driver, and b) debugged the problem with me.

dave

---.   Web-based problem management: www.stonekeep.com
Dave Belfer-Shevett .
[EMAIL PROTECTED]  / "I've never had major knee surgery on any other part \
--  of my body." (Winston Bennett, University of  |
  |  Kentucky basketball forward)  |
   \__/



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Problems configuring Vadem VG-469 PCMCIA controller.

2000-04-26 Thread Warner Losh

In message Pine.BSF.4.21.0004251617200.303-10@localhost Dave Belfer-Shevett 
writes:
: Vendor ID AEI0218 (0x1802a904), Serial Number 0x01234567

You'll have to add this ID to the list of IDs in the pcic driver for
4.0.  I'll try to do this when I get back if you can wait.  And if you
can't then you'll have to do it yourself :-)

Warner


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Problems configuring Vadem VG-469 PCMCIA controller.

2000-04-25 Thread Dave Belfer-Shevett


Hiya folks.  I'm running on FreeBSD 4.0-RELEASE, trying to get a Lucent
Wavelan card (wi) working via an ActionTec PC700 PCMCIA controller (detail
on this controller: http://www.actiontec.com/support/readers/pc700.html)

I've been chatting with Bill (who wrote the 'wi' driver), and we can't
seem to get this controller, which is apparently Plug N Play, to come up
in the kernel.

pnpinfo shows...

[root@lightship]:~# pnpinfo
Checking for Plug-n-Play devices...
Card assigned CSN #1
Vendor ID AEI0218 (0x1802a904), Serial Number 0x01234567
PnP Version 1.0, Vendor Version 0
Device Description: ACTIONTEC PNP PCMCIA ADAPTER
Logical Device ID: AEI0218 0x1802a904 #0
Vendor register funcs 00
I/O Range 0x3e0 .. 0x3fe, alignment 0x2, len 0x2
[16-bit addr]
End Tag
Successfully got 4 resources, 1 logical fdevs
-- card select # 0x0001
CSN AEI0218 (0x1802a904), Serial Number 0x01234567
Logical device #0
IO:  0x03e0 0x03e0 0x03e0 0x03e0 0x03e0 0x03e0 0x03e0 0x03e0
IRQ 0 0
DMA 4 4
IO range check 0x00 activate 0x01

The kernel reports:

unknown0: ACTIONTEC PNP PCMCIA ADAPTER at port 0x3e0-0x3e1 on isa0

I have this in my kernel config file:

device  pcic0   at isa? irq 10 port 0x3e0 iomem 0xd

I've tried changing the IRQ around by altering this line in the kernel
file, to no avail.

Any suggestions?  Please?  :)

---.   Web-based problem management: www.stonekeep.com
Dave Belfer-Shevett .
[EMAIL PROTECTED]  /2.) HIRE YEW - complete sentence. remainder of\
--   greeting. Usage: "Heidi, hire yew?" (from|
  | 'Hickphonics') |
   \__/




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message