import PULS_20160108
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / usb / storage / initializers.c
1 /* Special Initializers for certain USB Mass Storage devices
2 *
3 * Current development and maintenance by:
4 * (c) 1999, 2000 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
5 *
6 * This driver is based on the 'USB Mass Storage Class' document. This
7 * describes in detail the protocol used to communicate with such
8 * devices. Clearly, the designers had SCSI and ATAPI commands in
9 * mind when they created this document. The commands are all very
10 * similar to commands in the SCSI-II and ATAPI specifications.
11 *
12 * It is important to note that in a number of cases this class
13 * exhibits class-specific exemptions from the USB specification.
14 * Notably the usage of NAK, STALL and ACK differs from the norm, in
15 * that they are used to communicate wait, failed and OK on commands.
16 *
17 * Also, for certain devices, the interrupt endpoint is used to convey
18 * status of a command.
19 *
20 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
21 * information about this driver.
22 *
23 * This program is free software; you can redistribute it and/or modify it
24 * under the terms of the GNU General Public License as published by the
25 * Free Software Foundation; either version 2, or (at your option) any
26 * later version.
27 *
28 * This program is distributed in the hope that it will be useful, but
29 * WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
31 * General Public License for more details.
32 *
33 * You should have received a copy of the GNU General Public License along
34 * with this program; if not, write to the Free Software Foundation, Inc.,
35 * 675 Mass Ave, Cambridge, MA 02139, USA.
36 */
37
38 #include <linux/errno.h>
39
40 #include "usb.h"
41 #include "initializers.h"
42 #include "debug.h"
43 #include "transport.h"
44
45 /* This places the Shuttle/SCM USB<->SCSI bridge devices in multi-target
46 * mode */
47 int usb_stor_euscsi_init(struct us_data *us)
48 {
49 int result;
50
51 usb_stor_dbg(us, "Attempting to init eUSCSI bridge...\n");
52 us->iobuf[0] = 0x1;
53 result = usb_stor_control_msg(us, us->send_ctrl_pipe,
54 0x0C, USB_RECIP_INTERFACE | USB_TYPE_VENDOR,
55 0x01, 0x0, us->iobuf, 0x1, 5000);
56 usb_stor_dbg(us, "-- result is %d\n", result);
57
58 return 0;
59 }
60
61 /* This function is required to activate all four slots on the UCR-61S2B
62 * flash reader */
63 int usb_stor_ucr61s2b_init(struct us_data *us)
64 {
65 struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap*) us->iobuf;
66 struct bulk_cs_wrap *bcs = (struct bulk_cs_wrap*) us->iobuf;
67 int res;
68 unsigned int partial;
69 static char init_string[] = "\xec\x0a\x06\x00$PCCHIPS";
70
71 usb_stor_dbg(us, "Sending UCR-61S2B initialization packet...\n");
72
73 bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
74 bcb->Tag = 0;
75 bcb->DataTransferLength = cpu_to_le32(0);
76 bcb->Flags = bcb->Lun = 0;
77 bcb->Length = sizeof(init_string) - 1;
78 memset(bcb->CDB, 0, sizeof(bcb->CDB));
79 memcpy(bcb->CDB, init_string, sizeof(init_string) - 1);
80
81 res = usb_stor_bulk_transfer_buf(us, us->send_bulk_pipe, bcb,
82 US_BULK_CB_WRAP_LEN, &partial);
83 if (res)
84 return -EIO;
85
86 usb_stor_dbg(us, "Getting status packet...\n");
87 res = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe, bcs,
88 US_BULK_CS_WRAP_LEN, &partial);
89 if (res)
90 return -EIO;
91
92 return 0;
93 }
94
95 /* This places the HUAWEI E220 devices in multi-port mode */
96 int usb_stor_huawei_e220_init(struct us_data *us)
97 {
98 int result;
99
100 result = usb_stor_control_msg(us, us->send_ctrl_pipe,
101 USB_REQ_SET_FEATURE,
102 USB_TYPE_STANDARD | USB_RECIP_DEVICE,
103 0x01, 0x0, NULL, 0x0, 1000);
104 usb_stor_dbg(us, "Huawei mode set result is %d\n", result);
105 return 0;
106 }
107 #define IS_HUAWEI_DONGLES 1
108 #define NOT_HUAWEI_DONGLES 0
109 static int usb_stor_huawei_dongles_pid(struct us_data *us)
110 {
111 int ret = NOT_HUAWEI_DONGLES;
112 struct usb_interface_descriptor *idesc = NULL;
113 idesc = &us->pusb_intf->cur_altsetting->desc;
114 if (NULL != idesc ) {
115 if ( (0x0000 == idesc->bInterfaceNumber)) {
116 if ((0x1401 <= us->pusb_dev->descriptor.idProduct && 0x1600 >=
117 us->pusb_dev->descriptor.idProduct)
118 || (0x1c02 <= us->pusb_dev->descriptor.idProduct &&
119 0x2202 >= us->pusb_dev->descriptor.idProduct)
120 || (0x1001 == us->pusb_dev->descriptor.idProduct)
121 || (0x1003 == us->pusb_dev->descriptor.idProduct)
122 || (0x1004 == us->pusb_dev->descriptor.idProduct)) {
123 if ((0x1501 <= us->pusb_dev->descriptor.idProduct) &&
124 (0x1504 >= us->pusb_dev->descriptor.idProduct)) {
125 ret = NOT_HUAWEI_DONGLES;
126 } else {
127 ret = IS_HUAWEI_DONGLES;
128 }
129 }
130 }
131 }
132 return ret;
133 }
134
135 int usb_stor_huawei_scsi_init(struct us_data *us)
136 {
137 int result = 0;
138 int act_len = 0;
139 unsigned char cmd[32] = {0x55, 0x53, 0x42, 0x43, 0x00, 0x00, 0x00, 0x00,
140 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11,
141 0x06, 0x30, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
142 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
143 result = usb_stor_bulk_transfer_buf (us, us->send_bulk_pipe, cmd, 31,
144 &act_len);
145 usb_stor_dbg(us, "usb_stor_huawei_scsi_init performing result is %d, transfer the actual length=%d\n", result, act_len);
146 return result;
147 }
148
149 int usb_stor_huawei_init(struct us_data *us)
150 {
151 int result = 0;
152 if(usb_stor_huawei_dongles_pid(us)){
153 if ((0x1446 <= us->pusb_dev->descriptor.idProduct )){
154 result = usb_stor_huawei_scsi_init(us);
155 }else{
156 result = usb_stor_huawei_e220_init(us);
157 }
158 }
159 return result;
160 }
161 /* This places the zte devices in multi-port mode */
162 int usb_stor_zte_scsi_init(struct us_data *us)
163 {
164 int result = 0;
165 int act_len = 0;
166 unsigned char cmd[32] = {0x55, 0x53, 0x42, 0x43, 0x68, 0xF6, 0x2E, 0x89,
167 0xC0, 0x00, 0x00, 0x00, 0x80, 0x00, 0x06, 0x9F,
168 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
169 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
170 result = usb_stor_bulk_transfer_buf (us, us->send_bulk_pipe, cmd, 31,
171 &act_len);
172 usb_stor_dbg(us, "usb_stor_bulk_transfer_buf performing result is %d, transfer the actual length=%d\n", result, act_len);
173 return result;
174 }
175
176 int usb_stor_zte_init(struct us_data *us)
177 {
178 int result;
179 int iProduct;
180
181 if(!us)
182 return 0;
183 iProduct = us->pusb_dev->descriptor.idProduct;
184 if((iProduct == 0x0154) || (iProduct == 0x0166) || (iProduct == 0x2000))
185 {
186 result = usb_stor_control_msg(us, us->send_ctrl_pipe,
187 0xA1,/*request*/
188 0xC0,/*request type*/
189 0x01, 0x0, NULL, 0x0, 1000);
190 usb_stor_dbg(us, "ZTE mode set result is %d\n", result);
191 }
192 else if(iProduct == 0xFFF5)
193 {
194 result = usb_stor_zte_scsi_init(us);
195 }
196 return 0;
197 }
198 int usb_stor_dlink_scsi_init(struct us_data *us)
199 {
200 int result = 0;
201 int act_len = 0;
202 int iProduct;
203 unsigned char cmd[32] = {0x55, 0x53, 0x42, 0x43, 0x00, 0x00, 0x00, 0x00,
204 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF0,
205 0x01, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
206 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
207 iProduct = us->pusb_dev->descriptor.idProduct;
208 if((iProduct == 0xa708) ) {
209 result = usb_stor_bulk_transfer_buf (us, us->send_bulk_pipe, cmd, 31,
210 &act_len);
211 usb_stor_dbg(us, "usb_stor_dlink_scsi_init performing result is %d, transfer the actual length=%d\n", result, act_len);
212 }
213 return result;
214 }