Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jun 1998 09:40:02 -0700 (PDT)
From:      Greg Troxel <gdt@ir.bbn.com>
To:        freebsd-bugs@FreeBSD.ORG
Subject:   Re: kern/4849: 2.2.5-RELEASE does not detect TI PCI-1130 CardBus PCMCIA controller
Message-ID:  <199806291640.JAA10462@freefall.freebsd.org>

index | next in thread | raw e-mail

The following reply was made to PR kern/4849; it has been noted by GNATS.

From: Greg Troxel <gdt@ir.bbn.com>
To: freebsd-gnats-submit@freebsd.org, dcarmich@mcs.com
Cc:  Subject: Re: kern/4849: 2.2.5-RELEASE does not detect TI PCI-1130 CardBus PCMCIA controller
Date: Mon, 29 Jun 1998 12:38:31 -0400

 I had this problem on 2.2.1, and just brought my fix
 forward to 2.2.6.  I have not tried the stock 2.2.6 sources
 with pccard support (the boot floppy worked ok with zp0, but
 I needed custom stuff anyway).
 Hardware is an IBM Thinkpad 760ED.  The resulting kernel doesn't
 suspend/resume 100% right, but it basically works ok.
 This patch avoids recognizing the 1130 as a pci device; this allowed
 (under 2.2.1) it to be probed in isa compatibility mode, where it
 acted like the normal bridge chip.
 
 Index: src/sys/pci/pcic_p.c
 ===================================================================
 RCS file: /my-CVS/FreeBSD/src/sys/pci/pcic_p.c,v
 retrieving revision 1.1.1.1
 diff -u -r1.1.1.1 pcic_p.c
 --- pcic_p.c    1998/06/24 14:28:34     1.1.1.1
 +++ pcic_p.c    1998/06/26 15:34:21
 @@ -72,7 +72,12 @@
         case PCI_DEVICE_ID_PCIC_CLPD6832:
                 return ("Cirrus Logic PD6832 CardBus Adapter");
         case PCI_DEVICE_ID_PCIC_TI1130:
 +#if 0
                 return ("TI 1130 PCMCIA/CardBus Bridge");
 +#else
 +               printf("ignoring 1130; fallthrough to compat mode\n");
 +               break;
 +#endif
         case PCI_DEVICE_ID_PCIC_TI1131:
                 return ("TI 1131 PCI to PCMCIA/CardBus bridge");
         default:

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


help

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