Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* Driver for USB Mass Storage compliant devices |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 2 | * Unusual Devices File |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * $Id: unusual_devs.h,v 1.32 2002/02/25 02:41:24 mdharm Exp $ |
| 5 | * |
| 6 | * Current development and maintenance by: |
| 7 | * (c) 2000-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net) |
| 8 | * |
| 9 | * Initial work by: |
| 10 | * (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc. |
| 11 | * |
| 12 | * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more |
| 13 | * information about this driver. |
| 14 | * |
| 15 | * This program is free software; you can redistribute it and/or modify it |
| 16 | * under the terms of the GNU General Public License as published by the |
| 17 | * Free Software Foundation; either version 2, or (at your option) any |
| 18 | * later version. |
| 19 | * |
| 20 | * This program is distributed in the hope that it will be useful, but |
| 21 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 23 | * General Public License for more details. |
| 24 | * |
| 25 | * You should have received a copy of the GNU General Public License along |
| 26 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 27 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 28 | */ |
| 29 | |
| 30 | /* IMPORTANT NOTE: This file must be included in another file which does |
| 31 | * the following thing for it to work: |
| 32 | * The macro UNUSUAL_DEV() must be defined before this file is included |
| 33 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | /* If you edit this file, please try to keep it sorted first by VendorID, |
| 36 | * then by ProductID. |
| 37 | * |
| 38 | * If you want to add an entry for this file, be sure to include the |
| 39 | * following information: |
| 40 | * - a patch that adds the entry for your device, including your |
| 41 | * email address right above the entry (plus maybe a brief |
| 42 | * explanation of the reason for the entry), |
| 43 | * - a copy of /proc/bus/usb/devices with your device plugged in |
| 44 | * running with this patch. |
| 45 | * Send your submission to either Phil Dibowitz <phil@ipom.com> or |
| 46 | * Alan Stern <stern@rowland.harvard.edu>, and don't forget to CC: the |
| 47 | * USB development list <linux-usb-devel@lists.sourceforge.net>. |
| 48 | */ |
| 49 | |
Vivian Bregier | 8af60be | 2005-05-03 02:16:34 +0200 | [diff] [blame] | 50 | /* patch submitted by Vivian Bregier <Vivian.Bregier@imag.fr> |
| 51 | */ |
| 52 | UNUSUAL_DEV( 0x03eb, 0x2002, 0x0100, 0x0100, |
| 53 | "ATMEL", |
| 54 | "SND1 Storage", |
| 55 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 56 | US_FL_IGNORE_RESIDUE), |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | UNUSUAL_DEV( 0x03ee, 0x6901, 0x0000, 0x0100, |
| 59 | "Mitsumi", |
| 60 | "USB FDD", |
| 61 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 62 | US_FL_SINGLE_LUN ), |
| 63 | |
Rodolfo Quesada | 9d5847b | 2006-03-06 10:45:42 -0500 | [diff] [blame] | 64 | /* Reported by Rodolfo Quesada <rquesada@roqz.net> */ |
| 65 | UNUSUAL_DEV( 0x03ee, 0x6906, 0x0003, 0x0003, |
| 66 | "VIA Technologies Inc.", |
| 67 | "Mitsumi multi cardreader", |
| 68 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 69 | US_FL_IGNORE_RESIDUE ), |
| 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | UNUSUAL_DEV( 0x03f0, 0x0107, 0x0200, 0x0200, |
| 72 | "HP", |
| 73 | "CD-Writer+", |
| 74 | US_SC_8070, US_PR_CB, NULL, 0), |
| 75 | |
| 76 | #ifdef CONFIG_USB_STORAGE_USBAT |
| 77 | UNUSUAL_DEV( 0x03f0, 0x0207, 0x0001, 0x0001, |
| 78 | "HP", |
| 79 | "CD-Writer+ 8200e", |
Peter Chubb | bdcfd9e | 2006-05-02 18:29:34 +0100 | [diff] [blame] | 80 | US_SC_8070, US_PR_USBAT, init_usbat_cd, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | UNUSUAL_DEV( 0x03f0, 0x0307, 0x0001, 0x0001, |
| 83 | "HP", |
| 84 | "CD-Writer+ CD-4e", |
Peter Chubb | bdcfd9e | 2006-05-02 18:29:34 +0100 | [diff] [blame] | 85 | US_SC_8070, US_PR_USBAT, init_usbat_cd, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #endif |
| 87 | |
Phil Dibowitz | 1ea640c | 2005-08-29 22:38:28 -0700 | [diff] [blame] | 88 | /* Reported by Sebastian Kapfer <sebastian_kapfer@gmx.net> |
| 89 | * and Olaf Hering <olh@suse.de> (different bcd's, same vendor/product) |
| 90 | * for USB floppies that need the SINGLE_LUN enforcement. |
| 91 | */ |
| 92 | UNUSUAL_DEV( 0x0409, 0x0040, 0x0000, 0x9999, |
| 93 | "NEC", |
| 94 | "NEC USB UF000x", |
| 95 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 96 | US_FL_SINGLE_LUN ), |
| 97 | |
Phil Dibowitz | 3e220e9 | 2005-12-18 21:30:02 -0800 | [diff] [blame] | 98 | /* Patch submitted by Mihnea-Costin Grigore <mihnea@zulu.ro> */ |
| 99 | UNUSUAL_DEV( 0x040d, 0x6205, 0x0003, 0x0003, |
| 100 | "VIA Technologies Inc.", |
| 101 | "USB 2.0 Card Reader", |
| 102 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 103 | US_FL_IGNORE_RESIDUE ), |
| 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | /* Deduced by Jonathan Woithe <jwoithe@physics.adelaide.edu.au> |
| 106 | * Entry needed for flags: US_FL_FIX_INQUIRY because initial inquiry message |
| 107 | * always fails and confuses drive. |
| 108 | */ |
| 109 | UNUSUAL_DEV( 0x0411, 0x001c, 0x0113, 0x0113, |
| 110 | "Buffalo", |
| 111 | "DUB-P40G HDD", |
| 112 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 113 | US_FL_FIX_INQUIRY ), |
| 114 | |
Ernis | d8840d6 | 2006-06-26 16:02:43 -0400 | [diff] [blame^] | 115 | /* Submitted by Ernestas Vaiciukevicius <ernisv@gmail.com> */ |
| 116 | UNUSUAL_DEV( 0x0419, 0x0100, 0x0100, 0x0100, |
| 117 | "Samsung Info. Systems America, Inc.", |
| 118 | "MP3 Player", |
| 119 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 120 | US_FL_IGNORE_RESIDUE ), |
| 121 | |
Alan Stern | 1d614a4 | 2006-02-13 10:15:22 -0500 | [diff] [blame] | 122 | /* Reported by Christian Leber <christian@leber.de> */ |
| 123 | UNUSUAL_DEV( 0x0419, 0xaaf5, 0x0100, 0x0100, |
| 124 | "TrekStor", |
| 125 | "i.Beat 115 2.0", |
| 126 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 127 | US_FL_IGNORE_RESIDUE | US_FL_NOT_LOCKABLE ), |
| 128 | |
Phil Dibowitz | e4a16e0 | 2005-09-30 00:20:15 -0700 | [diff] [blame] | 129 | /* Reported by Stefan Werner <dustbln@gmx.de> */ |
| 130 | UNUSUAL_DEV( 0x0419, 0xaaf6, 0x0100, 0x0100, |
| 131 | "TrekStor", |
| 132 | "i.Beat Joy 2.0", |
| 133 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 134 | US_FL_IGNORE_RESIDUE ), |
| 135 | |
Pete Zaitcev | 23b7885 | 2006-03-05 21:45:44 -0800 | [diff] [blame] | 136 | /* Reported by Pete Zaitcev <zaitcev@redhat.com>, bz#176584 */ |
| 137 | UNUSUAL_DEV( 0x0420, 0x0001, 0x0100, 0x0100, |
| 138 | "GENERIC", "MP3 PLAYER", /* MyMusix PD-205 on the outside. */ |
| 139 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 140 | US_FL_IGNORE_RESIDUE ), |
| 141 | |
Alan Stern | d5681fe | 2006-06-13 09:59:32 -0400 | [diff] [blame] | 142 | /* Reported by Jiri Slaby <jirislaby@gmail.com> and |
| 143 | * Rene C. Castberg <Rene@Castberg.org> */ |
| 144 | UNUSUAL_DEV( 0x0421, 0x0446, 0x0100, 0x0100, |
| 145 | "Nokia", |
| 146 | "N80", |
| 147 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 148 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 149 | |
Phil Dibowitz | 1ea640c | 2005-08-29 22:38:28 -0700 | [diff] [blame] | 150 | /* Reported by Olaf Hering <olh@suse.de> from novell bug #105878 */ |
| 151 | UNUSUAL_DEV( 0x0424, 0x0fdc, 0x0210, 0x0210, |
| 152 | "SMSC", |
| 153 | "FDC GOLD-2.30", |
| 154 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 155 | US_FL_SINGLE_LUN ), |
| 156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | #ifdef CONFIG_USB_STORAGE_DPCM |
| 158 | UNUSUAL_DEV( 0x0436, 0x0005, 0x0100, 0x0100, |
| 159 | "Microtech", |
| 160 | "CameraMate (DPCM_USB)", |
| 161 | US_SC_SCSI, US_PR_DPCM_USB, NULL, 0 ), |
| 162 | #endif |
| 163 | |
Phil Dibowitz | 16f05be | 2006-02-13 15:59:42 -0800 | [diff] [blame] | 164 | /* Patch submitted by Daniel Drake <dsd@gentoo.org> |
| 165 | * Device reports nonsense bInterfaceProtocol 6 when connected over USB2 */ |
| 166 | UNUSUAL_DEV( 0x0451, 0x5416, 0x0100, 0x0100, |
| 167 | "Neuros Audio", |
| 168 | "USB 2.0 HD 2.5", |
| 169 | US_SC_DEVICE, US_PR_BULK, NULL, |
| 170 | US_FL_NEED_OVERRIDE ), |
| 171 | |
Pete Zaitcev | 490dce1 | 2005-08-23 07:46:13 -0700 | [diff] [blame] | 172 | /* |
| 173 | * Pete Zaitcev <zaitcev@yahoo.com>, from Patrick C. F. Ernzer, bz#162559. |
| 174 | * The key does not actually break, but it returns zero sense which |
| 175 | * makes our SCSI stack to print confusing messages. |
| 176 | */ |
| 177 | UNUSUAL_DEV( 0x0457, 0x0150, 0x0100, 0x0100, |
| 178 | "USBest Technology", /* sold by Transcend */ |
| 179 | "USB Mass Storage Device", |
| 180 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), |
| 181 | |
Phil Dibowitz | 16f05be | 2006-02-13 15:59:42 -0800 | [diff] [blame] | 182 | /* |
| 183 | * Bohdan Linda <bohdan.linda@gmail.com> |
| 184 | * 1GB USB sticks MyFlash High Speed. I have restricted |
| 185 | * the revision to my model only |
| 186 | */ |
| 187 | UNUSUAL_DEV( 0x0457, 0x0151, 0x0100, 0x0100, |
| 188 | "USB 2.0", |
| 189 | "Flash Disk", |
| 190 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 191 | US_FL_NOT_LOCKABLE ), |
Daniel Drake | e1c37b8 | 2005-08-31 16:38:41 +0100 | [diff] [blame] | 192 | |
Matthew Dharm | abb02fd | 2005-12-30 19:06:53 -0800 | [diff] [blame] | 193 | UNUSUAL_DEV( 0x045a, 0x5210, 0x0101, 0x0101, |
| 194 | "Rio", |
| 195 | "Rio Karma", |
| 196 | US_SC_SCSI, US_PR_BULK, rio_karma_init, 0), |
| 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | /* Patch submitted by Philipp Friedrich <philipp@void.at> */ |
| 199 | UNUSUAL_DEV( 0x0482, 0x0100, 0x0100, 0x0100, |
| 200 | "Kyocera", |
| 201 | "Finecam S3x", |
| 202 | US_SC_8070, US_PR_CB, NULL, US_FL_FIX_INQUIRY), |
| 203 | |
| 204 | /* Patch submitted by Philipp Friedrich <philipp@void.at> */ |
| 205 | UNUSUAL_DEV( 0x0482, 0x0101, 0x0100, 0x0100, |
| 206 | "Kyocera", |
| 207 | "Finecam S4", |
| 208 | US_SC_8070, US_PR_CB, NULL, US_FL_FIX_INQUIRY), |
| 209 | |
| 210 | /* Patch submitted by Stephane Galles <stephane.galles@free.fr> */ |
| 211 | UNUSUAL_DEV( 0x0482, 0x0103, 0x0100, 0x0100, |
| 212 | "Kyocera", |
| 213 | "Finecam S5", |
| 214 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), |
| 215 | |
| 216 | /* Patch for Kyocera Finecam L3 |
| 217 | * Submitted by Michael Krauth <michael.krauth@web.de> |
| 218 | * and Alessandro Fracchetti <al.fracchetti@tin.it> |
| 219 | */ |
| 220 | UNUSUAL_DEV( 0x0482, 0x0105, 0x0100, 0x0100, |
| 221 | "Kyocera", |
| 222 | "Finecam L3", |
| 223 | US_SC_SCSI, US_PR_BULK, NULL, |
| 224 | US_FL_FIX_INQUIRY), |
| 225 | |
| 226 | /* Reported by Paul Stewart <stewart@wetlogic.net> |
| 227 | * This entry is needed because the device reports Sub=ff */ |
| 228 | UNUSUAL_DEV( 0x04a4, 0x0004, 0x0001, 0x0001, |
| 229 | "Hitachi", |
| 230 | "DVD-CAM DZ-MV100A Camcorder", |
| 231 | US_SC_SCSI, US_PR_CB, NULL, US_FL_SINGLE_LUN), |
| 232 | |
fabien COSSE | 17fa6e5 | 2005-11-30 01:16:00 -0800 | [diff] [blame] | 233 | /* Patch for Nikon coolpix 2000 |
| 234 | * Submitted by Fabien Cosse <fabien.cosse@wanadoo.fr>*/ |
| 235 | UNUSUAL_DEV( 0x04b0, 0x0301, 0x0010, 0x0010, |
| 236 | "NIKON", |
| 237 | "NIKON DSC E2000", |
| 238 | US_SC_DEVICE, US_PR_DEVICE,NULL, |
| 239 | US_FL_NOT_LOCKABLE ), |
| 240 | |
Alan Stern | ae67181 | 2006-06-06 15:19:17 -0400 | [diff] [blame] | 241 | /* Reported by Andreas Bockhold <andreas@bockionline.de> */ |
| 242 | UNUSUAL_DEV( 0x04b0, 0x0405, 0x0100, 0x0100, |
| 243 | "NIKON", |
| 244 | "NIKON DSC D70", |
| 245 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 246 | US_FL_FIX_CAPACITY), |
| 247 | |
| 248 | /* Reported by Jamie Kitson <jamie@staberinde.fsnet.co.uk> */ |
| 249 | UNUSUAL_DEV( 0x04b0, 0x040d, 0x0100, 0x0100, |
| 250 | "NIKON", |
| 251 | "NIKON DSC D70s", |
| 252 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 253 | US_FL_FIX_CAPACITY), |
| 254 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | /* BENQ DC5330 |
| 256 | * Reported by Manuel Fombuena <mfombuena@ya.com> and |
| 257 | * Frank Copeland <fjc@thingy.apana.org.au> */ |
| 258 | UNUSUAL_DEV( 0x04a5, 0x3010, 0x0100, 0x0100, |
| 259 | "Tekom Technologies, Inc", |
| 260 | "300_CAMERA", |
| 261 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 262 | US_FL_IGNORE_RESIDUE ), |
| 263 | |
| 264 | /* Reported by Simon Levitt <simon@whattf.com> |
| 265 | * This entry needs Sub and Proto fields */ |
| 266 | UNUSUAL_DEV( 0x04b8, 0x0601, 0x0100, 0x0100, |
| 267 | "Epson", |
| 268 | "875DC Storage", |
| 269 | US_SC_SCSI, US_PR_CB, NULL, US_FL_FIX_INQUIRY), |
| 270 | |
| 271 | /* Reported by Khalid Aziz <khalid@gonehiking.org> |
| 272 | * This entry is needed because the device reports Sub=ff */ |
| 273 | UNUSUAL_DEV( 0x04b8, 0x0602, 0x0110, 0x0110, |
| 274 | "Epson", |
| 275 | "785EPX Storage", |
| 276 | US_SC_SCSI, US_PR_BULK, NULL, US_FL_SINGLE_LUN), |
| 277 | |
| 278 | /* Not sure who reported this originally but |
| 279 | * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN |
| 280 | * flag be added */ |
| 281 | UNUSUAL_DEV( 0x04cb, 0x0100, 0x0000, 0x2210, |
| 282 | "Fujifilm", |
| 283 | "FinePix 1400Zoom", |
| 284 | US_SC_UFI, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN), |
| 285 | |
| 286 | /* Reported by Peter Wächtler <pwaechtler@loewe-komp.de> |
| 287 | * The device needs the flags only. |
| 288 | */ |
| 289 | UNUSUAL_DEV( 0x04ce, 0x0002, 0x0074, 0x0074, |
| 290 | "ScanLogic", |
| 291 | "SL11R-IDE", |
| 292 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 293 | US_FL_FIX_INQUIRY), |
| 294 | |
| 295 | /* Reported by Kriston Fincher <kriston@airmail.net> |
| 296 | * Patch submitted by Sean Millichamp <sean@bruenor.org> |
| 297 | * This is to support the Panasonic PalmCam PV-SD4090 |
| 298 | * This entry is needed because the device reports Sub=ff |
| 299 | */ |
| 300 | UNUSUAL_DEV( 0x04da, 0x0901, 0x0100, 0x0200, |
| 301 | "Panasonic", |
| 302 | "LS-120 Camera", |
| 303 | US_SC_UFI, US_PR_DEVICE, NULL, 0), |
| 304 | |
| 305 | /* From Yukihiro Nakai, via zaitcev@yahoo.com. |
| 306 | * This is needed for CB instead of CBI */ |
| 307 | UNUSUAL_DEV( 0x04da, 0x0d05, 0x0000, 0x0000, |
| 308 | "Sharp CE-CW05", |
| 309 | "CD-R/RW Drive", |
| 310 | US_SC_8070, US_PR_CB, NULL, 0), |
| 311 | |
| 312 | /* Reported by Adriaan Penning <a.penning@luon.net> */ |
| 313 | UNUSUAL_DEV( 0x04da, 0x2372, 0x0000, 0x9999, |
| 314 | "Panasonic", |
| 315 | "DMC-LCx Camera", |
| 316 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 317 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), |
| 318 | |
Simeon Simeonov | dcab4ea | 2005-10-19 11:32:14 -0400 | [diff] [blame] | 319 | /* Reported by Simeon Simeonov <simeonov_2000@yahoo.com> */ |
| 320 | UNUSUAL_DEV( 0x04da, 0x2373, 0x0000, 0x9999, |
| 321 | "LEICA", |
| 322 | "D-LUX Camera", |
| 323 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 324 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), |
| 325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | /* Most of the following entries were developed with the help of |
| 327 | * Shuttle/SCM directly. |
| 328 | */ |
| 329 | UNUSUAL_DEV( 0x04e6, 0x0001, 0x0200, 0x0200, |
| 330 | "Matshita", |
| 331 | "LS-120", |
| 332 | US_SC_8020, US_PR_CB, NULL, 0), |
| 333 | |
| 334 | UNUSUAL_DEV( 0x04e6, 0x0002, 0x0100, 0x0100, |
| 335 | "Shuttle", |
| 336 | "eUSCSI Bridge", |
| 337 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_euscsi_init, |
| 338 | US_FL_SCM_MULT_TARG ), |
| 339 | |
| 340 | #ifdef CONFIG_USB_STORAGE_SDDR09 |
| 341 | UNUSUAL_DEV( 0x04e6, 0x0003, 0x0000, 0x9999, |
| 342 | "Sandisk", |
| 343 | "ImageMate SDDR09", |
Matthew Dharm | f5b8cb9 | 2005-12-04 21:57:51 -0800 | [diff] [blame] | 344 | US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init, |
| 345 | 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
| 347 | /* This entry is from Andries.Brouwer@cwi.nl */ |
| 348 | UNUSUAL_DEV( 0x04e6, 0x0005, 0x0100, 0x0208, |
| 349 | "SCM Microsystems", |
| 350 | "eUSB SmartMedia / CompactFlash Adapter", |
Matthew Dharm | f5b8cb9 | 2005-12-04 21:57:51 -0800 | [diff] [blame] | 351 | US_SC_SCSI, US_PR_DPCM_USB, usb_stor_sddr09_dpcm_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | 0), |
| 353 | #endif |
| 354 | |
| 355 | /* Reported by Markus Demleitner <msdemlei@cl.uni-heidelberg.de> */ |
| 356 | UNUSUAL_DEV( 0x04e6, 0x0006, 0x0100, 0x0100, |
| 357 | "SCM Microsystems Inc.", |
| 358 | "eUSB MMC Adapter", |
| 359 | US_SC_SCSI, US_PR_CB, NULL, |
| 360 | US_FL_SINGLE_LUN), |
| 361 | |
| 362 | /* Reported by Daniel Nouri <dpunktnpunkt@web.de> */ |
| 363 | UNUSUAL_DEV( 0x04e6, 0x0006, 0x0205, 0x0205, |
| 364 | "Shuttle", |
| 365 | "eUSB MMC Adapter", |
| 366 | US_SC_SCSI, US_PR_DEVICE, NULL, |
| 367 | US_FL_SINGLE_LUN), |
| 368 | |
| 369 | UNUSUAL_DEV( 0x04e6, 0x0007, 0x0100, 0x0200, |
| 370 | "Sony", |
| 371 | "Hifd", |
| 372 | US_SC_SCSI, US_PR_CB, NULL, |
| 373 | US_FL_SINGLE_LUN), |
| 374 | |
| 375 | UNUSUAL_DEV( 0x04e6, 0x0009, 0x0200, 0x0200, |
| 376 | "Shuttle", |
| 377 | "eUSB ATA/ATAPI Adapter", |
| 378 | US_SC_8020, US_PR_CB, NULL, 0), |
| 379 | |
| 380 | UNUSUAL_DEV( 0x04e6, 0x000a, 0x0200, 0x0200, |
| 381 | "Shuttle", |
| 382 | "eUSB CompactFlash Adapter", |
| 383 | US_SC_8020, US_PR_CB, NULL, 0), |
| 384 | |
| 385 | UNUSUAL_DEV( 0x04e6, 0x000B, 0x0100, 0x0100, |
| 386 | "Shuttle", |
| 387 | "eUSCSI Bridge", |
| 388 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 389 | US_FL_SCM_MULT_TARG ), |
| 390 | |
| 391 | UNUSUAL_DEV( 0x04e6, 0x000C, 0x0100, 0x0100, |
| 392 | "Shuttle", |
| 393 | "eUSCSI Bridge", |
| 394 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 395 | US_FL_SCM_MULT_TARG ), |
| 396 | |
| 397 | UNUSUAL_DEV( 0x04e6, 0x0101, 0x0200, 0x0200, |
| 398 | "Shuttle", |
| 399 | "CD-RW Device", |
| 400 | US_SC_8020, US_PR_CB, NULL, 0), |
| 401 | |
| 402 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. |
| 403 | * Device uses standards-violating 32-byte Bulk Command Block Wrappers and |
| 404 | * reports itself as "Proprietary SCSI Bulk." Cf. device entry 0x084d:0x0011. |
| 405 | */ |
| 406 | |
| 407 | UNUSUAL_DEV( 0x04fc, 0x80c2, 0x0100, 0x0100, |
| 408 | "Kobian Mercury", |
| 409 | "Binocam DCB-132", |
| 410 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 411 | US_FL_BULK32), |
| 412 | |
| 413 | #ifdef CONFIG_USB_STORAGE_USBAT |
| 414 | UNUSUAL_DEV( 0x04e6, 0x1010, 0x0000, 0x9999, |
Daniel Drake | b7b1e65 | 2005-09-30 12:49:36 +0100 | [diff] [blame] | 415 | "Shuttle/SCM", |
| 416 | "USBAT-02", |
Daniel Drake | f9347c5 | 2006-05-08 23:43:02 +0100 | [diff] [blame] | 417 | US_SC_SCSI, US_PR_USBAT, init_usbat_flash, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | US_FL_SINGLE_LUN), |
| 419 | #endif |
| 420 | |
| 421 | /* Reported by Bob Sass <rls@vectordb.com> -- only rev 1.33 tested */ |
| 422 | UNUSUAL_DEV( 0x050d, 0x0115, 0x0133, 0x0133, |
| 423 | "Belkin", |
| 424 | "USB SCSI Adaptor", |
| 425 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 426 | US_FL_SCM_MULT_TARG ), |
| 427 | |
| 428 | /* Iomega Clik! Drive |
| 429 | * Reported by David Chatenay <dchatenay@hotmail.com> |
| 430 | * The reason this is needed is not fully known. |
| 431 | */ |
| 432 | UNUSUAL_DEV( 0x0525, 0xa140, 0x0100, 0x0100, |
| 433 | "Iomega", |
| 434 | "USB Clik! 40", |
Phil Dibowitz | 2120638 | 2006-04-16 19:18:36 -0700 | [diff] [blame] | 435 | US_SC_8070, US_PR_DEVICE, NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | US_FL_FIX_INQUIRY ), |
| 437 | |
| 438 | /* Yakumo Mega Image 37 |
| 439 | * Submitted by Stephan Fuhrmann <atomenergie@t-online.de> */ |
| 440 | UNUSUAL_DEV( 0x052b, 0x1801, 0x0100, 0x0100, |
| 441 | "Tekom Technologies, Inc", |
| 442 | "300_CAMERA", |
| 443 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 444 | US_FL_IGNORE_RESIDUE ), |
| 445 | |
| 446 | /* Another Yakumo camera. |
| 447 | * Reported by Michele Alzetta <michele.alzetta@aliceposta.it> */ |
| 448 | UNUSUAL_DEV( 0x052b, 0x1804, 0x0100, 0x0100, |
| 449 | "Tekom Technologies, Inc", |
| 450 | "300_CAMERA", |
| 451 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 452 | US_FL_IGNORE_RESIDUE ), |
| 453 | |
| 454 | /* Reported by Iacopo Spalletti <avvisi@spalletti.it> */ |
| 455 | UNUSUAL_DEV( 0x052b, 0x1807, 0x0100, 0x0100, |
| 456 | "Tekom Technologies, Inc", |
| 457 | "300_CAMERA", |
| 458 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 459 | US_FL_IGNORE_RESIDUE ), |
| 460 | |
| 461 | /* Yakumo Mega Image 47 |
| 462 | * Reported by Bjoern Paetzel <kolrabi@kolrabi.de> */ |
| 463 | UNUSUAL_DEV( 0x052b, 0x1905, 0x0100, 0x0100, |
| 464 | "Tekom Technologies, Inc", |
| 465 | "400_CAMERA", |
| 466 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 467 | US_FL_IGNORE_RESIDUE ), |
| 468 | |
| 469 | /* Reported by Paul Ortyl <ortylp@3miasto.net> |
| 470 | * Note that it's similar to the device above, only different prodID */ |
| 471 | UNUSUAL_DEV( 0x052b, 0x1911, 0x0100, 0x0100, |
| 472 | "Tekom Technologies, Inc", |
| 473 | "400_CAMERA", |
| 474 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 475 | US_FL_IGNORE_RESIDUE ), |
| 476 | |
| 477 | UNUSUAL_DEV( 0x054c, 0x0010, 0x0106, 0x0450, |
| 478 | "Sony", |
| 479 | "DSC-S30/S70/S75/505V/F505/F707/F717/P8", |
| 480 | US_SC_SCSI, US_PR_DEVICE, NULL, |
| 481 | US_FL_SINGLE_LUN | US_FL_NOT_LOCKABLE | US_FL_NO_WP_DETECT ), |
| 482 | |
| 483 | /* This entry is needed because the device reports Sub=ff */ |
Alexandre Duret-Lutz | ec7dc8d | 2005-12-26 23:04:24 -0800 | [diff] [blame] | 484 | UNUSUAL_DEV( 0x054c, 0x0010, 0x0500, 0x0600, |
| 485 | "Sony", |
| 486 | "DSC-T1/T5", |
| 487 | US_SC_8070, US_PR_DEVICE, NULL, |
| 488 | US_FL_SINGLE_LUN ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | |
| 490 | |
| 491 | /* Reported by wim@geeks.nl */ |
| 492 | UNUSUAL_DEV( 0x054c, 0x0025, 0x0100, 0x0100, |
| 493 | "Sony", |
| 494 | "Memorystick NW-MS7", |
| 495 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 496 | US_FL_SINGLE_LUN ), |
| 497 | |
| 498 | #ifdef CONFIG_USB_STORAGE_ISD200 |
| 499 | UNUSUAL_DEV( 0x054c, 0x002b, 0x0100, 0x0110, |
| 500 | "Sony", |
| 501 | "Portable USB Harddrive V2", |
| 502 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 503 | 0 ), |
| 504 | #endif |
| 505 | |
| 506 | /* Submitted by Olaf Hering, <olh@suse.de> SuSE Bugzilla #49049 */ |
| 507 | UNUSUAL_DEV( 0x054c, 0x002c, 0x0501, 0x0501, |
| 508 | "Sony", |
| 509 | "USB Floppy Drive", |
| 510 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 511 | US_FL_SINGLE_LUN ), |
| 512 | |
| 513 | UNUSUAL_DEV( 0x054c, 0x002d, 0x0100, 0x0100, |
| 514 | "Sony", |
| 515 | "Memorystick MSAC-US1", |
| 516 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 517 | US_FL_SINGLE_LUN ), |
| 518 | |
| 519 | /* Submitted by Klaus Mueller <k.mueller@intershop.de> */ |
| 520 | UNUSUAL_DEV( 0x054c, 0x002e, 0x0106, 0x0310, |
| 521 | "Sony", |
| 522 | "Handycam", |
| 523 | US_SC_SCSI, US_PR_DEVICE, NULL, |
| 524 | US_FL_SINGLE_LUN ), |
| 525 | |
| 526 | /* Submitted by Rajesh Kumble Nayak <nayak@obs-nice.fr> */ |
| 527 | UNUSUAL_DEV( 0x054c, 0x002e, 0x0500, 0x0500, |
| 528 | "Sony", |
| 529 | "Handycam HC-85", |
| 530 | US_SC_UFI, US_PR_DEVICE, NULL, |
| 531 | US_FL_SINGLE_LUN ), |
| 532 | |
| 533 | UNUSUAL_DEV( 0x054c, 0x0032, 0x0000, 0x9999, |
| 534 | "Sony", |
| 535 | "Memorystick MSC-U01N", |
| 536 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 537 | US_FL_SINGLE_LUN ), |
| 538 | |
| 539 | /* Submitted by Michal Mlotek <mlotek@foobar.pl> */ |
| 540 | UNUSUAL_DEV( 0x054c, 0x0058, 0x0000, 0x9999, |
| 541 | "Sony", |
| 542 | "PEG N760c Memorystick", |
| 543 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 544 | US_FL_FIX_INQUIRY ), |
| 545 | |
| 546 | UNUSUAL_DEV( 0x054c, 0x0069, 0x0000, 0x9999, |
| 547 | "Sony", |
| 548 | "Memorystick MSC-U03", |
| 549 | US_SC_UFI, US_PR_CB, NULL, |
| 550 | US_FL_SINGLE_LUN ), |
| 551 | |
| 552 | /* Submitted by Nathan Babb <nathan@lexi.com> */ |
| 553 | UNUSUAL_DEV( 0x054c, 0x006d, 0x0000, 0x9999, |
| 554 | "Sony", |
| 555 | "PEG Mass Storage", |
| 556 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 557 | US_FL_FIX_INQUIRY ), |
| 558 | |
| 559 | /* Submitted by Mike Alborn <malborn@deandra.homeip.net> */ |
| 560 | UNUSUAL_DEV( 0x054c, 0x016a, 0x0000, 0x9999, |
| 561 | "Sony", |
| 562 | "PEG Mass Storage", |
| 563 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 564 | US_FL_FIX_INQUIRY ), |
| 565 | |
| 566 | /* Submitted by Frank Engel <frankie@cse.unsw.edu.au> */ |
| 567 | UNUSUAL_DEV( 0x054c, 0x0099, 0x0000, 0x9999, |
| 568 | "Sony", |
| 569 | "PEG Mass Storage", |
| 570 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 571 | US_FL_FIX_INQUIRY ), |
| 572 | |
| 573 | |
| 574 | UNUSUAL_DEV( 0x057b, 0x0000, 0x0000, 0x0299, |
| 575 | "Y-E Data", |
| 576 | "Flashbuster-U", |
| 577 | US_SC_DEVICE, US_PR_CB, NULL, |
| 578 | US_FL_SINGLE_LUN), |
| 579 | |
| 580 | UNUSUAL_DEV( 0x057b, 0x0000, 0x0300, 0x9999, |
| 581 | "Y-E Data", |
| 582 | "Flashbuster-U", |
| 583 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 584 | US_FL_SINGLE_LUN), |
| 585 | |
| 586 | /* Reported by Johann Cardon <johann.cardon@free.fr> |
| 587 | * This entry is needed only because the device reports |
| 588 | * bInterfaceClass = 0xff (vendor-specific) |
| 589 | */ |
| 590 | UNUSUAL_DEV( 0x057b, 0x0022, 0x0000, 0x9999, |
| 591 | "Y-E Data", |
| 592 | "Silicon Media R/W", |
| 593 | US_SC_DEVICE, US_PR_DEVICE, NULL, 0), |
| 594 | |
Matthew Dharm | e80b0fa | 2005-12-04 22:02:44 -0800 | [diff] [blame] | 595 | #ifdef CONFIG_USB_STORAGE_ALAUDA |
| 596 | UNUSUAL_DEV( 0x0584, 0x0008, 0x0102, 0x0102, |
| 597 | "Fujifilm", |
| 598 | "DPC-R1 (Alauda)", |
| 599 | US_SC_SCSI, US_PR_ALAUDA, init_alauda, 0 ), |
| 600 | #endif |
| 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | /* Fabrizio Fellini <fello@libero.it> */ |
| 603 | UNUSUAL_DEV( 0x0595, 0x4343, 0x0000, 0x2210, |
| 604 | "Fujifilm", |
| 605 | "Digital Camera EX-20 DSC", |
| 606 | US_SC_8070, US_PR_DEVICE, NULL, 0 ), |
| 607 | |
| 608 | /* The entry was here before I took over, and had US_SC_RBC. It turns |
| 609 | * out that isn't needed. Additionally, Torsten Eriksson |
| 610 | * <Torsten.Eriksson@bergianska.se> is able to use his device fine |
| 611 | * without this entry at all - but I don't suspect that will be true |
| 612 | * for all users (the protocol is likely needed), so is staying at |
| 613 | * this time. - Phil Dibowitz <phil@ipom.com> |
| 614 | */ |
| 615 | UNUSUAL_DEV( 0x059f, 0xa601, 0x0200, 0x0200, |
| 616 | "LaCie", |
| 617 | "USB Hard Disk", |
| 618 | US_SC_DEVICE, US_PR_CB, NULL, 0 ), |
| 619 | |
| 620 | /* Submitted by Joel Bourquard <numlock@freesurf.ch> |
| 621 | * Some versions of this device need the SubClass and Protocol overrides |
| 622 | * while others don't. |
| 623 | */ |
| 624 | UNUSUAL_DEV( 0x05ab, 0x0060, 0x1104, 0x1110, |
| 625 | "In-System", |
| 626 | "PyroGate External CD-ROM Enclosure (FCD-523)", |
| 627 | US_SC_SCSI, US_PR_BULK, NULL, |
| 628 | US_FL_NEED_OVERRIDE ), |
| 629 | |
| 630 | #ifdef CONFIG_USB_STORAGE_ISD200 |
| 631 | UNUSUAL_DEV( 0x05ab, 0x0031, 0x0100, 0x0110, |
| 632 | "In-System", |
| 633 | "USB/IDE Bridge (ATA/ATAPI)", |
| 634 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 635 | 0 ), |
| 636 | |
| 637 | UNUSUAL_DEV( 0x05ab, 0x0301, 0x0100, 0x0110, |
| 638 | "In-System", |
| 639 | "Portable USB Harddrive V2", |
| 640 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 641 | 0 ), |
| 642 | |
| 643 | UNUSUAL_DEV( 0x05ab, 0x0351, 0x0100, 0x0110, |
| 644 | "In-System", |
| 645 | "Portable USB Harddrive V2", |
| 646 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 647 | 0 ), |
| 648 | |
| 649 | UNUSUAL_DEV( 0x05ab, 0x5701, 0x0100, 0x0110, |
| 650 | "In-System", |
| 651 | "USB Storage Adapter V2", |
| 652 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 653 | 0 ), |
| 654 | #endif |
| 655 | |
Sven Anderson | 35f4a0c | 2005-04-22 15:06:58 -0700 | [diff] [blame] | 656 | /* Submitted by Sven Anderson <sven-linux@anderson.de> |
| 657 | * There are at least four ProductIDs used for iPods, so I added 0x1202 and |
| 658 | * 0x1204. They just need the US_FL_FIX_CAPACITY. As the bcdDevice appears |
| 659 | * to change with firmware updates, I changed the range to maximum for all |
| 660 | * iPod entries. |
| 661 | */ |
| 662 | UNUSUAL_DEV( 0x05ac, 0x1202, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | "Apple", |
| 664 | "iPod", |
| 665 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 666 | US_FL_FIX_CAPACITY ), |
| 667 | |
Sven Anderson | 35f4a0c | 2005-04-22 15:06:58 -0700 | [diff] [blame] | 668 | /* Reported by Avi Kivity <avi@argo.co.il> */ |
| 669 | UNUSUAL_DEV( 0x05ac, 0x1203, 0x0000, 0x9999, |
| 670 | "Apple", |
| 671 | "iPod", |
| 672 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 673 | US_FL_FIX_CAPACITY ), |
| 674 | |
| 675 | UNUSUAL_DEV( 0x05ac, 0x1204, 0x0000, 0x9999, |
| 676 | "Apple", |
| 677 | "iPod", |
| 678 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 679 | US_FL_FIX_CAPACITY ), |
| 680 | |
| 681 | UNUSUAL_DEV( 0x05ac, 0x1205, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | "Apple", |
| 683 | "iPod", |
| 684 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 685 | US_FL_FIX_CAPACITY ), |
| 686 | |
Phil Dibowitz | 880a9b5 | 2005-09-30 00:27:36 -0700 | [diff] [blame] | 687 | /* |
| 688 | * Reported by Tyson Vinson <lornoss@gmail.com> |
| 689 | * This particular productId is the iPod Nano |
| 690 | */ |
| 691 | UNUSUAL_DEV( 0x05ac, 0x120a, 0x0000, 0x9999, |
| 692 | "Apple", |
| 693 | "iPod", |
| 694 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 695 | US_FL_FIX_CAPACITY ), |
| 696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | #ifdef CONFIG_USB_STORAGE_JUMPSHOT |
| 698 | UNUSUAL_DEV( 0x05dc, 0x0001, 0x0000, 0x0001, |
| 699 | "Lexar", |
| 700 | "Jumpshot USB CF Reader", |
| 701 | US_SC_SCSI, US_PR_JUMPSHOT, NULL, |
| 702 | US_FL_NEED_OVERRIDE ), |
| 703 | #endif |
| 704 | |
| 705 | /* Reported by Blake Matheny <bmatheny@purdue.edu> */ |
| 706 | UNUSUAL_DEV( 0x05dc, 0xb002, 0x0000, 0x0113, |
| 707 | "Lexar", |
| 708 | "USB CF Reader", |
| 709 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 710 | US_FL_FIX_INQUIRY ), |
| 711 | |
| 712 | /* The following two entries are for a Genesys USB to IDE |
| 713 | * converter chip, but it changes its ProductId depending |
| 714 | * on whether or not a disk or an optical device is enclosed |
| 715 | * They were originally reported by Alexander Oltu |
| 716 | * <alexander@all-2.com> and Peter Marks <peter.marks@turner.com> |
| 717 | * respectively. |
| 718 | */ |
| 719 | UNUSUAL_DEV( 0x05e3, 0x0701, 0x0000, 0xffff, |
| 720 | "Genesys Logic", |
| 721 | "USB to IDE Optical", |
| 722 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 723 | US_FL_GO_SLOW ), |
| 724 | |
| 725 | UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0xffff, |
| 726 | "Genesys Logic", |
| 727 | "USB to IDE Disk", |
| 728 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 729 | US_FL_GO_SLOW ), |
| 730 | |
| 731 | /* Reported by Hanno Boeck <hanno@gmx.de> |
| 732 | * Taken from the Lycoris Kernel */ |
| 733 | UNUSUAL_DEV( 0x0636, 0x0003, 0x0000, 0x9999, |
| 734 | "Vivitar", |
| 735 | "Vivicam 35Xx", |
| 736 | US_SC_SCSI, US_PR_BULK, NULL, |
| 737 | US_FL_FIX_INQUIRY ), |
| 738 | |
| 739 | UNUSUAL_DEV( 0x0644, 0x0000, 0x0100, 0x0100, |
| 740 | "TEAC", |
| 741 | "Floppy Drive", |
| 742 | US_SC_UFI, US_PR_CB, NULL, 0 ), |
| 743 | |
| 744 | #ifdef CONFIG_USB_STORAGE_SDDR09 |
| 745 | UNUSUAL_DEV( 0x066b, 0x0105, 0x0100, 0x0100, |
| 746 | "Olympus", |
| 747 | "Camedia MAUSB-2", |
Matthew Dharm | f5b8cb9 | 2005-12-04 21:57:51 -0800 | [diff] [blame] | 748 | US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init, |
| 749 | 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | #endif |
| 751 | |
| 752 | /* Reported by Darsen Lu <darsen@micro.ee.nthu.edu.tw> */ |
| 753 | UNUSUAL_DEV( 0x066f, 0x8000, 0x0001, 0x0001, |
| 754 | "SigmaTel", |
| 755 | "USBMSC Audio Player", |
| 756 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 757 | US_FL_FIX_CAPACITY ), |
| 758 | |
| 759 | /* Reported by Richard -=[]=- <micro_flyer@hotmail.com> */ |
| 760 | UNUSUAL_DEV( 0x067b, 0x2507, 0x0100, 0x0100, |
| 761 | "Prolific Technology Inc.", |
| 762 | "Mass Storage Device", |
| 763 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 764 | US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), |
| 765 | |
| 766 | /* Reported by Alex Butcher <alex.butcher@assursys.co.uk> */ |
| 767 | UNUSUAL_DEV( 0x067b, 0x3507, 0x0001, 0x0001, |
| 768 | "Prolific Technology Inc.", |
| 769 | "ATAPI-6 Bridge Controller", |
| 770 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 771 | US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), |
| 772 | |
| 773 | /* Submitted by Benny Sjostrand <benny@hostmobility.com> */ |
| 774 | UNUSUAL_DEV( 0x0686, 0x4011, 0x0001, 0x0001, |
| 775 | "Minolta", |
| 776 | "Dimage F300", |
| 777 | US_SC_SCSI, US_PR_BULK, NULL, 0 ), |
| 778 | |
| 779 | /* Reported by Miguel A. Fosas <amn3s1a@ono.com> */ |
| 780 | UNUSUAL_DEV( 0x0686, 0x4017, 0x0001, 0x0001, |
| 781 | "Minolta", |
| 782 | "DIMAGE E223", |
| 783 | US_SC_SCSI, US_PR_DEVICE, NULL, 0 ), |
| 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | UNUSUAL_DEV( 0x0693, 0x0005, 0x0100, 0x0100, |
| 786 | "Hagiwara", |
| 787 | "Flashgate", |
| 788 | US_SC_SCSI, US_PR_BULK, NULL, 0 ), |
| 789 | |
Alan Stern | 754501b | 2006-02-23 10:19:25 -0500 | [diff] [blame] | 790 | /* Reported by David Hamilton <niftimusmaximus@lycos.com> */ |
| 791 | UNUSUAL_DEV( 0x069b, 0x3004, 0x0001, 0x0001, |
| 792 | "Thomson Multimedia Inc.", |
| 793 | "RCA RD1080 MP3 Player", |
| 794 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 795 | US_FL_FIX_CAPACITY ), |
| 796 | |
Olivier Blondeau | f430c40 | 2006-04-16 19:19:25 -0700 | [diff] [blame] | 797 | /* Reported by Olivier Blondeau <zeitoun@gmail.com> */ |
| 798 | UNUSUAL_DEV( 0x0727, 0x0306, 0x0100, 0x0100, |
| 799 | "ATMEL", |
| 800 | "SND1 Storage", |
| 801 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 802 | US_FL_IGNORE_RESIDUE), |
| 803 | |
Phil Dibowitz | 1e7a5a8 | 2006-03-05 21:36:51 -0800 | [diff] [blame] | 804 | /* Submitted by Roman Hodek <roman@hodek.net> */ |
| 805 | UNUSUAL_DEV( 0x0781, 0x0001, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | "Sandisk", |
| 807 | "ImageMate SDDR-05a", |
| 808 | US_SC_SCSI, US_PR_CB, NULL, |
| 809 | US_FL_SINGLE_LUN ), |
| 810 | |
Phil Dibowitz | 1e7a5a8 | 2006-03-05 21:36:51 -0800 | [diff] [blame] | 811 | UNUSUAL_DEV( 0x0781, 0x0002, 0x0009, 0x0009, |
| 812 | "SanDisk Corporation", |
| 813 | "ImageMate CompactFlash USB", |
| 814 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 815 | US_FL_FIX_CAPACITY ), |
| 816 | |
Daniel Drake | 094ec60 | 2005-09-30 12:58:13 +0100 | [diff] [blame] | 817 | #ifdef CONFIG_USB_STORAGE_USBAT |
| 818 | UNUSUAL_DEV( 0x0781, 0x0005, 0x0005, 0x0005, |
| 819 | "Sandisk", |
| 820 | "ImageMate SDDR-05b", |
Peter Chubb | bdcfd9e | 2006-05-02 18:29:34 +0100 | [diff] [blame] | 821 | US_SC_SCSI, US_PR_USBAT, init_usbat_flash, |
Daniel Drake | 094ec60 | 2005-09-30 12:58:13 +0100 | [diff] [blame] | 822 | US_FL_SINGLE_LUN ), |
| 823 | #endif |
| 824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | UNUSUAL_DEV( 0x0781, 0x0100, 0x0100, 0x0100, |
| 826 | "Sandisk", |
| 827 | "ImageMate SDDR-12", |
| 828 | US_SC_SCSI, US_PR_CB, NULL, |
| 829 | US_FL_SINGLE_LUN ), |
| 830 | |
| 831 | #ifdef CONFIG_USB_STORAGE_SDDR09 |
| 832 | UNUSUAL_DEV( 0x0781, 0x0200, 0x0000, 0x9999, |
| 833 | "Sandisk", |
| 834 | "ImageMate SDDR-09", |
Matthew Dharm | f5b8cb9 | 2005-12-04 21:57:51 -0800 | [diff] [blame] | 835 | US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init, |
| 836 | 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | #endif |
| 838 | |
| 839 | #ifdef CONFIG_USB_STORAGE_FREECOM |
| 840 | UNUSUAL_DEV( 0x07ab, 0xfc01, 0x0000, 0x9999, |
| 841 | "Freecom", |
| 842 | "USB-IDE", |
| 843 | US_SC_QIC, US_PR_FREECOM, freecom_init, 0), |
| 844 | #endif |
| 845 | |
| 846 | /* Reported by Eero Volotinen <eero@ping-viini.org> */ |
Phil Dibowitz | e527832 | 2005-10-23 23:52:39 -0700 | [diff] [blame] | 847 | UNUSUAL_DEV( 0x07ab, 0xfccd, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | "Freecom Technologies", |
| 849 | "FHD-Classic", |
| 850 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 851 | US_FL_FIX_CAPACITY), |
| 852 | |
| 853 | UNUSUAL_DEV( 0x07af, 0x0004, 0x0100, 0x0133, |
| 854 | "Microtech", |
| 855 | "USB-SCSI-DB25", |
| 856 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 857 | US_FL_SCM_MULT_TARG ), |
| 858 | |
| 859 | UNUSUAL_DEV( 0x07af, 0x0005, 0x0100, 0x0100, |
| 860 | "Microtech", |
| 861 | "USB-SCSI-HD50", |
Phil Dibowitz | e8116e8 | 2005-06-22 22:47:13 -0700 | [diff] [blame] | 862 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_euscsi_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | US_FL_SCM_MULT_TARG ), |
| 864 | |
| 865 | #ifdef CONFIG_USB_STORAGE_DPCM |
| 866 | UNUSUAL_DEV( 0x07af, 0x0006, 0x0100, 0x0100, |
| 867 | "Microtech", |
| 868 | "CameraMate (DPCM_USB)", |
| 869 | US_SC_SCSI, US_PR_DPCM_USB, NULL, 0 ), |
| 870 | #endif |
| 871 | |
Matthew Dharm | e80b0fa | 2005-12-04 22:02:44 -0800 | [diff] [blame] | 872 | #ifdef CONFIG_USB_STORAGE_ALAUDA |
| 873 | UNUSUAL_DEV( 0x07b4, 0x010a, 0x0102, 0x0102, |
| 874 | "Olympus", |
| 875 | "MAUSB-10 (Alauda)", |
| 876 | US_SC_SCSI, US_PR_ALAUDA, init_alauda, 0 ), |
| 877 | #endif |
| 878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | #ifdef CONFIG_USB_STORAGE_DATAFAB |
| 880 | UNUSUAL_DEV( 0x07c4, 0xa000, 0x0000, 0x0015, |
| 881 | "Datafab", |
| 882 | "MDCFE-B USB CF Reader", |
| 883 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 884 | 0 ), |
| 885 | |
| 886 | /* |
| 887 | * The following Datafab-based devices may or may not work |
| 888 | * using the current driver...the 0xffff is arbitrary since I |
| 889 | * don't know what device versions exist for these guys. |
| 890 | * |
| 891 | * The 0xa003 and 0xa004 devices in particular I'm curious about. |
| 892 | * I'm told they exist but so far nobody has come forward to say that |
| 893 | * they work with this driver. Given the success we've had getting |
| 894 | * other Datafab-based cards operational with this driver, I've decided |
| 895 | * to leave these two devices in the list. |
| 896 | */ |
| 897 | UNUSUAL_DEV( 0x07c4, 0xa001, 0x0000, 0xffff, |
| 898 | "SIIG/Datafab", |
| 899 | "SIIG/Datafab Memory Stick+CF Reader/Writer", |
| 900 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 901 | 0 ), |
| 902 | |
| 903 | /* Reported by Josef Reisinger <josef.reisinger@netcologne.de> */ |
| 904 | UNUSUAL_DEV( 0x07c4, 0xa002, 0x0000, 0xffff, |
| 905 | "Datafab/Unknown", |
| 906 | "MD2/MD3 Disk enclosure", |
| 907 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 908 | US_FL_SINGLE_LUN ), |
| 909 | |
| 910 | UNUSUAL_DEV( 0x07c4, 0xa003, 0x0000, 0xffff, |
| 911 | "Datafab/Unknown", |
| 912 | "Datafab-based Reader", |
| 913 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 914 | 0 ), |
| 915 | |
| 916 | UNUSUAL_DEV( 0x07c4, 0xa004, 0x0000, 0xffff, |
| 917 | "Datafab/Unknown", |
| 918 | "Datafab-based Reader", |
| 919 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 920 | 0 ), |
| 921 | |
| 922 | UNUSUAL_DEV( 0x07c4, 0xa005, 0x0000, 0xffff, |
| 923 | "PNY/Datafab", |
| 924 | "PNY/Datafab CF+SM Reader", |
| 925 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 926 | 0 ), |
| 927 | |
| 928 | UNUSUAL_DEV( 0x07c4, 0xa006, 0x0000, 0xffff, |
| 929 | "Simple Tech/Datafab", |
| 930 | "Simple Tech/Datafab CF+SM Reader", |
| 931 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 932 | 0 ), |
| 933 | #endif |
| 934 | |
| 935 | #ifdef CONFIG_USB_STORAGE_SDDR55 |
| 936 | /* Contributed by Peter Waechtler */ |
| 937 | UNUSUAL_DEV( 0x07c4, 0xa103, 0x0000, 0x9999, |
| 938 | "Datafab", |
| 939 | "MDSM-B reader", |
| 940 | US_SC_SCSI, US_PR_SDDR55, NULL, |
| 941 | US_FL_FIX_INQUIRY ), |
| 942 | #endif |
| 943 | |
| 944 | #ifdef CONFIG_USB_STORAGE_DATAFAB |
| 945 | /* Submitted by Olaf Hering <olh@suse.de> */ |
| 946 | UNUSUAL_DEV( 0x07c4, 0xa109, 0x0000, 0xffff, |
| 947 | "Datafab Systems, Inc.", |
| 948 | "USB to CF + SM Combo (LC1)", |
| 949 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 950 | 0 ), |
| 951 | #endif |
| 952 | #ifdef CONFIG_USB_STORAGE_SDDR55 |
| 953 | /* SM part - aeb <Andries.Brouwer@cwi.nl> */ |
| 954 | UNUSUAL_DEV( 0x07c4, 0xa109, 0x0000, 0xffff, |
| 955 | "Datafab Systems, Inc.", |
| 956 | "USB to CF + SM Combo (LC1)", |
| 957 | US_SC_SCSI, US_PR_SDDR55, NULL, |
| 958 | US_FL_SINGLE_LUN ), |
| 959 | #endif |
| 960 | |
felix@derklecks.de | d6427cf | 2005-04-18 17:39:28 -0700 | [diff] [blame] | 961 | #ifdef CONFIG_USB_STORAGE_DATAFAB |
| 962 | /* Reported by Felix Moeller <felix@derklecks.de> |
| 963 | * in Germany this is sold by Hama with the productnumber 46952 |
| 964 | * as "DualSlot CompactFlash(TM) & MStick Drive USB" |
| 965 | */ |
| 966 | UNUSUAL_DEV( 0x07c4, 0xa10b, 0x0000, 0xffff, |
| 967 | "DataFab Systems Inc.", |
| 968 | "USB CF+MS", |
| 969 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 970 | 0 ), |
| 971 | |
| 972 | #endif |
| 973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | /* Datafab KECF-USB / Sagatek DCS-CF / Simpletech Flashlink UCF-100 |
| 975 | * Only revision 1.13 tested (same for all of the above devices, |
| 976 | * based on the Datafab DF-UG-07 chip). Needed for US_FL_FIX_INQUIRY. |
| 977 | * Submitted by Marek Michalkiewicz <marekm@amelek.gda.pl>. |
| 978 | * See also http://martin.wilck.bei.t-online.de/#kecf . |
| 979 | */ |
| 980 | UNUSUAL_DEV( 0x07c4, 0xa400, 0x0000, 0xffff, |
| 981 | "Datafab", |
| 982 | "KECF-USB", |
| 983 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 984 | US_FL_FIX_INQUIRY ), |
| 985 | |
| 986 | /* Casio QV 2x00/3x00/4000/8000 digital still cameras are not conformant |
| 987 | * to the USB storage specification in two ways: |
| 988 | * - They tell us they are using transport protocol CBI. In reality they |
| 989 | * are using transport protocol CB. |
| 990 | * - They don't like the INQUIRY command. So we must handle this command |
| 991 | * of the SCSI layer ourselves. |
| 992 | * - Some cameras with idProduct=0x1001 and bcdDevice=0x1000 have |
| 993 | * bInterfaceProtocol=0x00 (US_PR_CBI) while others have 0x01 (US_PR_CB). |
| 994 | * So don't remove the US_PR_CB override! |
| 995 | * - Cameras with bcdDevice=0x9009 require the US_SC_8070 override. |
| 996 | */ |
| 997 | UNUSUAL_DEV( 0x07cf, 0x1001, 0x1000, 0x9999, |
| 998 | "Casio", |
| 999 | "QV DigitalCamera", |
| 1000 | US_SC_8070, US_PR_CB, NULL, |
| 1001 | US_FL_NEED_OVERRIDE | US_FL_FIX_INQUIRY ), |
| 1002 | |
| 1003 | /* Submitted by Hartmut Wahl <hwahl@hwahl.de>*/ |
| 1004 | UNUSUAL_DEV( 0x0839, 0x000a, 0x0001, 0x0001, |
| 1005 | "Samsung", |
| 1006 | "Digimax 410", |
| 1007 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1008 | US_FL_FIX_INQUIRY), |
| 1009 | |
| 1010 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. |
| 1011 | * Flag will support Bulk devices which use a standards-violating 32-byte |
| 1012 | * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with |
| 1013 | * Grandtech GT892x chip, which request "Proprietary SCSI Bulk" support. |
| 1014 | */ |
| 1015 | |
| 1016 | UNUSUAL_DEV( 0x084d, 0x0011, 0x0110, 0x0110, |
| 1017 | "Grandtech", |
| 1018 | "DC2MEGA", |
| 1019 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1020 | US_FL_BULK32), |
| 1021 | |
Alan Stern | ba3e93a | 2006-01-30 10:19:43 -0500 | [diff] [blame] | 1022 | /* Submitted by Jan De Luyck <lkml@kcore.org> */ |
| 1023 | UNUSUAL_DEV( 0x08bd, 0x1100, 0x0000, 0x0000, |
| 1024 | "CITIZEN", |
| 1025 | "X1DE-USB", |
| 1026 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1027 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
| 1029 | /* Entry needed for flags. Moreover, all devices with this ID use |
| 1030 | * bulk-only transport, but _some_ falsely report Control/Bulk instead. |
| 1031 | * One example is "Trumpion Digital Research MYMP3". |
| 1032 | * Submitted by Bjoern Brill <brill(at)fs.math.uni-frankfurt.de> |
| 1033 | */ |
| 1034 | UNUSUAL_DEV( 0x090a, 0x1001, 0x0100, 0x0100, |
| 1035 | "Trumpion", |
| 1036 | "t33520 USB Flash Card Controller", |
| 1037 | US_SC_DEVICE, US_PR_BULK, NULL, |
| 1038 | US_FL_NEED_OVERRIDE ), |
| 1039 | |
Phil Dibowitz | 1724757 | 2005-05-21 00:45:55 -0700 | [diff] [blame] | 1040 | /* Reported by Filippo Bardelli <filibard@libero.it> |
| 1041 | * The device reports a subclass of RBC, which is wrong. |
| 1042 | */ |
| 1043 | UNUSUAL_DEV( 0x090a, 0x1050, 0x0100, 0x0100, |
| 1044 | "Trumpion Microelectronics, Inc.", |
| 1045 | "33520 USB Digital Voice Recorder", |
| 1046 | US_SC_UFI, US_PR_DEVICE, NULL, |
| 1047 | 0), |
| 1048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | /* Trumpion Microelectronics MP3 player (felipe_alfaro@linuxmail.org) */ |
| 1050 | UNUSUAL_DEV( 0x090a, 0x1200, 0x0000, 0x9999, |
| 1051 | "Trumpion", |
| 1052 | "MP3 player", |
| 1053 | US_SC_RBC, US_PR_BULK, NULL, |
| 1054 | 0 ), |
| 1055 | |
| 1056 | /* aeb */ |
| 1057 | UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff, |
| 1058 | "Feiya", |
| 1059 | "5-in-1 Card Reader", |
| 1060 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1061 | US_FL_FIX_CAPACITY ), |
| 1062 | |
| 1063 | /* This Pentax still camera is not conformant |
| 1064 | * to the USB storage specification: - |
| 1065 | * - It does not like the INQUIRY command. So we must handle this command |
| 1066 | * of the SCSI layer ourselves. |
| 1067 | * Tested on Rev. 10.00 (0x1000) |
| 1068 | * Submitted by James Courtier-Dutton <James@superbug.demon.co.uk> |
| 1069 | */ |
| 1070 | UNUSUAL_DEV( 0x0a17, 0x0004, 0x1000, 0x1000, |
| 1071 | "Pentax", |
| 1072 | "Optio 2/3/400", |
| 1073 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1074 | US_FL_FIX_INQUIRY ), |
| 1075 | |
| 1076 | |
| 1077 | /* Submitted by Per Winkvist <per.winkvist@uk.com> */ |
| 1078 | UNUSUAL_DEV( 0x0a17, 0x006, 0x0000, 0xffff, |
| 1079 | "Pentax", |
| 1080 | "Optio S/S4", |
| 1081 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1082 | US_FL_FIX_INQUIRY ), |
| 1083 | |
| 1084 | #ifdef CONFIG_USB_STORAGE_ISD200 |
| 1085 | UNUSUAL_DEV( 0x0bf6, 0xa001, 0x0100, 0x0110, |
| 1086 | "ATI", |
| 1087 | "USB Cable 205", |
| 1088 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 1089 | 0 ), |
| 1090 | #endif |
| 1091 | |
| 1092 | #ifdef CONFIG_USB_STORAGE_DATAFAB |
| 1093 | UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff, |
| 1094 | "Acomdata", |
| 1095 | "CF", |
| 1096 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1097 | US_FL_SINGLE_LUN ), |
| 1098 | #endif |
| 1099 | #ifdef CONFIG_USB_STORAGE_SDDR55 |
| 1100 | UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff, |
| 1101 | "Acomdata", |
| 1102 | "SM", |
| 1103 | US_SC_SCSI, US_PR_SDDR55, NULL, |
| 1104 | US_FL_SINGLE_LUN ), |
| 1105 | #endif |
| 1106 | |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 1107 | /* Submitted by: Nick Sillik <n.sillik@temple.edu> |
| 1108 | * Needed for OneTouch extension to usb-storage |
| 1109 | * |
| 1110 | */ |
| 1111 | #ifdef CONFIG_USB_STORAGE_ONETOUCH |
Antti Andreimann | 9465663 | 2005-11-17 09:47:53 -0800 | [diff] [blame] | 1112 | UNUSUAL_DEV( 0x0d49, 0x7000, 0x0000, 0x9999, |
| 1113 | "Maxtor", |
| 1114 | "OneTouch External Harddrive", |
| 1115 | US_SC_DEVICE, US_PR_DEVICE, onetouch_connect_input, |
| 1116 | 0), |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 1117 | UNUSUAL_DEV( 0x0d49, 0x7010, 0x0000, 0x9999, |
| 1118 | "Maxtor", |
| 1119 | "OneTouch External Harddrive", |
| 1120 | US_SC_DEVICE, US_PR_DEVICE, onetouch_connect_input, |
| 1121 | 0), |
| 1122 | #endif |
| 1123 | |
Pete Zaitcev | c713c97 | 2006-03-05 21:43:40 -0800 | [diff] [blame] | 1124 | /* |
| 1125 | * Pete Zaitcev <zaitcev@yahoo.com>, bz#164688. |
| 1126 | * The device blatantly ignores LUN and returns 1 in GetMaxLUN. |
| 1127 | */ |
| 1128 | UNUSUAL_DEV( 0x0c45, 0x1060, 0x0100, 0x0100, |
| 1129 | "Unknown", |
| 1130 | "Unknown", |
| 1131 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1132 | US_FL_SINGLE_LUN ), |
| 1133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | /* Submitted by Joris Struyve <joris@struyve.be> */ |
| 1135 | UNUSUAL_DEV( 0x0d96, 0x410a, 0x0001, 0xffff, |
| 1136 | "Medion", |
| 1137 | "MD 7425", |
| 1138 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1139 | US_FL_FIX_INQUIRY), |
| 1140 | |
| 1141 | /* |
| 1142 | * Entry for Jenoptik JD 5200z3 |
| 1143 | * |
| 1144 | * email: car.busse@gmx.de |
| 1145 | */ |
| 1146 | UNUSUAL_DEV( 0x0d96, 0x5200, 0x0001, 0x0200, |
| 1147 | "Jenoptik", |
| 1148 | "JD 5200 z3", |
| 1149 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), |
| 1150 | |
| 1151 | /* Reported by Lubomir Blaha <tritol@trilogic.cz> |
| 1152 | * I _REALLY_ don't know what 3rd, 4th number and all defines mean, but this |
| 1153 | * works for me. Can anybody correct these values? (I able to test corrected |
| 1154 | * version.) |
| 1155 | */ |
| 1156 | UNUSUAL_DEV( 0x0dd8, 0x1060, 0x0000, 0xffff, |
| 1157 | "Netac", |
| 1158 | "USB-CF-Card", |
| 1159 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1160 | US_FL_FIX_INQUIRY ), |
| 1161 | |
| 1162 | /* Patch by Stephan Walter <stephan.walter@epfl.ch> |
| 1163 | * I don't know why, but it works... */ |
| 1164 | UNUSUAL_DEV( 0x0dda, 0x0001, 0x0012, 0x0012, |
| 1165 | "WINWARD", |
| 1166 | "Music Disk", |
| 1167 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1168 | US_FL_IGNORE_RESIDUE ), |
| 1169 | |
| 1170 | /* Reported by Ian McConnell <ian at emit.demon.co.uk> */ |
| 1171 | UNUSUAL_DEV( 0x0dda, 0x0301, 0x0012, 0x0012, |
| 1172 | "PNP_MP3", |
| 1173 | "PNP_MP3 PLAYER", |
| 1174 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1175 | US_FL_IGNORE_RESIDUE ), |
| 1176 | |
Alan Stern | 982db2a | 2006-02-13 10:16:04 -0500 | [diff] [blame] | 1177 | /* Reported by Jim McCloskey <mcclosk@ucsc.edu> */ |
| 1178 | UNUSUAL_DEV( 0x0e21, 0x0520, 0x0100, 0x0100, |
| 1179 | "Cowon Systems", |
| 1180 | "iAUDIO M5", |
| 1181 | US_SC_DEVICE, US_PR_BULK, NULL, |
| 1182 | 0 ), |
| 1183 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | /* Submitted by Antoine Mairesse <antoine.mairesse@free.fr> */ |
| 1185 | UNUSUAL_DEV( 0x0ed1, 0x6660, 0x0100, 0x0300, |
| 1186 | "USB", |
| 1187 | "Solid state disk", |
| 1188 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1189 | US_FL_FIX_INQUIRY ), |
| 1190 | |
| 1191 | /* Submitted by Daniel Drake <dsd@gentoo.org> |
| 1192 | * Reported by dayul on the Gentoo Forums */ |
| 1193 | UNUSUAL_DEV( 0x0ea0, 0x2168, 0x0110, 0x0110, |
| 1194 | "Ours Technology", |
| 1195 | "Flash Disk", |
| 1196 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1197 | US_FL_IGNORE_RESIDUE ), |
| 1198 | |
| 1199 | /* Reported by Rastislav Stanik <rs_kernel@yahoo.com> */ |
| 1200 | UNUSUAL_DEV( 0x0ea0, 0x6828, 0x0110, 0x0110, |
| 1201 | "USB", |
| 1202 | "Flash Disk", |
| 1203 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1204 | US_FL_IGNORE_RESIDUE ), |
| 1205 | |
| 1206 | /* Reported by Michael Stattmann <michael@stattmann.com> */ |
| 1207 | UNUSUAL_DEV( 0x0fce, 0xd008, 0x0000, 0x0000, |
| 1208 | "Sony Ericsson", |
| 1209 | "V800-Vodafone 802", |
| 1210 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1211 | US_FL_NO_WP_DETECT ), |
| 1212 | |
| 1213 | /* Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu> |
| 1214 | * Tested on hardware version 1.10. |
| 1215 | * Entry is needed only for the initializer function override. |
| 1216 | */ |
| 1217 | UNUSUAL_DEV( 0x1019, 0x0c55, 0x0000, 0x9999, |
| 1218 | "Desknote", |
| 1219 | "UCR-61S2B", |
| 1220 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_ucr61s2b_init, |
| 1221 | 0 ), |
| 1222 | |
Phil Dibowitz | 7b1cbeb | 2005-05-02 23:54:28 -0700 | [diff] [blame] | 1223 | /* Reported by Vilius Bilinkevicius <vilisas AT xxx DOT lt) */ |
| 1224 | UNUSUAL_DEV( 0x132b, 0x000b, 0x0001, 0x0001, |
| 1225 | "Minolta", |
| 1226 | "Dimage Z10", |
| 1227 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1228 | 0 ), |
| 1229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | /* Reported by Kotrla Vitezslav <kotrla@ceb.cz> */ |
| 1231 | UNUSUAL_DEV( 0x1370, 0x6828, 0x0110, 0x0110, |
| 1232 | "SWISSBIT", |
| 1233 | "Black Silver", |
| 1234 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1235 | US_FL_IGNORE_RESIDUE ), |
| 1236 | |
Davide Perini | 0ddc063 | 2006-06-19 17:07:39 -0400 | [diff] [blame] | 1237 | /* patch submitted by Davide Perini <perini.davide@dpsoftware.org> |
| 1238 | * and Renato Perini <rperini@email.it> |
| 1239 | */ |
| 1240 | UNUSUAL_DEV( 0x22b8, 0x3010, 0x0001, 0x0001, |
| 1241 | "Motorola", |
| 1242 | "RAZR V3x", |
| 1243 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1244 | US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), |
| 1245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */ |
| 1247 | UNUSUAL_DEV( 0x2735, 0x100b, 0x0000, 0x9999, |
| 1248 | "MPIO", |
| 1249 | "HS200", |
| 1250 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1251 | US_FL_GO_SLOW ), |
| 1252 | |
David Härdeman | 63dc3ff | 2005-11-23 15:45:49 -0800 | [diff] [blame] | 1253 | /* |
| 1254 | * David Härdeman <david@2gen.com> |
| 1255 | * The key makes the SCSI stack print confusing (but harmless) messages |
| 1256 | */ |
| 1257 | UNUSUAL_DEV( 0x4146, 0xba01, 0x0100, 0x0100, |
| 1258 | "Iomega", |
| 1259 | "Micro Mini 1GB", |
| 1260 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), |
| 1261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | #ifdef CONFIG_USB_STORAGE_SDDR55 |
| 1263 | UNUSUAL_DEV( 0x55aa, 0xa103, 0x0000, 0x9999, |
| 1264 | "Sandisk", |
| 1265 | "ImageMate SDDR55", |
| 1266 | US_SC_SCSI, US_PR_SDDR55, NULL, |
| 1267 | US_FL_SINGLE_LUN), |
| 1268 | #endif |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 1269 | |
Alan Stern | a2149bc | 2006-02-02 09:52:45 -0500 | [diff] [blame] | 1270 | /* Reported by Andrew Simmons <andrew.simmons@gmail.com> */ |
| 1271 | UNUSUAL_DEV( 0xed06, 0x4500, 0x0001, 0x0001, |
| 1272 | "DataStor", |
| 1273 | "USB4500 FW1.04", |
| 1274 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1275 | US_FL_FIX_CAPACITY), |
| 1276 | |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 1277 | /* Control/Bulk transport for all SubClass values */ |
| 1278 | USUAL_DEV(US_SC_RBC, US_PR_CB, USB_US_TYPE_STOR), |
| 1279 | USUAL_DEV(US_SC_8020, US_PR_CB, USB_US_TYPE_STOR), |
| 1280 | USUAL_DEV(US_SC_QIC, US_PR_CB, USB_US_TYPE_STOR), |
| 1281 | USUAL_DEV(US_SC_UFI, US_PR_CB, USB_US_TYPE_STOR), |
| 1282 | USUAL_DEV(US_SC_8070, US_PR_CB, USB_US_TYPE_STOR), |
| 1283 | USUAL_DEV(US_SC_SCSI, US_PR_CB, USB_US_TYPE_STOR), |
| 1284 | |
| 1285 | /* Control/Bulk/Interrupt transport for all SubClass values */ |
| 1286 | USUAL_DEV(US_SC_RBC, US_PR_CBI, USB_US_TYPE_STOR), |
| 1287 | USUAL_DEV(US_SC_8020, US_PR_CBI, USB_US_TYPE_STOR), |
| 1288 | USUAL_DEV(US_SC_QIC, US_PR_CBI, USB_US_TYPE_STOR), |
| 1289 | USUAL_DEV(US_SC_UFI, US_PR_CBI, USB_US_TYPE_STOR), |
| 1290 | USUAL_DEV(US_SC_8070, US_PR_CBI, USB_US_TYPE_STOR), |
| 1291 | USUAL_DEV(US_SC_SCSI, US_PR_CBI, USB_US_TYPE_STOR), |
| 1292 | |
| 1293 | /* Bulk-only transport for all SubClass values */ |
| 1294 | USUAL_DEV(US_SC_RBC, US_PR_BULK, USB_US_TYPE_STOR), |
| 1295 | USUAL_DEV(US_SC_8020, US_PR_BULK, USB_US_TYPE_STOR), |
| 1296 | USUAL_DEV(US_SC_QIC, US_PR_BULK, USB_US_TYPE_STOR), |
| 1297 | USUAL_DEV(US_SC_UFI, US_PR_BULK, USB_US_TYPE_STOR), |
| 1298 | USUAL_DEV(US_SC_8070, US_PR_BULK, USB_US_TYPE_STOR), |
| 1299 | USUAL_DEV(US_SC_SCSI, US_PR_BULK, 0), |