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