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