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 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Current development and maintenance by: |
| 5 | * (c) 2000-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net) |
| 6 | * |
| 7 | * Initial work by: |
| 8 | * (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc. |
| 9 | * |
| 10 | * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more |
| 11 | * information about this driver. |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify it |
| 14 | * under the terms of the GNU General Public License as published by the |
| 15 | * Free Software Foundation; either version 2, or (at your option) any |
| 16 | * later version. |
| 17 | * |
| 18 | * This program is distributed in the hope that it will be useful, but |
| 19 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 21 | * General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License along |
| 24 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 25 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 26 | */ |
| 27 | |
| 28 | /* IMPORTANT NOTE: This file must be included in another file which does |
| 29 | * the following thing for it to work: |
Alan Stern | 25ff1c3 | 2008-12-15 12:43:41 -0500 | [diff] [blame] | 30 | * The UNUSUAL_DEV, COMPLIANT_DEV, and USUAL_DEV macros must be defined |
| 31 | * before this file is included. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | /* If you edit this file, please try to keep it sorted first by VendorID, |
| 35 | * then by ProductID. |
| 36 | * |
| 37 | * If you want to add an entry for this file, be sure to include the |
| 38 | * following information: |
| 39 | * - a patch that adds the entry for your device, including your |
| 40 | * email address right above the entry (plus maybe a brief |
| 41 | * explanation of the reason for the entry), |
| 42 | * - a copy of /proc/bus/usb/devices with your device plugged in |
| 43 | * running with this patch. |
| 44 | * Send your submission to either Phil Dibowitz <phil@ipom.com> or |
| 45 | * Alan Stern <stern@rowland.harvard.edu>, and don't forget to CC: the |
Andrew Lunn | cef03f8 | 2008-04-23 22:04:30 +0200 | [diff] [blame] | 46 | * USB development list <linux-usb@vger.kernel.org> and the USB storage list |
| 47 | * <usb-storage@lists.one-eyed-alien.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | */ |
| 49 | |
Alan Stern | 25ff1c3 | 2008-12-15 12:43:41 -0500 | [diff] [blame] | 50 | /* Note: If you add an entry only in order to set the CAPACITY_OK flag, |
| 51 | * use the COMPLIANT_DEV macro instead of UNUSUAL_DEV. This is |
| 52 | * because such entries mark devices which actually work correctly, |
| 53 | * as opposed to devices that do something strangely or wrongly. |
| 54 | */ |
| 55 | |
Alan Stern | 0ff7188 | 2009-02-12 14:47:49 -0500 | [diff] [blame] | 56 | #if !defined(CONFIG_USB_STORAGE_SDDR09) && \ |
| 57 | !defined(CONFIG_USB_STORAGE_SDDR09_MODULE) |
| 58 | #define NO_SDDR09 |
| 59 | #endif |
| 60 | |
Vivian Bregier | 8af60be | 2005-05-03 02:16:34 +0200 | [diff] [blame] | 61 | /* patch submitted by Vivian Bregier <Vivian.Bregier@imag.fr> |
| 62 | */ |
| 63 | UNUSUAL_DEV( 0x03eb, 0x2002, 0x0100, 0x0100, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 64 | "ATMEL", |
| 65 | "SND1 Storage", |
| 66 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 67 | US_FL_IGNORE_RESIDUE), |
Vivian Bregier | 8af60be | 2005-05-03 02:16:34 +0200 | [diff] [blame] | 68 | |
Rodolfo Quesada | 9d5847b | 2006-03-06 10:45:42 -0500 | [diff] [blame] | 69 | /* Reported by Rodolfo Quesada <rquesada@roqz.net> */ |
| 70 | UNUSUAL_DEV( 0x03ee, 0x6906, 0x0003, 0x0003, |
| 71 | "VIA Technologies Inc.", |
| 72 | "Mitsumi multi cardreader", |
| 73 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 74 | US_FL_IGNORE_RESIDUE ), |
| 75 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 76 | UNUSUAL_DEV( 0x03f0, 0x0107, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | "HP", |
| 78 | "CD-Writer+", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 79 | US_SC_8070, US_PR_CB, NULL, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 81 | /* Reported by Ben Efros <ben@pc-doctor.com> */ |
| 82 | UNUSUAL_DEV( 0x03f0, 0x070c, 0x0000, 0x0000, |
| 83 | "HP", |
| 84 | "Personal Media Drive", |
| 85 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 86 | US_FL_SANE_SENSE ), |
| 87 | |
Grant Grundler | 4b24f91 | 2008-01-23 21:31:03 -0800 | [diff] [blame] | 88 | /* Reported by Grant Grundler <grundler@parisc-linux.org> |
| 89 | * HP r707 camera in "Disk" mode with 2.00.23 or 2.00.24 firmware. |
| 90 | */ |
| 91 | UNUSUAL_DEV( 0x03f0, 0x4002, 0x0001, 0x0001, |
| 92 | "HP", |
| 93 | "PhotoSmart R707", |
| 94 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_CAPACITY), |
| 95 | |
Phil Dibowitz | 1ea640c | 2005-08-29 22:38:28 -0700 | [diff] [blame] | 96 | /* Reported by Sebastian Kapfer <sebastian_kapfer@gmx.net> |
| 97 | * and Olaf Hering <olh@suse.de> (different bcd's, same vendor/product) |
| 98 | * for USB floppies that need the SINGLE_LUN enforcement. |
| 99 | */ |
| 100 | UNUSUAL_DEV( 0x0409, 0x0040, 0x0000, 0x9999, |
| 101 | "NEC", |
| 102 | "NEC USB UF000x", |
| 103 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 104 | US_FL_SINGLE_LUN ), |
| 105 | |
Phil Dibowitz | 3e220e9 | 2005-12-18 21:30:02 -0800 | [diff] [blame] | 106 | /* Patch submitted by Mihnea-Costin Grigore <mihnea@zulu.ro> */ |
| 107 | UNUSUAL_DEV( 0x040d, 0x6205, 0x0003, 0x0003, |
| 108 | "VIA Technologies Inc.", |
| 109 | "USB 2.0 Card Reader", |
| 110 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 111 | US_FL_IGNORE_RESIDUE ), |
| 112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | /* Deduced by Jonathan Woithe <jwoithe@physics.adelaide.edu.au> |
| 114 | * Entry needed for flags: US_FL_FIX_INQUIRY because initial inquiry message |
| 115 | * always fails and confuses drive. |
| 116 | */ |
| 117 | UNUSUAL_DEV( 0x0411, 0x001c, 0x0113, 0x0113, |
| 118 | "Buffalo", |
| 119 | "DUB-P40G HDD", |
| 120 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 121 | US_FL_FIX_INQUIRY ), |
| 122 | |
Ernis | d8840d6 | 2006-06-26 16:02:43 -0400 | [diff] [blame] | 123 | /* Submitted by Ernestas Vaiciukevicius <ernisv@gmail.com> */ |
| 124 | UNUSUAL_DEV( 0x0419, 0x0100, 0x0100, 0x0100, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 125 | "Samsung Info. Systems America, Inc.", |
| 126 | "MP3 Player", |
| 127 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 128 | US_FL_IGNORE_RESIDUE ), |
Ernis | d8840d6 | 2006-06-26 16:02:43 -0400 | [diff] [blame] | 129 | |
Phil Dibowitz | 5501a48 | 2006-07-04 12:46:43 -0700 | [diff] [blame] | 130 | /* Reported by Orgad Shaneh <orgads@gmail.com> */ |
| 131 | UNUSUAL_DEV( 0x0419, 0xaace, 0x0100, 0x0100, |
| 132 | "Samsung", "MP3 Player", |
| 133 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 134 | US_FL_IGNORE_RESIDUE ), |
| 135 | |
Alan Stern | 1d614a4 | 2006-02-13 10:15:22 -0500 | [diff] [blame] | 136 | /* Reported by Christian Leber <christian@leber.de> */ |
| 137 | UNUSUAL_DEV( 0x0419, 0xaaf5, 0x0100, 0x0100, |
| 138 | "TrekStor", |
| 139 | "i.Beat 115 2.0", |
| 140 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 141 | US_FL_IGNORE_RESIDUE | US_FL_NOT_LOCKABLE ), |
| 142 | |
Phil Dibowitz | e4a16e0 | 2005-09-30 00:20:15 -0700 | [diff] [blame] | 143 | /* Reported by Stefan Werner <dustbln@gmx.de> */ |
| 144 | UNUSUAL_DEV( 0x0419, 0xaaf6, 0x0100, 0x0100, |
| 145 | "TrekStor", |
| 146 | "i.Beat Joy 2.0", |
| 147 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 148 | US_FL_IGNORE_RESIDUE ), |
| 149 | |
Pete Zaitcev | 23b7885 | 2006-03-05 21:45:44 -0800 | [diff] [blame] | 150 | /* Reported by Pete Zaitcev <zaitcev@redhat.com>, bz#176584 */ |
| 151 | UNUSUAL_DEV( 0x0420, 0x0001, 0x0100, 0x0100, |
| 152 | "GENERIC", "MP3 PLAYER", /* MyMusix PD-205 on the outside. */ |
| 153 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 154 | US_FL_IGNORE_RESIDUE ), |
| 155 | |
Phil Dibowitz | 031defd | 2009-04-26 12:47:51 +0200 | [diff] [blame] | 156 | /* Reported by Andrew Nayenko <relan@bk.ru> |
| 157 | * Updated for new firmware by Phillip Potter <phillipinda@hotmail.com> */ |
| 158 | UNUSUAL_DEV( 0x0421, 0x0019, 0x0592, 0x0610, |
Andrew Nayenko | 0d8c7ae | 2007-02-25 00:40:20 -0800 | [diff] [blame] | 159 | "Nokia", |
| 160 | "Nokia 6288", |
| 161 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 162 | US_FL_MAX_SECTORS_64 ), |
| 163 | |
Alan Stern | de1caa4 | 2006-07-31 10:10:28 -0400 | [diff] [blame] | 164 | /* Reported by Mario Rettig <mariorettig@web.de> */ |
| 165 | UNUSUAL_DEV( 0x0421, 0x042e, 0x0100, 0x0100, |
| 166 | "Nokia", |
| 167 | "Nokia 3250", |
| 168 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 169 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 170 | |
Andrew Morton | fe1ec34 | 2006-12-04 15:22:40 -0800 | [diff] [blame] | 171 | /* Reported by <honkkis@gmail.com> */ |
| 172 | UNUSUAL_DEV( 0x0421, 0x0433, 0x0100, 0x0100, |
| 173 | "Nokia", |
| 174 | "E70", |
| 175 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 176 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 177 | |
Alan Stern | 7923811 | 2006-09-28 12:11:56 -0400 | [diff] [blame] | 178 | /* Reported by Jon Hart <Jon.Hart@web.de> */ |
| 179 | UNUSUAL_DEV( 0x0421, 0x0434, 0x0100, 0x0100, |
| 180 | "Nokia", |
| 181 | "E60", |
| 182 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 183 | US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), |
| 184 | |
Alan Stern | 9a01355 | 2006-07-07 13:45:13 -0400 | [diff] [blame] | 185 | /* Reported by Sumedha Swamy <sumedhaswamy@gmail.com> and |
| 186 | * Einar Th. Einarsson <einarthered@gmail.com> */ |
| 187 | UNUSUAL_DEV( 0x0421, 0x0444, 0x0100, 0x0100, |
| 188 | "Nokia", |
| 189 | "N91", |
| 190 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 191 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 192 | |
Alan Stern | d5681fe | 2006-06-13 09:59:32 -0400 | [diff] [blame] | 193 | /* Reported by Jiri Slaby <jirislaby@gmail.com> and |
| 194 | * Rene C. Castberg <Rene@Castberg.org> */ |
| 195 | UNUSUAL_DEV( 0x0421, 0x0446, 0x0100, 0x0100, |
| 196 | "Nokia", |
| 197 | "N80", |
| 198 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 199 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 200 | |
Alan Stern | 57b01b1 | 2006-07-10 11:51:12 -0400 | [diff] [blame] | 201 | /* Reported by Matthew Bloch <matthew@bytemark.co.uk> */ |
| 202 | UNUSUAL_DEV( 0x0421, 0x044e, 0x0100, 0x0100, |
| 203 | "Nokia", |
| 204 | "E61", |
| 205 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 206 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 207 | |
Alan Stern | e4a20da | 2006-10-04 16:31:15 -0400 | [diff] [blame] | 208 | /* Reported by Bardur Arantsson <bardur@scientician.net> */ |
Alan Stern | 393e551 | 2007-09-18 10:09:32 -0400 | [diff] [blame] | 209 | UNUSUAL_DEV( 0x0421, 0x047c, 0x0370, 0x0610, |
Alan Stern | e4a20da | 2006-10-04 16:31:15 -0400 | [diff] [blame] | 210 | "Nokia", |
| 211 | "6131", |
| 212 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 213 | US_FL_MAX_SECTORS_64 ), |
| 214 | |
Manuel Osdoba | 39559b4 | 2007-01-18 21:28:45 +0100 | [diff] [blame] | 215 | /* Reported by Manuel Osdoba <manuel.osdoba@tu-ilmenau.de> */ |
Moritz Muehlenhoff | 716a9c8 | 2009-03-14 00:43:21 +0100 | [diff] [blame] | 216 | UNUSUAL_DEV( 0x0421, 0x0492, 0x0452, 0x9999, |
Manuel Osdoba | 39559b4 | 2007-01-18 21:28:45 +0100 | [diff] [blame] | 217 | "Nokia", |
| 218 | "Nokia 6233", |
| 219 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 220 | US_FL_MAX_SECTORS_64 ), |
| 221 | |
Alan Stern | 3ccf25c | 2006-10-13 09:59:17 -0400 | [diff] [blame] | 222 | /* Reported by Alex Corcoles <alex@corcoles.net> */ |
| 223 | UNUSUAL_DEV( 0x0421, 0x0495, 0x0370, 0x0370, |
| 224 | "Nokia", |
| 225 | "6234", |
| 226 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 227 | US_FL_MAX_SECTORS_64 ), |
| 228 | |
Alan Stern | 0ff7188 | 2009-02-12 14:47:49 -0500 | [diff] [blame] | 229 | #ifdef NO_SDDR09 |
Alan Stern | c20b15f | 2008-12-01 10:36:15 -0500 | [diff] [blame] | 230 | UNUSUAL_DEV( 0x0436, 0x0005, 0x0100, 0x0100, |
| 231 | "Microtech", |
| 232 | "CameraMate", |
| 233 | US_SC_SCSI, US_PR_CB, NULL, |
| 234 | US_FL_SINGLE_LUN ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | #endif |
| 236 | |
Phil Dibowitz | 16f05be | 2006-02-13 15:59:42 -0800 | [diff] [blame] | 237 | /* Patch submitted by Daniel Drake <dsd@gentoo.org> |
| 238 | * Device reports nonsense bInterfaceProtocol 6 when connected over USB2 */ |
| 239 | UNUSUAL_DEV( 0x0451, 0x5416, 0x0100, 0x0100, |
| 240 | "Neuros Audio", |
| 241 | "USB 2.0 HD 2.5", |
| 242 | US_SC_DEVICE, US_PR_BULK, NULL, |
| 243 | US_FL_NEED_OVERRIDE ), |
| 244 | |
Pete Zaitcev | 490dce1 | 2005-08-23 07:46:13 -0700 | [diff] [blame] | 245 | /* |
| 246 | * Pete Zaitcev <zaitcev@yahoo.com>, from Patrick C. F. Ernzer, bz#162559. |
| 247 | * The key does not actually break, but it returns zero sense which |
| 248 | * makes our SCSI stack to print confusing messages. |
| 249 | */ |
| 250 | UNUSUAL_DEV( 0x0457, 0x0150, 0x0100, 0x0100, |
| 251 | "USBest Technology", /* sold by Transcend */ |
| 252 | "USB Mass Storage Device", |
| 253 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), |
| 254 | |
Phil Dibowitz | 16f05be | 2006-02-13 15:59:42 -0800 | [diff] [blame] | 255 | /* |
| 256 | * Bohdan Linda <bohdan.linda@gmail.com> |
| 257 | * 1GB USB sticks MyFlash High Speed. I have restricted |
| 258 | * the revision to my model only |
| 259 | */ |
| 260 | UNUSUAL_DEV( 0x0457, 0x0151, 0x0100, 0x0100, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 261 | "USB 2.0", |
| 262 | "Flash Disk", |
| 263 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 264 | US_FL_NOT_LOCKABLE ), |
Daniel Drake | e1c37b8 | 2005-08-31 16:38:41 +0100 | [diff] [blame] | 265 | |
Alan Stern | a6b7b03 | 2008-11-21 16:15:12 -0500 | [diff] [blame] | 266 | /* Reported by Tamas Kerecsen <kerecsen@bigfoot.com> |
| 267 | * Obviously the PROM has not been customized by the VAR; |
| 268 | * the Vendor and Product string descriptors are: |
| 269 | * Generic Mass Storage (PROTOTYPE--Remember to change idVendor) |
| 270 | * Generic Manufacturer (PROTOTYPE--Remember to change idVendor) |
| 271 | */ |
| 272 | UNUSUAL_DEV( 0x045e, 0xffff, 0x0000, 0x0000, |
| 273 | "Mitac", |
| 274 | "GPS", |
| 275 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 276 | US_FL_MAX_SECTORS_64 ), |
| 277 | |
Pete Zaitcev | 379885a | 2007-01-13 15:17:46 -0800 | [diff] [blame] | 278 | /* |
| 279 | * This virtual floppy is found in Sun equipment (x4600, x4200m2, etc.) |
| 280 | * Reported by Pete Zaitcev <zaitcev@redhat.com> |
| 281 | * This device chokes on both version of MODE SENSE which we have, so |
| 282 | * use_10_for_ms is not effective, and we use US_FL_NO_WP_DETECT. |
| 283 | */ |
| 284 | UNUSUAL_DEV( 0x046b, 0xff40, 0x0100, 0x0100, |
| 285 | "AMI", |
| 286 | "Virtual Floppy", |
| 287 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 288 | US_FL_NO_WP_DETECT), |
| 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | /* Patch submitted by Philipp Friedrich <philipp@void.at> */ |
| 291 | UNUSUAL_DEV( 0x0482, 0x0100, 0x0100, 0x0100, |
| 292 | "Kyocera", |
| 293 | "Finecam S3x", |
| 294 | US_SC_8070, US_PR_CB, NULL, US_FL_FIX_INQUIRY), |
| 295 | |
| 296 | /* Patch submitted by Philipp Friedrich <philipp@void.at> */ |
| 297 | UNUSUAL_DEV( 0x0482, 0x0101, 0x0100, 0x0100, |
| 298 | "Kyocera", |
| 299 | "Finecam S4", |
| 300 | US_SC_8070, US_PR_CB, NULL, US_FL_FIX_INQUIRY), |
| 301 | |
| 302 | /* Patch submitted by Stephane Galles <stephane.galles@free.fr> */ |
| 303 | UNUSUAL_DEV( 0x0482, 0x0103, 0x0100, 0x0100, |
| 304 | "Kyocera", |
| 305 | "Finecam S5", |
| 306 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), |
| 307 | |
Jens Taprogge | 74511bb | 2008-10-26 18:16:09 +0100 | [diff] [blame] | 308 | /* Patch submitted by Jens Taprogge <jens.taprogge@taprogge.org> */ |
| 309 | UNUSUAL_DEV( 0x0482, 0x0107, 0x0100, 0x0100, |
| 310 | "Kyocera", |
| 311 | "CONTAX SL300R T*", |
| 312 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 313 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE), |
| 314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | /* Reported by Paul Stewart <stewart@wetlogic.net> |
| 316 | * This entry is needed because the device reports Sub=ff */ |
| 317 | UNUSUAL_DEV( 0x04a4, 0x0004, 0x0001, 0x0001, |
| 318 | "Hitachi", |
| 319 | "DVD-CAM DZ-MV100A Camcorder", |
| 320 | US_SC_SCSI, US_PR_CB, NULL, US_FL_SINGLE_LUN), |
| 321 | |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 322 | /* BENQ DC5330 |
| 323 | * Reported by Manuel Fombuena <mfombuena@ya.com> and |
| 324 | * Frank Copeland <fjc@thingy.apana.org.au> */ |
| 325 | UNUSUAL_DEV( 0x04a5, 0x3010, 0x0100, 0x0100, |
| 326 | "Tekom Technologies, Inc", |
| 327 | "300_CAMERA", |
| 328 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 329 | US_FL_IGNORE_RESIDUE ), |
| 330 | |
fabien COSSE | 17fa6e5 | 2005-11-30 01:16:00 -0800 | [diff] [blame] | 331 | /* Patch for Nikon coolpix 2000 |
| 332 | * Submitted by Fabien Cosse <fabien.cosse@wanadoo.fr>*/ |
| 333 | UNUSUAL_DEV( 0x04b0, 0x0301, 0x0010, 0x0010, |
| 334 | "NIKON", |
| 335 | "NIKON DSC E2000", |
| 336 | US_SC_DEVICE, US_PR_DEVICE,NULL, |
| 337 | US_FL_NOT_LOCKABLE ), |
| 338 | |
Doug Maxey | 33abc04 | 2007-12-05 23:36:45 -0600 | [diff] [blame] | 339 | /* Reported by Doug Maxey (dwm@austin.ibm.com) */ |
| 340 | UNUSUAL_DEV( 0x04b3, 0x4001, 0x0110, 0x0110, |
| 341 | "IBM", |
| 342 | "IBM RSA2", |
| 343 | US_SC_DEVICE, US_PR_CB, NULL, |
| 344 | US_FL_MAX_SECTORS_MIN), |
| 345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | /* Reported by Simon Levitt <simon@whattf.com> |
| 347 | * This entry needs Sub and Proto fields */ |
| 348 | UNUSUAL_DEV( 0x04b8, 0x0601, 0x0100, 0x0100, |
| 349 | "Epson", |
| 350 | "875DC Storage", |
| 351 | US_SC_SCSI, US_PR_CB, NULL, US_FL_FIX_INQUIRY), |
| 352 | |
| 353 | /* Reported by Khalid Aziz <khalid@gonehiking.org> |
| 354 | * This entry is needed because the device reports Sub=ff */ |
| 355 | UNUSUAL_DEV( 0x04b8, 0x0602, 0x0110, 0x0110, |
| 356 | "Epson", |
| 357 | "785EPX Storage", |
| 358 | US_SC_SCSI, US_PR_BULK, NULL, US_FL_SINGLE_LUN), |
| 359 | |
| 360 | /* Not sure who reported this originally but |
| 361 | * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN |
| 362 | * flag be added */ |
| 363 | UNUSUAL_DEV( 0x04cb, 0x0100, 0x0000, 0x2210, |
| 364 | "Fujifilm", |
| 365 | "FinePix 1400Zoom", |
| 366 | US_SC_UFI, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN), |
| 367 | |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 368 | /* Reported by Peter Wächtler <pwaechtler@loewe-komp.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | * The device needs the flags only. |
| 370 | */ |
| 371 | UNUSUAL_DEV( 0x04ce, 0x0002, 0x0074, 0x0074, |
| 372 | "ScanLogic", |
| 373 | "SL11R-IDE", |
| 374 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 375 | US_FL_FIX_INQUIRY), |
| 376 | |
| 377 | /* Reported by Kriston Fincher <kriston@airmail.net> |
| 378 | * Patch submitted by Sean Millichamp <sean@bruenor.org> |
| 379 | * This is to support the Panasonic PalmCam PV-SD4090 |
| 380 | * This entry is needed because the device reports Sub=ff |
| 381 | */ |
| 382 | UNUSUAL_DEV( 0x04da, 0x0901, 0x0100, 0x0200, |
| 383 | "Panasonic", |
| 384 | "LS-120 Camera", |
| 385 | US_SC_UFI, US_PR_DEVICE, NULL, 0), |
| 386 | |
| 387 | /* From Yukihiro Nakai, via zaitcev@yahoo.com. |
| 388 | * This is needed for CB instead of CBI */ |
| 389 | UNUSUAL_DEV( 0x04da, 0x0d05, 0x0000, 0x0000, |
| 390 | "Sharp CE-CW05", |
| 391 | "CD-R/RW Drive", |
| 392 | US_SC_8070, US_PR_CB, NULL, 0), |
| 393 | |
| 394 | /* Reported by Adriaan Penning <a.penning@luon.net> */ |
| 395 | UNUSUAL_DEV( 0x04da, 0x2372, 0x0000, 0x9999, |
| 396 | "Panasonic", |
| 397 | "DMC-LCx Camera", |
| 398 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 399 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), |
| 400 | |
Simeon Simeonov | dcab4ea | 2005-10-19 11:32:14 -0400 | [diff] [blame] | 401 | /* Reported by Simeon Simeonov <simeonov_2000@yahoo.com> */ |
| 402 | UNUSUAL_DEV( 0x04da, 0x2373, 0x0000, 0x9999, |
| 403 | "LEICA", |
| 404 | "D-LUX Camera", |
| 405 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 406 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), |
| 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | /* Most of the following entries were developed with the help of |
| 409 | * Shuttle/SCM directly. |
| 410 | */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 411 | UNUSUAL_DEV( 0x04e6, 0x0001, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | "Matshita", |
| 413 | "LS-120", |
| 414 | US_SC_8020, US_PR_CB, NULL, 0), |
| 415 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 416 | UNUSUAL_DEV( 0x04e6, 0x0002, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | "Shuttle", |
| 418 | "eUSCSI Bridge", |
| 419 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_euscsi_init, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 420 | US_FL_SCM_MULT_TARG ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
Alan Stern | 0ff7188 | 2009-02-12 14:47:49 -0500 | [diff] [blame] | 422 | #ifdef NO_SDDR09 |
Alan Stern | c20b15f | 2008-12-01 10:36:15 -0500 | [diff] [blame] | 423 | UNUSUAL_DEV( 0x04e6, 0x0005, 0x0100, 0x0208, |
| 424 | "SCM Microsystems", |
| 425 | "eUSB CompactFlash Adapter", |
| 426 | US_SC_SCSI, US_PR_CB, NULL, |
| 427 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | #endif |
| 429 | |
| 430 | /* Reported by Markus Demleitner <msdemlei@cl.uni-heidelberg.de> */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 431 | UNUSUAL_DEV( 0x04e6, 0x0006, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | "SCM Microsystems Inc.", |
| 433 | "eUSB MMC Adapter", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 434 | US_SC_SCSI, US_PR_CB, NULL, |
| 435 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
| 437 | /* Reported by Daniel Nouri <dpunktnpunkt@web.de> */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 438 | UNUSUAL_DEV( 0x04e6, 0x0006, 0x0205, 0x0205, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | "Shuttle", |
| 440 | "eUSB MMC Adapter", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 441 | US_SC_SCSI, US_PR_DEVICE, NULL, |
| 442 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 444 | UNUSUAL_DEV( 0x04e6, 0x0007, 0x0100, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | "Sony", |
| 446 | "Hifd", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 447 | US_SC_SCSI, US_PR_CB, NULL, |
| 448 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 450 | UNUSUAL_DEV( 0x04e6, 0x0009, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | "Shuttle", |
| 452 | "eUSB ATA/ATAPI Adapter", |
| 453 | US_SC_8020, US_PR_CB, NULL, 0), |
| 454 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 455 | UNUSUAL_DEV( 0x04e6, 0x000a, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | "Shuttle", |
| 457 | "eUSB CompactFlash Adapter", |
| 458 | US_SC_8020, US_PR_CB, NULL, 0), |
| 459 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 460 | UNUSUAL_DEV( 0x04e6, 0x000B, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | "Shuttle", |
| 462 | "eUSCSI Bridge", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 463 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | US_FL_SCM_MULT_TARG ), |
| 465 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 466 | UNUSUAL_DEV( 0x04e6, 0x000C, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | "Shuttle", |
| 468 | "eUSCSI Bridge", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 469 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 470 | US_FL_SCM_MULT_TARG ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 472 | UNUSUAL_DEV( 0x04e6, 0x0101, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | "Shuttle", |
| 474 | "CD-RW Device", |
| 475 | US_SC_8020, US_PR_CB, NULL, 0), |
| 476 | |
Alan Stern | b28884c | 2008-04-28 10:26:13 -0400 | [diff] [blame] | 477 | /* Reported by Dmitry Khlystov <adminimus@gmail.com> */ |
| 478 | UNUSUAL_DEV( 0x04e8, 0x507c, 0x0220, 0x0220, |
| 479 | "Samsung", |
| 480 | "YP-U3", |
| 481 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 482 | US_FL_MAX_SECTORS_64), |
| 483 | |
Phil Dibowitz | ed3e8fc | 2008-05-03 18:04:30 -0700 | [diff] [blame] | 484 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. |
| 485 | * Device uses standards-violating 32-byte Bulk Command Block Wrappers and |
| 486 | * reports itself as "Proprietary SCSI Bulk." Cf. device entry 0x084d:0x0011. |
| 487 | */ |
| 488 | UNUSUAL_DEV( 0x04fc, 0x80c2, 0x0100, 0x0100, |
| 489 | "Kobian Mercury", |
| 490 | "Binocam DCB-132", |
| 491 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 492 | US_FL_BULK32), |
| 493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | /* Reported by Bob Sass <rls@vectordb.com> -- only rev 1.33 tested */ |
| 495 | UNUSUAL_DEV( 0x050d, 0x0115, 0x0133, 0x0133, |
| 496 | "Belkin", |
| 497 | "USB SCSI Adaptor", |
| 498 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 499 | US_FL_SCM_MULT_TARG ), |
| 500 | |
| 501 | /* Iomega Clik! Drive |
| 502 | * Reported by David Chatenay <dchatenay@hotmail.com> |
| 503 | * The reason this is needed is not fully known. |
| 504 | */ |
| 505 | UNUSUAL_DEV( 0x0525, 0xa140, 0x0100, 0x0100, |
| 506 | "Iomega", |
| 507 | "USB Clik! 40", |
Phil Dibowitz | 2120638 | 2006-04-16 19:18:36 -0700 | [diff] [blame] | 508 | US_SC_8070, US_PR_DEVICE, NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | US_FL_FIX_INQUIRY ), |
| 510 | |
Alan Stern | 25ff1c3 | 2008-12-15 12:43:41 -0500 | [diff] [blame] | 511 | /* Added by Alan Stern <stern@rowland.harvard.edu> */ |
| 512 | COMPLIANT_DEV(0x0525, 0xa4a5, 0x0000, 0x9999, |
| 513 | "Linux", |
| 514 | "File-backed Storage Gadget", |
| 515 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 516 | US_FL_CAPACITY_OK ), |
| 517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | /* Yakumo Mega Image 37 |
| 519 | * Submitted by Stephan Fuhrmann <atomenergie@t-online.de> */ |
| 520 | UNUSUAL_DEV( 0x052b, 0x1801, 0x0100, 0x0100, |
| 521 | "Tekom Technologies, Inc", |
| 522 | "300_CAMERA", |
| 523 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 524 | US_FL_IGNORE_RESIDUE ), |
| 525 | |
| 526 | /* Another Yakumo camera. |
| 527 | * Reported by Michele Alzetta <michele.alzetta@aliceposta.it> */ |
| 528 | UNUSUAL_DEV( 0x052b, 0x1804, 0x0100, 0x0100, |
| 529 | "Tekom Technologies, Inc", |
| 530 | "300_CAMERA", |
| 531 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 532 | US_FL_IGNORE_RESIDUE ), |
| 533 | |
| 534 | /* Reported by Iacopo Spalletti <avvisi@spalletti.it> */ |
| 535 | UNUSUAL_DEV( 0x052b, 0x1807, 0x0100, 0x0100, |
| 536 | "Tekom Technologies, Inc", |
| 537 | "300_CAMERA", |
| 538 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 539 | US_FL_IGNORE_RESIDUE ), |
| 540 | |
| 541 | /* Yakumo Mega Image 47 |
| 542 | * Reported by Bjoern Paetzel <kolrabi@kolrabi.de> */ |
| 543 | UNUSUAL_DEV( 0x052b, 0x1905, 0x0100, 0x0100, |
| 544 | "Tekom Technologies, Inc", |
| 545 | "400_CAMERA", |
| 546 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 547 | US_FL_IGNORE_RESIDUE ), |
| 548 | |
| 549 | /* Reported by Paul Ortyl <ortylp@3miasto.net> |
| 550 | * Note that it's similar to the device above, only different prodID */ |
| 551 | UNUSUAL_DEV( 0x052b, 0x1911, 0x0100, 0x0100, |
| 552 | "Tekom Technologies, Inc", |
| 553 | "400_CAMERA", |
| 554 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 555 | US_FL_IGNORE_RESIDUE ), |
| 556 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 557 | UNUSUAL_DEV( 0x054c, 0x0010, 0x0106, 0x0450, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | "Sony", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 559 | "DSC-S30/S70/S75/505V/F505/F707/F717/P8", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | US_SC_SCSI, US_PR_DEVICE, NULL, |
| 561 | US_FL_SINGLE_LUN | US_FL_NOT_LOCKABLE | US_FL_NO_WP_DETECT ), |
| 562 | |
Lars Jacob | 7e3bd12 | 2006-07-10 11:53:58 -0400 | [diff] [blame] | 563 | /* Submitted by Lars Jacob <jacob.lars@googlemail.com> |
| 564 | * This entry is needed because the device reports Sub=ff */ |
| 565 | UNUSUAL_DEV( 0x054c, 0x0010, 0x0500, 0x0610, |
Alexandre Duret-Lutz | ec7dc8d | 2005-12-26 23:04:24 -0800 | [diff] [blame] | 566 | "Sony", |
Lars Jacob | 7e3bd12 | 2006-07-10 11:53:58 -0400 | [diff] [blame] | 567 | "DSC-T1/T5/H5", |
Alexandre Duret-Lutz | ec7dc8d | 2005-12-26 23:04:24 -0800 | [diff] [blame] | 568 | US_SC_8070, US_PR_DEVICE, NULL, |
| 569 | US_FL_SINGLE_LUN ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
| 571 | |
| 572 | /* Reported by wim@geeks.nl */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 573 | UNUSUAL_DEV( 0x054c, 0x0025, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | "Sony", |
| 575 | "Memorystick NW-MS7", |
| 576 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 577 | US_FL_SINGLE_LUN ), |
| 578 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | /* Submitted by Olaf Hering, <olh@suse.de> SuSE Bugzilla #49049 */ |
Luiz Fernando N. Capitulino | 20b2e28 | 2007-01-24 16:19:37 -0200 | [diff] [blame] | 580 | UNUSUAL_DEV( 0x054c, 0x002c, 0x0501, 0x2000, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | "Sony", |
| 582 | "USB Floppy Drive", |
| 583 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 584 | US_FL_SINGLE_LUN ), |
| 585 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 586 | UNUSUAL_DEV( 0x054c, 0x002d, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | "Sony", |
| 588 | "Memorystick MSAC-US1", |
| 589 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 590 | US_FL_SINGLE_LUN ), |
| 591 | |
| 592 | /* Submitted by Klaus Mueller <k.mueller@intershop.de> */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 593 | UNUSUAL_DEV( 0x054c, 0x002e, 0x0106, 0x0310, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | "Sony", |
| 595 | "Handycam", |
| 596 | US_SC_SCSI, US_PR_DEVICE, NULL, |
| 597 | US_FL_SINGLE_LUN ), |
| 598 | |
| 599 | /* Submitted by Rajesh Kumble Nayak <nayak@obs-nice.fr> */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 600 | UNUSUAL_DEV( 0x054c, 0x002e, 0x0500, 0x0500, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | "Sony", |
| 602 | "Handycam HC-85", |
| 603 | US_SC_UFI, US_PR_DEVICE, NULL, |
| 604 | US_FL_SINGLE_LUN ), |
| 605 | |
| 606 | UNUSUAL_DEV( 0x054c, 0x0032, 0x0000, 0x9999, |
| 607 | "Sony", |
| 608 | "Memorystick MSC-U01N", |
| 609 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 610 | US_FL_SINGLE_LUN ), |
| 611 | |
| 612 | /* Submitted by Michal Mlotek <mlotek@foobar.pl> */ |
| 613 | UNUSUAL_DEV( 0x054c, 0x0058, 0x0000, 0x9999, |
| 614 | "Sony", |
| 615 | "PEG N760c Memorystick", |
| 616 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 617 | US_FL_FIX_INQUIRY ), |
| 618 | |
| 619 | UNUSUAL_DEV( 0x054c, 0x0069, 0x0000, 0x9999, |
| 620 | "Sony", |
| 621 | "Memorystick MSC-U03", |
| 622 | US_SC_UFI, US_PR_CB, NULL, |
| 623 | US_FL_SINGLE_LUN ), |
| 624 | |
| 625 | /* Submitted by Nathan Babb <nathan@lexi.com> */ |
| 626 | UNUSUAL_DEV( 0x054c, 0x006d, 0x0000, 0x9999, |
| 627 | "Sony", |
| 628 | "PEG Mass Storage", |
| 629 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 630 | US_FL_FIX_INQUIRY ), |
| 631 | |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 632 | /* Submitted by Frank Engel <frankie@cse.unsw.edu.au> */ |
| 633 | UNUSUAL_DEV( 0x054c, 0x0099, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | "Sony", |
| 635 | "PEG Mass Storage", |
| 636 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 637 | US_FL_FIX_INQUIRY ), |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 638 | |
| 639 | /* Submitted by Mike Alborn <malborn@deandra.homeip.net> */ |
| 640 | UNUSUAL_DEV( 0x054c, 0x016a, 0x0000, 0x9999, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 641 | "Sony", |
| 642 | "PEG Mass Storage", |
| 643 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 644 | US_FL_FIX_INQUIRY ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
juergen.mell@t-online.de | 082fdd1 | 2006-08-28 13:53:53 -0700 | [diff] [blame] | 646 | /* floppy reports multiple luns */ |
| 647 | UNUSUAL_DEV( 0x055d, 0x2020, 0x0000, 0x0210, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 648 | "SAMSUNG", |
| 649 | "SFD-321U [FW 0C]", |
| 650 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 651 | US_FL_SINGLE_LUN ), |
juergen.mell@t-online.de | 082fdd1 | 2006-08-28 13:53:53 -0700 | [diff] [blame] | 652 | |
Pete Zaitcev | fd4f3a9 | 2009-08-20 20:00:19 -0600 | [diff] [blame] | 653 | /* We keep this entry to force the transport; firmware 3.00 and later is ok. */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 654 | UNUSUAL_DEV( 0x057b, 0x0000, 0x0000, 0x0299, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | "Y-E Data", |
| 656 | "Flashbuster-U", |
| 657 | US_SC_DEVICE, US_PR_CB, NULL, |
| 658 | US_FL_SINGLE_LUN), |
| 659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | /* Reported by Johann Cardon <johann.cardon@free.fr> |
| 661 | * This entry is needed only because the device reports |
| 662 | * bInterfaceClass = 0xff (vendor-specific) |
| 663 | */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 664 | UNUSUAL_DEV( 0x057b, 0x0022, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | "Y-E Data", |
| 666 | "Silicon Media R/W", |
| 667 | US_SC_DEVICE, US_PR_DEVICE, NULL, 0), |
| 668 | |
Alan Stern | f1e8de0d | 2007-11-26 10:23:05 -0500 | [diff] [blame] | 669 | /* Reported by RTE <raszilki@yandex.ru> */ |
| 670 | UNUSUAL_DEV( 0x058f, 0x6387, 0x0141, 0x0141, |
| 671 | "JetFlash", |
| 672 | "TS1GJF2A/120", |
| 673 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 674 | US_FL_MAX_SECTORS_64 ), |
| 675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | /* Fabrizio Fellini <fello@libero.it> */ |
| 677 | UNUSUAL_DEV( 0x0595, 0x4343, 0x0000, 0x2210, |
| 678 | "Fujifilm", |
| 679 | "Digital Camera EX-20 DSC", |
| 680 | US_SC_8070, US_PR_DEVICE, NULL, 0 ), |
| 681 | |
Alan Stern | a462549 | 2008-02-13 10:45:28 -0500 | [diff] [blame] | 682 | /* Reported by Andre Welter <a.r.welter@gmx.de> |
| 683 | * This antique device predates the release of the Bulk-only Transport |
| 684 | * spec, and if it gets a Get-Max-LUN then it requires the host to do a |
| 685 | * Clear-Halt on the bulk endpoints. The SINGLE_LUN flag will prevent |
| 686 | * us from sending the request. |
| 687 | */ |
| 688 | UNUSUAL_DEV( 0x059b, 0x0001, 0x0100, 0x0100, |
| 689 | "Iomega", |
| 690 | "ZIP 100", |
| 691 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 692 | US_FL_SINGLE_LUN ), |
| 693 | |
Alan Stern | b97b196 | 2006-09-14 15:18:54 -0400 | [diff] [blame] | 694 | /* Reported by <Hendryk.Pfeiffer@gmx.de> */ |
| 695 | UNUSUAL_DEV( 0x059f, 0x0643, 0x0000, 0x0000, |
| 696 | "LaCie", |
| 697 | "DVD+-RW", |
| 698 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 699 | US_FL_GO_SLOW ), |
| 700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | /* Submitted by Joel Bourquard <numlock@freesurf.ch> |
| 702 | * Some versions of this device need the SubClass and Protocol overrides |
| 703 | * while others don't. |
| 704 | */ |
| 705 | UNUSUAL_DEV( 0x05ab, 0x0060, 0x1104, 0x1110, |
| 706 | "In-System", |
| 707 | "PyroGate External CD-ROM Enclosure (FCD-523)", |
| 708 | US_SC_SCSI, US_PR_BULK, NULL, |
| 709 | US_FL_NEED_OVERRIDE ), |
| 710 | |
Sven Anderson | 35f4a0c | 2005-04-22 15:06:58 -0700 | [diff] [blame] | 711 | /* Submitted by Sven Anderson <sven-linux@anderson.de> |
| 712 | * There are at least four ProductIDs used for iPods, so I added 0x1202 and |
| 713 | * 0x1204. They just need the US_FL_FIX_CAPACITY. As the bcdDevice appears |
| 714 | * to change with firmware updates, I changed the range to maximum for all |
| 715 | * iPod entries. |
| 716 | */ |
| 717 | UNUSUAL_DEV( 0x05ac, 0x1202, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | "Apple", |
| 719 | "iPod", |
| 720 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 721 | US_FL_FIX_CAPACITY ), |
| 722 | |
Sven Anderson | 35f4a0c | 2005-04-22 15:06:58 -0700 | [diff] [blame] | 723 | /* Reported by Avi Kivity <avi@argo.co.il> */ |
| 724 | UNUSUAL_DEV( 0x05ac, 0x1203, 0x0000, 0x9999, |
| 725 | "Apple", |
| 726 | "iPod", |
| 727 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 728 | US_FL_FIX_CAPACITY ), |
| 729 | |
| 730 | UNUSUAL_DEV( 0x05ac, 0x1204, 0x0000, 0x9999, |
| 731 | "Apple", |
| 732 | "iPod", |
| 733 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Pete Zaitcev | ad1428c | 2006-12-31 13:43:26 -0800 | [diff] [blame] | 734 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), |
Sven Anderson | 35f4a0c | 2005-04-22 15:06:58 -0700 | [diff] [blame] | 735 | |
| 736 | UNUSUAL_DEV( 0x05ac, 0x1205, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | "Apple", |
| 738 | "iPod", |
| 739 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 740 | US_FL_FIX_CAPACITY ), |
| 741 | |
Phil Dibowitz | 880a9b5 | 2005-09-30 00:27:36 -0700 | [diff] [blame] | 742 | /* |
| 743 | * Reported by Tyson Vinson <lornoss@gmail.com> |
| 744 | * This particular productId is the iPod Nano |
| 745 | */ |
| 746 | UNUSUAL_DEV( 0x05ac, 0x120a, 0x0000, 0x9999, |
| 747 | "Apple", |
| 748 | "iPod", |
| 749 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 750 | US_FL_FIX_CAPACITY ), |
| 751 | |
Dan Williams | 281b064 | 2008-12-14 12:39:22 -0500 | [diff] [blame] | 752 | /* Reported by Dan Williams <dcbw@redhat.com> |
| 753 | * Option N.V. mobile broadband modems |
| 754 | * Ignore driver CD mode and force into modem mode by default. |
| 755 | */ |
| 756 | |
| 757 | /* Globetrotter HSDPA; mass storage shows up as Qualcomm for vendor */ |
| 758 | UNUSUAL_DEV( 0x05c6, 0x1000, 0x0000, 0x9999, |
| 759 | "Option N.V.", |
| 760 | "Mass Storage", |
| 761 | US_SC_DEVICE, US_PR_DEVICE, option_ms_init, |
| 762 | 0), |
| 763 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | /* Reported by Blake Matheny <bmatheny@purdue.edu> */ |
| 765 | UNUSUAL_DEV( 0x05dc, 0xb002, 0x0000, 0x0113, |
| 766 | "Lexar", |
| 767 | "USB CF Reader", |
| 768 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 769 | US_FL_FIX_INQUIRY ), |
| 770 | |
| 771 | /* The following two entries are for a Genesys USB to IDE |
| 772 | * converter chip, but it changes its ProductId depending |
| 773 | * on whether or not a disk or an optical device is enclosed |
| 774 | * They were originally reported by Alexander Oltu |
| 775 | * <alexander@all-2.com> and Peter Marks <peter.marks@turner.com> |
| 776 | * respectively. |
Phil Dibowitz | 883d989 | 2006-06-24 17:27:10 -0700 | [diff] [blame] | 777 | * |
| 778 | * US_FL_GO_SLOW and US_FL_MAX_SECTORS_64 added by Phil Dibowitz |
| 779 | * <phil@ipom.com> as these flags were made and hard-coded |
| 780 | * special-cases were pulled from scsiglue.c. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | */ |
| 782 | UNUSUAL_DEV( 0x05e3, 0x0701, 0x0000, 0xffff, |
| 783 | "Genesys Logic", |
| 784 | "USB to IDE Optical", |
| 785 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Alan Stern | 5126a26 | 2009-02-23 12:02:05 -0500 | [diff] [blame] | 786 | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | |
| 788 | UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0xffff, |
| 789 | "Genesys Logic", |
| 790 | "USB to IDE Disk", |
| 791 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Alan Stern | 5126a26 | 2009-02-23 12:02:05 -0500 | [diff] [blame] | 792 | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 794 | /* Reported by Ben Efros <ben@pc-doctor.com> */ |
| 795 | UNUSUAL_DEV( 0x05e3, 0x0723, 0x9451, 0x9451, |
| 796 | "Genesys Logic", |
| 797 | "USB to SATA", |
| 798 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 799 | US_FL_SANE_SENSE ), |
| 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | /* Reported by Hanno Boeck <hanno@gmx.de> |
| 802 | * Taken from the Lycoris Kernel */ |
| 803 | UNUSUAL_DEV( 0x0636, 0x0003, 0x0000, 0x9999, |
| 804 | "Vivitar", |
| 805 | "Vivicam 35Xx", |
| 806 | US_SC_SCSI, US_PR_BULK, NULL, |
| 807 | US_FL_FIX_INQUIRY ), |
| 808 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 809 | UNUSUAL_DEV( 0x0644, 0x0000, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | "TEAC", |
| 811 | "Floppy Drive", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 812 | US_SC_UFI, US_PR_CB, NULL, 0 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | /* Reported by Darsen Lu <darsen@micro.ee.nthu.edu.tw> */ |
| 815 | UNUSUAL_DEV( 0x066f, 0x8000, 0x0001, 0x0001, |
| 816 | "SigmaTel", |
| 817 | "USBMSC Audio Player", |
| 818 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 819 | US_FL_FIX_CAPACITY ), |
| 820 | |
Alan Stern | a0bb108 | 2009-12-07 16:39:16 -0500 | [diff] [blame^] | 821 | /* Reported by Daniel Kukula <daniel.kuku@gmail.com> */ |
| 822 | UNUSUAL_DEV( 0x067b, 0x1063, 0x0100, 0x0100, |
| 823 | "Prolific Technology, Inc.", |
| 824 | "Prolific Storage Gadget", |
| 825 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 826 | US_FL_BAD_SENSE ), |
| 827 | |
Rogerio Brito | c15e3ca | 2009-08-06 15:20:19 -0700 | [diff] [blame] | 828 | /* Reported by Rogerio Brito <rbrito@ime.usp.br> */ |
| 829 | UNUSUAL_DEV( 0x067b, 0x2317, 0x0001, 0x001, |
| 830 | "Prolific Technology, Inc.", |
| 831 | "Mass Storage Device", |
| 832 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 833 | US_FL_NOT_LOCKABLE ), |
| 834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | /* Reported by Richard -=[]=- <micro_flyer@hotmail.com> */ |
Thomas Bartosik | 8a0845c | 2009-03-16 16:04:38 +0100 | [diff] [blame] | 836 | /* Change to bcdDeviceMin (0x0100 to 0x0001) reported by |
| 837 | * Thomas Bartosik <tbartdev@gmx-topmail.de> */ |
| 838 | UNUSUAL_DEV( 0x067b, 0x2507, 0x0001, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | "Prolific Technology Inc.", |
| 840 | "Mass Storage Device", |
| 841 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 842 | US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), |
| 843 | |
| 844 | /* Reported by Alex Butcher <alex.butcher@assursys.co.uk> */ |
Oliver Neukum | b163639 | 2008-12-12 11:01:45 +0100 | [diff] [blame] | 845 | UNUSUAL_DEV( 0x067b, 0x3507, 0x0001, 0x0101, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | "Prolific Technology Inc.", |
| 847 | "ATAPI-6 Bridge Controller", |
| 848 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 849 | US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), |
| 850 | |
| 851 | /* Submitted by Benny Sjostrand <benny@hostmobility.com> */ |
| 852 | UNUSUAL_DEV( 0x0686, 0x4011, 0x0001, 0x0001, |
| 853 | "Minolta", |
| 854 | "Dimage F300", |
| 855 | US_SC_SCSI, US_PR_BULK, NULL, 0 ), |
| 856 | |
| 857 | /* Reported by Miguel A. Fosas <amn3s1a@ono.com> */ |
| 858 | UNUSUAL_DEV( 0x0686, 0x4017, 0x0001, 0x0001, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 859 | "Minolta", |
| 860 | "DIMAGE E223", |
| 861 | US_SC_SCSI, US_PR_DEVICE, NULL, 0 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | UNUSUAL_DEV( 0x0693, 0x0005, 0x0100, 0x0100, |
| 864 | "Hagiwara", |
| 865 | "Flashgate", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 866 | US_SC_SCSI, US_PR_BULK, NULL, 0 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
Alan Stern | 754501b | 2006-02-23 10:19:25 -0500 | [diff] [blame] | 868 | /* Reported by David Hamilton <niftimusmaximus@lycos.com> */ |
| 869 | UNUSUAL_DEV( 0x069b, 0x3004, 0x0001, 0x0001, |
| 870 | "Thomson Multimedia Inc.", |
| 871 | "RCA RD1080 MP3 Player", |
| 872 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 873 | US_FL_FIX_CAPACITY ), |
| 874 | |
Alan Stern | fe1926a | 2008-09-04 09:56:35 -0400 | [diff] [blame] | 875 | /* Reported by Adrian Pilchowiec <adi1981@epf.pl> */ |
| 876 | UNUSUAL_DEV( 0x071b, 0x3203, 0x0000, 0x0000, |
| 877 | "RockChip", |
| 878 | "MP3", |
| 879 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 880 | US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64), |
| 881 | |
Jean-Baptiste Onofre | 6491509 | 2008-12-20 20:11:55 +0100 | [diff] [blame] | 882 | /* Reported by Jean-Baptiste Onofre <jb@nanthrax.net> |
| 883 | * Support the following product : |
| 884 | * "Dane-Elec MediaTouch" |
| 885 | */ |
| 886 | UNUSUAL_DEV( 0x071b, 0x32bb, 0x0000, 0x0000, |
| 887 | "RockChip", |
| 888 | "MTP", |
| 889 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 890 | US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64), |
| 891 | |
Massimiliano Ghilardi | c476656 | 2007-09-04 22:53:43 +0200 | [diff] [blame] | 892 | /* Reported by Massimiliano Ghilardi <massimiliano.ghilardi@gmail.com> |
| 893 | * This USB MP3/AVI player device fails and disconnects if more than 128 |
| 894 | * sectors (64kB) are read/written in a single command, and may be present |
| 895 | * at least in the following products: |
| 896 | * "Magnex Digital Video Panel DVP 1800" |
| 897 | * "MP4 AIGO 4GB SLOT SD" |
| 898 | * "Teclast TL-C260 MP3" |
| 899 | * "i.Meizu PMP MP3/MP4" |
| 900 | * "Speed MV8 MP4 Audio Player" |
| 901 | */ |
| 902 | UNUSUAL_DEV( 0x071b, 0x3203, 0x0100, 0x0100, |
| 903 | "RockChip", |
| 904 | "ROCK MP3", |
| 905 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 906 | US_FL_MAX_SECTORS_64), |
| 907 | |
Olivier Blondeau | f430c40 | 2006-04-16 19:19:25 -0700 | [diff] [blame] | 908 | /* Reported by Olivier Blondeau <zeitoun@gmail.com> */ |
| 909 | UNUSUAL_DEV( 0x0727, 0x0306, 0x0100, 0x0100, |
| 910 | "ATMEL", |
| 911 | "SND1 Storage", |
| 912 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 913 | US_FL_IGNORE_RESIDUE), |
| 914 | |
Phil Dibowitz | 1e7a5a8 | 2006-03-05 21:36:51 -0800 | [diff] [blame] | 915 | /* Submitted by Roman Hodek <roman@hodek.net> */ |
| 916 | UNUSUAL_DEV( 0x0781, 0x0001, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | "Sandisk", |
| 918 | "ImageMate SDDR-05a", |
| 919 | US_SC_SCSI, US_PR_CB, NULL, |
| 920 | US_FL_SINGLE_LUN ), |
| 921 | |
Phil Dibowitz | 1e7a5a8 | 2006-03-05 21:36:51 -0800 | [diff] [blame] | 922 | UNUSUAL_DEV( 0x0781, 0x0002, 0x0009, 0x0009, |
| 923 | "SanDisk Corporation", |
| 924 | "ImageMate CompactFlash USB", |
| 925 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 926 | US_FL_FIX_CAPACITY ), |
| 927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | UNUSUAL_DEV( 0x0781, 0x0100, 0x0100, 0x0100, |
| 929 | "Sandisk", |
| 930 | "ImageMate SDDR-12", |
| 931 | US_SC_SCSI, US_PR_CB, NULL, |
| 932 | US_FL_SINGLE_LUN ), |
| 933 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | /* Reported by Eero Volotinen <eero@ping-viini.org> */ |
Phil Dibowitz | e527832 | 2005-10-23 23:52:39 -0700 | [diff] [blame] | 935 | UNUSUAL_DEV( 0x07ab, 0xfccd, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | "Freecom Technologies", |
| 937 | "FHD-Classic", |
| 938 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 939 | US_FL_FIX_CAPACITY), |
| 940 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 941 | UNUSUAL_DEV( 0x07af, 0x0004, 0x0100, 0x0133, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | "Microtech", |
| 943 | "USB-SCSI-DB25", |
| 944 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 945 | US_FL_SCM_MULT_TARG ), |
| 946 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 947 | UNUSUAL_DEV( 0x07af, 0x0005, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | "Microtech", |
| 949 | "USB-SCSI-HD50", |
Phil Dibowitz | e8116e8 | 2005-06-22 22:47:13 -0700 | [diff] [blame] | 950 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_euscsi_init, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 951 | US_FL_SCM_MULT_TARG ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | |
Alan Stern | 0ff7188 | 2009-02-12 14:47:49 -0500 | [diff] [blame] | 953 | #ifdef NO_SDDR09 |
Alan Stern | c20b15f | 2008-12-01 10:36:15 -0500 | [diff] [blame] | 954 | UNUSUAL_DEV( 0x07af, 0x0006, 0x0100, 0x0100, |
| 955 | "Microtech", |
| 956 | "CameraMate", |
| 957 | US_SC_SCSI, US_PR_CB, NULL, |
| 958 | US_FL_SINGLE_LUN ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | #endif |
| 960 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | /* Datafab KECF-USB / Sagatek DCS-CF / Simpletech Flashlink UCF-100 |
| 962 | * Only revision 1.13 tested (same for all of the above devices, |
| 963 | * based on the Datafab DF-UG-07 chip). Needed for US_FL_FIX_INQUIRY. |
| 964 | * Submitted by Marek Michalkiewicz <marekm@amelek.gda.pl>. |
| 965 | * See also http://martin.wilck.bei.t-online.de/#kecf . |
| 966 | */ |
| 967 | UNUSUAL_DEV( 0x07c4, 0xa400, 0x0000, 0xffff, |
| 968 | "Datafab", |
| 969 | "KECF-USB", |
| 970 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Nick Holloway | 049a6ac | 2009-01-25 16:58:43 +0000 | [diff] [blame] | 971 | US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
Alan Stern | e4813ee | 2009-03-24 10:39:13 -0400 | [diff] [blame] | 973 | /* Reported by Rauch Wolke <rauchwolke@gmx.net> |
| 974 | * and augmented by binbin <binbinsh@gmail.com> (Bugzilla #12882) |
| 975 | */ |
Alan Stern | 368ee64 | 2008-07-21 10:08:28 -0400 | [diff] [blame] | 976 | UNUSUAL_DEV( 0x07c4, 0xa4a5, 0x0000, 0xffff, |
| 977 | "Simple Tech/Datafab", |
| 978 | "CF+SM Reader", |
| 979 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Alan Stern | e4813ee | 2009-03-24 10:39:13 -0400 | [diff] [blame] | 980 | US_FL_IGNORE_RESIDUE | US_FL_MAX_SECTORS_64 ), |
Alan Stern | 368ee64 | 2008-07-21 10:08:28 -0400 | [diff] [blame] | 981 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | /* Casio QV 2x00/3x00/4000/8000 digital still cameras are not conformant |
| 983 | * to the USB storage specification in two ways: |
| 984 | * - They tell us they are using transport protocol CBI. In reality they |
| 985 | * are using transport protocol CB. |
| 986 | * - They don't like the INQUIRY command. So we must handle this command |
| 987 | * of the SCSI layer ourselves. |
| 988 | * - Some cameras with idProduct=0x1001 and bcdDevice=0x1000 have |
| 989 | * bInterfaceProtocol=0x00 (US_PR_CBI) while others have 0x01 (US_PR_CB). |
| 990 | * So don't remove the US_PR_CB override! |
| 991 | * - Cameras with bcdDevice=0x9009 require the US_SC_8070 override. |
| 992 | */ |
| 993 | UNUSUAL_DEV( 0x07cf, 0x1001, 0x1000, 0x9999, |
| 994 | "Casio", |
| 995 | "QV DigitalCamera", |
| 996 | US_SC_8070, US_PR_CB, NULL, |
| 997 | US_FL_NEED_OVERRIDE | US_FL_FIX_INQUIRY ), |
| 998 | |
| 999 | /* Submitted by Hartmut Wahl <hwahl@hwahl.de>*/ |
| 1000 | UNUSUAL_DEV( 0x0839, 0x000a, 0x0001, 0x0001, |
| 1001 | "Samsung", |
| 1002 | "Digimax 410", |
| 1003 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1004 | US_FL_FIX_INQUIRY), |
| 1005 | |
Alan Stern | 8010e06 | 2008-11-04 11:33:35 -0500 | [diff] [blame] | 1006 | /* Reported by Luciano Rocha <luciano@eurotux.com> */ |
| 1007 | UNUSUAL_DEV( 0x0840, 0x0082, 0x0001, 0x0001, |
| 1008 | "Argosy", |
| 1009 | "Storage", |
| 1010 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1011 | US_FL_FIX_CAPACITY), |
| 1012 | |
Nguyen Anh Quynh | e2673b2 | 2008-12-11 15:04:11 -0800 | [diff] [blame] | 1013 | /* Reported and patched by Nguyen Anh Quynh <aquynh@gmail.com> */ |
| 1014 | UNUSUAL_DEV( 0x0840, 0x0084, 0x0001, 0x0001, |
| 1015 | "Argosy", |
| 1016 | "Storage", |
| 1017 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1018 | US_FL_FIX_CAPACITY), |
| 1019 | |
Phil Dibowitz | aa23c8d | 2009-01-20 23:42:52 +0100 | [diff] [blame] | 1020 | /* Reported by Martijn Hijdra <martijn.hijdra@gmail.com> */ |
| 1021 | UNUSUAL_DEV( 0x0840, 0x0085, 0x0001, 0x0001, |
| 1022 | "Argosy", |
| 1023 | "Storage", |
| 1024 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1025 | US_FL_FIX_CAPACITY), |
| 1026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. |
| 1028 | * Flag will support Bulk devices which use a standards-violating 32-byte |
| 1029 | * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with |
| 1030 | * Grandtech GT892x chip, which request "Proprietary SCSI Bulk" support. |
| 1031 | */ |
| 1032 | |
| 1033 | UNUSUAL_DEV( 0x084d, 0x0011, 0x0110, 0x0110, |
| 1034 | "Grandtech", |
| 1035 | "DC2MEGA", |
| 1036 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1037 | US_FL_BULK32), |
| 1038 | |
Andrew Lunn | f768721 | 2008-04-24 19:36:39 +0200 | [diff] [blame] | 1039 | /* Andrew Lunn <andrew@lunn.ch> |
| 1040 | * PanDigital Digital Picture Frame. Does not like ALLOW_MEDIUM_REMOVAL |
| 1041 | * on LUN 4. |
| 1042 | * Note: Vend:Prod clash with "Ltd Maxell WS30 Slim Digital Camera" |
| 1043 | */ |
| 1044 | UNUSUAL_DEV( 0x0851, 0x1543, 0x0200, 0x0200, |
| 1045 | "PanDigital", |
| 1046 | "Photo Frame", |
| 1047 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1048 | US_FL_NOT_LOCKABLE), |
| 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 | |
Dylan Taft | a7e555b | 2007-02-05 16:41:01 -0800 | [diff] [blame] | 1057 | /* Submitted by Dylan Taft <d13f00l@gmail.com> |
| 1058 | * US_FL_IGNORE_RESIDUE Needed |
| 1059 | */ |
| 1060 | UNUSUAL_DEV( 0x08ca, 0x3103, 0x0100, 0x0100, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1061 | "AIPTEK", |
| 1062 | "Aiptek USB Keychain MP3 Player", |
| 1063 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1064 | US_FL_IGNORE_RESIDUE), |
Dylan Taft | a7e555b | 2007-02-05 16:41:01 -0800 | [diff] [blame] | 1065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | /* Entry needed for flags. Moreover, all devices with this ID use |
| 1067 | * bulk-only transport, but _some_ falsely report Control/Bulk instead. |
| 1068 | * One example is "Trumpion Digital Research MYMP3". |
| 1069 | * Submitted by Bjoern Brill <brill(at)fs.math.uni-frankfurt.de> |
| 1070 | */ |
| 1071 | UNUSUAL_DEV( 0x090a, 0x1001, 0x0100, 0x0100, |
| 1072 | "Trumpion", |
| 1073 | "t33520 USB Flash Card Controller", |
| 1074 | US_SC_DEVICE, US_PR_BULK, NULL, |
| 1075 | US_FL_NEED_OVERRIDE ), |
| 1076 | |
Phil Dibowitz | 1724757 | 2005-05-21 00:45:55 -0700 | [diff] [blame] | 1077 | /* Reported by Filippo Bardelli <filibard@libero.it> |
| 1078 | * The device reports a subclass of RBC, which is wrong. |
| 1079 | */ |
| 1080 | UNUSUAL_DEV( 0x090a, 0x1050, 0x0100, 0x0100, |
| 1081 | "Trumpion Microelectronics, Inc.", |
| 1082 | "33520 USB Digital Voice Recorder", |
| 1083 | US_SC_UFI, US_PR_DEVICE, NULL, |
| 1084 | 0), |
| 1085 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | /* Trumpion Microelectronics MP3 player (felipe_alfaro@linuxmail.org) */ |
| 1087 | UNUSUAL_DEV( 0x090a, 0x1200, 0x0000, 0x9999, |
| 1088 | "Trumpion", |
| 1089 | "MP3 player", |
| 1090 | US_SC_RBC, US_PR_BULK, NULL, |
| 1091 | 0 ), |
| 1092 | |
| 1093 | /* aeb */ |
| 1094 | UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff, |
| 1095 | "Feiya", |
| 1096 | "5-in-1 Card Reader", |
| 1097 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1098 | US_FL_FIX_CAPACITY ), |
| 1099 | |
| 1100 | /* This Pentax still camera is not conformant |
| 1101 | * to the USB storage specification: - |
| 1102 | * - It does not like the INQUIRY command. So we must handle this command |
| 1103 | * of the SCSI layer ourselves. |
| 1104 | * Tested on Rev. 10.00 (0x1000) |
| 1105 | * Submitted by James Courtier-Dutton <James@superbug.demon.co.uk> |
| 1106 | */ |
| 1107 | UNUSUAL_DEV( 0x0a17, 0x0004, 0x1000, 0x1000, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1108 | "Pentax", |
| 1109 | "Optio 2/3/400", |
| 1110 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1111 | US_FL_FIX_INQUIRY ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
Ben Collins | 67fa106 | 2007-05-26 03:06:32 -0700 | [diff] [blame] | 1113 | /* These are virtual windows driver CDs, which the zd1211rw driver |
| 1114 | * automatically converts into WLAN devices. */ |
Daniel Drake | 3c33242 | 2006-07-26 13:59:23 +0100 | [diff] [blame] | 1115 | UNUSUAL_DEV( 0x0ace, 0x2011, 0x0101, 0x0101, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1116 | "ZyXEL", |
| 1117 | "G-220F USB-WLAN Install", |
| 1118 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1119 | US_FL_IGNORE_DEVICE ), |
Daniel Drake | 3c33242 | 2006-07-26 13:59:23 +0100 | [diff] [blame] | 1120 | |
Matthew Davidson | 64902cb | 2007-05-01 01:15:01 +0100 | [diff] [blame] | 1121 | UNUSUAL_DEV( 0x0ace, 0x20ff, 0x0101, 0x0101, |
| 1122 | "SiteCom", |
| 1123 | "WL-117 USB-WLAN Install", |
| 1124 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1125 | US_FL_IGNORE_DEVICE ), |
| 1126 | |
Dan Williams | 281b064 | 2008-12-14 12:39:22 -0500 | [diff] [blame] | 1127 | /* Reported by Dan Williams <dcbw@redhat.com> |
| 1128 | * Option N.V. mobile broadband modems |
| 1129 | * Ignore driver CD mode and force into modem mode by default. |
| 1130 | */ |
| 1131 | |
| 1132 | /* iCON 225 */ |
| 1133 | UNUSUAL_DEV( 0x0af0, 0x6971, 0x0000, 0x9999, |
| 1134 | "Option N.V.", |
| 1135 | "Mass Storage", |
| 1136 | US_SC_DEVICE, US_PR_DEVICE, option_ms_init, |
| 1137 | 0), |
| 1138 | |
Filip Aben | e7c6f80 | 2008-05-08 10:48:12 -0700 | [diff] [blame] | 1139 | /* Reported by F. Aben <f.aben@option.com> |
| 1140 | * This device (wrongly) has a vendor-specific device descriptor. |
| 1141 | * The entry is needed so usb-storage can bind to it's mass-storage |
| 1142 | * interface as an interface driver */ |
| 1143 | UNUSUAL_DEV( 0x0af0, 0x7401, 0x0000, 0x0000, |
| 1144 | "Option", |
| 1145 | "GI 0401 SD-Card", |
| 1146 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1147 | 0 ), |
| 1148 | |
Jan Dumon | c497e71 | 2009-03-10 17:29:47 +0100 | [diff] [blame] | 1149 | /* Reported by Jan Dumon <j.dumon@option.com> |
| 1150 | * This device (wrongly) has a vendor-specific device descriptor. |
| 1151 | * The entry is needed so usb-storage can bind to it's mass-storage |
| 1152 | * interface as an interface driver */ |
| 1153 | UNUSUAL_DEV( 0x0af0, 0x7501, 0x0000, 0x0000, |
| 1154 | "Option", |
| 1155 | "GI 0431 SD-Card", |
| 1156 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1157 | 0 ), |
| 1158 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 1159 | /* Reported by Ben Efros <ben@pc-doctor.com> */ |
| 1160 | UNUSUAL_DEV( 0x0bc2, 0x3010, 0x0000, 0x0000, |
| 1161 | "Seagate", |
| 1162 | "FreeAgent Pro", |
| 1163 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1164 | US_FL_SANE_SENSE ), |
| 1165 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 1166 | UNUSUAL_DEV( 0x0d49, 0x7310, 0x0000, 0x9999, |
| 1167 | "Maxtor", |
| 1168 | "USB to SATA", |
| 1169 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1170 | US_FL_SANE_SENSE), |
| 1171 | |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 1172 | /* |
| 1173 | * Pete Zaitcev <zaitcev@yahoo.com>, bz#164688. |
| 1174 | * The device blatantly ignores LUN and returns 1 in GetMaxLUN. |
| 1175 | */ |
| 1176 | UNUSUAL_DEV( 0x0c45, 0x1060, 0x0100, 0x0100, |
| 1177 | "Unknown", |
| 1178 | "Unknown", |
| 1179 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1180 | US_FL_SINGLE_LUN ), |
| 1181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | /* Submitted by Joris Struyve <joris@struyve.be> */ |
| 1183 | UNUSUAL_DEV( 0x0d96, 0x410a, 0x0001, 0xffff, |
| 1184 | "Medion", |
| 1185 | "MD 7425", |
| 1186 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1187 | US_FL_FIX_INQUIRY), |
| 1188 | |
| 1189 | /* |
| 1190 | * Entry for Jenoptik JD 5200z3 |
| 1191 | * |
| 1192 | * email: car.busse@gmx.de |
| 1193 | */ |
| 1194 | UNUSUAL_DEV( 0x0d96, 0x5200, 0x0001, 0x0200, |
| 1195 | "Jenoptik", |
| 1196 | "JD 5200 z3", |
| 1197 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), |
| 1198 | |
Sergey Ovcharenko | 3b438e3 | 2008-12-17 19:28:06 +0300 | [diff] [blame] | 1199 | /* Reported by Jason Johnston <killean@shaw.ca> */ |
| 1200 | UNUSUAL_DEV( 0x0dc4, 0x0073, 0x0000, 0x0000, |
| 1201 | "Macpower Technology Co.LTD.", |
| 1202 | "USB 2.0 3.5\" DEVICE", |
| 1203 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1204 | US_FL_FIX_CAPACITY), |
| 1205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | /* Reported by Lubomir Blaha <tritol@trilogic.cz> |
| 1207 | * I _REALLY_ don't know what 3rd, 4th number and all defines mean, but this |
| 1208 | * works for me. Can anybody correct these values? (I able to test corrected |
| 1209 | * version.) |
| 1210 | */ |
| 1211 | UNUSUAL_DEV( 0x0dd8, 0x1060, 0x0000, 0xffff, |
| 1212 | "Netac", |
| 1213 | "USB-CF-Card", |
| 1214 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1215 | US_FL_FIX_INQUIRY ), |
| 1216 | |
Ben Collins | 67fa106 | 2007-05-26 03:06:32 -0700 | [diff] [blame] | 1217 | /* Reported by Edward Chapman (taken from linux-usb mailing list) |
| 1218 | Netac OnlyDisk Mini U2CV2 512MB USB 2.0 Flash Drive */ |
| 1219 | UNUSUAL_DEV( 0x0dd8, 0xd202, 0x0000, 0x9999, |
| 1220 | "Netac", |
| 1221 | "USB Flash Disk", |
| 1222 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1223 | US_FL_IGNORE_RESIDUE ), |
| 1224 | |
| 1225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | /* Patch by Stephan Walter <stephan.walter@epfl.ch> |
| 1227 | * I don't know why, but it works... */ |
| 1228 | UNUSUAL_DEV( 0x0dda, 0x0001, 0x0012, 0x0012, |
| 1229 | "WINWARD", |
| 1230 | "Music Disk", |
| 1231 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1232 | US_FL_IGNORE_RESIDUE ), |
| 1233 | |
| 1234 | /* Reported by Ian McConnell <ian at emit.demon.co.uk> */ |
| 1235 | UNUSUAL_DEV( 0x0dda, 0x0301, 0x0012, 0x0012, |
| 1236 | "PNP_MP3", |
| 1237 | "PNP_MP3 PLAYER", |
| 1238 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1239 | US_FL_IGNORE_RESIDUE ), |
| 1240 | |
Alan Stern | 982db2a | 2006-02-13 10:16:04 -0500 | [diff] [blame] | 1241 | /* Reported by Jim McCloskey <mcclosk@ucsc.edu> */ |
| 1242 | UNUSUAL_DEV( 0x0e21, 0x0520, 0x0100, 0x0100, |
| 1243 | "Cowon Systems", |
| 1244 | "iAUDIO M5", |
| 1245 | US_SC_DEVICE, US_PR_BULK, NULL, |
Phil Dibowitz | bc724b9 | 2006-10-19 00:11:17 -0700 | [diff] [blame] | 1246 | US_FL_NEED_OVERRIDE ), |
Alan Stern | 982db2a | 2006-02-13 10:16:04 -0500 | [diff] [blame] | 1247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | /* Submitted by Antoine Mairesse <antoine.mairesse@free.fr> */ |
| 1249 | UNUSUAL_DEV( 0x0ed1, 0x6660, 0x0100, 0x0300, |
| 1250 | "USB", |
| 1251 | "Solid state disk", |
| 1252 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1253 | US_FL_FIX_INQUIRY ), |
| 1254 | |
| 1255 | /* Submitted by Daniel Drake <dsd@gentoo.org> |
| 1256 | * Reported by dayul on the Gentoo Forums */ |
| 1257 | UNUSUAL_DEV( 0x0ea0, 0x2168, 0x0110, 0x0110, |
| 1258 | "Ours Technology", |
| 1259 | "Flash Disk", |
| 1260 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1261 | US_FL_IGNORE_RESIDUE ), |
| 1262 | |
| 1263 | /* Reported by Rastislav Stanik <rs_kernel@yahoo.com> */ |
| 1264 | UNUSUAL_DEV( 0x0ea0, 0x6828, 0x0110, 0x0110, |
| 1265 | "USB", |
| 1266 | "Flash Disk", |
| 1267 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1268 | US_FL_IGNORE_RESIDUE ), |
| 1269 | |
Phil Dibowitz | 883d989 | 2006-06-24 17:27:10 -0700 | [diff] [blame] | 1270 | /* Reported by Benjamin Schiller <sbenni@gmx.de> |
| 1271 | * It is also sold by Easylite as DJ 20 */ |
| 1272 | UNUSUAL_DEV( 0x0ed1, 0x7636, 0x0103, 0x0103, |
| 1273 | "Typhoon", |
| 1274 | "My DJ 1820", |
| 1275 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1276 | US_FL_IGNORE_RESIDUE | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64), |
| 1277 | |
Robert Spitzenpfeil | 4e58407 | 2008-02-20 12:11:22 -0500 | [diff] [blame] | 1278 | /* Patch by Leonid Petrov mail at lpetrov.net |
| 1279 | * Reported by Robert Spitzenpfeil <robert@spitzenpfeil.org> |
| 1280 | * http://www.qbik.ch/usb/devices/showdev.php?id=1705 |
| 1281 | * Updated to 103 device by MJ Ray mjr at phonecoop.coop |
| 1282 | */ |
| 1283 | UNUSUAL_DEV( 0x0f19, 0x0103, 0x0100, 0x0100, |
| 1284 | "Oracom Co., Ltd", |
| 1285 | "ORC-200M", |
| 1286 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1287 | US_FL_IGNORE_RESIDUE ), |
| 1288 | |
David Kuehling | b41ee5d | 2006-08-07 10:18:48 -0400 | [diff] [blame] | 1289 | /* David Kuehling <dvdkhlng@gmx.de>: |
| 1290 | * for MP3-Player AVOX WSX-300ER (bought in Japan). Reports lots of SCSI |
| 1291 | * errors when trying to write. |
| 1292 | */ |
| 1293 | UNUSUAL_DEV( 0x0f19, 0x0105, 0x0100, 0x0100, |
| 1294 | "C-MEX", |
| 1295 | "A-VOX", |
| 1296 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1297 | US_FL_IGNORE_RESIDUE ), |
| 1298 | |
Jeremy Katz | c17b49e | 2007-07-19 09:37:42 -0400 | [diff] [blame] | 1299 | /* Jeremy Katz <katzj@redhat.com>: |
| 1300 | * The Blackberry Pearl can run in two modes; a usb-storage only mode |
| 1301 | * and a mode that allows access via mass storage and to its database. |
| 1302 | * The berry_charge module will set the device to dual mode and thus we |
| 1303 | * should ignore its native mode if that module is built |
| 1304 | */ |
| 1305 | #ifdef CONFIG_USB_BERRY_CHARGE |
| 1306 | UNUSUAL_DEV( 0x0fca, 0x0006, 0x0001, 0x0001, |
| 1307 | "RIM", |
| 1308 | "Blackberry Pearl", |
| 1309 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1310 | US_FL_IGNORE_DEVICE ), |
| 1311 | #endif |
| 1312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | /* Reported by Michael Stattmann <michael@stattmann.com> */ |
| 1314 | UNUSUAL_DEV( 0x0fce, 0xd008, 0x0000, 0x0000, |
| 1315 | "Sony Ericsson", |
| 1316 | "V800-Vodafone 802", |
| 1317 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1318 | US_FL_NO_WP_DETECT ), |
| 1319 | |
Phil Dibowitz | a83775b | 2009-01-20 23:48:36 +0100 | [diff] [blame] | 1320 | /* Reported by The Solutor <thesolutor@gmail.com> */ |
| 1321 | UNUSUAL_DEV( 0x0fce, 0xd0e1, 0x0000, 0x0000, |
| 1322 | "Sony Ericsson", |
| 1323 | "MD400", |
| 1324 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1325 | US_FL_IGNORE_DEVICE), |
| 1326 | |
Alan Stern | b544d74 | 2007-01-31 10:57:55 -0500 | [diff] [blame] | 1327 | /* Reported by Jan Mate <mate@fiit.stuba.sk> |
| 1328 | * and by Soeren Sonnenburg <kernel@nn7.de> */ |
Phil Dibowitz | 39c2f3ac | 2006-09-11 00:27:40 -0700 | [diff] [blame] | 1329 | UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000, |
| 1330 | "Sony Ericsson", |
| 1331 | "P990i", |
| 1332 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Alan Stern | b544d74 | 2007-01-31 10:57:55 -0500 | [diff] [blame] | 1333 | US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), |
Phil Dibowitz | 39c2f3ac | 2006-09-11 00:27:40 -0700 | [diff] [blame] | 1334 | |
Phil Dibowitz | c9c770e | 2006-08-27 23:54:37 -0700 | [diff] [blame] | 1335 | /* Reported by Emmanuel Vasilakis <evas@forthnet.gr> */ |
| 1336 | UNUSUAL_DEV( 0x0fce, 0xe031, 0x0000, 0x0000, |
| 1337 | "Sony Ericsson", |
| 1338 | "M600i", |
| 1339 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Phil Dibowitz | c5f23b0 | 2008-05-26 21:33:58 +0200 | [diff] [blame] | 1340 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
Phil Dibowitz | c9c770e | 2006-08-27 23:54:37 -0700 | [diff] [blame] | 1341 | |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 1342 | /* Reported by Ricardo Barberis <ricardo@dattatec.com> */ |
| 1343 | UNUSUAL_DEV( 0x0fce, 0xe092, 0x0000, 0x0000, |
| 1344 | "Sony Ericsson", |
| 1345 | "P1i", |
| 1346 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1347 | US_FL_IGNORE_RESIDUE ), |
| 1348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | /* Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu> |
| 1350 | * Tested on hardware version 1.10. |
| 1351 | * Entry is needed only for the initializer function override. |
Phil Dibowitz | 51b5bce | 2006-11-02 23:14:10 -0800 | [diff] [blame] | 1352 | * Devices with bcd > 110 seem to not need it while those |
| 1353 | * with bcd < 110 appear to need it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | */ |
Phil Dibowitz | 51b5bce | 2006-11-02 23:14:10 -0800 | [diff] [blame] | 1355 | UNUSUAL_DEV( 0x1019, 0x0c55, 0x0000, 0x0110, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | "Desknote", |
| 1357 | "UCR-61S2B", |
| 1358 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_ucr61s2b_init, |
| 1359 | 0 ), |
| 1360 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 1361 | UNUSUAL_DEV( 0x1058, 0x0704, 0x0000, 0x9999, |
| 1362 | "Western Digital", |
| 1363 | "External HDD", |
| 1364 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1365 | US_FL_SANE_SENSE), |
| 1366 | |
Alan Stern | 274399d | 2008-02-20 12:10:04 -0500 | [diff] [blame] | 1367 | /* Reported by Fabio Venturi <f.venturi@tdnet.it> |
| 1368 | * The device reports a vendor-specific bDeviceClass. |
| 1369 | */ |
| 1370 | UNUSUAL_DEV( 0x10d6, 0x2200, 0x0100, 0x0100, |
| 1371 | "Actions Semiconductor", |
| 1372 | "Mtp device", |
| 1373 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1374 | 0), |
| 1375 | |
Pascal Terjan | c00deaa | 2009-04-07 14:40:42 +0200 | [diff] [blame] | 1376 | /* Reported by Pascal Terjan <pterjan@mandriva.com> |
| 1377 | * Ignore driver CD mode and force into modem mode by default. |
| 1378 | */ |
| 1379 | UNUSUAL_DEV( 0x1186, 0x3e04, 0x0000, 0x0000, |
| 1380 | "D-Link", |
| 1381 | "USB Mass Storage", |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 1382 | US_SC_DEVICE, US_PR_DEVICE, option_ms_init, US_FL_IGNORE_DEVICE), |
Pascal Terjan | c00deaa | 2009-04-07 14:40:42 +0200 | [diff] [blame] | 1383 | |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 1384 | /* Reported by Kevin Lloyd <linux@sierrawireless.com> |
| 1385 | * Entry is needed for the initializer function override, |
| 1386 | * which instructs the device to load as a modem |
| 1387 | * device. |
| 1388 | */ |
| 1389 | UNUSUAL_DEV( 0x1199, 0x0fff, 0x0000, 0x9999, |
| 1390 | "Sierra Wireless", |
| 1391 | "USB MMC Storage", |
Kevin Lloyd | 32fe5e3 | 2008-07-10 14:14:57 -0700 | [diff] [blame] | 1392 | US_SC_DEVICE, US_PR_DEVICE, sierra_ms_init, |
| 1393 | 0), |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 1394 | |
Jaco Kroon | 4931437 | 2006-11-15 01:02:08 -0800 | [diff] [blame] | 1395 | /* Reported by Jaco Kroon <jaco@kroon.co.za> |
| 1396 | * The usb-storage module found on the Digitech GNX4 (and supposedly other |
| 1397 | * devices) misbehaves and causes a bunch of invalid I/O errors. |
| 1398 | */ |
| 1399 | UNUSUAL_DEV( 0x1210, 0x0003, 0x0100, 0x0100, |
| 1400 | "Digitech HMG", |
| 1401 | "DigiTech Mass Storage", |
| 1402 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1403 | US_FL_IGNORE_RESIDUE ), |
| 1404 | |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1405 | /* Reported by fangxiaozhi <huananhu@huawei.com> |
| 1406 | * This brings the HUAWEI data card devices into multi-port mode |
Johann Wilhelm | d853d87 | 2007-09-05 13:49:29 +0200 | [diff] [blame] | 1407 | */ |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1408 | UNUSUAL_DEV( 0x12d1, 0x1001, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1409 | "HUAWEI MOBILE", |
| 1410 | "Mass Storage", |
| 1411 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1412 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1413 | UNUSUAL_DEV( 0x12d1, 0x1003, 0x0000, 0x0000, |
Johann Wilhelm | d853d87 | 2007-09-05 13:49:29 +0200 | [diff] [blame] | 1414 | "HUAWEI MOBILE", |
| 1415 | "Mass Storage", |
| 1416 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1417 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1418 | UNUSUAL_DEV( 0x12d1, 0x1004, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1419 | "HUAWEI MOBILE", |
| 1420 | "Mass Storage", |
| 1421 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1422 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1423 | UNUSUAL_DEV( 0x12d1, 0x1401, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1424 | "HUAWEI MOBILE", |
| 1425 | "Mass Storage", |
| 1426 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1427 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1428 | UNUSUAL_DEV( 0x12d1, 0x1402, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1429 | "HUAWEI MOBILE", |
| 1430 | "Mass Storage", |
| 1431 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1432 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1433 | UNUSUAL_DEV( 0x12d1, 0x1403, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1434 | "HUAWEI MOBILE", |
| 1435 | "Mass Storage", |
| 1436 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1437 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1438 | UNUSUAL_DEV( 0x12d1, 0x1404, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1439 | "HUAWEI MOBILE", |
| 1440 | "Mass Storage", |
| 1441 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1442 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1443 | UNUSUAL_DEV( 0x12d1, 0x1405, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1444 | "HUAWEI MOBILE", |
| 1445 | "Mass Storage", |
| 1446 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1447 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1448 | UNUSUAL_DEV( 0x12d1, 0x1406, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1449 | "HUAWEI MOBILE", |
| 1450 | "Mass Storage", |
| 1451 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1452 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1453 | UNUSUAL_DEV( 0x12d1, 0x1407, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1454 | "HUAWEI MOBILE", |
| 1455 | "Mass Storage", |
| 1456 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1457 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1458 | UNUSUAL_DEV( 0x12d1, 0x1408, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1459 | "HUAWEI MOBILE", |
| 1460 | "Mass Storage", |
| 1461 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1462 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1463 | UNUSUAL_DEV( 0x12d1, 0x1409, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1464 | "HUAWEI MOBILE", |
| 1465 | "Mass Storage", |
| 1466 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1467 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1468 | UNUSUAL_DEV( 0x12d1, 0x140A, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1469 | "HUAWEI MOBILE", |
| 1470 | "Mass Storage", |
| 1471 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1472 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1473 | UNUSUAL_DEV( 0x12d1, 0x140B, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1474 | "HUAWEI MOBILE", |
| 1475 | "Mass Storage", |
| 1476 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1477 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1478 | UNUSUAL_DEV( 0x12d1, 0x140C, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1479 | "HUAWEI MOBILE", |
| 1480 | "Mass Storage", |
| 1481 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1482 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1483 | UNUSUAL_DEV( 0x12d1, 0x140D, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1484 | "HUAWEI MOBILE", |
| 1485 | "Mass Storage", |
| 1486 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1487 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1488 | UNUSUAL_DEV( 0x12d1, 0x140E, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1489 | "HUAWEI MOBILE", |
| 1490 | "Mass Storage", |
| 1491 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1492 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1493 | UNUSUAL_DEV( 0x12d1, 0x140F, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1494 | "HUAWEI MOBILE", |
| 1495 | "Mass Storage", |
| 1496 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1497 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1498 | UNUSUAL_DEV( 0x12d1, 0x1410, 0x0000, 0x0000, |
| 1499 | "HUAWEI MOBILE", |
| 1500 | "Mass Storage", |
| 1501 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1502 | 0), |
| 1503 | UNUSUAL_DEV( 0x12d1, 0x1411, 0x0000, 0x0000, |
| 1504 | "HUAWEI MOBILE", |
| 1505 | "Mass Storage", |
| 1506 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1507 | 0), |
| 1508 | UNUSUAL_DEV( 0x12d1, 0x1412, 0x0000, 0x0000, |
| 1509 | "HUAWEI MOBILE", |
| 1510 | "Mass Storage", |
| 1511 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1512 | 0), |
| 1513 | UNUSUAL_DEV( 0x12d1, 0x1413, 0x0000, 0x0000, |
| 1514 | "HUAWEI MOBILE", |
| 1515 | "Mass Storage", |
| 1516 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1517 | 0), |
| 1518 | UNUSUAL_DEV( 0x12d1, 0x1414, 0x0000, 0x0000, |
| 1519 | "HUAWEI MOBILE", |
| 1520 | "Mass Storage", |
| 1521 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1522 | 0), |
| 1523 | UNUSUAL_DEV( 0x12d1, 0x1415, 0x0000, 0x0000, |
| 1524 | "HUAWEI MOBILE", |
| 1525 | "Mass Storage", |
| 1526 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1527 | 0), |
| 1528 | UNUSUAL_DEV( 0x12d1, 0x1416, 0x0000, 0x0000, |
| 1529 | "HUAWEI MOBILE", |
| 1530 | "Mass Storage", |
| 1531 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1532 | 0), |
| 1533 | UNUSUAL_DEV( 0x12d1, 0x1417, 0x0000, 0x0000, |
| 1534 | "HUAWEI MOBILE", |
| 1535 | "Mass Storage", |
| 1536 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1537 | 0), |
| 1538 | UNUSUAL_DEV( 0x12d1, 0x1418, 0x0000, 0x0000, |
| 1539 | "HUAWEI MOBILE", |
| 1540 | "Mass Storage", |
| 1541 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1542 | 0), |
| 1543 | UNUSUAL_DEV( 0x12d1, 0x1419, 0x0000, 0x0000, |
| 1544 | "HUAWEI MOBILE", |
| 1545 | "Mass Storage", |
| 1546 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1547 | 0), |
| 1548 | UNUSUAL_DEV( 0x12d1, 0x141A, 0x0000, 0x0000, |
| 1549 | "HUAWEI MOBILE", |
| 1550 | "Mass Storage", |
| 1551 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1552 | 0), |
| 1553 | UNUSUAL_DEV( 0x12d1, 0x141B, 0x0000, 0x0000, |
| 1554 | "HUAWEI MOBILE", |
| 1555 | "Mass Storage", |
| 1556 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1557 | 0), |
| 1558 | UNUSUAL_DEV( 0x12d1, 0x141C, 0x0000, 0x0000, |
| 1559 | "HUAWEI MOBILE", |
| 1560 | "Mass Storage", |
| 1561 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1562 | 0), |
| 1563 | UNUSUAL_DEV( 0x12d1, 0x141D, 0x0000, 0x0000, |
| 1564 | "HUAWEI MOBILE", |
| 1565 | "Mass Storage", |
| 1566 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1567 | 0), |
| 1568 | UNUSUAL_DEV( 0x12d1, 0x141E, 0x0000, 0x0000, |
| 1569 | "HUAWEI MOBILE", |
| 1570 | "Mass Storage", |
| 1571 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1572 | 0), |
| 1573 | UNUSUAL_DEV( 0x12d1, 0x141F, 0x0000, 0x0000, |
| 1574 | "HUAWEI MOBILE", |
| 1575 | "Mass Storage", |
| 1576 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1577 | 0), |
| 1578 | UNUSUAL_DEV( 0x12d1, 0x1420, 0x0000, 0x0000, |
| 1579 | "HUAWEI MOBILE", |
| 1580 | "Mass Storage", |
| 1581 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1582 | 0), |
| 1583 | UNUSUAL_DEV( 0x12d1, 0x1421, 0x0000, 0x0000, |
| 1584 | "HUAWEI MOBILE", |
| 1585 | "Mass Storage", |
| 1586 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1587 | 0), |
| 1588 | UNUSUAL_DEV( 0x12d1, 0x1422, 0x0000, 0x0000, |
| 1589 | "HUAWEI MOBILE", |
| 1590 | "Mass Storage", |
| 1591 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1592 | 0), |
| 1593 | UNUSUAL_DEV( 0x12d1, 0x1423, 0x0000, 0x0000, |
| 1594 | "HUAWEI MOBILE", |
| 1595 | "Mass Storage", |
| 1596 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1597 | 0), |
| 1598 | UNUSUAL_DEV( 0x12d1, 0x1424, 0x0000, 0x0000, |
| 1599 | "HUAWEI MOBILE", |
| 1600 | "Mass Storage", |
| 1601 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1602 | 0), |
| 1603 | UNUSUAL_DEV( 0x12d1, 0x1425, 0x0000, 0x0000, |
| 1604 | "HUAWEI MOBILE", |
| 1605 | "Mass Storage", |
| 1606 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1607 | 0), |
| 1608 | UNUSUAL_DEV( 0x12d1, 0x1426, 0x0000, 0x0000, |
| 1609 | "HUAWEI MOBILE", |
| 1610 | "Mass Storage", |
| 1611 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1612 | 0), |
| 1613 | UNUSUAL_DEV( 0x12d1, 0x1427, 0x0000, 0x0000, |
| 1614 | "HUAWEI MOBILE", |
| 1615 | "Mass Storage", |
| 1616 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1617 | 0), |
| 1618 | UNUSUAL_DEV( 0x12d1, 0x1428, 0x0000, 0x0000, |
| 1619 | "HUAWEI MOBILE", |
| 1620 | "Mass Storage", |
| 1621 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1622 | 0), |
| 1623 | UNUSUAL_DEV( 0x12d1, 0x1429, 0x0000, 0x0000, |
| 1624 | "HUAWEI MOBILE", |
| 1625 | "Mass Storage", |
| 1626 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1627 | 0), |
| 1628 | UNUSUAL_DEV( 0x12d1, 0x142A, 0x0000, 0x0000, |
| 1629 | "HUAWEI MOBILE", |
| 1630 | "Mass Storage", |
| 1631 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1632 | 0), |
| 1633 | UNUSUAL_DEV( 0x12d1, 0x142B, 0x0000, 0x0000, |
| 1634 | "HUAWEI MOBILE", |
| 1635 | "Mass Storage", |
| 1636 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1637 | 0), |
| 1638 | UNUSUAL_DEV( 0x12d1, 0x142C, 0x0000, 0x0000, |
| 1639 | "HUAWEI MOBILE", |
| 1640 | "Mass Storage", |
| 1641 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1642 | 0), |
| 1643 | UNUSUAL_DEV( 0x12d1, 0x142D, 0x0000, 0x0000, |
| 1644 | "HUAWEI MOBILE", |
| 1645 | "Mass Storage", |
| 1646 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1647 | 0), |
| 1648 | UNUSUAL_DEV( 0x12d1, 0x142E, 0x0000, 0x0000, |
| 1649 | "HUAWEI MOBILE", |
| 1650 | "Mass Storage", |
| 1651 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1652 | 0), |
| 1653 | UNUSUAL_DEV( 0x12d1, 0x142F, 0x0000, 0x0000, |
| 1654 | "HUAWEI MOBILE", |
| 1655 | "Mass Storage", |
| 1656 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1657 | 0), |
| 1658 | UNUSUAL_DEV( 0x12d1, 0x1430, 0x0000, 0x0000, |
| 1659 | "HUAWEI MOBILE", |
| 1660 | "Mass Storage", |
| 1661 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1662 | 0), |
| 1663 | UNUSUAL_DEV( 0x12d1, 0x1431, 0x0000, 0x0000, |
| 1664 | "HUAWEI MOBILE", |
| 1665 | "Mass Storage", |
| 1666 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1667 | 0), |
| 1668 | UNUSUAL_DEV( 0x12d1, 0x1432, 0x0000, 0x0000, |
| 1669 | "HUAWEI MOBILE", |
| 1670 | "Mass Storage", |
| 1671 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1672 | 0), |
| 1673 | UNUSUAL_DEV( 0x12d1, 0x1433, 0x0000, 0x0000, |
| 1674 | "HUAWEI MOBILE", |
| 1675 | "Mass Storage", |
| 1676 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1677 | 0), |
| 1678 | UNUSUAL_DEV( 0x12d1, 0x1434, 0x0000, 0x0000, |
| 1679 | "HUAWEI MOBILE", |
| 1680 | "Mass Storage", |
| 1681 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1682 | 0), |
| 1683 | UNUSUAL_DEV( 0x12d1, 0x1435, 0x0000, 0x0000, |
| 1684 | "HUAWEI MOBILE", |
| 1685 | "Mass Storage", |
| 1686 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1687 | 0), |
| 1688 | UNUSUAL_DEV( 0x12d1, 0x1436, 0x0000, 0x0000, |
| 1689 | "HUAWEI MOBILE", |
| 1690 | "Mass Storage", |
| 1691 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1692 | 0), |
| 1693 | UNUSUAL_DEV( 0x12d1, 0x1437, 0x0000, 0x0000, |
| 1694 | "HUAWEI MOBILE", |
| 1695 | "Mass Storage", |
| 1696 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1697 | 0), |
| 1698 | UNUSUAL_DEV( 0x12d1, 0x1438, 0x0000, 0x0000, |
| 1699 | "HUAWEI MOBILE", |
| 1700 | "Mass Storage", |
| 1701 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1702 | 0), |
| 1703 | UNUSUAL_DEV( 0x12d1, 0x1439, 0x0000, 0x0000, |
| 1704 | "HUAWEI MOBILE", |
| 1705 | "Mass Storage", |
| 1706 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1707 | 0), |
| 1708 | UNUSUAL_DEV( 0x12d1, 0x143A, 0x0000, 0x0000, |
| 1709 | "HUAWEI MOBILE", |
| 1710 | "Mass Storage", |
| 1711 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1712 | 0), |
| 1713 | UNUSUAL_DEV( 0x12d1, 0x143B, 0x0000, 0x0000, |
| 1714 | "HUAWEI MOBILE", |
| 1715 | "Mass Storage", |
| 1716 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1717 | 0), |
| 1718 | UNUSUAL_DEV( 0x12d1, 0x143C, 0x0000, 0x0000, |
| 1719 | "HUAWEI MOBILE", |
| 1720 | "Mass Storage", |
| 1721 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1722 | 0), |
| 1723 | UNUSUAL_DEV( 0x12d1, 0x143D, 0x0000, 0x0000, |
| 1724 | "HUAWEI MOBILE", |
| 1725 | "Mass Storage", |
| 1726 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1727 | 0), |
| 1728 | UNUSUAL_DEV( 0x12d1, 0x143E, 0x0000, 0x0000, |
| 1729 | "HUAWEI MOBILE", |
| 1730 | "Mass Storage", |
| 1731 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1732 | 0), |
| 1733 | UNUSUAL_DEV( 0x12d1, 0x143F, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1734 | "HUAWEI MOBILE", |
| 1735 | "Mass Storage", |
| 1736 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1737 | 0), |
Johann Wilhelm | d853d87 | 2007-09-05 13:49:29 +0200 | [diff] [blame] | 1738 | |
Phil Dibowitz | 7b1cbeb | 2005-05-02 23:54:28 -0700 | [diff] [blame] | 1739 | /* Reported by Vilius Bilinkevicius <vilisas AT xxx DOT lt) */ |
| 1740 | UNUSUAL_DEV( 0x132b, 0x000b, 0x0001, 0x0001, |
| 1741 | "Minolta", |
| 1742 | "Dimage Z10", |
| 1743 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1744 | 0 ), |
| 1745 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | /* Reported by Kotrla Vitezslav <kotrla@ceb.cz> */ |
| 1747 | UNUSUAL_DEV( 0x1370, 0x6828, 0x0110, 0x0110, |
| 1748 | "SWISSBIT", |
| 1749 | "Black Silver", |
| 1750 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1751 | US_FL_IGNORE_RESIDUE ), |
| 1752 | |
Phil Dibowitz | f1cd4ad | 2006-12-31 00:19:50 -0800 | [diff] [blame] | 1753 | /* Reported by Francesco Foresti <frafore@tiscali.it> */ |
| 1754 | UNUSUAL_DEV( 0x14cd, 0x6600, 0x0201, 0x0201, |
| 1755 | "Super Top", |
| 1756 | "IDE DEVICE", |
| 1757 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1758 | US_FL_IGNORE_RESIDUE ), |
| 1759 | |
Phil Dibowitz | 3030ca4 | 2008-10-19 08:17:54 +0200 | [diff] [blame] | 1760 | /* Reported by Alexandre Oliva <oliva@lsd.ic.unicamp.br> |
| 1761 | * JMicron responds to USN and several other SCSI ioctls with a |
| 1762 | * residue that causes subsequent I/O requests to fail. */ |
| 1763 | UNUSUAL_DEV( 0x152d, 0x2329, 0x0100, 0x0100, |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 1764 | "JMicron", |
| 1765 | "USB to ATA/ATAPI Bridge", |
| 1766 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1767 | US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ), |
Phil Dibowitz | 3030ca4 | 2008-10-19 08:17:54 +0200 | [diff] [blame] | 1768 | |
Phil Dibowitz | f1cd4ad | 2006-12-31 00:19:50 -0800 | [diff] [blame] | 1769 | /* Reported by Robert Schedel <r.schedel@yahoo.de> |
| 1770 | * Note: this is a 'super top' device like the above 14cd/6600 device */ |
| 1771 | UNUSUAL_DEV( 0x1652, 0x6600, 0x0201, 0x0201, |
| 1772 | "Teac", |
| 1773 | "HD-35PUK-B", |
| 1774 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1775 | US_FL_IGNORE_RESIDUE ), |
| 1776 | |
Oliver Neukum | b90de8a | 2009-01-14 16:17:19 +0100 | [diff] [blame] | 1777 | UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001, |
| 1778 | "ST", |
| 1779 | "2A", |
| 1780 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1781 | US_FL_FIX_CAPACITY), |
| 1782 | |
Davide Perini | 0ddc063 | 2006-06-19 17:07:39 -0400 | [diff] [blame] | 1783 | /* patch submitted by Davide Perini <perini.davide@dpsoftware.org> |
| 1784 | * and Renato Perini <rperini@email.it> |
| 1785 | */ |
| 1786 | UNUSUAL_DEV( 0x22b8, 0x3010, 0x0001, 0x0001, |
| 1787 | "Motorola", |
| 1788 | "RAZR V3x", |
| 1789 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1790 | US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), |
| 1791 | |
Pete Zaitcev | a7f3dd5 | 2007-03-10 15:17:16 -0800 | [diff] [blame] | 1792 | /* |
Constantin Baranov | cc36bdd | 2008-03-16 20:04:23 +0000 | [diff] [blame] | 1793 | * Patch by Constantin Baranov <const@tltsu.ru> |
| 1794 | * Report by Andreas Koenecke. |
| 1795 | * Motorola ROKR Z6. |
| 1796 | */ |
| 1797 | UNUSUAL_DEV( 0x22b8, 0x6426, 0x0101, 0x0101, |
| 1798 | "Motorola", |
| 1799 | "MSnc.", |
| 1800 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1801 | US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG), |
| 1802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */ |
| 1804 | UNUSUAL_DEV( 0x2735, 0x100b, 0x0000, 0x9999, |
| 1805 | "MPIO", |
| 1806 | "HS200", |
| 1807 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1808 | US_FL_GO_SLOW ), |
| 1809 | |
Phil Dibowitz | ed3e8fc | 2008-05-03 18:04:30 -0700 | [diff] [blame] | 1810 | /* Reported by Rohan Hart <rohan.hart17@gmail.com> */ |
| 1811 | UNUSUAL_DEV( 0x2770, 0x915d, 0x0010, 0x0010, |
| 1812 | "INTOVA", |
| 1813 | "Pixtreme", |
| 1814 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1815 | US_FL_FIX_CAPACITY ), |
| 1816 | |
Frédéric Marchal | e8fab4c | 2008-10-13 14:00:11 +0200 | [diff] [blame] | 1817 | /* Reported by Frederic Marchal <frederic.marchal@wowcompany.com> |
| 1818 | * Mio Moov 330 |
| 1819 | */ |
| 1820 | UNUSUAL_DEV( 0x3340, 0xffff, 0x0000, 0x0000, |
| 1821 | "Mitac", |
| 1822 | "Mio DigiWalker USB Sync", |
| 1823 | US_SC_DEVICE,US_PR_DEVICE,NULL, |
| 1824 | US_FL_MAX_SECTORS_64 ), |
| 1825 | |
Alan Stern | 368ee64 | 2008-07-21 10:08:28 -0400 | [diff] [blame] | 1826 | /* Reported by Andrey Rahmatullin <wrar@altlinux.org> */ |
| 1827 | UNUSUAL_DEV( 0x4102, 0x1020, 0x0100, 0x0100, |
| 1828 | "iRiver", |
| 1829 | "MP3 T10", |
| 1830 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1831 | US_FL_IGNORE_RESIDUE ), |
| 1832 | |
Sergey Pinaev | 2f13612 | 2009-09-17 17:26:50 +0400 | [diff] [blame] | 1833 | /* Reported by Sergey Pinaev <dfo@antex.ru> */ |
| 1834 | UNUSUAL_DEV( 0x4102, 0x1059, 0x0000, 0x0000, |
| 1835 | "iRiver", |
| 1836 | "P7K", |
| 1837 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1838 | US_FL_MAX_SECTORS_64 ), |
| 1839 | |
David Härdeman | 63dc3ff | 2005-11-23 15:45:49 -0800 | [diff] [blame] | 1840 | /* |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 1841 | * David Härdeman <david@2gen.com> |
David Härdeman | 63dc3ff | 2005-11-23 15:45:49 -0800 | [diff] [blame] | 1842 | * The key makes the SCSI stack print confusing (but harmless) messages |
| 1843 | */ |
| 1844 | UNUSUAL_DEV( 0x4146, 0xba01, 0x0100, 0x0100, |
| 1845 | "Iomega", |
| 1846 | "Micro Mini 1GB", |
| 1847 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), |
| 1848 | |
Alan Stern | a2149bc | 2006-02-02 09:52:45 -0500 | [diff] [blame] | 1849 | /* Reported by Andrew Simmons <andrew.simmons@gmail.com> */ |
| 1850 | UNUSUAL_DEV( 0xed06, 0x4500, 0x0001, 0x0001, |
| 1851 | "DataStor", |
| 1852 | "USB4500 FW1.04", |
| 1853 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Oliver Neukum | 61bf54b | 2007-02-08 09:04:48 +0100 | [diff] [blame] | 1854 | US_FL_CAPACITY_HEURISTICS), |
Alan Stern | a2149bc | 2006-02-02 09:52:45 -0500 | [diff] [blame] | 1855 | |
Chuck Short | 46c6e93 | 2009-04-14 20:50:31 +0200 | [diff] [blame] | 1856 | /* Reported by Alessio Treglia <quadrispro@ubuntu.com> */ |
| 1857 | UNUSUAL_DEV( 0xed10, 0x7636, 0x0001, 0x0001, |
| 1858 | "TGE", |
| 1859 | "Digital MP3 Audio Player", |
| 1860 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), |
| 1861 | |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 1862 | /* Control/Bulk transport for all SubClass values */ |
| 1863 | USUAL_DEV(US_SC_RBC, US_PR_CB, USB_US_TYPE_STOR), |
| 1864 | USUAL_DEV(US_SC_8020, US_PR_CB, USB_US_TYPE_STOR), |
| 1865 | USUAL_DEV(US_SC_QIC, US_PR_CB, USB_US_TYPE_STOR), |
| 1866 | USUAL_DEV(US_SC_UFI, US_PR_CB, USB_US_TYPE_STOR), |
| 1867 | USUAL_DEV(US_SC_8070, US_PR_CB, USB_US_TYPE_STOR), |
| 1868 | USUAL_DEV(US_SC_SCSI, US_PR_CB, USB_US_TYPE_STOR), |
| 1869 | |
| 1870 | /* Control/Bulk/Interrupt transport for all SubClass values */ |
| 1871 | USUAL_DEV(US_SC_RBC, US_PR_CBI, USB_US_TYPE_STOR), |
| 1872 | USUAL_DEV(US_SC_8020, US_PR_CBI, USB_US_TYPE_STOR), |
| 1873 | USUAL_DEV(US_SC_QIC, US_PR_CBI, USB_US_TYPE_STOR), |
| 1874 | USUAL_DEV(US_SC_UFI, US_PR_CBI, USB_US_TYPE_STOR), |
| 1875 | USUAL_DEV(US_SC_8070, US_PR_CBI, USB_US_TYPE_STOR), |
| 1876 | USUAL_DEV(US_SC_SCSI, US_PR_CBI, USB_US_TYPE_STOR), |
| 1877 | |
| 1878 | /* Bulk-only transport for all SubClass values */ |
| 1879 | USUAL_DEV(US_SC_RBC, US_PR_BULK, USB_US_TYPE_STOR), |
| 1880 | USUAL_DEV(US_SC_8020, US_PR_BULK, USB_US_TYPE_STOR), |
| 1881 | USUAL_DEV(US_SC_QIC, US_PR_BULK, USB_US_TYPE_STOR), |
| 1882 | USUAL_DEV(US_SC_UFI, US_PR_BULK, USB_US_TYPE_STOR), |
| 1883 | USUAL_DEV(US_SC_8070, US_PR_BULK, USB_US_TYPE_STOR), |
| 1884 | USUAL_DEV(US_SC_SCSI, US_PR_BULK, 0), |