1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Unusual Devices File for In-System Design, Inc. ISD200 ASIC
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; either version 2, or (at your option) any
8  * later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 
20 #if defined(CONFIG_USB_STORAGE_ISD200) || \
21 		defined(CONFIG_USB_STORAGE_ISD200_MODULE)
22 
23 UNUSUAL_DEV(  0x054c, 0x002b, 0x0100, 0x0110,
24 		"Sony",
25 		"Portable USB Harddrive V2",
26 		USB_SC_ISD200, USB_PR_BULK, isd200_Initialization,
27 		0),
28 
29 UNUSUAL_DEV(  0x05ab, 0x0031, 0x0100, 0x0110,
30 		"In-System",
31 		"USB/IDE Bridge (ATA/ATAPI)",
32 		USB_SC_ISD200, USB_PR_BULK, isd200_Initialization,
33 		0),
34 
35 UNUSUAL_DEV(  0x05ab, 0x0301, 0x0100, 0x0110,
36 		"In-System",
37 		"Portable USB Harddrive V2",
38 		USB_SC_ISD200, USB_PR_BULK, isd200_Initialization,
39 		0),
40 
41 UNUSUAL_DEV(  0x05ab, 0x0351, 0x0100, 0x0110,
42 		"In-System",
43 		"Portable USB Harddrive V2",
44 		USB_SC_ISD200, USB_PR_BULK, isd200_Initialization,
45 		0),
46 
47 UNUSUAL_DEV(  0x05ab, 0x5701, 0x0100, 0x0110,
48 		"In-System",
49 		"USB Storage Adapter V2",
50 		USB_SC_ISD200, USB_PR_BULK, isd200_Initialization,
51 		0),
52 
53 UNUSUAL_DEV(  0x0bf6, 0xa001, 0x0100, 0x0110,
54 		"ATI",
55 		"USB Cable 205",
56 		USB_SC_ISD200, USB_PR_BULK, isd200_Initialization,
57 		0),
58 
59 #endif /* defined(CONFIG_USB_STORAGE_ISD200) || ... */
60