blob: 5049b6bbe5d5bf6a10f492217a6dc129b9c6fc12 [file] [log] [blame]
Felipe Balbif0183a32016-04-18 13:09:11 +03001/*
2 * Unusual Devices File for the Datafab USB Compact Flash reader
Alan Stern2cbbf352009-02-12 14:48:15 -05003 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2, or (at your option) any
7 * later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19#if defined(CONFIG_USB_STORAGE_DATAFAB) || \
20 defined(CONFIG_USB_STORAGE_DATAFAB_MODULE)
21
22UNUSUAL_DEV( 0x07c4, 0xa000, 0x0000, 0x0015,
23 "Datafab",
24 "MDCFE-B USB CF Reader",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020025 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050026 0),
27
28/*
29 * The following Datafab-based devices may or may not work
30 * using the current driver...the 0xffff is arbitrary since I
31 * don't know what device versions exist for these guys.
32 *
33 * The 0xa003 and 0xa004 devices in particular I'm curious about.
34 * I'm told they exist but so far nobody has come forward to say that
35 * they work with this driver. Given the success we've had getting
36 * other Datafab-based cards operational with this driver, I've decided
37 * to leave these two devices in the list.
38 */
39UNUSUAL_DEV( 0x07c4, 0xa001, 0x0000, 0xffff,
40 "SIIG/Datafab",
41 "SIIG/Datafab Memory Stick+CF Reader/Writer",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020042 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050043 0),
44
45/* Reported by Josef Reisinger <josef.reisinger@netcologne.de> */
46UNUSUAL_DEV( 0x07c4, 0xa002, 0x0000, 0xffff,
47 "Datafab/Unknown",
48 "MD2/MD3 Disk enclosure",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020049 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050050 US_FL_SINGLE_LUN),
51
52UNUSUAL_DEV( 0x07c4, 0xa003, 0x0000, 0xffff,
53 "Datafab/Unknown",
54 "Datafab-based Reader",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020055 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050056 0),
57
58UNUSUAL_DEV( 0x07c4, 0xa004, 0x0000, 0xffff,
59 "Datafab/Unknown",
60 "Datafab-based Reader",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020061 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050062 0),
63
64UNUSUAL_DEV( 0x07c4, 0xa005, 0x0000, 0xffff,
65 "PNY/Datafab",
66 "PNY/Datafab CF+SM Reader",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020067 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050068 0),
69
70UNUSUAL_DEV( 0x07c4, 0xa006, 0x0000, 0xffff,
71 "Simple Tech/Datafab",
72 "Simple Tech/Datafab CF+SM Reader",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020073 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050074 0),
75
76/* Submitted by Olaf Hering <olh@suse.de> */
77UNUSUAL_DEV( 0x07c4, 0xa109, 0x0000, 0xffff,
78 "Datafab Systems, Inc.",
79 "USB to CF + SM Combo (LC1)",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020080 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050081 0),
82
Felipe Balbif0183a32016-04-18 13:09:11 +030083/*
84 * Reported by Felix Moeller <felix@derklecks.de>
Alan Stern2cbbf352009-02-12 14:48:15 -050085 * in Germany this is sold by Hama with the productnumber 46952
86 * as "DualSlot CompactFlash(TM) & MStick Drive USB"
87 */
88UNUSUAL_DEV( 0x07c4, 0xa10b, 0x0000, 0xffff,
89 "DataFab Systems Inc.",
90 "USB CF+MS",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020091 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050092 0),
93
94UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff,
95 "Acomdata",
96 "CF",
Michal Nazarewicz8fa7fd72010-10-07 13:05:21 +020097 USB_SC_SCSI, USB_PR_DATAFAB, NULL,
Alan Stern2cbbf352009-02-12 14:48:15 -050098 US_FL_SINGLE_LUN),
99
100#endif /* defined(CONFIG_USB_STORAGE_DATAFAB) || ... */