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