162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0+ */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * Unusual Devices File for the Datafab USB Compact Flash reader
462306a36Sopenharmony_ci */
562306a36Sopenharmony_ci
662306a36Sopenharmony_ci#if defined(CONFIG_USB_STORAGE_DATAFAB) || \
762306a36Sopenharmony_ci		defined(CONFIG_USB_STORAGE_DATAFAB_MODULE)
862306a36Sopenharmony_ci
962306a36Sopenharmony_ciUNUSUAL_DEV(  0x07c4, 0xa000, 0x0000, 0x0015,
1062306a36Sopenharmony_ci		"Datafab",
1162306a36Sopenharmony_ci		"MDCFE-B USB CF Reader",
1262306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
1362306a36Sopenharmony_ci		0),
1462306a36Sopenharmony_ci
1562306a36Sopenharmony_ci/*
1662306a36Sopenharmony_ci * The following Datafab-based devices may or may not work
1762306a36Sopenharmony_ci * using the current driver...the 0xffff is arbitrary since I
1862306a36Sopenharmony_ci * don't know what device versions exist for these guys.
1962306a36Sopenharmony_ci *
2062306a36Sopenharmony_ci * The 0xa003 and 0xa004 devices in particular I'm curious about.
2162306a36Sopenharmony_ci * I'm told they exist but so far nobody has come forward to say that
2262306a36Sopenharmony_ci * they work with this driver.  Given the success we've had getting
2362306a36Sopenharmony_ci * other Datafab-based cards operational with this driver, I've decided
2462306a36Sopenharmony_ci * to leave these two devices in the list.
2562306a36Sopenharmony_ci */
2662306a36Sopenharmony_ciUNUSUAL_DEV( 0x07c4, 0xa001, 0x0000, 0xffff,
2762306a36Sopenharmony_ci		"SIIG/Datafab",
2862306a36Sopenharmony_ci		"SIIG/Datafab Memory Stick+CF Reader/Writer",
2962306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
3062306a36Sopenharmony_ci		0),
3162306a36Sopenharmony_ci
3262306a36Sopenharmony_ci/* Reported by Josef Reisinger <josef.reisinger@netcologne.de> */
3362306a36Sopenharmony_ciUNUSUAL_DEV( 0x07c4, 0xa002, 0x0000, 0xffff,
3462306a36Sopenharmony_ci		"Datafab/Unknown",
3562306a36Sopenharmony_ci		"MD2/MD3 Disk enclosure",
3662306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
3762306a36Sopenharmony_ci		US_FL_SINGLE_LUN),
3862306a36Sopenharmony_ci
3962306a36Sopenharmony_ciUNUSUAL_DEV( 0x07c4, 0xa003, 0x0000, 0xffff,
4062306a36Sopenharmony_ci		"Datafab/Unknown",
4162306a36Sopenharmony_ci		"Datafab-based Reader",
4262306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
4362306a36Sopenharmony_ci		0),
4462306a36Sopenharmony_ci
4562306a36Sopenharmony_ciUNUSUAL_DEV( 0x07c4, 0xa004, 0x0000, 0xffff,
4662306a36Sopenharmony_ci		"Datafab/Unknown",
4762306a36Sopenharmony_ci		"Datafab-based Reader",
4862306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
4962306a36Sopenharmony_ci		0),
5062306a36Sopenharmony_ci
5162306a36Sopenharmony_ciUNUSUAL_DEV( 0x07c4, 0xa005, 0x0000, 0xffff,
5262306a36Sopenharmony_ci		"PNY/Datafab",
5362306a36Sopenharmony_ci		"PNY/Datafab CF+SM Reader",
5462306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
5562306a36Sopenharmony_ci		0),
5662306a36Sopenharmony_ci
5762306a36Sopenharmony_ciUNUSUAL_DEV( 0x07c4, 0xa006, 0x0000, 0xffff,
5862306a36Sopenharmony_ci		"Simple Tech/Datafab",
5962306a36Sopenharmony_ci		"Simple Tech/Datafab CF+SM Reader",
6062306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
6162306a36Sopenharmony_ci		0),
6262306a36Sopenharmony_ci
6362306a36Sopenharmony_ci/* Submitted by Olaf Hering <olh@suse.de> */
6462306a36Sopenharmony_ciUNUSUAL_DEV(  0x07c4, 0xa109, 0x0000, 0xffff,
6562306a36Sopenharmony_ci		"Datafab Systems, Inc.",
6662306a36Sopenharmony_ci		"USB to CF + SM Combo (LC1)",
6762306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
6862306a36Sopenharmony_ci		0),
6962306a36Sopenharmony_ci
7062306a36Sopenharmony_ci/*
7162306a36Sopenharmony_ci * Reported by Felix Moeller <felix@derklecks.de>
7262306a36Sopenharmony_ci * in Germany this is sold by Hama with the productnumber 46952
7362306a36Sopenharmony_ci * as "DualSlot CompactFlash(TM) & MStick Drive USB"
7462306a36Sopenharmony_ci */
7562306a36Sopenharmony_ciUNUSUAL_DEV(  0x07c4, 0xa10b, 0x0000, 0xffff,
7662306a36Sopenharmony_ci		"DataFab Systems Inc.",
7762306a36Sopenharmony_ci		"USB CF+MS",
7862306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
7962306a36Sopenharmony_ci		0),
8062306a36Sopenharmony_ci
8162306a36Sopenharmony_ciUNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff,
8262306a36Sopenharmony_ci		"Acomdata",
8362306a36Sopenharmony_ci		"CF",
8462306a36Sopenharmony_ci		USB_SC_SCSI, USB_PR_DATAFAB, NULL,
8562306a36Sopenharmony_ci		US_FL_SINGLE_LUN),
8662306a36Sopenharmony_ci
8762306a36Sopenharmony_ci#endif /* defined(CONFIG_USB_STORAGE_DATAFAB) || ... */
88