• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/usb/storage/
1/* Unusual Devices File for the Datafab USB Compact Flash reader
2 *
3 * This program is free software; you can redistribute it and/or modify it
4 * under the terms of the GNU General Public License as published by the
5 * Free Software Foundation; either version 2, or (at your option) any
6 * later version.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 675 Mass Ave, Cambridge, MA 02139, USA.
16 */
17
18#if defined(CONFIG_USB_STORAGE_DATAFAB) || defined(CONFIG_USB_STORAGE_DATAFAB_MODULE)
19
20UNUSUAL_DEV(  0x07c4, 0xa000, 0x0000, 0x0015,
21		"Datafab",
22		"MDCFE-B USB CF Reader",
23		US_SC_SCSI, US_PR_DATAFAB, NULL,
24		0),
25
26/*
27 * The following Datafab-based devices may or may not work
28 * using the current driver...the 0xffff is arbitrary since I
29 * don't know what device versions exist for these guys.
30 *
31 * The 0xa003 and 0xa004 devices in particular I'm curious about.
32 * I'm told they exist but so far nobody has come forward to say that
33 * they work with this driver.  Given the success we've had getting
34 * other Datafab-based cards operational with this driver, I've decided
35 * to leave these two devices in the list.
36 */
37UNUSUAL_DEV( 0x07c4, 0xa001, 0x0000, 0xffff,
38		"SIIG/Datafab",
39		"SIIG/Datafab Memory Stick+CF Reader/Writer",
40		US_SC_SCSI, US_PR_DATAFAB, NULL,
41		0),
42
43/* Reported by Josef Reisinger <josef.reisinger@netcologne.de> */
44UNUSUAL_DEV( 0x07c4, 0xa002, 0x0000, 0xffff,
45		"Datafab/Unknown",
46		"MD2/MD3 Disk enclosure",
47		US_SC_SCSI, US_PR_DATAFAB, NULL,
48		US_FL_SINGLE_LUN),
49
50UNUSUAL_DEV( 0x07c4, 0xa003, 0x0000, 0xffff,
51		"Datafab/Unknown",
52		"Datafab-based Reader",
53		US_SC_SCSI, US_PR_DATAFAB, NULL,
54		0),
55
56UNUSUAL_DEV( 0x07c4, 0xa004, 0x0000, 0xffff,
57		"Datafab/Unknown",
58		"Datafab-based Reader",
59		US_SC_SCSI, US_PR_DATAFAB, NULL,
60		0),
61
62UNUSUAL_DEV( 0x07c4, 0xa005, 0x0000, 0xffff,
63		"PNY/Datafab",
64		"PNY/Datafab CF+SM Reader",
65		US_SC_SCSI, US_PR_DATAFAB, NULL,
66		0),
67
68UNUSUAL_DEV( 0x07c4, 0xa006, 0x0000, 0xffff,
69		"Simple Tech/Datafab",
70		"Simple Tech/Datafab CF+SM Reader",
71		US_SC_SCSI, US_PR_DATAFAB, NULL,
72		0),
73
74/* Submitted by Olaf Hering <olh@suse.de> */
75UNUSUAL_DEV(  0x07c4, 0xa109, 0x0000, 0xffff,
76		"Datafab Systems, Inc.",
77		"USB to CF + SM Combo (LC1)",
78		US_SC_SCSI, US_PR_DATAFAB, NULL,
79		0),
80
81/* Reported by Felix Moeller <felix@derklecks.de>
82 * in Germany this is sold by Hama with the productnumber 46952
83 * as "DualSlot CompactFlash(TM) & MStick Drive USB"
84 */
85UNUSUAL_DEV(  0x07c4, 0xa10b, 0x0000, 0xffff,
86		"DataFab Systems Inc.",
87		"USB CF+MS",
88		US_SC_SCSI, US_PR_DATAFAB, NULL,
89		0),
90
91UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff,
92		"Acomdata",
93		"CF",
94		US_SC_SCSI, US_PR_DATAFAB, NULL,
95		US_FL_SINGLE_LUN),
96
97#endif /* defined(CONFIG_USB_STORAGE_DATAFAB) || ... */
98