unusual_datafab.h 3.0 KB

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