unusual_datafab.h 3.0 KB

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