Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0+ */
0002 /*
0003  * Unusual Devices File for the Datafab USB Compact Flash reader
0004  */
0005 
0006 #if defined(CONFIG_USB_STORAGE_DATAFAB) || \
0007         defined(CONFIG_USB_STORAGE_DATAFAB_MODULE)
0008 
0009 UNUSUAL_DEV(  0x07c4, 0xa000, 0x0000, 0x0015,
0010         "Datafab",
0011         "MDCFE-B USB CF Reader",
0012         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0013         0),
0014 
0015 /*
0016  * The following Datafab-based devices may or may not work
0017  * using the current driver...the 0xffff is arbitrary since I
0018  * don't know what device versions exist for these guys.
0019  *
0020  * The 0xa003 and 0xa004 devices in particular I'm curious about.
0021  * I'm told they exist but so far nobody has come forward to say that
0022  * they work with this driver.  Given the success we've had getting
0023  * other Datafab-based cards operational with this driver, I've decided
0024  * to leave these two devices in the list.
0025  */
0026 UNUSUAL_DEV( 0x07c4, 0xa001, 0x0000, 0xffff,
0027         "SIIG/Datafab",
0028         "SIIG/Datafab Memory Stick+CF Reader/Writer",
0029         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0030         0),
0031 
0032 /* Reported by Josef Reisinger <josef.reisinger@netcologne.de> */
0033 UNUSUAL_DEV( 0x07c4, 0xa002, 0x0000, 0xffff,
0034         "Datafab/Unknown",
0035         "MD2/MD3 Disk enclosure",
0036         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0037         US_FL_SINGLE_LUN),
0038 
0039 UNUSUAL_DEV( 0x07c4, 0xa003, 0x0000, 0xffff,
0040         "Datafab/Unknown",
0041         "Datafab-based Reader",
0042         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0043         0),
0044 
0045 UNUSUAL_DEV( 0x07c4, 0xa004, 0x0000, 0xffff,
0046         "Datafab/Unknown",
0047         "Datafab-based Reader",
0048         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0049         0),
0050 
0051 UNUSUAL_DEV( 0x07c4, 0xa005, 0x0000, 0xffff,
0052         "PNY/Datafab",
0053         "PNY/Datafab CF+SM Reader",
0054         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0055         0),
0056 
0057 UNUSUAL_DEV( 0x07c4, 0xa006, 0x0000, 0xffff,
0058         "Simple Tech/Datafab",
0059         "Simple Tech/Datafab CF+SM Reader",
0060         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0061         0),
0062 
0063 /* Submitted by Olaf Hering <olh@suse.de> */
0064 UNUSUAL_DEV(  0x07c4, 0xa109, 0x0000, 0xffff,
0065         "Datafab Systems, Inc.",
0066         "USB to CF + SM Combo (LC1)",
0067         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0068         0),
0069 
0070 /*
0071  * Reported by Felix Moeller <felix@derklecks.de>
0072  * in Germany this is sold by Hama with the productnumber 46952
0073  * as "DualSlot CompactFlash(TM) & MStick Drive USB"
0074  */
0075 UNUSUAL_DEV(  0x07c4, 0xa10b, 0x0000, 0xffff,
0076         "DataFab Systems Inc.",
0077         "USB CF+MS",
0078         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0079         0),
0080 
0081 UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff,
0082         "Acomdata",
0083         "CF",
0084         USB_SC_SCSI, USB_PR_DATAFAB, NULL,
0085         US_FL_SINGLE_LUN),
0086 
0087 #endif /* defined(CONFIG_USB_STORAGE_DATAFAB) || ... */