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