unusual_datafab.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Unusual Devices File for the Datafab USB Compact Flash reader
  4. */
  5. #if defined(CONFIG_USB_STORAGE_DATAFAB) || \
  6. defined(CONFIG_USB_STORAGE_DATAFAB_MODULE)
  7. UNUSUAL_DEV( 0x07c4, 0xa000, 0x0000, 0x0015,
  8. "Datafab",
  9. "MDCFE-B USB CF Reader",
  10. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  11. 0),
  12. /*
  13. * The following Datafab-based devices may or may not work
  14. * using the current driver...the 0xffff is arbitrary since I
  15. * don't know what device versions exist for these guys.
  16. *
  17. * The 0xa003 and 0xa004 devices in particular I'm curious about.
  18. * I'm told they exist but so far nobody has come forward to say that
  19. * they work with this driver. Given the success we've had getting
  20. * other Datafab-based cards operational with this driver, I've decided
  21. * to leave these two devices in the list.
  22. */
  23. UNUSUAL_DEV( 0x07c4, 0xa001, 0x0000, 0xffff,
  24. "SIIG/Datafab",
  25. "SIIG/Datafab Memory Stick+CF Reader/Writer",
  26. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  27. 0),
  28. /* Reported by Josef Reisinger <josef.reisinger@netcologne.de> */
  29. UNUSUAL_DEV( 0x07c4, 0xa002, 0x0000, 0xffff,
  30. "Datafab/Unknown",
  31. "MD2/MD3 Disk enclosure",
  32. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  33. US_FL_SINGLE_LUN),
  34. UNUSUAL_DEV( 0x07c4, 0xa003, 0x0000, 0xffff,
  35. "Datafab/Unknown",
  36. "Datafab-based Reader",
  37. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  38. 0),
  39. UNUSUAL_DEV( 0x07c4, 0xa004, 0x0000, 0xffff,
  40. "Datafab/Unknown",
  41. "Datafab-based Reader",
  42. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  43. 0),
  44. UNUSUAL_DEV( 0x07c4, 0xa005, 0x0000, 0xffff,
  45. "PNY/Datafab",
  46. "PNY/Datafab CF+SM Reader",
  47. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  48. 0),
  49. UNUSUAL_DEV( 0x07c4, 0xa006, 0x0000, 0xffff,
  50. "Simple Tech/Datafab",
  51. "Simple Tech/Datafab CF+SM Reader",
  52. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  53. 0),
  54. /* Submitted by Olaf Hering <olh@suse.de> */
  55. UNUSUAL_DEV( 0x07c4, 0xa109, 0x0000, 0xffff,
  56. "Datafab Systems, Inc.",
  57. "USB to CF + SM Combo (LC1)",
  58. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  59. 0),
  60. /*
  61. * Reported by Felix Moeller <felix@derklecks.de>
  62. * in Germany this is sold by Hama with the productnumber 46952
  63. * as "DualSlot CompactFlash(TM) & MStick Drive USB"
  64. */
  65. UNUSUAL_DEV( 0x07c4, 0xa10b, 0x0000, 0xffff,
  66. "DataFab Systems Inc.",
  67. "USB CF+MS",
  68. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  69. 0),
  70. UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff,
  71. "Acomdata",
  72. "CF",
  73. USB_SC_SCSI, USB_PR_DATAFAB, NULL,
  74. US_FL_SINGLE_LUN),
  75. #endif /* defined(CONFIG_USB_STORAGE_DATAFAB) || ... */