card manager hangs

Daniel Ritz daniel.ritz at gmx.ch
Thu Sep 22 17:28:29 EDT 2005


On Thursday 22 September 2005 23.06, Dominik Brodowski wrote:
> Daniel,
> 
> Do you agree/ACK to add PCI_DEVICE_ID_ENE_712 to the list of ENE overrides?
> Mario Fetka reported that using the TI1250 override resolved the lockup.

ACK. but i would go for the TI12XX, not the TI1250 override. no datasheet
so not sure about the stuff the TI1250 override does..
and FWIW there are also the 710, 720 and 722 bridges. i put that in a little
patch...on top of pcmcia-yenta-add-support-for-more-ti-bridges.patch...

rgds
-daniel

----

[PATCH] pcmcia/yenta: add more EnE bridges to the overrides

adds better support for the CB-710, CB-712, CB-720 and CB-722 bridges from EnE

Signed-off-by: Daniel Ritz <daniel.ritz at gmx.ch>

--- linux-2.6/include/linux/pci_ids.h~	2005-09-22 23:19:04.000000000 +0200
+++ linux-2.6/include/linux/pci_ids.h	2005-09-22 23:19:40.000000000 +0200
@@ -2193,7 +2193,11 @@
 #define PCI_DEVICE_ID_ENE_1211		0x1211
 #define PCI_DEVICE_ID_ENE_1225		0x1225
 #define PCI_DEVICE_ID_ENE_1410		0x1410
+#define PCI_DEVICE_ID_ENE_710		0x1411
+#define PCI_DEVICE_ID_ENE_712		0x1412
 #define PCI_DEVICE_ID_ENE_1420		0x1420
+#define PCI_DEVICE_ID_ENE_720		0x1421
+#define PCI_DEVICE_ID_ENE_722		0x1422
 #define PCI_VENDOR_ID_CHELSIO		0x1425
 
 #define PCI_VENDOR_ID_MIPS		0x153f
--- linux-2.6/drivers/pcmcia/yenta_socket.c~	2005-09-22 23:16:29.000000000 +0200
+++ linux-2.6/drivers/pcmcia/yenta_socket.c	2005-09-22 23:20:50.000000000 +0200
@@ -1273,6 +1273,10 @@
 	CB_ID(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_7510, TI12XX),
 	CB_ID(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_7610, TI12XX),
 
+	CB_ID(PCI_VENDOR_ID_ENE, PCI_DEVICE_ID_ENE_710, TI12XX),
+	CB_ID(PCI_VENDOR_ID_ENE, PCI_DEVICE_ID_ENE_712, TI12XX),
+	CB_ID(PCI_VENDOR_ID_ENE, PCI_DEVICE_ID_ENE_720, TI12XX),
+	CB_ID(PCI_VENDOR_ID_ENE, PCI_DEVICE_ID_ENE_722, TI12XX),
 	CB_ID(PCI_VENDOR_ID_ENE, PCI_DEVICE_ID_ENE_1211, TI12XX),
 	CB_ID(PCI_VENDOR_ID_ENE, PCI_DEVICE_ID_ENE_1225, TI12XX),
 	CB_ID(PCI_VENDOR_ID_ENE, PCI_DEVICE_ID_ENE_1410, TI1250),



More information about the linux-pcmcia mailing list