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