blob: 9a51019ac7b29b81422eb87b4739e51820828658 [file] [log] [blame]
Kevin Lloyd32fe5e32008-07-10 14:14:57 -07001#include <scsi/scsi.h>
2#include <scsi/scsi_host.h>
3#include <scsi/scsi_cmnd.h>
4#include <scsi/scsi_device.h>
5#include <linux/usb.h>
Paul Gortmaker6eb0de82011-07-03 16:09:31 -04006#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Kevin Lloyd32fe5e32008-07-10 14:14:57 -07008
9#include "usb.h"
10#include "transport.h"
11#include "protocol.h"
12#include "scsiglue.h"
13#include "sierra_ms.h"
14#include "debug.h"
15
16#define SWIMS_USB_REQUEST_SetSwocMode 0x0B
17#define SWIMS_USB_REQUEST_GetSwocInfo 0x0A
18#define SWIMS_USB_INDEX_SetMode 0x0000
19#define SWIMS_SET_MODE_Modem 0x0001
20
21#define TRU_NORMAL 0x01
22#define TRU_FORCE_MS 0x02
23#define TRU_FORCE_MODEM 0x03
24
25static unsigned int swi_tru_install = 1;
26module_param(swi_tru_install, uint, S_IRUGO | S_IWUSR);
27MODULE_PARM_DESC(swi_tru_install, "TRU-Install mode (1=Full Logic (def),"
28 " 2=Force CD-Rom, 3=Force Modem)");
29
30struct swoc_info {
31 __u8 rev;
32 __u8 reserved[8];
33 __u16 LinuxSKU;
34 __u16 LinuxVer;
35 __u8 reserved2[47];
36} __attribute__((__packed__));
37
38static bool containsFullLinuxPackage(struct swoc_info *swocInfo)
39{
40 if ((swocInfo->LinuxSKU >= 0x2100 && swocInfo->LinuxSKU <= 0x2FFF) ||
41 (swocInfo->LinuxSKU >= 0x7100 && swocInfo->LinuxSKU <= 0x7FFF))
42 return true;
43 else
44 return false;
45}
46
47static int sierra_set_ms_mode(struct usb_device *udev, __u16 eSWocMode)
48{
49 int result;
Joe Perches191648d2013-04-19 11:44:00 -070050 dev_dbg(&udev->dev, "SWIMS: %s", "DEVICE MODE SWITCH\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -070051 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
52 SWIMS_USB_REQUEST_SetSwocMode, /* __u8 request */
53 USB_TYPE_VENDOR | USB_DIR_OUT, /* __u8 request type */
54 eSWocMode, /* __u16 value */
55 0x0000, /* __u16 index */
56 NULL, /* void *data */
57 0, /* __u16 size */
58 USB_CTRL_SET_TIMEOUT); /* int timeout */
59 return result;
60}
61
62
63static int sierra_get_swoc_info(struct usb_device *udev,
64 struct swoc_info *swocInfo)
65{
66 int result;
67
Joe Perches191648d2013-04-19 11:44:00 -070068 dev_dbg(&udev->dev, "SWIMS: Attempting to get TRU-Install info\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -070069
70 result = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
71 SWIMS_USB_REQUEST_GetSwocInfo, /* __u8 request */
72 USB_TYPE_VENDOR | USB_DIR_IN, /* __u8 request type */
73 0, /* __u16 value */
74 0, /* __u16 index */
75 (void *) swocInfo, /* void *data */
76 sizeof(struct swoc_info), /* __u16 size */
77 USB_CTRL_SET_TIMEOUT); /* int timeout */
78
79 swocInfo->LinuxSKU = le16_to_cpu(swocInfo->LinuxSKU);
80 swocInfo->LinuxVer = le16_to_cpu(swocInfo->LinuxVer);
81 return result;
82}
83
Joe Perches191648d2013-04-19 11:44:00 -070084static void debug_swoc(const struct device *dev, struct swoc_info *swocInfo)
Kevin Lloyd32fe5e32008-07-10 14:14:57 -070085{
Joe Perches191648d2013-04-19 11:44:00 -070086 dev_dbg(dev, "SWIMS: SWoC Rev: %02d\n", swocInfo->rev);
87 dev_dbg(dev, "SWIMS: Linux SKU: %04X\n", swocInfo->LinuxSKU);
88 dev_dbg(dev, "SWIMS: Linux Version: %04X\n", swocInfo->LinuxVer);
Kevin Lloyd32fe5e32008-07-10 14:14:57 -070089}
90
91
92static ssize_t show_truinst(struct device *dev, struct device_attribute *attr,
93 char *buf)
94{
95 struct swoc_info *swocInfo;
96 struct usb_interface *intf = to_usb_interface(dev);
97 struct usb_device *udev = interface_to_usbdev(intf);
98 int result;
99 if (swi_tru_install == TRU_FORCE_MS) {
100 result = snprintf(buf, PAGE_SIZE, "Forced Mass Storage\n");
101 } else {
102 swocInfo = kmalloc(sizeof(struct swoc_info), GFP_KERNEL);
103 if (!swocInfo) {
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700104 snprintf(buf, PAGE_SIZE, "Error\n");
105 return -ENOMEM;
106 }
107 result = sierra_get_swoc_info(udev, swocInfo);
108 if (result < 0) {
Joe Perches191648d2013-04-19 11:44:00 -0700109 dev_dbg(dev, "SWIMS: failed SWoC query\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700110 kfree(swocInfo);
111 snprintf(buf, PAGE_SIZE, "Error\n");
112 return -EIO;
113 }
Joe Perches191648d2013-04-19 11:44:00 -0700114 debug_swoc(dev, swocInfo);
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700115 result = snprintf(buf, PAGE_SIZE,
116 "REV=%02d SKU=%04X VER=%04X\n",
117 swocInfo->rev,
118 swocInfo->LinuxSKU,
119 swocInfo->LinuxVer);
120 kfree(swocInfo);
121 }
122 return result;
123}
Greg Kroah-Hartmand9624e72010-11-15 11:17:52 -0800124static DEVICE_ATTR(truinst, S_IRUGO, show_truinst, NULL);
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700125
126int sierra_ms_init(struct us_data *us)
127{
128 int result, retries;
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700129 struct swoc_info *swocInfo;
130 struct usb_device *udev;
131 struct Scsi_Host *sh;
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700132
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700133 retries = 3;
134 result = 0;
135 udev = us->pusb_dev;
136
137 sh = us_to_host(us);
Alan Cox0220a3f2012-09-19 15:47:03 +0100138 scsi_get_host_dev(sh);
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700139
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700140 /* Force Modem mode */
141 if (swi_tru_install == TRU_FORCE_MODEM) {
Joe Perches191648d2013-04-19 11:44:00 -0700142 usb_stor_dbg(us, "SWIMS: Forcing Modem Mode\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700143 result = sierra_set_ms_mode(udev, SWIMS_SET_MODE_Modem);
144 if (result < 0)
Joe Perches191648d2013-04-19 11:44:00 -0700145 usb_stor_dbg(us, "SWIMS: Failed to switch to modem mode\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700146 return -EIO;
147 }
148 /* Force Mass Storage mode (keep CD-Rom) */
149 else if (swi_tru_install == TRU_FORCE_MS) {
Joe Perches191648d2013-04-19 11:44:00 -0700150 usb_stor_dbg(us, "SWIMS: Forcing Mass Storage Mode\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700151 goto complete;
152 }
153 /* Normal TRU-Install Logic */
154 else {
Joe Perches191648d2013-04-19 11:44:00 -0700155 usb_stor_dbg(us, "SWIMS: Normal SWoC Logic\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700156
157 swocInfo = kmalloc(sizeof(struct swoc_info),
158 GFP_KERNEL);
Joe Perches191648d2013-04-19 11:44:00 -0700159 if (!swocInfo)
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700160 return -ENOMEM;
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700161
162 retries = 3;
163 do {
164 retries--;
165 result = sierra_get_swoc_info(udev, swocInfo);
166 if (result < 0) {
Joe Perches191648d2013-04-19 11:44:00 -0700167 usb_stor_dbg(us, "SWIMS: Failed SWoC query\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700168 schedule_timeout_uninterruptible(2*HZ);
169 }
170 } while (retries && result < 0);
171
172 if (result < 0) {
Joe Perches191648d2013-04-19 11:44:00 -0700173 usb_stor_dbg(us, "SWIMS: Completely failed SWoC query\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700174 kfree(swocInfo);
175 return -EIO;
176 }
177
Joe Perches191648d2013-04-19 11:44:00 -0700178 debug_swoc(&us->pusb_dev->dev, swocInfo);
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700179
Felipe Balbif0183a32016-04-18 13:09:11 +0300180 /*
181 * If there is not Linux software on the TRU-Install device
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700182 * then switch to modem mode
183 */
184 if (!containsFullLinuxPackage(swocInfo)) {
Joe Perches191648d2013-04-19 11:44:00 -0700185 usb_stor_dbg(us, "SWIMS: Switching to Modem Mode\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700186 result = sierra_set_ms_mode(udev,
187 SWIMS_SET_MODE_Modem);
188 if (result < 0)
Joe Perches191648d2013-04-19 11:44:00 -0700189 usb_stor_dbg(us, "SWIMS: Failed to switch modem\n");
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700190 kfree(swocInfo);
191 return -EIO;
192 }
193 kfree(swocInfo);
194 }
195complete:
196 result = device_create_file(&us->pusb_intf->dev, &dev_attr_truinst);
197
Alan Sternbe475d92009-05-21 17:37:58 -0400198 return 0;
Kevin Lloyd32fe5e32008-07-10 14:14:57 -0700199}
200