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: |
| 30 | * The macro UNUSUAL_DEV() must be defined before this file is included |
| 31 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | /* If you edit this file, please try to keep it sorted first by VendorID, |
| 34 | * then by ProductID. |
| 35 | * |
| 36 | * If you want to add an entry for this file, be sure to include the |
| 37 | * following information: |
| 38 | * - a patch that adds the entry for your device, including your |
| 39 | * email address right above the entry (plus maybe a brief |
| 40 | * explanation of the reason for the entry), |
| 41 | * - a copy of /proc/bus/usb/devices with your device plugged in |
| 42 | * running with this patch. |
| 43 | * Send your submission to either Phil Dibowitz <phil@ipom.com> or |
| 44 | * 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] | 45 | * USB development list <linux-usb@vger.kernel.org> and the USB storage list |
| 46 | * <usb-storage@lists.one-eyed-alien.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | */ |
| 48 | |
Vivian Bregier | 8af60be | 2005-05-03 02:16:34 +0200 | [diff] [blame] | 49 | /* patch submitted by Vivian Bregier <Vivian.Bregier@imag.fr> |
| 50 | */ |
| 51 | UNUSUAL_DEV( 0x03eb, 0x2002, 0x0100, 0x0100, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 52 | "ATMEL", |
| 53 | "SND1 Storage", |
| 54 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 55 | US_FL_IGNORE_RESIDUE), |
Vivian Bregier | 8af60be | 2005-05-03 02:16:34 +0200 | [diff] [blame] | 56 | |
Tobias Lorenz | 1ff15e8 | 2006-10-08 22:56:40 -0700 | [diff] [blame] | 57 | /* modified by Tobias Lorenz <tobias.lorenz@gmx.net> */ |
| 58 | UNUSUAL_DEV( 0x03ee, 0x6901, 0x0000, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | "Mitsumi", |
| 60 | "USB FDD", |
| 61 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 62 | US_FL_SINGLE_LUN ), |
| 63 | |
Rodolfo Quesada | 9d5847b | 2006-03-06 10:45:42 -0500 | [diff] [blame] | 64 | /* Reported by Rodolfo Quesada <rquesada@roqz.net> */ |
| 65 | UNUSUAL_DEV( 0x03ee, 0x6906, 0x0003, 0x0003, |
| 66 | "VIA Technologies Inc.", |
| 67 | "Mitsumi multi cardreader", |
| 68 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 69 | US_FL_IGNORE_RESIDUE ), |
| 70 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 71 | UNUSUAL_DEV( 0x03f0, 0x0107, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | "HP", |
| 73 | "CD-Writer+", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 74 | US_SC_8070, US_PR_CB, NULL, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | #ifdef CONFIG_USB_STORAGE_USBAT |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 77 | UNUSUAL_DEV( 0x03f0, 0x0207, 0x0001, 0x0001, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | "HP", |
| 79 | "CD-Writer+ 8200e", |
Peter Chubb | bdcfd9e | 2006-05-02 18:29:34 +0100 | [diff] [blame] | 80 | US_SC_8070, US_PR_USBAT, init_usbat_cd, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 82 | UNUSUAL_DEV( 0x03f0, 0x0307, 0x0001, 0x0001, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | "HP", |
| 84 | "CD-Writer+ CD-4e", |
Peter Chubb | bdcfd9e | 2006-05-02 18:29:34 +0100 | [diff] [blame] | 85 | US_SC_8070, US_PR_USBAT, init_usbat_cd, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #endif |
| 87 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 88 | /* Reported by Ben Efros <ben@pc-doctor.com> */ |
| 89 | UNUSUAL_DEV( 0x03f0, 0x070c, 0x0000, 0x0000, |
| 90 | "HP", |
| 91 | "Personal Media Drive", |
| 92 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 93 | US_FL_SANE_SENSE ), |
| 94 | |
Grant Grundler | 4b24f91 | 2008-01-23 21:31:03 -0800 | [diff] [blame] | 95 | /* Reported by Grant Grundler <grundler@parisc-linux.org> |
| 96 | * HP r707 camera in "Disk" mode with 2.00.23 or 2.00.24 firmware. |
| 97 | */ |
| 98 | UNUSUAL_DEV( 0x03f0, 0x4002, 0x0001, 0x0001, |
| 99 | "HP", |
| 100 | "PhotoSmart R707", |
| 101 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_CAPACITY), |
| 102 | |
Phil Dibowitz | 1ea640c | 2005-08-29 22:38:28 -0700 | [diff] [blame] | 103 | /* Reported by Sebastian Kapfer <sebastian_kapfer@gmx.net> |
| 104 | * and Olaf Hering <olh@suse.de> (different bcd's, same vendor/product) |
| 105 | * for USB floppies that need the SINGLE_LUN enforcement. |
| 106 | */ |
| 107 | UNUSUAL_DEV( 0x0409, 0x0040, 0x0000, 0x9999, |
| 108 | "NEC", |
| 109 | "NEC USB UF000x", |
| 110 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 111 | US_FL_SINGLE_LUN ), |
| 112 | |
Phil Dibowitz | 3e220e9 | 2005-12-18 21:30:02 -0800 | [diff] [blame] | 113 | /* Patch submitted by Mihnea-Costin Grigore <mihnea@zulu.ro> */ |
| 114 | UNUSUAL_DEV( 0x040d, 0x6205, 0x0003, 0x0003, |
| 115 | "VIA Technologies Inc.", |
| 116 | "USB 2.0 Card Reader", |
| 117 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 118 | US_FL_IGNORE_RESIDUE ), |
| 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | /* Deduced by Jonathan Woithe <jwoithe@physics.adelaide.edu.au> |
| 121 | * Entry needed for flags: US_FL_FIX_INQUIRY because initial inquiry message |
| 122 | * always fails and confuses drive. |
| 123 | */ |
| 124 | UNUSUAL_DEV( 0x0411, 0x001c, 0x0113, 0x0113, |
| 125 | "Buffalo", |
| 126 | "DUB-P40G HDD", |
| 127 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 128 | US_FL_FIX_INQUIRY ), |
| 129 | |
Ernis | d8840d6 | 2006-06-26 16:02:43 -0400 | [diff] [blame] | 130 | /* Submitted by Ernestas Vaiciukevicius <ernisv@gmail.com> */ |
| 131 | UNUSUAL_DEV( 0x0419, 0x0100, 0x0100, 0x0100, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 132 | "Samsung Info. Systems America, Inc.", |
| 133 | "MP3 Player", |
| 134 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 135 | US_FL_IGNORE_RESIDUE ), |
Ernis | d8840d6 | 2006-06-26 16:02:43 -0400 | [diff] [blame] | 136 | |
Phil Dibowitz | 5501a48 | 2006-07-04 12:46:43 -0700 | [diff] [blame] | 137 | /* Reported by Orgad Shaneh <orgads@gmail.com> */ |
| 138 | UNUSUAL_DEV( 0x0419, 0xaace, 0x0100, 0x0100, |
| 139 | "Samsung", "MP3 Player", |
| 140 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 141 | US_FL_IGNORE_RESIDUE ), |
| 142 | |
Alan Stern | 1d614a4 | 2006-02-13 10:15:22 -0500 | [diff] [blame] | 143 | /* Reported by Christian Leber <christian@leber.de> */ |
| 144 | UNUSUAL_DEV( 0x0419, 0xaaf5, 0x0100, 0x0100, |
| 145 | "TrekStor", |
| 146 | "i.Beat 115 2.0", |
| 147 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 148 | US_FL_IGNORE_RESIDUE | US_FL_NOT_LOCKABLE ), |
| 149 | |
Phil Dibowitz | e4a16e0 | 2005-09-30 00:20:15 -0700 | [diff] [blame] | 150 | /* Reported by Stefan Werner <dustbln@gmx.de> */ |
| 151 | UNUSUAL_DEV( 0x0419, 0xaaf6, 0x0100, 0x0100, |
| 152 | "TrekStor", |
| 153 | "i.Beat Joy 2.0", |
| 154 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 155 | US_FL_IGNORE_RESIDUE ), |
| 156 | |
Pete Zaitcev | 23b7885 | 2006-03-05 21:45:44 -0800 | [diff] [blame] | 157 | /* Reported by Pete Zaitcev <zaitcev@redhat.com>, bz#176584 */ |
| 158 | UNUSUAL_DEV( 0x0420, 0x0001, 0x0100, 0x0100, |
| 159 | "GENERIC", "MP3 PLAYER", /* MyMusix PD-205 on the outside. */ |
| 160 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 161 | US_FL_IGNORE_RESIDUE ), |
| 162 | |
Andrew Nayenko | 0d8c7ae | 2007-02-25 00:40:20 -0800 | [diff] [blame] | 163 | /* Reported by Andrew Nayenko <relan@bk.ru> */ |
| 164 | UNUSUAL_DEV( 0x0421, 0x0019, 0x0592, 0x0592, |
| 165 | "Nokia", |
| 166 | "Nokia 6288", |
| 167 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 168 | US_FL_MAX_SECTORS_64 ), |
| 169 | |
Filip Joelsson | 49cd248 | 2008-08-31 08:22:16 +0200 | [diff] [blame] | 170 | /* Reported by Filip Joelsson <filip@blueturtle.nu> */ |
| 171 | UNUSUAL_DEV( 0x0421, 0x005d, 0x0001, 0x0600, |
| 172 | "Nokia", |
| 173 | "Nokia 3110c", |
| 174 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 175 | US_FL_FIX_CAPACITY ), |
| 176 | |
Ozan Sener | 48e1a54 | 2008-12-08 19:15:45 +0200 | [diff] [blame] | 177 | /* Reported by Ozan Sener <themgzzy@gmail.com> */ |
| 178 | UNUSUAL_DEV( 0x0421, 0x0060, 0x0551, 0x0551, |
| 179 | "Nokia", |
| 180 | "3500c", |
| 181 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 182 | US_FL_FIX_CAPACITY ), |
| 183 | |
CSÉCSY László | 1393fce | 2008-12-09 23:39:14 +0100 | [diff] [blame] | 184 | /* Reported by CSECSY Laszlo <boobaa@frugalware.org> */ |
| 185 | UNUSUAL_DEV( 0x0421, 0x0063, 0x0001, 0x0601, |
| 186 | "Nokia", |
| 187 | "Nokia 3109c", |
| 188 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 189 | US_FL_FIX_CAPACITY ), |
| 190 | |
Alan Stern | 589afd3 | 2008-11-17 14:32:16 -0500 | [diff] [blame] | 191 | /* Patch for Nokia 5310 capacity */ |
Alan Stern | a4b1880 | 2008-12-01 10:23:43 -0500 | [diff] [blame] | 192 | UNUSUAL_DEV( 0x0421, 0x006a, 0x0000, 0x0701, |
Alan Stern | 589afd3 | 2008-11-17 14:32:16 -0500 | [diff] [blame] | 193 | "Nokia", |
| 194 | "5310", |
| 195 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 196 | US_FL_FIX_CAPACITY ), |
| 197 | |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 198 | /* Submitted by Ricky Wong Yung Fei <evilbladewarrior@gmail.com> */ |
| 199 | /* Nokia 7610 Supernova - Too many sectors reported in usb storage mode */ |
| 200 | UNUSUAL_DEV( 0x0421, 0x00f5, 0x0000, 0x0470, |
| 201 | "Nokia", |
| 202 | "7610 Supernova", |
| 203 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 204 | US_FL_FIX_CAPACITY ), |
| 205 | |
Alan Stern | de1caa4 | 2006-07-31 10:10:28 -0400 | [diff] [blame] | 206 | /* Reported by Mario Rettig <mariorettig@web.de> */ |
| 207 | UNUSUAL_DEV( 0x0421, 0x042e, 0x0100, 0x0100, |
| 208 | "Nokia", |
| 209 | "Nokia 3250", |
| 210 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 211 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 212 | |
Andrew Morton | fe1ec34 | 2006-12-04 15:22:40 -0800 | [diff] [blame] | 213 | /* Reported by <honkkis@gmail.com> */ |
| 214 | UNUSUAL_DEV( 0x0421, 0x0433, 0x0100, 0x0100, |
| 215 | "Nokia", |
| 216 | "E70", |
| 217 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 218 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 219 | |
Alan Stern | 7923811 | 2006-09-28 12:11:56 -0400 | [diff] [blame] | 220 | /* Reported by Jon Hart <Jon.Hart@web.de> */ |
| 221 | UNUSUAL_DEV( 0x0421, 0x0434, 0x0100, 0x0100, |
| 222 | "Nokia", |
| 223 | "E60", |
| 224 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 225 | US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), |
| 226 | |
Alan Stern | 9a01355 | 2006-07-07 13:45:13 -0400 | [diff] [blame] | 227 | /* Reported by Sumedha Swamy <sumedhaswamy@gmail.com> and |
| 228 | * Einar Th. Einarsson <einarthered@gmail.com> */ |
| 229 | UNUSUAL_DEV( 0x0421, 0x0444, 0x0100, 0x0100, |
| 230 | "Nokia", |
| 231 | "N91", |
| 232 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 233 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 234 | |
Alan Stern | d5681fe | 2006-06-13 09:59:32 -0400 | [diff] [blame] | 235 | /* Reported by Jiri Slaby <jirislaby@gmail.com> and |
| 236 | * Rene C. Castberg <Rene@Castberg.org> */ |
| 237 | UNUSUAL_DEV( 0x0421, 0x0446, 0x0100, 0x0100, |
| 238 | "Nokia", |
| 239 | "N80", |
| 240 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 241 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 242 | |
Alan Stern | 57b01b1 | 2006-07-10 11:51:12 -0400 | [diff] [blame] | 243 | /* Reported by Matthew Bloch <matthew@bytemark.co.uk> */ |
| 244 | UNUSUAL_DEV( 0x0421, 0x044e, 0x0100, 0x0100, |
| 245 | "Nokia", |
| 246 | "E61", |
| 247 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 248 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
| 249 | |
Alan Stern | e4a20da | 2006-10-04 16:31:15 -0400 | [diff] [blame] | 250 | /* Reported by Bardur Arantsson <bardur@scientician.net> */ |
Alan Stern | 393e551 | 2007-09-18 10:09:32 -0400 | [diff] [blame] | 251 | UNUSUAL_DEV( 0x0421, 0x047c, 0x0370, 0x0610, |
Alan Stern | e4a20da | 2006-10-04 16:31:15 -0400 | [diff] [blame] | 252 | "Nokia", |
| 253 | "6131", |
| 254 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 255 | US_FL_MAX_SECTORS_64 ), |
| 256 | |
Manuel Osdoba | 39559b4 | 2007-01-18 21:28:45 +0100 | [diff] [blame] | 257 | /* Reported by Manuel Osdoba <manuel.osdoba@tu-ilmenau.de> */ |
| 258 | UNUSUAL_DEV( 0x0421, 0x0492, 0x0452, 0x0452, |
| 259 | "Nokia", |
| 260 | "Nokia 6233", |
| 261 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 262 | US_FL_MAX_SECTORS_64 ), |
| 263 | |
Alan Stern | 3ccf25c | 2006-10-13 09:59:17 -0400 | [diff] [blame] | 264 | /* Reported by Alex Corcoles <alex@corcoles.net> */ |
| 265 | UNUSUAL_DEV( 0x0421, 0x0495, 0x0370, 0x0370, |
| 266 | "Nokia", |
| 267 | "6234", |
| 268 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 269 | US_FL_MAX_SECTORS_64 ), |
| 270 | |
Alan Stern | d28525f | 2008-08-07 13:02:40 -0400 | [diff] [blame] | 271 | /* Reported by Cedric Godin <cedric@belbone.be> */ |
Alan Stern | 589afd3 | 2008-11-17 14:32:16 -0500 | [diff] [blame] | 272 | UNUSUAL_DEV( 0x0421, 0x04b9, 0x0500, 0x0551, |
Alan Stern | d28525f | 2008-08-07 13:02:40 -0400 | [diff] [blame] | 273 | "Nokia", |
| 274 | "5300", |
| 275 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 276 | US_FL_FIX_CAPACITY ), |
| 277 | |
Paulo Afonso Graner Fessel | b8d2349 | 2008-12-12 12:05:18 +0100 | [diff] [blame] | 278 | /* Reported by Paulo Fessel <pfessel@gmail.com> */ |
| 279 | UNUSUAL_DEV( 0x0421, 0x04bd, 0x0000, 0x9999, |
| 280 | "Nokia", |
| 281 | "5200", |
| 282 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 283 | US_FL_FIX_CAPACITY ), |
| 284 | |
Richard Nauber | 0a4d7f4 | 2008-08-26 23:34:11 +0200 | [diff] [blame] | 285 | /* Reported by Richard Nauber <RichardNauber@web.de> */ |
Alan Stern | 9beba53 | 2008-11-17 16:12:32 -0500 | [diff] [blame] | 286 | UNUSUAL_DEV( 0x0421, 0x04fa, 0x0550, 0x0660, |
Richard Nauber | 0a4d7f4 | 2008-08-26 23:34:11 +0200 | [diff] [blame] | 287 | "Nokia", |
| 288 | "6300", |
| 289 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 290 | US_FL_FIX_CAPACITY ), |
| 291 | |
Phil Dibowitz | 1ea640c | 2005-08-29 22:38:28 -0700 | [diff] [blame] | 292 | /* Reported by Olaf Hering <olh@suse.de> from novell bug #105878 */ |
| 293 | UNUSUAL_DEV( 0x0424, 0x0fdc, 0x0210, 0x0210, |
| 294 | "SMSC", |
| 295 | "FDC GOLD-2.30", |
| 296 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 297 | US_FL_SINGLE_LUN ), |
| 298 | |
Alan Stern | c20b15f | 2008-12-01 10:36:15 -0500 | [diff] [blame] | 299 | #ifdef CONFIG_USB_STORAGE_SDDR09 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | UNUSUAL_DEV( 0x0436, 0x0005, 0x0100, 0x0100, |
| 301 | "Microtech", |
| 302 | "CameraMate (DPCM_USB)", |
| 303 | US_SC_SCSI, US_PR_DPCM_USB, NULL, 0 ), |
Alan Stern | c20b15f | 2008-12-01 10:36:15 -0500 | [diff] [blame] | 304 | #else |
| 305 | UNUSUAL_DEV( 0x0436, 0x0005, 0x0100, 0x0100, |
| 306 | "Microtech", |
| 307 | "CameraMate", |
| 308 | US_SC_SCSI, US_PR_CB, NULL, |
| 309 | US_FL_SINGLE_LUN ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | #endif |
| 311 | |
Phil Dibowitz | 16f05be | 2006-02-13 15:59:42 -0800 | [diff] [blame] | 312 | /* Patch submitted by Daniel Drake <dsd@gentoo.org> |
| 313 | * Device reports nonsense bInterfaceProtocol 6 when connected over USB2 */ |
| 314 | UNUSUAL_DEV( 0x0451, 0x5416, 0x0100, 0x0100, |
| 315 | "Neuros Audio", |
| 316 | "USB 2.0 HD 2.5", |
| 317 | US_SC_DEVICE, US_PR_BULK, NULL, |
| 318 | US_FL_NEED_OVERRIDE ), |
| 319 | |
Pete Zaitcev | 490dce1 | 2005-08-23 07:46:13 -0700 | [diff] [blame] | 320 | /* |
| 321 | * Pete Zaitcev <zaitcev@yahoo.com>, from Patrick C. F. Ernzer, bz#162559. |
| 322 | * The key does not actually break, but it returns zero sense which |
| 323 | * makes our SCSI stack to print confusing messages. |
| 324 | */ |
| 325 | UNUSUAL_DEV( 0x0457, 0x0150, 0x0100, 0x0100, |
| 326 | "USBest Technology", /* sold by Transcend */ |
| 327 | "USB Mass Storage Device", |
| 328 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), |
| 329 | |
Phil Dibowitz | 16f05be | 2006-02-13 15:59:42 -0800 | [diff] [blame] | 330 | /* |
| 331 | * Bohdan Linda <bohdan.linda@gmail.com> |
| 332 | * 1GB USB sticks MyFlash High Speed. I have restricted |
| 333 | * the revision to my model only |
| 334 | */ |
| 335 | UNUSUAL_DEV( 0x0457, 0x0151, 0x0100, 0x0100, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 336 | "USB 2.0", |
| 337 | "Flash Disk", |
| 338 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 339 | US_FL_NOT_LOCKABLE ), |
Daniel Drake | e1c37b8 | 2005-08-31 16:38:41 +0100 | [diff] [blame] | 340 | |
Andrew Morton | 7f38aa0 | 2006-09-25 17:00:52 -0700 | [diff] [blame] | 341 | #ifdef CONFIG_USB_STORAGE_KARMA |
Matthew Dharm | abb02fd | 2005-12-30 19:06:53 -0800 | [diff] [blame] | 342 | UNUSUAL_DEV( 0x045a, 0x5210, 0x0101, 0x0101, |
| 343 | "Rio", |
| 344 | "Rio Karma", |
Matthew Dharm | dfe0d3b | 2006-08-13 17:30:14 -0700 | [diff] [blame] | 345 | US_SC_SCSI, US_PR_KARMA, rio_karma_init, 0), |
Andrew Morton | 7f38aa0 | 2006-09-25 17:00:52 -0700 | [diff] [blame] | 346 | #endif |
Matthew Dharm | abb02fd | 2005-12-30 19:06:53 -0800 | [diff] [blame] | 347 | |
Alan Stern | a6b7b03 | 2008-11-21 16:15:12 -0500 | [diff] [blame] | 348 | /* Reported by Tamas Kerecsen <kerecsen@bigfoot.com> |
| 349 | * Obviously the PROM has not been customized by the VAR; |
| 350 | * the Vendor and Product string descriptors are: |
| 351 | * Generic Mass Storage (PROTOTYPE--Remember to change idVendor) |
| 352 | * Generic Manufacturer (PROTOTYPE--Remember to change idVendor) |
| 353 | */ |
| 354 | UNUSUAL_DEV( 0x045e, 0xffff, 0x0000, 0x0000, |
| 355 | "Mitac", |
| 356 | "GPS", |
| 357 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 358 | US_FL_MAX_SECTORS_64 ), |
| 359 | |
Pete Zaitcev | 379885a | 2007-01-13 15:17:46 -0800 | [diff] [blame] | 360 | /* |
| 361 | * This virtual floppy is found in Sun equipment (x4600, x4200m2, etc.) |
| 362 | * Reported by Pete Zaitcev <zaitcev@redhat.com> |
| 363 | * This device chokes on both version of MODE SENSE which we have, so |
| 364 | * use_10_for_ms is not effective, and we use US_FL_NO_WP_DETECT. |
| 365 | */ |
| 366 | UNUSUAL_DEV( 0x046b, 0xff40, 0x0100, 0x0100, |
| 367 | "AMI", |
| 368 | "Virtual Floppy", |
| 369 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 370 | US_FL_NO_WP_DETECT), |
| 371 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | /* Patch submitted by Philipp Friedrich <philipp@void.at> */ |
| 373 | UNUSUAL_DEV( 0x0482, 0x0100, 0x0100, 0x0100, |
| 374 | "Kyocera", |
| 375 | "Finecam S3x", |
| 376 | US_SC_8070, US_PR_CB, NULL, US_FL_FIX_INQUIRY), |
| 377 | |
| 378 | /* Patch submitted by Philipp Friedrich <philipp@void.at> */ |
| 379 | UNUSUAL_DEV( 0x0482, 0x0101, 0x0100, 0x0100, |
| 380 | "Kyocera", |
| 381 | "Finecam S4", |
| 382 | US_SC_8070, US_PR_CB, NULL, US_FL_FIX_INQUIRY), |
| 383 | |
| 384 | /* Patch submitted by Stephane Galles <stephane.galles@free.fr> */ |
| 385 | UNUSUAL_DEV( 0x0482, 0x0103, 0x0100, 0x0100, |
| 386 | "Kyocera", |
| 387 | "Finecam S5", |
| 388 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), |
| 389 | |
Jens Taprogge | 74511bb | 2008-10-26 18:16:09 +0100 | [diff] [blame] | 390 | /* Patch submitted by Jens Taprogge <jens.taprogge@taprogge.org> */ |
| 391 | UNUSUAL_DEV( 0x0482, 0x0107, 0x0100, 0x0100, |
| 392 | "Kyocera", |
| 393 | "CONTAX SL300R T*", |
| 394 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 395 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE), |
| 396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | /* Reported by Paul Stewart <stewart@wetlogic.net> |
| 398 | * This entry is needed because the device reports Sub=ff */ |
| 399 | UNUSUAL_DEV( 0x04a4, 0x0004, 0x0001, 0x0001, |
| 400 | "Hitachi", |
| 401 | "DVD-CAM DZ-MV100A Camcorder", |
| 402 | US_SC_SCSI, US_PR_CB, NULL, US_FL_SINGLE_LUN), |
| 403 | |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 404 | /* BENQ DC5330 |
| 405 | * Reported by Manuel Fombuena <mfombuena@ya.com> and |
| 406 | * Frank Copeland <fjc@thingy.apana.org.au> */ |
| 407 | UNUSUAL_DEV( 0x04a5, 0x3010, 0x0100, 0x0100, |
| 408 | "Tekom Technologies, Inc", |
| 409 | "300_CAMERA", |
| 410 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 411 | US_FL_IGNORE_RESIDUE ), |
| 412 | |
fabien COSSE | 17fa6e5 | 2005-11-30 01:16:00 -0800 | [diff] [blame] | 413 | /* Patch for Nikon coolpix 2000 |
| 414 | * Submitted by Fabien Cosse <fabien.cosse@wanadoo.fr>*/ |
| 415 | UNUSUAL_DEV( 0x04b0, 0x0301, 0x0010, 0x0010, |
| 416 | "NIKON", |
| 417 | "NIKON DSC E2000", |
| 418 | US_SC_DEVICE, US_PR_DEVICE,NULL, |
| 419 | US_FL_NOT_LOCKABLE ), |
| 420 | |
Alan Stern | d8fbba2 | 2007-07-16 15:30:20 -0400 | [diff] [blame] | 421 | /* Reported by Stefan de Konink <skinkie@xs4all.nl> */ |
| 422 | UNUSUAL_DEV( 0x04b0, 0x0401, 0x0200, 0x0200, |
| 423 | "NIKON", |
| 424 | "NIKON DSC D100", |
| 425 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 426 | US_FL_FIX_CAPACITY), |
| 427 | |
Tobias Kunze Briseño | 621b239 | 2008-11-24 11:28:31 -0500 | [diff] [blame] | 428 | /* Reported by Tobias Kunze Briseno <t-linux@fictive.com> */ |
| 429 | UNUSUAL_DEV( 0x04b0, 0x0403, 0x0200, 0x0200, |
| 430 | "NIKON", |
| 431 | "NIKON DSC D2H", |
| 432 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 433 | US_FL_FIX_CAPACITY), |
| 434 | |
Milinevsky Dmitry | 4f47bb5 | 2007-07-20 16:58:53 -0700 | [diff] [blame] | 435 | /* Reported by Milinevsky Dmitry <niam.niam@gmail.com> */ |
| 436 | UNUSUAL_DEV( 0x04b0, 0x0409, 0x0100, 0x0100, |
| 437 | "NIKON", |
| 438 | "NIKON DSC D50", |
| 439 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 440 | US_FL_FIX_CAPACITY), |
| 441 | |
Alan Stern | ae67181 | 2006-06-06 15:19:17 -0400 | [diff] [blame] | 442 | /* Reported by Andreas Bockhold <andreas@bockionline.de> */ |
| 443 | UNUSUAL_DEV( 0x04b0, 0x0405, 0x0100, 0x0100, |
| 444 | "NIKON", |
| 445 | "NIKON DSC D70", |
| 446 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 447 | US_FL_FIX_CAPACITY), |
| 448 | |
| 449 | /* Reported by Jamie Kitson <jamie@staberinde.fsnet.co.uk> */ |
| 450 | UNUSUAL_DEV( 0x04b0, 0x040d, 0x0100, 0x0100, |
| 451 | "NIKON", |
| 452 | "NIKON DSC D70s", |
| 453 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 454 | US_FL_FIX_CAPACITY), |
| 455 | |
Phil Dibowitz | 16eb345 | 2007-09-22 20:58:12 -0700 | [diff] [blame] | 456 | /* Reported by Graber and Mike Pagano <mpagano-kernel@mpagano.com> */ |
Mike Pagano | 034fec2 | 2007-11-01 10:53:43 -0700 | [diff] [blame] | 457 | UNUSUAL_DEV( 0x04b0, 0x040f, 0x0100, 0x0200, |
| 458 | "NIKON", |
| 459 | "NIKON DSC D200", |
| 460 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 461 | US_FL_FIX_CAPACITY), |
Phil Dibowitz | 16eb345 | 2007-09-22 20:58:12 -0700 | [diff] [blame] | 462 | |
Emil Larsson | 2ea547d2 | 2007-03-29 22:48:46 -0700 | [diff] [blame] | 463 | /* Reported by Emil Larsson <emil@swip.net> */ |
Dave Jones | b9a097f | 2008-07-14 13:28:34 -0400 | [diff] [blame] | 464 | UNUSUAL_DEV( 0x04b0, 0x0411, 0x0100, 0x0111, |
Emil Larsson | 2ea547d2 | 2007-03-29 22:48:46 -0700 | [diff] [blame] | 465 | "NIKON", |
| 466 | "NIKON DSC D80", |
| 467 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 468 | US_FL_FIX_CAPACITY), |
| 469 | |
Ortwin Glück | 9374b9f | 2007-09-06 00:06:26 +0200 | [diff] [blame] | 470 | /* Reported by Ortwin Glueck <odi@odi.ch> */ |
Dave Jones | b9a097f | 2008-07-14 13:28:34 -0400 | [diff] [blame] | 471 | UNUSUAL_DEV( 0x04b0, 0x0413, 0x0110, 0x0111, |
Ortwin Glück | 9374b9f | 2007-09-06 00:06:26 +0200 | [diff] [blame] | 472 | "NIKON", |
| 473 | "NIKON DSC D40", |
| 474 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 475 | US_FL_FIX_CAPACITY), |
| 476 | |
Alan Stern | 3046c6d | 2007-10-05 14:43:00 -0400 | [diff] [blame] | 477 | /* Reported by Paul Check <paul@openstreet.com> */ |
| 478 | UNUSUAL_DEV( 0x04b0, 0x0415, 0x0100, 0x0100, |
| 479 | "NIKON", |
| 480 | "NIKON DSC D2Xs", |
| 481 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 482 | US_FL_FIX_CAPACITY), |
| 483 | |
Ortwin Glück | d466a91 | 2007-10-11 17:29:43 +0200 | [diff] [blame] | 484 | /* Reported by Shan Destromp (shansan@gmail.com) */ |
| 485 | UNUSUAL_DEV( 0x04b0, 0x0417, 0x0100, 0x0100, |
| 486 | "NIKON", |
| 487 | "NIKON DSC D40X", |
| 488 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 489 | US_FL_FIX_CAPACITY), |
| 490 | |
Paul Ready | 0047ca0 | 2008-10-29 14:25:50 -0700 | [diff] [blame] | 491 | /* Reported by paul ready <lxtwin@homecall.co.uk> */ |
| 492 | UNUSUAL_DEV( 0x04b0, 0x0419, 0x0100, 0x0200, |
| 493 | "NIKON", |
| 494 | "NIKON DSC D300", |
| 495 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 496 | US_FL_FIX_CAPACITY), |
| 497 | |
Doug Maxey | 33abc04 | 2007-12-05 23:36:45 -0600 | [diff] [blame] | 498 | /* Reported by Doug Maxey (dwm@austin.ibm.com) */ |
| 499 | UNUSUAL_DEV( 0x04b3, 0x4001, 0x0110, 0x0110, |
| 500 | "IBM", |
| 501 | "IBM RSA2", |
| 502 | US_SC_DEVICE, US_PR_CB, NULL, |
| 503 | US_FL_MAX_SECTORS_MIN), |
| 504 | |
Phil Dibowitz | ed3e8fc | 2008-05-03 18:04:30 -0700 | [diff] [blame] | 505 | #ifdef CONFIG_USB_STORAGE_CYPRESS_ATACB |
matthieu castet | e72616f | 2008-06-16 19:49:06 +0200 | [diff] [blame] | 506 | /* CY7C68300 : support atacb */ |
Phil Dibowitz | ed3e8fc | 2008-05-03 18:04:30 -0700 | [diff] [blame] | 507 | UNUSUAL_DEV( 0x04b4, 0x6830, 0x0000, 0x9999, |
| 508 | "Cypress", |
| 509 | "Cypress AT2LP", |
Alan Stern | c7257bd | 2008-05-21 13:53:01 -0400 | [diff] [blame] | 510 | US_SC_CYP_ATACB, US_PR_DEVICE, NULL, |
Phil Dibowitz | ed3e8fc | 2008-05-03 18:04:30 -0700 | [diff] [blame] | 511 | 0), |
matthieu castet | e72616f | 2008-06-16 19:49:06 +0200 | [diff] [blame] | 512 | |
| 513 | /* CY7C68310 : support atacb and atacb2 */ |
| 514 | UNUSUAL_DEV( 0x04b4, 0x6831, 0x0000, 0x9999, |
| 515 | "Cypress", |
| 516 | "Cypress ISD-300LP", |
| 517 | US_SC_CYP_ATACB, US_PR_DEVICE, NULL, |
| 518 | 0), |
Phil Dibowitz | ed3e8fc | 2008-05-03 18:04:30 -0700 | [diff] [blame] | 519 | #endif |
| 520 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | /* Reported by Simon Levitt <simon@whattf.com> |
| 522 | * This entry needs Sub and Proto fields */ |
| 523 | UNUSUAL_DEV( 0x04b8, 0x0601, 0x0100, 0x0100, |
| 524 | "Epson", |
| 525 | "875DC Storage", |
| 526 | US_SC_SCSI, US_PR_CB, NULL, US_FL_FIX_INQUIRY), |
| 527 | |
| 528 | /* Reported by Khalid Aziz <khalid@gonehiking.org> |
| 529 | * This entry is needed because the device reports Sub=ff */ |
| 530 | UNUSUAL_DEV( 0x04b8, 0x0602, 0x0110, 0x0110, |
| 531 | "Epson", |
| 532 | "785EPX Storage", |
| 533 | US_SC_SCSI, US_PR_BULK, NULL, US_FL_SINGLE_LUN), |
| 534 | |
| 535 | /* Not sure who reported this originally but |
| 536 | * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN |
| 537 | * flag be added */ |
| 538 | UNUSUAL_DEV( 0x04cb, 0x0100, 0x0000, 0x2210, |
| 539 | "Fujifilm", |
| 540 | "FinePix 1400Zoom", |
| 541 | US_SC_UFI, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN), |
| 542 | |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 543 | /* Reported by Peter Wächtler <pwaechtler@loewe-komp.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | * The device needs the flags only. |
| 545 | */ |
| 546 | UNUSUAL_DEV( 0x04ce, 0x0002, 0x0074, 0x0074, |
| 547 | "ScanLogic", |
| 548 | "SL11R-IDE", |
| 549 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 550 | US_FL_FIX_INQUIRY), |
| 551 | |
| 552 | /* Reported by Kriston Fincher <kriston@airmail.net> |
| 553 | * Patch submitted by Sean Millichamp <sean@bruenor.org> |
| 554 | * This is to support the Panasonic PalmCam PV-SD4090 |
| 555 | * This entry is needed because the device reports Sub=ff |
| 556 | */ |
| 557 | UNUSUAL_DEV( 0x04da, 0x0901, 0x0100, 0x0200, |
| 558 | "Panasonic", |
| 559 | "LS-120 Camera", |
| 560 | US_SC_UFI, US_PR_DEVICE, NULL, 0), |
| 561 | |
| 562 | /* From Yukihiro Nakai, via zaitcev@yahoo.com. |
| 563 | * This is needed for CB instead of CBI */ |
| 564 | UNUSUAL_DEV( 0x04da, 0x0d05, 0x0000, 0x0000, |
| 565 | "Sharp CE-CW05", |
| 566 | "CD-R/RW Drive", |
| 567 | US_SC_8070, US_PR_CB, NULL, 0), |
| 568 | |
| 569 | /* Reported by Adriaan Penning <a.penning@luon.net> */ |
| 570 | UNUSUAL_DEV( 0x04da, 0x2372, 0x0000, 0x9999, |
| 571 | "Panasonic", |
| 572 | "DMC-LCx Camera", |
| 573 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 574 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), |
| 575 | |
Simeon Simeonov | dcab4ea | 2005-10-19 11:32:14 -0400 | [diff] [blame] | 576 | /* Reported by Simeon Simeonov <simeonov_2000@yahoo.com> */ |
| 577 | UNUSUAL_DEV( 0x04da, 0x2373, 0x0000, 0x9999, |
| 578 | "LEICA", |
| 579 | "D-LUX Camera", |
| 580 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 581 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), |
| 582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | /* Most of the following entries were developed with the help of |
| 584 | * Shuttle/SCM directly. |
| 585 | */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 586 | UNUSUAL_DEV( 0x04e6, 0x0001, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | "Matshita", |
| 588 | "LS-120", |
| 589 | US_SC_8020, US_PR_CB, NULL, 0), |
| 590 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 591 | UNUSUAL_DEV( 0x04e6, 0x0002, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | "Shuttle", |
| 593 | "eUSCSI Bridge", |
| 594 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_euscsi_init, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 595 | US_FL_SCM_MULT_TARG ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
| 597 | #ifdef CONFIG_USB_STORAGE_SDDR09 |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 598 | UNUSUAL_DEV( 0x04e6, 0x0003, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | "Sandisk", |
| 600 | "ImageMate SDDR09", |
Matthew Dharm | f5b8cb9 | 2005-12-04 21:57:51 -0800 | [diff] [blame] | 601 | US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init, |
| 602 | 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
| 604 | /* This entry is from Andries.Brouwer@cwi.nl */ |
| 605 | UNUSUAL_DEV( 0x04e6, 0x0005, 0x0100, 0x0208, |
| 606 | "SCM Microsystems", |
| 607 | "eUSB SmartMedia / CompactFlash Adapter", |
Matthew Dharm | f5b8cb9 | 2005-12-04 21:57:51 -0800 | [diff] [blame] | 608 | US_SC_SCSI, US_PR_DPCM_USB, usb_stor_sddr09_dpcm_init, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 609 | 0), |
Alan Stern | c20b15f | 2008-12-01 10:36:15 -0500 | [diff] [blame] | 610 | #else |
| 611 | UNUSUAL_DEV( 0x04e6, 0x0005, 0x0100, 0x0208, |
| 612 | "SCM Microsystems", |
| 613 | "eUSB CompactFlash Adapter", |
| 614 | US_SC_SCSI, US_PR_CB, NULL, |
| 615 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | #endif |
| 617 | |
| 618 | /* Reported by Markus Demleitner <msdemlei@cl.uni-heidelberg.de> */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 619 | UNUSUAL_DEV( 0x04e6, 0x0006, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | "SCM Microsystems Inc.", |
| 621 | "eUSB MMC Adapter", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 622 | US_SC_SCSI, US_PR_CB, NULL, |
| 623 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
| 625 | /* Reported by Daniel Nouri <dpunktnpunkt@web.de> */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 626 | UNUSUAL_DEV( 0x04e6, 0x0006, 0x0205, 0x0205, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | "Shuttle", |
| 628 | "eUSB MMC Adapter", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 629 | US_SC_SCSI, US_PR_DEVICE, NULL, |
| 630 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 632 | UNUSUAL_DEV( 0x04e6, 0x0007, 0x0100, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | "Sony", |
| 634 | "Hifd", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 635 | US_SC_SCSI, US_PR_CB, NULL, |
| 636 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 638 | UNUSUAL_DEV( 0x04e6, 0x0009, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | "Shuttle", |
| 640 | "eUSB ATA/ATAPI Adapter", |
| 641 | US_SC_8020, US_PR_CB, NULL, 0), |
| 642 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 643 | UNUSUAL_DEV( 0x04e6, 0x000a, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | "Shuttle", |
| 645 | "eUSB CompactFlash Adapter", |
| 646 | US_SC_8020, US_PR_CB, NULL, 0), |
| 647 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 648 | UNUSUAL_DEV( 0x04e6, 0x000B, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | "Shuttle", |
| 650 | "eUSCSI Bridge", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 651 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | US_FL_SCM_MULT_TARG ), |
| 653 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 654 | UNUSUAL_DEV( 0x04e6, 0x000C, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | "Shuttle", |
| 656 | "eUSCSI Bridge", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 657 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 658 | US_FL_SCM_MULT_TARG ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 660 | UNUSUAL_DEV( 0x04e6, 0x0101, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | "Shuttle", |
| 662 | "CD-RW Device", |
| 663 | US_SC_8020, US_PR_CB, NULL, 0), |
| 664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | #ifdef CONFIG_USB_STORAGE_USBAT |
| 666 | UNUSUAL_DEV( 0x04e6, 0x1010, 0x0000, 0x9999, |
Daniel Drake | b7b1e65 | 2005-09-30 12:49:36 +0100 | [diff] [blame] | 667 | "Shuttle/SCM", |
| 668 | "USBAT-02", |
Daniel Drake | f9347c5 | 2006-05-08 23:43:02 +0100 | [diff] [blame] | 669 | US_SC_SCSI, US_PR_USBAT, init_usbat_flash, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | US_FL_SINGLE_LUN), |
| 671 | #endif |
| 672 | |
Alan Stern | b28884c | 2008-04-28 10:26:13 -0400 | [diff] [blame] | 673 | /* Reported by Dmitry Khlystov <adminimus@gmail.com> */ |
| 674 | UNUSUAL_DEV( 0x04e8, 0x507c, 0x0220, 0x0220, |
| 675 | "Samsung", |
| 676 | "YP-U3", |
| 677 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 678 | US_FL_MAX_SECTORS_64), |
| 679 | |
Phil Dibowitz | ed3e8fc | 2008-05-03 18:04:30 -0700 | [diff] [blame] | 680 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. |
| 681 | * Device uses standards-violating 32-byte Bulk Command Block Wrappers and |
| 682 | * reports itself as "Proprietary SCSI Bulk." Cf. device entry 0x084d:0x0011. |
| 683 | */ |
| 684 | UNUSUAL_DEV( 0x04fc, 0x80c2, 0x0100, 0x0100, |
| 685 | "Kobian Mercury", |
| 686 | "Binocam DCB-132", |
| 687 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 688 | US_FL_BULK32), |
| 689 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | /* Reported by Bob Sass <rls@vectordb.com> -- only rev 1.33 tested */ |
| 691 | UNUSUAL_DEV( 0x050d, 0x0115, 0x0133, 0x0133, |
| 692 | "Belkin", |
| 693 | "USB SCSI Adaptor", |
| 694 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 695 | US_FL_SCM_MULT_TARG ), |
| 696 | |
| 697 | /* Iomega Clik! Drive |
| 698 | * Reported by David Chatenay <dchatenay@hotmail.com> |
| 699 | * The reason this is needed is not fully known. |
| 700 | */ |
| 701 | UNUSUAL_DEV( 0x0525, 0xa140, 0x0100, 0x0100, |
| 702 | "Iomega", |
| 703 | "USB Clik! 40", |
Phil Dibowitz | 2120638 | 2006-04-16 19:18:36 -0700 | [diff] [blame] | 704 | US_SC_8070, US_PR_DEVICE, NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | US_FL_FIX_INQUIRY ), |
| 706 | |
| 707 | /* Yakumo Mega Image 37 |
| 708 | * Submitted by Stephan Fuhrmann <atomenergie@t-online.de> */ |
| 709 | UNUSUAL_DEV( 0x052b, 0x1801, 0x0100, 0x0100, |
| 710 | "Tekom Technologies, Inc", |
| 711 | "300_CAMERA", |
| 712 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 713 | US_FL_IGNORE_RESIDUE ), |
| 714 | |
| 715 | /* Another Yakumo camera. |
| 716 | * Reported by Michele Alzetta <michele.alzetta@aliceposta.it> */ |
| 717 | UNUSUAL_DEV( 0x052b, 0x1804, 0x0100, 0x0100, |
| 718 | "Tekom Technologies, Inc", |
| 719 | "300_CAMERA", |
| 720 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 721 | US_FL_IGNORE_RESIDUE ), |
| 722 | |
| 723 | /* Reported by Iacopo Spalletti <avvisi@spalletti.it> */ |
| 724 | UNUSUAL_DEV( 0x052b, 0x1807, 0x0100, 0x0100, |
| 725 | "Tekom Technologies, Inc", |
| 726 | "300_CAMERA", |
| 727 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 728 | US_FL_IGNORE_RESIDUE ), |
| 729 | |
| 730 | /* Yakumo Mega Image 47 |
| 731 | * Reported by Bjoern Paetzel <kolrabi@kolrabi.de> */ |
| 732 | UNUSUAL_DEV( 0x052b, 0x1905, 0x0100, 0x0100, |
| 733 | "Tekom Technologies, Inc", |
| 734 | "400_CAMERA", |
| 735 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 736 | US_FL_IGNORE_RESIDUE ), |
| 737 | |
| 738 | /* Reported by Paul Ortyl <ortylp@3miasto.net> |
| 739 | * Note that it's similar to the device above, only different prodID */ |
| 740 | UNUSUAL_DEV( 0x052b, 0x1911, 0x0100, 0x0100, |
| 741 | "Tekom Technologies, Inc", |
| 742 | "400_CAMERA", |
| 743 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 744 | US_FL_IGNORE_RESIDUE ), |
| 745 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 746 | UNUSUAL_DEV( 0x054c, 0x0010, 0x0106, 0x0450, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | "Sony", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 748 | "DSC-S30/S70/S75/505V/F505/F707/F717/P8", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | US_SC_SCSI, US_PR_DEVICE, NULL, |
| 750 | US_FL_SINGLE_LUN | US_FL_NOT_LOCKABLE | US_FL_NO_WP_DETECT ), |
| 751 | |
Lars Jacob | 7e3bd12 | 2006-07-10 11:53:58 -0400 | [diff] [blame] | 752 | /* Submitted by Lars Jacob <jacob.lars@googlemail.com> |
| 753 | * This entry is needed because the device reports Sub=ff */ |
| 754 | UNUSUAL_DEV( 0x054c, 0x0010, 0x0500, 0x0610, |
Alexandre Duret-Lutz | ec7dc8d | 2005-12-26 23:04:24 -0800 | [diff] [blame] | 755 | "Sony", |
Lars Jacob | 7e3bd12 | 2006-07-10 11:53:58 -0400 | [diff] [blame] | 756 | "DSC-T1/T5/H5", |
Alexandre Duret-Lutz | ec7dc8d | 2005-12-26 23:04:24 -0800 | [diff] [blame] | 757 | US_SC_8070, US_PR_DEVICE, NULL, |
| 758 | US_FL_SINGLE_LUN ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
| 760 | |
| 761 | /* Reported by wim@geeks.nl */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 762 | UNUSUAL_DEV( 0x054c, 0x0025, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | "Sony", |
| 764 | "Memorystick NW-MS7", |
| 765 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 766 | US_FL_SINGLE_LUN ), |
| 767 | |
| 768 | #ifdef CONFIG_USB_STORAGE_ISD200 |
| 769 | UNUSUAL_DEV( 0x054c, 0x002b, 0x0100, 0x0110, |
| 770 | "Sony", |
| 771 | "Portable USB Harddrive V2", |
| 772 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 773 | 0 ), |
| 774 | #endif |
| 775 | |
| 776 | /* Submitted by Olaf Hering, <olh@suse.de> SuSE Bugzilla #49049 */ |
Luiz Fernando N. Capitulino | 20b2e28 | 2007-01-24 16:19:37 -0200 | [diff] [blame] | 777 | UNUSUAL_DEV( 0x054c, 0x002c, 0x0501, 0x2000, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | "Sony", |
| 779 | "USB Floppy Drive", |
| 780 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 781 | US_FL_SINGLE_LUN ), |
| 782 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 783 | UNUSUAL_DEV( 0x054c, 0x002d, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | "Sony", |
| 785 | "Memorystick MSAC-US1", |
| 786 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 787 | US_FL_SINGLE_LUN ), |
| 788 | |
| 789 | /* Submitted by Klaus Mueller <k.mueller@intershop.de> */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 790 | UNUSUAL_DEV( 0x054c, 0x002e, 0x0106, 0x0310, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | "Sony", |
| 792 | "Handycam", |
| 793 | US_SC_SCSI, US_PR_DEVICE, NULL, |
| 794 | US_FL_SINGLE_LUN ), |
| 795 | |
| 796 | /* Submitted by Rajesh Kumble Nayak <nayak@obs-nice.fr> */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 797 | UNUSUAL_DEV( 0x054c, 0x002e, 0x0500, 0x0500, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | "Sony", |
| 799 | "Handycam HC-85", |
| 800 | US_SC_UFI, US_PR_DEVICE, NULL, |
| 801 | US_FL_SINGLE_LUN ), |
| 802 | |
| 803 | UNUSUAL_DEV( 0x054c, 0x0032, 0x0000, 0x9999, |
| 804 | "Sony", |
| 805 | "Memorystick MSC-U01N", |
| 806 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 807 | US_FL_SINGLE_LUN ), |
| 808 | |
| 809 | /* Submitted by Michal Mlotek <mlotek@foobar.pl> */ |
| 810 | UNUSUAL_DEV( 0x054c, 0x0058, 0x0000, 0x9999, |
| 811 | "Sony", |
| 812 | "PEG N760c Memorystick", |
| 813 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 814 | US_FL_FIX_INQUIRY ), |
| 815 | |
| 816 | UNUSUAL_DEV( 0x054c, 0x0069, 0x0000, 0x9999, |
| 817 | "Sony", |
| 818 | "Memorystick MSC-U03", |
| 819 | US_SC_UFI, US_PR_CB, NULL, |
| 820 | US_FL_SINGLE_LUN ), |
| 821 | |
| 822 | /* Submitted by Nathan Babb <nathan@lexi.com> */ |
| 823 | UNUSUAL_DEV( 0x054c, 0x006d, 0x0000, 0x9999, |
| 824 | "Sony", |
| 825 | "PEG Mass Storage", |
| 826 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 827 | US_FL_FIX_INQUIRY ), |
| 828 | |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 829 | /* Submitted by Frank Engel <frankie@cse.unsw.edu.au> */ |
| 830 | UNUSUAL_DEV( 0x054c, 0x0099, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | "Sony", |
| 832 | "PEG Mass Storage", |
| 833 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 834 | US_FL_FIX_INQUIRY ), |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 835 | |
| 836 | /* Submitted by Mike Alborn <malborn@deandra.homeip.net> */ |
| 837 | UNUSUAL_DEV( 0x054c, 0x016a, 0x0000, 0x9999, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 838 | "Sony", |
| 839 | "PEG Mass Storage", |
| 840 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 841 | US_FL_FIX_INQUIRY ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | |
juergen.mell@t-online.de | 082fdd1 | 2006-08-28 13:53:53 -0700 | [diff] [blame] | 843 | /* floppy reports multiple luns */ |
| 844 | UNUSUAL_DEV( 0x055d, 0x2020, 0x0000, 0x0210, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 845 | "SAMSUNG", |
| 846 | "SFD-321U [FW 0C]", |
| 847 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 848 | US_FL_SINGLE_LUN ), |
juergen.mell@t-online.de | 082fdd1 | 2006-08-28 13:53:53 -0700 | [diff] [blame] | 849 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 851 | UNUSUAL_DEV( 0x057b, 0x0000, 0x0000, 0x0299, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | "Y-E Data", |
| 853 | "Flashbuster-U", |
| 854 | US_SC_DEVICE, US_PR_CB, NULL, |
| 855 | US_FL_SINGLE_LUN), |
| 856 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 857 | UNUSUAL_DEV( 0x057b, 0x0000, 0x0300, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | "Y-E Data", |
| 859 | "Flashbuster-U", |
| 860 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 861 | US_FL_SINGLE_LUN), |
| 862 | |
| 863 | /* Reported by Johann Cardon <johann.cardon@free.fr> |
| 864 | * This entry is needed only because the device reports |
| 865 | * bInterfaceClass = 0xff (vendor-specific) |
| 866 | */ |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 867 | UNUSUAL_DEV( 0x057b, 0x0022, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | "Y-E Data", |
| 869 | "Silicon Media R/W", |
| 870 | US_SC_DEVICE, US_PR_DEVICE, NULL, 0), |
| 871 | |
Matthew Dharm | e80b0fa | 2005-12-04 22:02:44 -0800 | [diff] [blame] | 872 | #ifdef CONFIG_USB_STORAGE_ALAUDA |
| 873 | UNUSUAL_DEV( 0x0584, 0x0008, 0x0102, 0x0102, |
| 874 | "Fujifilm", |
| 875 | "DPC-R1 (Alauda)", |
| 876 | US_SC_SCSI, US_PR_ALAUDA, init_alauda, 0 ), |
| 877 | #endif |
| 878 | |
Alan Stern | f1e8de0 | 2007-11-26 10:23:05 -0500 | [diff] [blame] | 879 | /* Reported by RTE <raszilki@yandex.ru> */ |
| 880 | UNUSUAL_DEV( 0x058f, 0x6387, 0x0141, 0x0141, |
| 881 | "JetFlash", |
| 882 | "TS1GJF2A/120", |
| 883 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 884 | US_FL_MAX_SECTORS_64 ), |
| 885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | /* Fabrizio Fellini <fello@libero.it> */ |
| 887 | UNUSUAL_DEV( 0x0595, 0x4343, 0x0000, 0x2210, |
| 888 | "Fujifilm", |
| 889 | "Digital Camera EX-20 DSC", |
| 890 | US_SC_8070, US_PR_DEVICE, NULL, 0 ), |
| 891 | |
Alan Stern | a462549 | 2008-02-13 10:45:28 -0500 | [diff] [blame] | 892 | /* Reported by Andre Welter <a.r.welter@gmx.de> |
| 893 | * This antique device predates the release of the Bulk-only Transport |
| 894 | * spec, and if it gets a Get-Max-LUN then it requires the host to do a |
| 895 | * Clear-Halt on the bulk endpoints. The SINGLE_LUN flag will prevent |
| 896 | * us from sending the request. |
| 897 | */ |
| 898 | UNUSUAL_DEV( 0x059b, 0x0001, 0x0100, 0x0100, |
| 899 | "Iomega", |
| 900 | "ZIP 100", |
| 901 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 902 | US_FL_SINGLE_LUN ), |
| 903 | |
Alan Stern | b97b196 | 2006-09-14 15:18:54 -0400 | [diff] [blame] | 904 | /* Reported by <Hendryk.Pfeiffer@gmx.de> */ |
| 905 | UNUSUAL_DEV( 0x059f, 0x0643, 0x0000, 0x0000, |
| 906 | "LaCie", |
| 907 | "DVD+-RW", |
| 908 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 909 | US_FL_GO_SLOW ), |
| 910 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | /* Submitted by Joel Bourquard <numlock@freesurf.ch> |
| 912 | * Some versions of this device need the SubClass and Protocol overrides |
| 913 | * while others don't. |
| 914 | */ |
| 915 | UNUSUAL_DEV( 0x05ab, 0x0060, 0x1104, 0x1110, |
| 916 | "In-System", |
| 917 | "PyroGate External CD-ROM Enclosure (FCD-523)", |
| 918 | US_SC_SCSI, US_PR_BULK, NULL, |
| 919 | US_FL_NEED_OVERRIDE ), |
| 920 | |
| 921 | #ifdef CONFIG_USB_STORAGE_ISD200 |
| 922 | UNUSUAL_DEV( 0x05ab, 0x0031, 0x0100, 0x0110, |
| 923 | "In-System", |
| 924 | "USB/IDE Bridge (ATA/ATAPI)", |
| 925 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 926 | 0 ), |
| 927 | |
| 928 | UNUSUAL_DEV( 0x05ab, 0x0301, 0x0100, 0x0110, |
| 929 | "In-System", |
| 930 | "Portable USB Harddrive V2", |
| 931 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 932 | 0 ), |
| 933 | |
| 934 | UNUSUAL_DEV( 0x05ab, 0x0351, 0x0100, 0x0110, |
| 935 | "In-System", |
| 936 | "Portable USB Harddrive V2", |
| 937 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 938 | 0 ), |
| 939 | |
| 940 | UNUSUAL_DEV( 0x05ab, 0x5701, 0x0100, 0x0110, |
| 941 | "In-System", |
| 942 | "USB Storage Adapter V2", |
| 943 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 944 | 0 ), |
| 945 | #endif |
| 946 | |
Sven Anderson | 35f4a0c | 2005-04-22 15:06:58 -0700 | [diff] [blame] | 947 | /* Submitted by Sven Anderson <sven-linux@anderson.de> |
| 948 | * There are at least four ProductIDs used for iPods, so I added 0x1202 and |
| 949 | * 0x1204. They just need the US_FL_FIX_CAPACITY. As the bcdDevice appears |
| 950 | * to change with firmware updates, I changed the range to maximum for all |
| 951 | * iPod entries. |
| 952 | */ |
| 953 | UNUSUAL_DEV( 0x05ac, 0x1202, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | "Apple", |
| 955 | "iPod", |
| 956 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 957 | US_FL_FIX_CAPACITY ), |
| 958 | |
Sven Anderson | 35f4a0c | 2005-04-22 15:06:58 -0700 | [diff] [blame] | 959 | /* Reported by Avi Kivity <avi@argo.co.il> */ |
| 960 | UNUSUAL_DEV( 0x05ac, 0x1203, 0x0000, 0x9999, |
| 961 | "Apple", |
| 962 | "iPod", |
| 963 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 964 | US_FL_FIX_CAPACITY ), |
| 965 | |
| 966 | UNUSUAL_DEV( 0x05ac, 0x1204, 0x0000, 0x9999, |
| 967 | "Apple", |
| 968 | "iPod", |
| 969 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Pete Zaitcev | ad1428c | 2006-12-31 13:43:26 -0800 | [diff] [blame] | 970 | US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), |
Sven Anderson | 35f4a0c | 2005-04-22 15:06:58 -0700 | [diff] [blame] | 971 | |
| 972 | UNUSUAL_DEV( 0x05ac, 0x1205, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | "Apple", |
| 974 | "iPod", |
| 975 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 976 | US_FL_FIX_CAPACITY ), |
| 977 | |
Phil Dibowitz | 880a9b5 | 2005-09-30 00:27:36 -0700 | [diff] [blame] | 978 | /* |
| 979 | * Reported by Tyson Vinson <lornoss@gmail.com> |
| 980 | * This particular productId is the iPod Nano |
| 981 | */ |
| 982 | UNUSUAL_DEV( 0x05ac, 0x120a, 0x0000, 0x9999, |
| 983 | "Apple", |
| 984 | "iPod", |
| 985 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 986 | US_FL_FIX_CAPACITY ), |
| 987 | |
Dan Williams | 281b064 | 2008-12-14 12:39:22 -0500 | [diff] [blame^] | 988 | /* Reported by Dan Williams <dcbw@redhat.com> |
| 989 | * Option N.V. mobile broadband modems |
| 990 | * Ignore driver CD mode and force into modem mode by default. |
| 991 | */ |
| 992 | |
| 993 | /* Globetrotter HSDPA; mass storage shows up as Qualcomm for vendor */ |
| 994 | UNUSUAL_DEV( 0x05c6, 0x1000, 0x0000, 0x9999, |
| 995 | "Option N.V.", |
| 996 | "Mass Storage", |
| 997 | US_SC_DEVICE, US_PR_DEVICE, option_ms_init, |
| 998 | 0), |
| 999 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | #ifdef CONFIG_USB_STORAGE_JUMPSHOT |
| 1001 | UNUSUAL_DEV( 0x05dc, 0x0001, 0x0000, 0x0001, |
| 1002 | "Lexar", |
| 1003 | "Jumpshot USB CF Reader", |
| 1004 | US_SC_SCSI, US_PR_JUMPSHOT, NULL, |
| 1005 | US_FL_NEED_OVERRIDE ), |
| 1006 | #endif |
| 1007 | |
| 1008 | /* Reported by Blake Matheny <bmatheny@purdue.edu> */ |
| 1009 | UNUSUAL_DEV( 0x05dc, 0xb002, 0x0000, 0x0113, |
| 1010 | "Lexar", |
| 1011 | "USB CF Reader", |
| 1012 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1013 | US_FL_FIX_INQUIRY ), |
| 1014 | |
| 1015 | /* The following two entries are for a Genesys USB to IDE |
| 1016 | * converter chip, but it changes its ProductId depending |
| 1017 | * on whether or not a disk or an optical device is enclosed |
| 1018 | * They were originally reported by Alexander Oltu |
| 1019 | * <alexander@all-2.com> and Peter Marks <peter.marks@turner.com> |
| 1020 | * respectively. |
Phil Dibowitz | 883d989 | 2006-06-24 17:27:10 -0700 | [diff] [blame] | 1021 | * |
| 1022 | * US_FL_GO_SLOW and US_FL_MAX_SECTORS_64 added by Phil Dibowitz |
| 1023 | * <phil@ipom.com> as these flags were made and hard-coded |
| 1024 | * special-cases were pulled from scsiglue.c. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | */ |
| 1026 | UNUSUAL_DEV( 0x05e3, 0x0701, 0x0000, 0xffff, |
| 1027 | "Genesys Logic", |
| 1028 | "USB to IDE Optical", |
| 1029 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Phil Dibowitz | 883d989 | 2006-06-24 17:27:10 -0700 | [diff] [blame] | 1030 | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | |
| 1032 | UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0xffff, |
| 1033 | "Genesys Logic", |
| 1034 | "USB to IDE Disk", |
| 1035 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Phil Dibowitz | 883d989 | 2006-06-24 17:27:10 -0700 | [diff] [blame] | 1036 | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 1038 | /* Reported by Ben Efros <ben@pc-doctor.com> */ |
| 1039 | UNUSUAL_DEV( 0x05e3, 0x0723, 0x9451, 0x9451, |
| 1040 | "Genesys Logic", |
| 1041 | "USB to SATA", |
| 1042 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1043 | US_FL_SANE_SENSE ), |
| 1044 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | /* Reported by Hanno Boeck <hanno@gmx.de> |
| 1046 | * Taken from the Lycoris Kernel */ |
| 1047 | UNUSUAL_DEV( 0x0636, 0x0003, 0x0000, 0x9999, |
| 1048 | "Vivitar", |
| 1049 | "Vivicam 35Xx", |
| 1050 | US_SC_SCSI, US_PR_BULK, NULL, |
| 1051 | US_FL_FIX_INQUIRY ), |
| 1052 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1053 | UNUSUAL_DEV( 0x0644, 0x0000, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | "TEAC", |
| 1055 | "Floppy Drive", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1056 | US_SC_UFI, US_PR_CB, NULL, 0 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | |
| 1058 | #ifdef CONFIG_USB_STORAGE_SDDR09 |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1059 | UNUSUAL_DEV( 0x066b, 0x0105, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | "Olympus", |
| 1061 | "Camedia MAUSB-2", |
Matthew Dharm | f5b8cb9 | 2005-12-04 21:57:51 -0800 | [diff] [blame] | 1062 | US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init, |
| 1063 | 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | #endif |
| 1065 | |
| 1066 | /* Reported by Darsen Lu <darsen@micro.ee.nthu.edu.tw> */ |
| 1067 | UNUSUAL_DEV( 0x066f, 0x8000, 0x0001, 0x0001, |
| 1068 | "SigmaTel", |
| 1069 | "USBMSC Audio Player", |
| 1070 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1071 | US_FL_FIX_CAPACITY ), |
| 1072 | |
| 1073 | /* Reported by Richard -=[]=- <micro_flyer@hotmail.com> */ |
| 1074 | UNUSUAL_DEV( 0x067b, 0x2507, 0x0100, 0x0100, |
| 1075 | "Prolific Technology Inc.", |
| 1076 | "Mass Storage Device", |
| 1077 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1078 | US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), |
| 1079 | |
| 1080 | /* Reported by Alex Butcher <alex.butcher@assursys.co.uk> */ |
Oliver Neukum | b163639 | 2008-12-12 11:01:45 +0100 | [diff] [blame] | 1081 | UNUSUAL_DEV( 0x067b, 0x3507, 0x0001, 0x0101, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | "Prolific Technology Inc.", |
| 1083 | "ATAPI-6 Bridge Controller", |
| 1084 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1085 | US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), |
| 1086 | |
| 1087 | /* Submitted by Benny Sjostrand <benny@hostmobility.com> */ |
| 1088 | UNUSUAL_DEV( 0x0686, 0x4011, 0x0001, 0x0001, |
| 1089 | "Minolta", |
| 1090 | "Dimage F300", |
| 1091 | US_SC_SCSI, US_PR_BULK, NULL, 0 ), |
| 1092 | |
| 1093 | /* Reported by Miguel A. Fosas <amn3s1a@ono.com> */ |
| 1094 | UNUSUAL_DEV( 0x0686, 0x4017, 0x0001, 0x0001, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1095 | "Minolta", |
| 1096 | "DIMAGE E223", |
| 1097 | US_SC_SCSI, US_PR_DEVICE, NULL, 0 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | UNUSUAL_DEV( 0x0693, 0x0005, 0x0100, 0x0100, |
| 1100 | "Hagiwara", |
| 1101 | "Flashgate", |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1102 | US_SC_SCSI, US_PR_BULK, NULL, 0 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | |
Alan Stern | 754501b | 2006-02-23 10:19:25 -0500 | [diff] [blame] | 1104 | /* Reported by David Hamilton <niftimusmaximus@lycos.com> */ |
| 1105 | UNUSUAL_DEV( 0x069b, 0x3004, 0x0001, 0x0001, |
| 1106 | "Thomson Multimedia Inc.", |
| 1107 | "RCA RD1080 MP3 Player", |
| 1108 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1109 | US_FL_FIX_CAPACITY ), |
| 1110 | |
Alan Stern | fe1926a | 2008-09-04 09:56:35 -0400 | [diff] [blame] | 1111 | /* Reported by Adrian Pilchowiec <adi1981@epf.pl> */ |
| 1112 | UNUSUAL_DEV( 0x071b, 0x3203, 0x0000, 0x0000, |
| 1113 | "RockChip", |
| 1114 | "MP3", |
| 1115 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1116 | US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64), |
| 1117 | |
Massimiliano Ghilardi | c476656 | 2007-09-04 22:53:43 +0200 | [diff] [blame] | 1118 | /* Reported by Massimiliano Ghilardi <massimiliano.ghilardi@gmail.com> |
| 1119 | * This USB MP3/AVI player device fails and disconnects if more than 128 |
| 1120 | * sectors (64kB) are read/written in a single command, and may be present |
| 1121 | * at least in the following products: |
| 1122 | * "Magnex Digital Video Panel DVP 1800" |
| 1123 | * "MP4 AIGO 4GB SLOT SD" |
| 1124 | * "Teclast TL-C260 MP3" |
| 1125 | * "i.Meizu PMP MP3/MP4" |
| 1126 | * "Speed MV8 MP4 Audio Player" |
| 1127 | */ |
| 1128 | UNUSUAL_DEV( 0x071b, 0x3203, 0x0100, 0x0100, |
| 1129 | "RockChip", |
| 1130 | "ROCK MP3", |
| 1131 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1132 | US_FL_MAX_SECTORS_64), |
| 1133 | |
Olivier Blondeau | f430c40 | 2006-04-16 19:19:25 -0700 | [diff] [blame] | 1134 | /* Reported by Olivier Blondeau <zeitoun@gmail.com> */ |
| 1135 | UNUSUAL_DEV( 0x0727, 0x0306, 0x0100, 0x0100, |
| 1136 | "ATMEL", |
| 1137 | "SND1 Storage", |
| 1138 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1139 | US_FL_IGNORE_RESIDUE), |
| 1140 | |
Phil Dibowitz | 1e7a5a8 | 2006-03-05 21:36:51 -0800 | [diff] [blame] | 1141 | /* Submitted by Roman Hodek <roman@hodek.net> */ |
| 1142 | UNUSUAL_DEV( 0x0781, 0x0001, 0x0200, 0x0200, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | "Sandisk", |
| 1144 | "ImageMate SDDR-05a", |
| 1145 | US_SC_SCSI, US_PR_CB, NULL, |
| 1146 | US_FL_SINGLE_LUN ), |
| 1147 | |
Phil Dibowitz | 1e7a5a8 | 2006-03-05 21:36:51 -0800 | [diff] [blame] | 1148 | UNUSUAL_DEV( 0x0781, 0x0002, 0x0009, 0x0009, |
| 1149 | "SanDisk Corporation", |
| 1150 | "ImageMate CompactFlash USB", |
| 1151 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1152 | US_FL_FIX_CAPACITY ), |
| 1153 | |
Daniel Drake | 094ec60 | 2005-09-30 12:58:13 +0100 | [diff] [blame] | 1154 | #ifdef CONFIG_USB_STORAGE_USBAT |
| 1155 | UNUSUAL_DEV( 0x0781, 0x0005, 0x0005, 0x0005, |
| 1156 | "Sandisk", |
| 1157 | "ImageMate SDDR-05b", |
Peter Chubb | bdcfd9e | 2006-05-02 18:29:34 +0100 | [diff] [blame] | 1158 | US_SC_SCSI, US_PR_USBAT, init_usbat_flash, |
Daniel Drake | 094ec60 | 2005-09-30 12:58:13 +0100 | [diff] [blame] | 1159 | US_FL_SINGLE_LUN ), |
| 1160 | #endif |
| 1161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | UNUSUAL_DEV( 0x0781, 0x0100, 0x0100, 0x0100, |
| 1163 | "Sandisk", |
| 1164 | "ImageMate SDDR-12", |
| 1165 | US_SC_SCSI, US_PR_CB, NULL, |
| 1166 | US_FL_SINGLE_LUN ), |
| 1167 | |
| 1168 | #ifdef CONFIG_USB_STORAGE_SDDR09 |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1169 | UNUSUAL_DEV( 0x0781, 0x0200, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | "Sandisk", |
| 1171 | "ImageMate SDDR-09", |
Matthew Dharm | f5b8cb9 | 2005-12-04 21:57:51 -0800 | [diff] [blame] | 1172 | US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init, |
| 1173 | 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | #endif |
| 1175 | |
| 1176 | #ifdef CONFIG_USB_STORAGE_FREECOM |
| 1177 | UNUSUAL_DEV( 0x07ab, 0xfc01, 0x0000, 0x9999, |
| 1178 | "Freecom", |
| 1179 | "USB-IDE", |
| 1180 | US_SC_QIC, US_PR_FREECOM, freecom_init, 0), |
| 1181 | #endif |
| 1182 | |
| 1183 | /* Reported by Eero Volotinen <eero@ping-viini.org> */ |
Phil Dibowitz | e527832 | 2005-10-23 23:52:39 -0700 | [diff] [blame] | 1184 | UNUSUAL_DEV( 0x07ab, 0xfccd, 0x0000, 0x9999, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | "Freecom Technologies", |
| 1186 | "FHD-Classic", |
| 1187 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1188 | US_FL_FIX_CAPACITY), |
| 1189 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1190 | UNUSUAL_DEV( 0x07af, 0x0004, 0x0100, 0x0133, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | "Microtech", |
| 1192 | "USB-SCSI-DB25", |
| 1193 | US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, |
| 1194 | US_FL_SCM_MULT_TARG ), |
| 1195 | |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1196 | UNUSUAL_DEV( 0x07af, 0x0005, 0x0100, 0x0100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | "Microtech", |
| 1198 | "USB-SCSI-HD50", |
Phil Dibowitz | e8116e8 | 2005-06-22 22:47:13 -0700 | [diff] [blame] | 1199 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_euscsi_init, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1200 | US_FL_SCM_MULT_TARG ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | |
Alan Stern | c20b15f | 2008-12-01 10:36:15 -0500 | [diff] [blame] | 1202 | #ifdef CONFIG_USB_STORAGE_SDDR09 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | UNUSUAL_DEV( 0x07af, 0x0006, 0x0100, 0x0100, |
| 1204 | "Microtech", |
| 1205 | "CameraMate (DPCM_USB)", |
| 1206 | US_SC_SCSI, US_PR_DPCM_USB, NULL, 0 ), |
Alan Stern | c20b15f | 2008-12-01 10:36:15 -0500 | [diff] [blame] | 1207 | #else |
| 1208 | UNUSUAL_DEV( 0x07af, 0x0006, 0x0100, 0x0100, |
| 1209 | "Microtech", |
| 1210 | "CameraMate", |
| 1211 | US_SC_SCSI, US_PR_CB, NULL, |
| 1212 | US_FL_SINGLE_LUN ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | #endif |
| 1214 | |
Matthew Dharm | e80b0fa | 2005-12-04 22:02:44 -0800 | [diff] [blame] | 1215 | #ifdef CONFIG_USB_STORAGE_ALAUDA |
| 1216 | UNUSUAL_DEV( 0x07b4, 0x010a, 0x0102, 0x0102, |
| 1217 | "Olympus", |
| 1218 | "MAUSB-10 (Alauda)", |
| 1219 | US_SC_SCSI, US_PR_ALAUDA, init_alauda, 0 ), |
| 1220 | #endif |
| 1221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | #ifdef CONFIG_USB_STORAGE_DATAFAB |
| 1223 | UNUSUAL_DEV( 0x07c4, 0xa000, 0x0000, 0x0015, |
| 1224 | "Datafab", |
| 1225 | "MDCFE-B USB CF Reader", |
| 1226 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1227 | 0 ), |
| 1228 | |
| 1229 | /* |
| 1230 | * The following Datafab-based devices may or may not work |
| 1231 | * using the current driver...the 0xffff is arbitrary since I |
| 1232 | * don't know what device versions exist for these guys. |
| 1233 | * |
| 1234 | * The 0xa003 and 0xa004 devices in particular I'm curious about. |
| 1235 | * I'm told they exist but so far nobody has come forward to say that |
| 1236 | * they work with this driver. Given the success we've had getting |
| 1237 | * other Datafab-based cards operational with this driver, I've decided |
| 1238 | * to leave these two devices in the list. |
| 1239 | */ |
| 1240 | UNUSUAL_DEV( 0x07c4, 0xa001, 0x0000, 0xffff, |
| 1241 | "SIIG/Datafab", |
| 1242 | "SIIG/Datafab Memory Stick+CF Reader/Writer", |
| 1243 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1244 | 0 ), |
| 1245 | |
| 1246 | /* Reported by Josef Reisinger <josef.reisinger@netcologne.de> */ |
| 1247 | UNUSUAL_DEV( 0x07c4, 0xa002, 0x0000, 0xffff, |
| 1248 | "Datafab/Unknown", |
| 1249 | "MD2/MD3 Disk enclosure", |
| 1250 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1251 | US_FL_SINGLE_LUN ), |
| 1252 | |
| 1253 | UNUSUAL_DEV( 0x07c4, 0xa003, 0x0000, 0xffff, |
| 1254 | "Datafab/Unknown", |
| 1255 | "Datafab-based Reader", |
| 1256 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1257 | 0 ), |
| 1258 | |
| 1259 | UNUSUAL_DEV( 0x07c4, 0xa004, 0x0000, 0xffff, |
| 1260 | "Datafab/Unknown", |
| 1261 | "Datafab-based Reader", |
| 1262 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1263 | 0 ), |
| 1264 | |
| 1265 | UNUSUAL_DEV( 0x07c4, 0xa005, 0x0000, 0xffff, |
| 1266 | "PNY/Datafab", |
| 1267 | "PNY/Datafab CF+SM Reader", |
| 1268 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1269 | 0 ), |
| 1270 | |
| 1271 | UNUSUAL_DEV( 0x07c4, 0xa006, 0x0000, 0xffff, |
| 1272 | "Simple Tech/Datafab", |
| 1273 | "Simple Tech/Datafab CF+SM Reader", |
| 1274 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1275 | 0 ), |
| 1276 | #endif |
| 1277 | |
| 1278 | #ifdef CONFIG_USB_STORAGE_SDDR55 |
| 1279 | /* Contributed by Peter Waechtler */ |
| 1280 | UNUSUAL_DEV( 0x07c4, 0xa103, 0x0000, 0x9999, |
| 1281 | "Datafab", |
| 1282 | "MDSM-B reader", |
| 1283 | US_SC_SCSI, US_PR_SDDR55, NULL, |
| 1284 | US_FL_FIX_INQUIRY ), |
| 1285 | #endif |
| 1286 | |
| 1287 | #ifdef CONFIG_USB_STORAGE_DATAFAB |
| 1288 | /* Submitted by Olaf Hering <olh@suse.de> */ |
| 1289 | UNUSUAL_DEV( 0x07c4, 0xa109, 0x0000, 0xffff, |
| 1290 | "Datafab Systems, Inc.", |
| 1291 | "USB to CF + SM Combo (LC1)", |
| 1292 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1293 | 0 ), |
| 1294 | #endif |
| 1295 | #ifdef CONFIG_USB_STORAGE_SDDR55 |
| 1296 | /* SM part - aeb <Andries.Brouwer@cwi.nl> */ |
| 1297 | UNUSUAL_DEV( 0x07c4, 0xa109, 0x0000, 0xffff, |
| 1298 | "Datafab Systems, Inc.", |
| 1299 | "USB to CF + SM Combo (LC1)", |
| 1300 | US_SC_SCSI, US_PR_SDDR55, NULL, |
| 1301 | US_FL_SINGLE_LUN ), |
| 1302 | #endif |
| 1303 | |
felix@derklecks.de | d6427cf | 2005-04-18 17:39:28 -0700 | [diff] [blame] | 1304 | #ifdef CONFIG_USB_STORAGE_DATAFAB |
| 1305 | /* Reported by Felix Moeller <felix@derklecks.de> |
| 1306 | * in Germany this is sold by Hama with the productnumber 46952 |
| 1307 | * as "DualSlot CompactFlash(TM) & MStick Drive USB" |
| 1308 | */ |
| 1309 | UNUSUAL_DEV( 0x07c4, 0xa10b, 0x0000, 0xffff, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1310 | "DataFab Systems Inc.", |
| 1311 | "USB CF+MS", |
| 1312 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1313 | 0 ), |
felix@derklecks.de | d6427cf | 2005-04-18 17:39:28 -0700 | [diff] [blame] | 1314 | |
| 1315 | #endif |
| 1316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | /* Datafab KECF-USB / Sagatek DCS-CF / Simpletech Flashlink UCF-100 |
| 1318 | * Only revision 1.13 tested (same for all of the above devices, |
| 1319 | * based on the Datafab DF-UG-07 chip). Needed for US_FL_FIX_INQUIRY. |
| 1320 | * Submitted by Marek Michalkiewicz <marekm@amelek.gda.pl>. |
| 1321 | * See also http://martin.wilck.bei.t-online.de/#kecf . |
| 1322 | */ |
| 1323 | UNUSUAL_DEV( 0x07c4, 0xa400, 0x0000, 0xffff, |
| 1324 | "Datafab", |
| 1325 | "KECF-USB", |
| 1326 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1327 | US_FL_FIX_INQUIRY ), |
| 1328 | |
Alan Stern | 368ee64 | 2008-07-21 10:08:28 -0400 | [diff] [blame] | 1329 | /* Reported by Rauch Wolke <rauchwolke@gmx.net> */ |
| 1330 | UNUSUAL_DEV( 0x07c4, 0xa4a5, 0x0000, 0xffff, |
| 1331 | "Simple Tech/Datafab", |
| 1332 | "CF+SM Reader", |
| 1333 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1334 | US_FL_IGNORE_RESIDUE ), |
| 1335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | /* Casio QV 2x00/3x00/4000/8000 digital still cameras are not conformant |
| 1337 | * to the USB storage specification in two ways: |
| 1338 | * - They tell us they are using transport protocol CBI. In reality they |
| 1339 | * are using transport protocol CB. |
| 1340 | * - They don't like the INQUIRY command. So we must handle this command |
| 1341 | * of the SCSI layer ourselves. |
| 1342 | * - Some cameras with idProduct=0x1001 and bcdDevice=0x1000 have |
| 1343 | * bInterfaceProtocol=0x00 (US_PR_CBI) while others have 0x01 (US_PR_CB). |
| 1344 | * So don't remove the US_PR_CB override! |
| 1345 | * - Cameras with bcdDevice=0x9009 require the US_SC_8070 override. |
| 1346 | */ |
| 1347 | UNUSUAL_DEV( 0x07cf, 0x1001, 0x1000, 0x9999, |
| 1348 | "Casio", |
| 1349 | "QV DigitalCamera", |
| 1350 | US_SC_8070, US_PR_CB, NULL, |
| 1351 | US_FL_NEED_OVERRIDE | US_FL_FIX_INQUIRY ), |
| 1352 | |
| 1353 | /* Submitted by Hartmut Wahl <hwahl@hwahl.de>*/ |
| 1354 | UNUSUAL_DEV( 0x0839, 0x000a, 0x0001, 0x0001, |
| 1355 | "Samsung", |
| 1356 | "Digimax 410", |
| 1357 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1358 | US_FL_FIX_INQUIRY), |
| 1359 | |
Alan Stern | 8010e06 | 2008-11-04 11:33:35 -0500 | [diff] [blame] | 1360 | /* Reported by Luciano Rocha <luciano@eurotux.com> */ |
| 1361 | UNUSUAL_DEV( 0x0840, 0x0082, 0x0001, 0x0001, |
| 1362 | "Argosy", |
| 1363 | "Storage", |
| 1364 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1365 | US_FL_FIX_CAPACITY), |
| 1366 | |
Nguyen Anh Quynh | e2673b2 | 2008-12-11 15:04:11 -0800 | [diff] [blame] | 1367 | /* Reported and patched by Nguyen Anh Quynh <aquynh@gmail.com> */ |
| 1368 | UNUSUAL_DEV( 0x0840, 0x0084, 0x0001, 0x0001, |
| 1369 | "Argosy", |
| 1370 | "Storage", |
| 1371 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1372 | US_FL_FIX_CAPACITY), |
| 1373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. |
| 1375 | * Flag will support Bulk devices which use a standards-violating 32-byte |
| 1376 | * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with |
| 1377 | * Grandtech GT892x chip, which request "Proprietary SCSI Bulk" support. |
| 1378 | */ |
| 1379 | |
| 1380 | UNUSUAL_DEV( 0x084d, 0x0011, 0x0110, 0x0110, |
| 1381 | "Grandtech", |
| 1382 | "DC2MEGA", |
| 1383 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1384 | US_FL_BULK32), |
| 1385 | |
Andrew Lunn | f768721 | 2008-04-24 19:36:39 +0200 | [diff] [blame] | 1386 | /* Andrew Lunn <andrew@lunn.ch> |
| 1387 | * PanDigital Digital Picture Frame. Does not like ALLOW_MEDIUM_REMOVAL |
| 1388 | * on LUN 4. |
| 1389 | * Note: Vend:Prod clash with "Ltd Maxell WS30 Slim Digital Camera" |
| 1390 | */ |
| 1391 | UNUSUAL_DEV( 0x0851, 0x1543, 0x0200, 0x0200, |
| 1392 | "PanDigital", |
| 1393 | "Photo Frame", |
| 1394 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1395 | US_FL_NOT_LOCKABLE), |
| 1396 | |
Alan Stern | ba3e93a | 2006-01-30 10:19:43 -0500 | [diff] [blame] | 1397 | /* Submitted by Jan De Luyck <lkml@kcore.org> */ |
| 1398 | UNUSUAL_DEV( 0x08bd, 0x1100, 0x0000, 0x0000, |
| 1399 | "CITIZEN", |
| 1400 | "X1DE-USB", |
| 1401 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1402 | US_FL_SINGLE_LUN), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | |
Dylan Taft | a7e555b | 2007-02-05 16:41:01 -0800 | [diff] [blame] | 1404 | /* Submitted by Dylan Taft <d13f00l@gmail.com> |
| 1405 | * US_FL_IGNORE_RESIDUE Needed |
| 1406 | */ |
| 1407 | UNUSUAL_DEV( 0x08ca, 0x3103, 0x0100, 0x0100, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1408 | "AIPTEK", |
| 1409 | "Aiptek USB Keychain MP3 Player", |
| 1410 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1411 | US_FL_IGNORE_RESIDUE), |
Dylan Taft | a7e555b | 2007-02-05 16:41:01 -0800 | [diff] [blame] | 1412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | /* Entry needed for flags. Moreover, all devices with this ID use |
| 1414 | * bulk-only transport, but _some_ falsely report Control/Bulk instead. |
| 1415 | * One example is "Trumpion Digital Research MYMP3". |
| 1416 | * Submitted by Bjoern Brill <brill(at)fs.math.uni-frankfurt.de> |
| 1417 | */ |
| 1418 | UNUSUAL_DEV( 0x090a, 0x1001, 0x0100, 0x0100, |
| 1419 | "Trumpion", |
| 1420 | "t33520 USB Flash Card Controller", |
| 1421 | US_SC_DEVICE, US_PR_BULK, NULL, |
| 1422 | US_FL_NEED_OVERRIDE ), |
| 1423 | |
Phil Dibowitz | 1724757 | 2005-05-21 00:45:55 -0700 | [diff] [blame] | 1424 | /* Reported by Filippo Bardelli <filibard@libero.it> |
| 1425 | * The device reports a subclass of RBC, which is wrong. |
| 1426 | */ |
| 1427 | UNUSUAL_DEV( 0x090a, 0x1050, 0x0100, 0x0100, |
| 1428 | "Trumpion Microelectronics, Inc.", |
| 1429 | "33520 USB Digital Voice Recorder", |
| 1430 | US_SC_UFI, US_PR_DEVICE, NULL, |
| 1431 | 0), |
| 1432 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | /* Trumpion Microelectronics MP3 player (felipe_alfaro@linuxmail.org) */ |
| 1434 | UNUSUAL_DEV( 0x090a, 0x1200, 0x0000, 0x9999, |
| 1435 | "Trumpion", |
| 1436 | "MP3 player", |
| 1437 | US_SC_RBC, US_PR_BULK, NULL, |
| 1438 | 0 ), |
| 1439 | |
| 1440 | /* aeb */ |
| 1441 | UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff, |
| 1442 | "Feiya", |
| 1443 | "5-in-1 Card Reader", |
| 1444 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1445 | US_FL_FIX_CAPACITY ), |
| 1446 | |
| 1447 | /* This Pentax still camera is not conformant |
| 1448 | * to the USB storage specification: - |
| 1449 | * - It does not like the INQUIRY command. So we must handle this command |
| 1450 | * of the SCSI layer ourselves. |
| 1451 | * Tested on Rev. 10.00 (0x1000) |
| 1452 | * Submitted by James Courtier-Dutton <James@superbug.demon.co.uk> |
| 1453 | */ |
| 1454 | UNUSUAL_DEV( 0x0a17, 0x0004, 0x1000, 0x1000, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1455 | "Pentax", |
| 1456 | "Optio 2/3/400", |
| 1457 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1458 | US_FL_FIX_INQUIRY ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | |
| 1460 | |
| 1461 | /* Submitted by Per Winkvist <per.winkvist@uk.com> */ |
| 1462 | UNUSUAL_DEV( 0x0a17, 0x006, 0x0000, 0xffff, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1463 | "Pentax", |
| 1464 | "Optio S/S4", |
| 1465 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1466 | US_FL_FIX_INQUIRY ), |
Daniel Drake | 3c33242 | 2006-07-26 13:59:23 +0100 | [diff] [blame] | 1467 | |
Daniel Drake | e3f47f8 | 2008-12-10 23:28:25 +0200 | [diff] [blame] | 1468 | /* Reported by Jaak Ristioja <Ristioja@gmail.com> */ |
| 1469 | UNUSUAL_DEV( 0x0a17, 0x006e, 0x0100, 0x0100, |
| 1470 | "Pentax", |
| 1471 | "K10D", |
| 1472 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1473 | US_FL_FIX_CAPACITY ), |
| 1474 | |
Ben Collins | 67fa106 | 2007-05-26 03:06:32 -0700 | [diff] [blame] | 1475 | /* These are virtual windows driver CDs, which the zd1211rw driver |
| 1476 | * automatically converts into WLAN devices. */ |
Daniel Drake | 3c33242 | 2006-07-26 13:59:23 +0100 | [diff] [blame] | 1477 | UNUSUAL_DEV( 0x0ace, 0x2011, 0x0101, 0x0101, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1478 | "ZyXEL", |
| 1479 | "G-220F USB-WLAN Install", |
| 1480 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1481 | US_FL_IGNORE_DEVICE ), |
Daniel Drake | 3c33242 | 2006-07-26 13:59:23 +0100 | [diff] [blame] | 1482 | |
Matthew Davidson | 64902cb | 2007-05-01 01:15:01 +0100 | [diff] [blame] | 1483 | UNUSUAL_DEV( 0x0ace, 0x20ff, 0x0101, 0x0101, |
| 1484 | "SiteCom", |
| 1485 | "WL-117 USB-WLAN Install", |
| 1486 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1487 | US_FL_IGNORE_DEVICE ), |
| 1488 | |
Dan Williams | 281b064 | 2008-12-14 12:39:22 -0500 | [diff] [blame^] | 1489 | /* Reported by Dan Williams <dcbw@redhat.com> |
| 1490 | * Option N.V. mobile broadband modems |
| 1491 | * Ignore driver CD mode and force into modem mode by default. |
| 1492 | */ |
| 1493 | |
| 1494 | /* iCON 225 */ |
| 1495 | UNUSUAL_DEV( 0x0af0, 0x6971, 0x0000, 0x9999, |
| 1496 | "Option N.V.", |
| 1497 | "Mass Storage", |
| 1498 | US_SC_DEVICE, US_PR_DEVICE, option_ms_init, |
| 1499 | 0), |
| 1500 | |
Filip Aben | e7c6f80 | 2008-05-08 10:48:12 -0700 | [diff] [blame] | 1501 | /* Reported by F. Aben <f.aben@option.com> |
| 1502 | * This device (wrongly) has a vendor-specific device descriptor. |
| 1503 | * The entry is needed so usb-storage can bind to it's mass-storage |
| 1504 | * interface as an interface driver */ |
| 1505 | UNUSUAL_DEV( 0x0af0, 0x7401, 0x0000, 0x0000, |
| 1506 | "Option", |
| 1507 | "GI 0401 SD-Card", |
| 1508 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1509 | 0 ), |
| 1510 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 1511 | /* Reported by Ben Efros <ben@pc-doctor.com> */ |
| 1512 | UNUSUAL_DEV( 0x0bc2, 0x3010, 0x0000, 0x0000, |
| 1513 | "Seagate", |
| 1514 | "FreeAgent Pro", |
| 1515 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1516 | US_FL_SANE_SENSE ), |
| 1517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | #ifdef CONFIG_USB_STORAGE_ISD200 |
| 1519 | UNUSUAL_DEV( 0x0bf6, 0xa001, 0x0100, 0x0110, |
| 1520 | "ATI", |
| 1521 | "USB Cable 205", |
| 1522 | US_SC_ISD200, US_PR_BULK, isd200_Initialization, |
| 1523 | 0 ), |
| 1524 | #endif |
| 1525 | |
| 1526 | #ifdef CONFIG_USB_STORAGE_DATAFAB |
| 1527 | UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1528 | "Acomdata", |
| 1529 | "CF", |
| 1530 | US_SC_SCSI, US_PR_DATAFAB, NULL, |
| 1531 | US_FL_SINGLE_LUN ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | #endif |
| 1533 | #ifdef CONFIG_USB_STORAGE_SDDR55 |
| 1534 | UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff, |
S.Caglar Onur | c0e0c19 | 2007-07-04 13:52:47 -0700 | [diff] [blame] | 1535 | "Acomdata", |
| 1536 | "SM", |
| 1537 | US_SC_SCSI, US_PR_SDDR55, NULL, |
| 1538 | US_FL_SINGLE_LUN ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | #endif |
| 1540 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 1541 | UNUSUAL_DEV( 0x0d49, 0x7310, 0x0000, 0x9999, |
| 1542 | "Maxtor", |
| 1543 | "USB to SATA", |
| 1544 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1545 | US_FL_SANE_SENSE), |
| 1546 | |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 1547 | /* |
| 1548 | * Pete Zaitcev <zaitcev@yahoo.com>, bz#164688. |
| 1549 | * The device blatantly ignores LUN and returns 1 in GetMaxLUN. |
| 1550 | */ |
| 1551 | UNUSUAL_DEV( 0x0c45, 0x1060, 0x0100, 0x0100, |
| 1552 | "Unknown", |
| 1553 | "Unknown", |
| 1554 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1555 | US_FL_SINGLE_LUN ), |
| 1556 | |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 1557 | /* Submitted by: Nick Sillik <n.sillik@temple.edu> |
| 1558 | * Needed for OneTouch extension to usb-storage |
| 1559 | * |
| 1560 | */ |
| 1561 | #ifdef CONFIG_USB_STORAGE_ONETOUCH |
Antti Andreimann | 9465663 | 2005-11-17 09:47:53 -0800 | [diff] [blame] | 1562 | UNUSUAL_DEV( 0x0d49, 0x7000, 0x0000, 0x9999, |
| 1563 | "Maxtor", |
| 1564 | "OneTouch External Harddrive", |
| 1565 | US_SC_DEVICE, US_PR_DEVICE, onetouch_connect_input, |
| 1566 | 0), |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 1567 | UNUSUAL_DEV( 0x0d49, 0x7010, 0x0000, 0x9999, |
| 1568 | "Maxtor", |
| 1569 | "OneTouch External Harddrive", |
| 1570 | US_SC_DEVICE, US_PR_DEVICE, onetouch_connect_input, |
| 1571 | 0), |
| 1572 | #endif |
| 1573 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | /* Submitted by Joris Struyve <joris@struyve.be> */ |
| 1575 | UNUSUAL_DEV( 0x0d96, 0x410a, 0x0001, 0xffff, |
| 1576 | "Medion", |
| 1577 | "MD 7425", |
| 1578 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1579 | US_FL_FIX_INQUIRY), |
| 1580 | |
| 1581 | /* |
| 1582 | * Entry for Jenoptik JD 5200z3 |
| 1583 | * |
| 1584 | * email: car.busse@gmx.de |
| 1585 | */ |
| 1586 | UNUSUAL_DEV( 0x0d96, 0x5200, 0x0001, 0x0200, |
| 1587 | "Jenoptik", |
| 1588 | "JD 5200 z3", |
| 1589 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), |
| 1590 | |
Sergey Ovcharenko | 3b438e3 | 2008-12-17 19:28:06 +0300 | [diff] [blame] | 1591 | /* Reported by Jason Johnston <killean@shaw.ca> */ |
| 1592 | UNUSUAL_DEV( 0x0dc4, 0x0073, 0x0000, 0x0000, |
| 1593 | "Macpower Technology Co.LTD.", |
| 1594 | "USB 2.0 3.5\" DEVICE", |
| 1595 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1596 | US_FL_FIX_CAPACITY), |
| 1597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | /* Reported by Lubomir Blaha <tritol@trilogic.cz> |
| 1599 | * I _REALLY_ don't know what 3rd, 4th number and all defines mean, but this |
| 1600 | * works for me. Can anybody correct these values? (I able to test corrected |
| 1601 | * version.) |
| 1602 | */ |
| 1603 | UNUSUAL_DEV( 0x0dd8, 0x1060, 0x0000, 0xffff, |
| 1604 | "Netac", |
| 1605 | "USB-CF-Card", |
| 1606 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1607 | US_FL_FIX_INQUIRY ), |
| 1608 | |
Ben Collins | 67fa106 | 2007-05-26 03:06:32 -0700 | [diff] [blame] | 1609 | /* Reported by Edward Chapman (taken from linux-usb mailing list) |
| 1610 | Netac OnlyDisk Mini U2CV2 512MB USB 2.0 Flash Drive */ |
| 1611 | UNUSUAL_DEV( 0x0dd8, 0xd202, 0x0000, 0x9999, |
| 1612 | "Netac", |
| 1613 | "USB Flash Disk", |
| 1614 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1615 | US_FL_IGNORE_RESIDUE ), |
| 1616 | |
| 1617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | /* Patch by Stephan Walter <stephan.walter@epfl.ch> |
| 1619 | * I don't know why, but it works... */ |
| 1620 | UNUSUAL_DEV( 0x0dda, 0x0001, 0x0012, 0x0012, |
| 1621 | "WINWARD", |
| 1622 | "Music Disk", |
| 1623 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1624 | US_FL_IGNORE_RESIDUE ), |
| 1625 | |
| 1626 | /* Reported by Ian McConnell <ian at emit.demon.co.uk> */ |
| 1627 | UNUSUAL_DEV( 0x0dda, 0x0301, 0x0012, 0x0012, |
| 1628 | "PNP_MP3", |
| 1629 | "PNP_MP3 PLAYER", |
| 1630 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1631 | US_FL_IGNORE_RESIDUE ), |
| 1632 | |
Alan Stern | 982db2a | 2006-02-13 10:16:04 -0500 | [diff] [blame] | 1633 | /* Reported by Jim McCloskey <mcclosk@ucsc.edu> */ |
| 1634 | UNUSUAL_DEV( 0x0e21, 0x0520, 0x0100, 0x0100, |
| 1635 | "Cowon Systems", |
| 1636 | "iAUDIO M5", |
| 1637 | US_SC_DEVICE, US_PR_BULK, NULL, |
Phil Dibowitz | bc724b9 | 2006-10-19 00:11:17 -0700 | [diff] [blame] | 1638 | US_FL_NEED_OVERRIDE ), |
Alan Stern | 982db2a | 2006-02-13 10:16:04 -0500 | [diff] [blame] | 1639 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | /* Submitted by Antoine Mairesse <antoine.mairesse@free.fr> */ |
| 1641 | UNUSUAL_DEV( 0x0ed1, 0x6660, 0x0100, 0x0300, |
| 1642 | "USB", |
| 1643 | "Solid state disk", |
| 1644 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1645 | US_FL_FIX_INQUIRY ), |
| 1646 | |
| 1647 | /* Submitted by Daniel Drake <dsd@gentoo.org> |
| 1648 | * Reported by dayul on the Gentoo Forums */ |
| 1649 | UNUSUAL_DEV( 0x0ea0, 0x2168, 0x0110, 0x0110, |
| 1650 | "Ours Technology", |
| 1651 | "Flash Disk", |
| 1652 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1653 | US_FL_IGNORE_RESIDUE ), |
| 1654 | |
| 1655 | /* Reported by Rastislav Stanik <rs_kernel@yahoo.com> */ |
| 1656 | UNUSUAL_DEV( 0x0ea0, 0x6828, 0x0110, 0x0110, |
| 1657 | "USB", |
| 1658 | "Flash Disk", |
| 1659 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1660 | US_FL_IGNORE_RESIDUE ), |
| 1661 | |
Phil Dibowitz | 883d989 | 2006-06-24 17:27:10 -0700 | [diff] [blame] | 1662 | /* Reported by Benjamin Schiller <sbenni@gmx.de> |
| 1663 | * It is also sold by Easylite as DJ 20 */ |
| 1664 | UNUSUAL_DEV( 0x0ed1, 0x7636, 0x0103, 0x0103, |
| 1665 | "Typhoon", |
| 1666 | "My DJ 1820", |
| 1667 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1668 | US_FL_IGNORE_RESIDUE | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64), |
| 1669 | |
Robert Spitzenpfeil | 4e58407 | 2008-02-20 12:11:22 -0500 | [diff] [blame] | 1670 | /* Patch by Leonid Petrov mail at lpetrov.net |
| 1671 | * Reported by Robert Spitzenpfeil <robert@spitzenpfeil.org> |
| 1672 | * http://www.qbik.ch/usb/devices/showdev.php?id=1705 |
| 1673 | * Updated to 103 device by MJ Ray mjr at phonecoop.coop |
| 1674 | */ |
| 1675 | UNUSUAL_DEV( 0x0f19, 0x0103, 0x0100, 0x0100, |
| 1676 | "Oracom Co., Ltd", |
| 1677 | "ORC-200M", |
| 1678 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1679 | US_FL_IGNORE_RESIDUE ), |
| 1680 | |
David Kuehling | b41ee5d | 2006-08-07 10:18:48 -0400 | [diff] [blame] | 1681 | /* David Kuehling <dvdkhlng@gmx.de>: |
| 1682 | * for MP3-Player AVOX WSX-300ER (bought in Japan). Reports lots of SCSI |
| 1683 | * errors when trying to write. |
| 1684 | */ |
| 1685 | UNUSUAL_DEV( 0x0f19, 0x0105, 0x0100, 0x0100, |
| 1686 | "C-MEX", |
| 1687 | "A-VOX", |
| 1688 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1689 | US_FL_IGNORE_RESIDUE ), |
| 1690 | |
Jeremy Katz | c17b49e | 2007-07-19 09:37:42 -0400 | [diff] [blame] | 1691 | /* Jeremy Katz <katzj@redhat.com>: |
| 1692 | * The Blackberry Pearl can run in two modes; a usb-storage only mode |
| 1693 | * and a mode that allows access via mass storage and to its database. |
| 1694 | * The berry_charge module will set the device to dual mode and thus we |
| 1695 | * should ignore its native mode if that module is built |
| 1696 | */ |
| 1697 | #ifdef CONFIG_USB_BERRY_CHARGE |
| 1698 | UNUSUAL_DEV( 0x0fca, 0x0006, 0x0001, 0x0001, |
| 1699 | "RIM", |
| 1700 | "Blackberry Pearl", |
| 1701 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1702 | US_FL_IGNORE_DEVICE ), |
| 1703 | #endif |
| 1704 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | /* Reported by Michael Stattmann <michael@stattmann.com> */ |
| 1706 | UNUSUAL_DEV( 0x0fce, 0xd008, 0x0000, 0x0000, |
| 1707 | "Sony Ericsson", |
| 1708 | "V800-Vodafone 802", |
| 1709 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1710 | US_FL_NO_WP_DETECT ), |
| 1711 | |
Alan Stern | b544d74 | 2007-01-31 10:57:55 -0500 | [diff] [blame] | 1712 | /* Reported by Jan Mate <mate@fiit.stuba.sk> |
| 1713 | * and by Soeren Sonnenburg <kernel@nn7.de> */ |
Phil Dibowitz | 39c2f3a | 2006-09-11 00:27:40 -0700 | [diff] [blame] | 1714 | UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000, |
| 1715 | "Sony Ericsson", |
| 1716 | "P990i", |
| 1717 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Alan Stern | b544d74 | 2007-01-31 10:57:55 -0500 | [diff] [blame] | 1718 | US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), |
Phil Dibowitz | 39c2f3a | 2006-09-11 00:27:40 -0700 | [diff] [blame] | 1719 | |
Phil Dibowitz | c9c770e | 2006-08-27 23:54:37 -0700 | [diff] [blame] | 1720 | /* Reported by Emmanuel Vasilakis <evas@forthnet.gr> */ |
| 1721 | UNUSUAL_DEV( 0x0fce, 0xe031, 0x0000, 0x0000, |
| 1722 | "Sony Ericsson", |
| 1723 | "M600i", |
| 1724 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Phil Dibowitz | c5f23b0 | 2008-05-26 21:33:58 +0200 | [diff] [blame] | 1725 | US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), |
Phil Dibowitz | c9c770e | 2006-08-27 23:54:37 -0700 | [diff] [blame] | 1726 | |
Alan Stern | f9dc8f9 | 2008-11-18 14:08:07 -0500 | [diff] [blame] | 1727 | /* Reported by Ricardo Barberis <ricardo@dattatec.com> */ |
| 1728 | UNUSUAL_DEV( 0x0fce, 0xe092, 0x0000, 0x0000, |
| 1729 | "Sony Ericsson", |
| 1730 | "P1i", |
| 1731 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1732 | US_FL_IGNORE_RESIDUE ), |
| 1733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | /* Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu> |
| 1735 | * Tested on hardware version 1.10. |
| 1736 | * Entry is needed only for the initializer function override. |
Phil Dibowitz | 51b5bce | 2006-11-02 23:14:10 -0800 | [diff] [blame] | 1737 | * Devices with bcd > 110 seem to not need it while those |
| 1738 | * with bcd < 110 appear to need it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | */ |
Phil Dibowitz | 51b5bce | 2006-11-02 23:14:10 -0800 | [diff] [blame] | 1740 | UNUSUAL_DEV( 0x1019, 0x0c55, 0x0000, 0x0110, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | "Desknote", |
| 1742 | "UCR-61S2B", |
| 1743 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_ucr61s2b_init, |
| 1744 | 0 ), |
| 1745 | |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 1746 | UNUSUAL_DEV( 0x1058, 0x0704, 0x0000, 0x9999, |
| 1747 | "Western Digital", |
| 1748 | "External HDD", |
| 1749 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1750 | US_FL_SANE_SENSE), |
| 1751 | |
Alan Stern | 274399d | 2008-02-20 12:10:04 -0500 | [diff] [blame] | 1752 | /* Reported by Fabio Venturi <f.venturi@tdnet.it> |
| 1753 | * The device reports a vendor-specific bDeviceClass. |
| 1754 | */ |
| 1755 | UNUSUAL_DEV( 0x10d6, 0x2200, 0x0100, 0x0100, |
| 1756 | "Actions Semiconductor", |
| 1757 | "Mtp device", |
| 1758 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1759 | 0), |
| 1760 | |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 1761 | /* Reported by Kevin Lloyd <linux@sierrawireless.com> |
| 1762 | * Entry is needed for the initializer function override, |
| 1763 | * which instructs the device to load as a modem |
| 1764 | * device. |
| 1765 | */ |
| 1766 | UNUSUAL_DEV( 0x1199, 0x0fff, 0x0000, 0x9999, |
| 1767 | "Sierra Wireless", |
| 1768 | "USB MMC Storage", |
Kevin Lloyd | 32fe5e3 | 2008-07-10 14:14:57 -0700 | [diff] [blame] | 1769 | US_SC_DEVICE, US_PR_DEVICE, sierra_ms_init, |
| 1770 | 0), |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 1771 | |
Jaco Kroon | 4931437 | 2006-11-15 01:02:08 -0800 | [diff] [blame] | 1772 | /* Reported by Jaco Kroon <jaco@kroon.co.za> |
| 1773 | * The usb-storage module found on the Digitech GNX4 (and supposedly other |
| 1774 | * devices) misbehaves and causes a bunch of invalid I/O errors. |
| 1775 | */ |
| 1776 | UNUSUAL_DEV( 0x1210, 0x0003, 0x0100, 0x0100, |
| 1777 | "Digitech HMG", |
| 1778 | "DigiTech Mass Storage", |
| 1779 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1780 | US_FL_IGNORE_RESIDUE ), |
| 1781 | |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1782 | /* Reported by fangxiaozhi <huananhu@huawei.com> |
| 1783 | * This brings the HUAWEI data card devices into multi-port mode |
Johann Wilhelm | d853d87 | 2007-09-05 13:49:29 +0200 | [diff] [blame] | 1784 | */ |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1785 | UNUSUAL_DEV( 0x12d1, 0x1001, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1786 | "HUAWEI MOBILE", |
| 1787 | "Mass Storage", |
| 1788 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1789 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1790 | UNUSUAL_DEV( 0x12d1, 0x1003, 0x0000, 0x0000, |
Johann Wilhelm | d853d87 | 2007-09-05 13:49:29 +0200 | [diff] [blame] | 1791 | "HUAWEI MOBILE", |
| 1792 | "Mass Storage", |
| 1793 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1794 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1795 | UNUSUAL_DEV( 0x12d1, 0x1004, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1796 | "HUAWEI MOBILE", |
| 1797 | "Mass Storage", |
| 1798 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1799 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1800 | UNUSUAL_DEV( 0x12d1, 0x1401, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1801 | "HUAWEI MOBILE", |
| 1802 | "Mass Storage", |
| 1803 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1804 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1805 | UNUSUAL_DEV( 0x12d1, 0x1402, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1806 | "HUAWEI MOBILE", |
| 1807 | "Mass Storage", |
| 1808 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1809 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1810 | UNUSUAL_DEV( 0x12d1, 0x1403, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1811 | "HUAWEI MOBILE", |
| 1812 | "Mass Storage", |
| 1813 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1814 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1815 | UNUSUAL_DEV( 0x12d1, 0x1404, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1816 | "HUAWEI MOBILE", |
| 1817 | "Mass Storage", |
| 1818 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1819 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1820 | UNUSUAL_DEV( 0x12d1, 0x1405, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1821 | "HUAWEI MOBILE", |
| 1822 | "Mass Storage", |
| 1823 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1824 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1825 | UNUSUAL_DEV( 0x12d1, 0x1406, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1826 | "HUAWEI MOBILE", |
| 1827 | "Mass Storage", |
| 1828 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1829 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1830 | UNUSUAL_DEV( 0x12d1, 0x1407, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1831 | "HUAWEI MOBILE", |
| 1832 | "Mass Storage", |
| 1833 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1834 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1835 | UNUSUAL_DEV( 0x12d1, 0x1408, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1836 | "HUAWEI MOBILE", |
| 1837 | "Mass Storage", |
| 1838 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1839 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1840 | UNUSUAL_DEV( 0x12d1, 0x1409, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1841 | "HUAWEI MOBILE", |
| 1842 | "Mass Storage", |
| 1843 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1844 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1845 | UNUSUAL_DEV( 0x12d1, 0x140A, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1846 | "HUAWEI MOBILE", |
| 1847 | "Mass Storage", |
| 1848 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1849 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1850 | UNUSUAL_DEV( 0x12d1, 0x140B, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1851 | "HUAWEI MOBILE", |
| 1852 | "Mass Storage", |
| 1853 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1854 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1855 | UNUSUAL_DEV( 0x12d1, 0x140C, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1856 | "HUAWEI MOBILE", |
| 1857 | "Mass Storage", |
| 1858 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1859 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1860 | UNUSUAL_DEV( 0x12d1, 0x140D, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1861 | "HUAWEI MOBILE", |
| 1862 | "Mass Storage", |
| 1863 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1864 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1865 | UNUSUAL_DEV( 0x12d1, 0x140E, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1866 | "HUAWEI MOBILE", |
| 1867 | "Mass Storage", |
| 1868 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1869 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1870 | UNUSUAL_DEV( 0x12d1, 0x140F, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 1871 | "HUAWEI MOBILE", |
| 1872 | "Mass Storage", |
| 1873 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1874 | 0), |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 1875 | UNUSUAL_DEV( 0x12d1, 0x1410, 0x0000, 0x0000, |
| 1876 | "HUAWEI MOBILE", |
| 1877 | "Mass Storage", |
| 1878 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1879 | 0), |
| 1880 | UNUSUAL_DEV( 0x12d1, 0x1411, 0x0000, 0x0000, |
| 1881 | "HUAWEI MOBILE", |
| 1882 | "Mass Storage", |
| 1883 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1884 | 0), |
| 1885 | UNUSUAL_DEV( 0x12d1, 0x1412, 0x0000, 0x0000, |
| 1886 | "HUAWEI MOBILE", |
| 1887 | "Mass Storage", |
| 1888 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1889 | 0), |
| 1890 | UNUSUAL_DEV( 0x12d1, 0x1413, 0x0000, 0x0000, |
| 1891 | "HUAWEI MOBILE", |
| 1892 | "Mass Storage", |
| 1893 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1894 | 0), |
| 1895 | UNUSUAL_DEV( 0x12d1, 0x1414, 0x0000, 0x0000, |
| 1896 | "HUAWEI MOBILE", |
| 1897 | "Mass Storage", |
| 1898 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1899 | 0), |
| 1900 | UNUSUAL_DEV( 0x12d1, 0x1415, 0x0000, 0x0000, |
| 1901 | "HUAWEI MOBILE", |
| 1902 | "Mass Storage", |
| 1903 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1904 | 0), |
| 1905 | UNUSUAL_DEV( 0x12d1, 0x1416, 0x0000, 0x0000, |
| 1906 | "HUAWEI MOBILE", |
| 1907 | "Mass Storage", |
| 1908 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1909 | 0), |
| 1910 | UNUSUAL_DEV( 0x12d1, 0x1417, 0x0000, 0x0000, |
| 1911 | "HUAWEI MOBILE", |
| 1912 | "Mass Storage", |
| 1913 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1914 | 0), |
| 1915 | UNUSUAL_DEV( 0x12d1, 0x1418, 0x0000, 0x0000, |
| 1916 | "HUAWEI MOBILE", |
| 1917 | "Mass Storage", |
| 1918 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1919 | 0), |
| 1920 | UNUSUAL_DEV( 0x12d1, 0x1419, 0x0000, 0x0000, |
| 1921 | "HUAWEI MOBILE", |
| 1922 | "Mass Storage", |
| 1923 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1924 | 0), |
| 1925 | UNUSUAL_DEV( 0x12d1, 0x141A, 0x0000, 0x0000, |
| 1926 | "HUAWEI MOBILE", |
| 1927 | "Mass Storage", |
| 1928 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1929 | 0), |
| 1930 | UNUSUAL_DEV( 0x12d1, 0x141B, 0x0000, 0x0000, |
| 1931 | "HUAWEI MOBILE", |
| 1932 | "Mass Storage", |
| 1933 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1934 | 0), |
| 1935 | UNUSUAL_DEV( 0x12d1, 0x141C, 0x0000, 0x0000, |
| 1936 | "HUAWEI MOBILE", |
| 1937 | "Mass Storage", |
| 1938 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1939 | 0), |
| 1940 | UNUSUAL_DEV( 0x12d1, 0x141D, 0x0000, 0x0000, |
| 1941 | "HUAWEI MOBILE", |
| 1942 | "Mass Storage", |
| 1943 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1944 | 0), |
| 1945 | UNUSUAL_DEV( 0x12d1, 0x141E, 0x0000, 0x0000, |
| 1946 | "HUAWEI MOBILE", |
| 1947 | "Mass Storage", |
| 1948 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1949 | 0), |
| 1950 | UNUSUAL_DEV( 0x12d1, 0x141F, 0x0000, 0x0000, |
| 1951 | "HUAWEI MOBILE", |
| 1952 | "Mass Storage", |
| 1953 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1954 | 0), |
| 1955 | UNUSUAL_DEV( 0x12d1, 0x1420, 0x0000, 0x0000, |
| 1956 | "HUAWEI MOBILE", |
| 1957 | "Mass Storage", |
| 1958 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1959 | 0), |
| 1960 | UNUSUAL_DEV( 0x12d1, 0x1421, 0x0000, 0x0000, |
| 1961 | "HUAWEI MOBILE", |
| 1962 | "Mass Storage", |
| 1963 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1964 | 0), |
| 1965 | UNUSUAL_DEV( 0x12d1, 0x1422, 0x0000, 0x0000, |
| 1966 | "HUAWEI MOBILE", |
| 1967 | "Mass Storage", |
| 1968 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1969 | 0), |
| 1970 | UNUSUAL_DEV( 0x12d1, 0x1423, 0x0000, 0x0000, |
| 1971 | "HUAWEI MOBILE", |
| 1972 | "Mass Storage", |
| 1973 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1974 | 0), |
| 1975 | UNUSUAL_DEV( 0x12d1, 0x1424, 0x0000, 0x0000, |
| 1976 | "HUAWEI MOBILE", |
| 1977 | "Mass Storage", |
| 1978 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1979 | 0), |
| 1980 | UNUSUAL_DEV( 0x12d1, 0x1425, 0x0000, 0x0000, |
| 1981 | "HUAWEI MOBILE", |
| 1982 | "Mass Storage", |
| 1983 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1984 | 0), |
| 1985 | UNUSUAL_DEV( 0x12d1, 0x1426, 0x0000, 0x0000, |
| 1986 | "HUAWEI MOBILE", |
| 1987 | "Mass Storage", |
| 1988 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1989 | 0), |
| 1990 | UNUSUAL_DEV( 0x12d1, 0x1427, 0x0000, 0x0000, |
| 1991 | "HUAWEI MOBILE", |
| 1992 | "Mass Storage", |
| 1993 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1994 | 0), |
| 1995 | UNUSUAL_DEV( 0x12d1, 0x1428, 0x0000, 0x0000, |
| 1996 | "HUAWEI MOBILE", |
| 1997 | "Mass Storage", |
| 1998 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 1999 | 0), |
| 2000 | UNUSUAL_DEV( 0x12d1, 0x1429, 0x0000, 0x0000, |
| 2001 | "HUAWEI MOBILE", |
| 2002 | "Mass Storage", |
| 2003 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2004 | 0), |
| 2005 | UNUSUAL_DEV( 0x12d1, 0x142A, 0x0000, 0x0000, |
| 2006 | "HUAWEI MOBILE", |
| 2007 | "Mass Storage", |
| 2008 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2009 | 0), |
| 2010 | UNUSUAL_DEV( 0x12d1, 0x142B, 0x0000, 0x0000, |
| 2011 | "HUAWEI MOBILE", |
| 2012 | "Mass Storage", |
| 2013 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2014 | 0), |
| 2015 | UNUSUAL_DEV( 0x12d1, 0x142C, 0x0000, 0x0000, |
| 2016 | "HUAWEI MOBILE", |
| 2017 | "Mass Storage", |
| 2018 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2019 | 0), |
| 2020 | UNUSUAL_DEV( 0x12d1, 0x142D, 0x0000, 0x0000, |
| 2021 | "HUAWEI MOBILE", |
| 2022 | "Mass Storage", |
| 2023 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2024 | 0), |
| 2025 | UNUSUAL_DEV( 0x12d1, 0x142E, 0x0000, 0x0000, |
| 2026 | "HUAWEI MOBILE", |
| 2027 | "Mass Storage", |
| 2028 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2029 | 0), |
| 2030 | UNUSUAL_DEV( 0x12d1, 0x142F, 0x0000, 0x0000, |
| 2031 | "HUAWEI MOBILE", |
| 2032 | "Mass Storage", |
| 2033 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2034 | 0), |
| 2035 | UNUSUAL_DEV( 0x12d1, 0x1430, 0x0000, 0x0000, |
| 2036 | "HUAWEI MOBILE", |
| 2037 | "Mass Storage", |
| 2038 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2039 | 0), |
| 2040 | UNUSUAL_DEV( 0x12d1, 0x1431, 0x0000, 0x0000, |
| 2041 | "HUAWEI MOBILE", |
| 2042 | "Mass Storage", |
| 2043 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2044 | 0), |
| 2045 | UNUSUAL_DEV( 0x12d1, 0x1432, 0x0000, 0x0000, |
| 2046 | "HUAWEI MOBILE", |
| 2047 | "Mass Storage", |
| 2048 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2049 | 0), |
| 2050 | UNUSUAL_DEV( 0x12d1, 0x1433, 0x0000, 0x0000, |
| 2051 | "HUAWEI MOBILE", |
| 2052 | "Mass Storage", |
| 2053 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2054 | 0), |
| 2055 | UNUSUAL_DEV( 0x12d1, 0x1434, 0x0000, 0x0000, |
| 2056 | "HUAWEI MOBILE", |
| 2057 | "Mass Storage", |
| 2058 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2059 | 0), |
| 2060 | UNUSUAL_DEV( 0x12d1, 0x1435, 0x0000, 0x0000, |
| 2061 | "HUAWEI MOBILE", |
| 2062 | "Mass Storage", |
| 2063 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2064 | 0), |
| 2065 | UNUSUAL_DEV( 0x12d1, 0x1436, 0x0000, 0x0000, |
| 2066 | "HUAWEI MOBILE", |
| 2067 | "Mass Storage", |
| 2068 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2069 | 0), |
| 2070 | UNUSUAL_DEV( 0x12d1, 0x1437, 0x0000, 0x0000, |
| 2071 | "HUAWEI MOBILE", |
| 2072 | "Mass Storage", |
| 2073 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2074 | 0), |
| 2075 | UNUSUAL_DEV( 0x12d1, 0x1438, 0x0000, 0x0000, |
| 2076 | "HUAWEI MOBILE", |
| 2077 | "Mass Storage", |
| 2078 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2079 | 0), |
| 2080 | UNUSUAL_DEV( 0x12d1, 0x1439, 0x0000, 0x0000, |
| 2081 | "HUAWEI MOBILE", |
| 2082 | "Mass Storage", |
| 2083 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2084 | 0), |
| 2085 | UNUSUAL_DEV( 0x12d1, 0x143A, 0x0000, 0x0000, |
| 2086 | "HUAWEI MOBILE", |
| 2087 | "Mass Storage", |
| 2088 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2089 | 0), |
| 2090 | UNUSUAL_DEV( 0x12d1, 0x143B, 0x0000, 0x0000, |
| 2091 | "HUAWEI MOBILE", |
| 2092 | "Mass Storage", |
| 2093 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2094 | 0), |
| 2095 | UNUSUAL_DEV( 0x12d1, 0x143C, 0x0000, 0x0000, |
| 2096 | "HUAWEI MOBILE", |
| 2097 | "Mass Storage", |
| 2098 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2099 | 0), |
| 2100 | UNUSUAL_DEV( 0x12d1, 0x143D, 0x0000, 0x0000, |
| 2101 | "HUAWEI MOBILE", |
| 2102 | "Mass Storage", |
| 2103 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2104 | 0), |
| 2105 | UNUSUAL_DEV( 0x12d1, 0x143E, 0x0000, 0x0000, |
| 2106 | "HUAWEI MOBILE", |
| 2107 | "Mass Storage", |
| 2108 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2109 | 0), |
| 2110 | UNUSUAL_DEV( 0x12d1, 0x143F, 0x0000, 0x0000, |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 2111 | "HUAWEI MOBILE", |
| 2112 | "Mass Storage", |
| 2113 | US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, |
| 2114 | 0), |
Johann Wilhelm | d853d87 | 2007-09-05 13:49:29 +0200 | [diff] [blame] | 2115 | |
Phil Dibowitz | 7b1cbeb | 2005-05-02 23:54:28 -0700 | [diff] [blame] | 2116 | /* Reported by Vilius Bilinkevicius <vilisas AT xxx DOT lt) */ |
| 2117 | UNUSUAL_DEV( 0x132b, 0x000b, 0x0001, 0x0001, |
| 2118 | "Minolta", |
| 2119 | "Dimage Z10", |
| 2120 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2121 | 0 ), |
| 2122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | /* Reported by Kotrla Vitezslav <kotrla@ceb.cz> */ |
| 2124 | UNUSUAL_DEV( 0x1370, 0x6828, 0x0110, 0x0110, |
| 2125 | "SWISSBIT", |
| 2126 | "Black Silver", |
| 2127 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2128 | US_FL_IGNORE_RESIDUE ), |
| 2129 | |
Phil Dibowitz | f1cd4ad | 2006-12-31 00:19:50 -0800 | [diff] [blame] | 2130 | /* Reported by Francesco Foresti <frafore@tiscali.it> */ |
| 2131 | UNUSUAL_DEV( 0x14cd, 0x6600, 0x0201, 0x0201, |
| 2132 | "Super Top", |
| 2133 | "IDE DEVICE", |
| 2134 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2135 | US_FL_IGNORE_RESIDUE ), |
| 2136 | |
Phil Dibowitz | 3030ca4 | 2008-10-19 08:17:54 +0200 | [diff] [blame] | 2137 | /* Reported by Alexandre Oliva <oliva@lsd.ic.unicamp.br> |
| 2138 | * JMicron responds to USN and several other SCSI ioctls with a |
| 2139 | * residue that causes subsequent I/O requests to fail. */ |
| 2140 | UNUSUAL_DEV( 0x152d, 0x2329, 0x0100, 0x0100, |
Ben Efros | dbe6e0c0 | 2008-11-23 20:06:38 -0800 | [diff] [blame] | 2141 | "JMicron", |
| 2142 | "USB to ATA/ATAPI Bridge", |
| 2143 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2144 | US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ), |
Phil Dibowitz | 3030ca4 | 2008-10-19 08:17:54 +0200 | [diff] [blame] | 2145 | |
Phil Dibowitz | f1cd4ad | 2006-12-31 00:19:50 -0800 | [diff] [blame] | 2146 | /* Reported by Robert Schedel <r.schedel@yahoo.de> |
| 2147 | * Note: this is a 'super top' device like the above 14cd/6600 device */ |
| 2148 | UNUSUAL_DEV( 0x1652, 0x6600, 0x0201, 0x0201, |
| 2149 | "Teac", |
| 2150 | "HD-35PUK-B", |
| 2151 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2152 | US_FL_IGNORE_RESIDUE ), |
| 2153 | |
andreoli@samba.ing.unimo.it | dddcb8b | 2008-05-01 19:17:28 +0200 | [diff] [blame] | 2154 | /* Reported by Mauro Andreolini <andreoli@weblab.ing.unimo.it> |
| 2155 | * This entry is needed to bypass the ZeroCD mechanism |
| 2156 | * and to properly load as a modem device. |
| 2157 | */ |
| 2158 | UNUSUAL_DEV( 0x19d2, 0x2000, 0x0000, 0x0000, |
| 2159 | "Onda ET502HS", |
| 2160 | "USB MMC Storage", |
| 2161 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2162 | US_FL_IGNORE_DEVICE), |
| 2163 | |
Davide Perini | 0ddc063 | 2006-06-19 17:07:39 -0400 | [diff] [blame] | 2164 | /* patch submitted by Davide Perini <perini.davide@dpsoftware.org> |
| 2165 | * and Renato Perini <rperini@email.it> |
| 2166 | */ |
| 2167 | UNUSUAL_DEV( 0x22b8, 0x3010, 0x0001, 0x0001, |
| 2168 | "Motorola", |
| 2169 | "RAZR V3x", |
| 2170 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2171 | US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), |
| 2172 | |
Pete Zaitcev | a7f3dd5 | 2007-03-10 15:17:16 -0800 | [diff] [blame] | 2173 | /* |
| 2174 | * Patch by Pete Zaitcev <zaitcev@redhat.com> |
| 2175 | * Report by Mark Patton. Red Hat bz#208928. |
Javier Smaldone | 2a8bc9e | 2008-05-26 21:44:00 +0200 | [diff] [blame] | 2176 | * Added support for rev 0x0002 (Motorola ROKR W5) |
| 2177 | * by Javier Smaldone <javier@smaldone.com.ar> |
Pete Zaitcev | a7f3dd5 | 2007-03-10 15:17:16 -0800 | [diff] [blame] | 2178 | */ |
Javier Smaldone | 2a8bc9e | 2008-05-26 21:44:00 +0200 | [diff] [blame] | 2179 | UNUSUAL_DEV( 0x22b8, 0x4810, 0x0001, 0x0002, |
Pete Zaitcev | a7f3dd5 | 2007-03-10 15:17:16 -0800 | [diff] [blame] | 2180 | "Motorola", |
Javier Smaldone | 2a8bc9e | 2008-05-26 21:44:00 +0200 | [diff] [blame] | 2181 | "RAZR V3i/ROKR W5", |
Pete Zaitcev | a7f3dd5 | 2007-03-10 15:17:16 -0800 | [diff] [blame] | 2182 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2183 | US_FL_FIX_CAPACITY), |
| 2184 | |
Constantin Baranov | cc36bdd | 2008-03-16 20:04:23 +0000 | [diff] [blame] | 2185 | /* |
Jost Diederichs | 51cdc1c | 2008-07-12 22:37:05 -0700 | [diff] [blame] | 2186 | * Patch by Jost Diederichs <jost@qdusa.com> |
| 2187 | */ |
| 2188 | UNUSUAL_DEV(0x22b8, 0x6410, 0x0001, 0x9999, |
| 2189 | "Motorola Inc.", |
| 2190 | "Motorola Phone (RAZRV3xx)", |
| 2191 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2192 | US_FL_FIX_CAPACITY), |
| 2193 | |
| 2194 | /* |
Constantin Baranov | cc36bdd | 2008-03-16 20:04:23 +0000 | [diff] [blame] | 2195 | * Patch by Constantin Baranov <const@tltsu.ru> |
| 2196 | * Report by Andreas Koenecke. |
| 2197 | * Motorola ROKR Z6. |
| 2198 | */ |
| 2199 | UNUSUAL_DEV( 0x22b8, 0x6426, 0x0101, 0x0101, |
| 2200 | "Motorola", |
| 2201 | "MSnc.", |
| 2202 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2203 | US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG), |
| 2204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */ |
| 2206 | UNUSUAL_DEV( 0x2735, 0x100b, 0x0000, 0x9999, |
| 2207 | "MPIO", |
| 2208 | "HS200", |
| 2209 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2210 | US_FL_GO_SLOW ), |
| 2211 | |
Phil Dibowitz | ed3e8fc | 2008-05-03 18:04:30 -0700 | [diff] [blame] | 2212 | /* Reported by Rohan Hart <rohan.hart17@gmail.com> */ |
| 2213 | UNUSUAL_DEV( 0x2770, 0x915d, 0x0010, 0x0010, |
| 2214 | "INTOVA", |
| 2215 | "Pixtreme", |
| 2216 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2217 | US_FL_FIX_CAPACITY ), |
| 2218 | |
Frédéric Marchal | e8fab4c | 2008-10-13 14:00:11 +0200 | [diff] [blame] | 2219 | /* Reported by Frederic Marchal <frederic.marchal@wowcompany.com> |
| 2220 | * Mio Moov 330 |
| 2221 | */ |
| 2222 | UNUSUAL_DEV( 0x3340, 0xffff, 0x0000, 0x0000, |
| 2223 | "Mitac", |
| 2224 | "Mio DigiWalker USB Sync", |
| 2225 | US_SC_DEVICE,US_PR_DEVICE,NULL, |
| 2226 | US_FL_MAX_SECTORS_64 ), |
| 2227 | |
Alan Stern | 368ee64 | 2008-07-21 10:08:28 -0400 | [diff] [blame] | 2228 | /* Reported by Andrey Rahmatullin <wrar@altlinux.org> */ |
| 2229 | UNUSUAL_DEV( 0x4102, 0x1020, 0x0100, 0x0100, |
| 2230 | "iRiver", |
| 2231 | "MP3 T10", |
| 2232 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 2233 | US_FL_IGNORE_RESIDUE ), |
| 2234 | |
David Härdeman | 63dc3ff | 2005-11-23 15:45:49 -0800 | [diff] [blame] | 2235 | /* |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 2236 | * David Härdeman <david@2gen.com> |
David Härdeman | 63dc3ff | 2005-11-23 15:45:49 -0800 | [diff] [blame] | 2237 | * The key makes the SCSI stack print confusing (but harmless) messages |
| 2238 | */ |
| 2239 | UNUSUAL_DEV( 0x4146, 0xba01, 0x0100, 0x0100, |
| 2240 | "Iomega", |
| 2241 | "Micro Mini 1GB", |
| 2242 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), |
| 2243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | #ifdef CONFIG_USB_STORAGE_SDDR55 |
| 2245 | UNUSUAL_DEV( 0x55aa, 0xa103, 0x0000, 0x9999, |
| 2246 | "Sandisk", |
| 2247 | "ImageMate SDDR55", |
| 2248 | US_SC_SCSI, US_PR_SDDR55, NULL, |
| 2249 | US_FL_SINGLE_LUN), |
| 2250 | #endif |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 2251 | |
Alan Stern | a2149bc | 2006-02-02 09:52:45 -0500 | [diff] [blame] | 2252 | /* Reported by Andrew Simmons <andrew.simmons@gmail.com> */ |
| 2253 | UNUSUAL_DEV( 0xed06, 0x4500, 0x0001, 0x0001, |
| 2254 | "DataStor", |
| 2255 | "USB4500 FW1.04", |
| 2256 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
Oliver Neukum | 61bf54b | 2007-02-08 09:04:48 +0100 | [diff] [blame] | 2257 | US_FL_CAPACITY_HEURISTICS), |
Alan Stern | a2149bc | 2006-02-02 09:52:45 -0500 | [diff] [blame] | 2258 | |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 2259 | /* Control/Bulk transport for all SubClass values */ |
| 2260 | USUAL_DEV(US_SC_RBC, US_PR_CB, USB_US_TYPE_STOR), |
| 2261 | USUAL_DEV(US_SC_8020, US_PR_CB, USB_US_TYPE_STOR), |
| 2262 | USUAL_DEV(US_SC_QIC, US_PR_CB, USB_US_TYPE_STOR), |
| 2263 | USUAL_DEV(US_SC_UFI, US_PR_CB, USB_US_TYPE_STOR), |
| 2264 | USUAL_DEV(US_SC_8070, US_PR_CB, USB_US_TYPE_STOR), |
| 2265 | USUAL_DEV(US_SC_SCSI, US_PR_CB, USB_US_TYPE_STOR), |
| 2266 | |
| 2267 | /* Control/Bulk/Interrupt transport for all SubClass values */ |
| 2268 | USUAL_DEV(US_SC_RBC, US_PR_CBI, USB_US_TYPE_STOR), |
| 2269 | USUAL_DEV(US_SC_8020, US_PR_CBI, USB_US_TYPE_STOR), |
| 2270 | USUAL_DEV(US_SC_QIC, US_PR_CBI, USB_US_TYPE_STOR), |
| 2271 | USUAL_DEV(US_SC_UFI, US_PR_CBI, USB_US_TYPE_STOR), |
| 2272 | USUAL_DEV(US_SC_8070, US_PR_CBI, USB_US_TYPE_STOR), |
| 2273 | USUAL_DEV(US_SC_SCSI, US_PR_CBI, USB_US_TYPE_STOR), |
| 2274 | |
| 2275 | /* Bulk-only transport for all SubClass values */ |
| 2276 | USUAL_DEV(US_SC_RBC, US_PR_BULK, USB_US_TYPE_STOR), |
| 2277 | USUAL_DEV(US_SC_8020, US_PR_BULK, USB_US_TYPE_STOR), |
| 2278 | USUAL_DEV(US_SC_QIC, US_PR_BULK, USB_US_TYPE_STOR), |
| 2279 | USUAL_DEV(US_SC_UFI, US_PR_BULK, USB_US_TYPE_STOR), |
| 2280 | USUAL_DEV(US_SC_8070, US_PR_BULK, USB_US_TYPE_STOR), |
| 2281 | USUAL_DEV(US_SC_SCSI, US_PR_BULK, 0), |