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