GNU Linux-libre 4.9.337-gnu1
[releases.git] / drivers / net / wireless / mediatek / mt7601u / usb.c
1 /*
2  * Copyright (C) 2015 Jakub Kicinski <kubakici@wp.pl>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2
6  * as published by the Free Software Foundation
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  */
13
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/usb.h>
17
18 #include "mt7601u.h"
19 #include "usb.h"
20 #include "trace.h"
21
22 static struct usb_device_id mt7601u_device_table[] = {
23         { USB_DEVICE(0x0b05, 0x17d3) },
24         { USB_DEVICE(0x0e8d, 0x760a) },
25         { USB_DEVICE(0x0e8d, 0x760b) },
26         { USB_DEVICE(0x13d3, 0x3431) },
27         { USB_DEVICE(0x13d3, 0x3434) },
28         { USB_DEVICE(0x148f, 0x7601) },
29         { USB_DEVICE(0x148f, 0x760a) },
30         { USB_DEVICE(0x148f, 0x760b) },
31         { USB_DEVICE(0x148f, 0x760c) },
32         { USB_DEVICE(0x148f, 0x760d) },
33         { USB_DEVICE(0x2001, 0x3d04) },
34         { USB_DEVICE(0x2717, 0x4106) },
35         { USB_DEVICE(0x2955, 0x0001) },
36         { USB_DEVICE(0x2955, 0x1001) },
37         { USB_DEVICE(0x2955, 0x1003) },
38         { USB_DEVICE(0x2a5f, 0x1000) },
39         { USB_DEVICE(0x7392, 0x7710) },
40         { 0, }
41 };
42
43 bool mt7601u_usb_alloc_buf(struct mt7601u_dev *dev, size_t len,
44                            struct mt7601u_dma_buf *buf)
45 {
46         struct usb_device *usb_dev = mt7601u_to_usb_dev(dev);
47
48         buf->len = len;
49         buf->urb = usb_alloc_urb(0, GFP_KERNEL);
50         buf->buf = usb_alloc_coherent(usb_dev, buf->len, GFP_KERNEL, &buf->dma);
51
52         return !buf->urb || !buf->buf;
53 }
54
55 void mt7601u_usb_free_buf(struct mt7601u_dev *dev, struct mt7601u_dma_buf *buf)
56 {
57         struct usb_device *usb_dev = mt7601u_to_usb_dev(dev);
58
59         usb_free_coherent(usb_dev, buf->len, buf->buf, buf->dma);
60         usb_free_urb(buf->urb);
61 }
62
63 int mt7601u_usb_submit_buf(struct mt7601u_dev *dev, int dir, int ep_idx,
64                            struct mt7601u_dma_buf *buf, gfp_t gfp,
65                            usb_complete_t complete_fn, void *context)
66 {
67         struct usb_device *usb_dev = mt7601u_to_usb_dev(dev);
68         unsigned pipe;
69         int ret;
70
71         if (dir == USB_DIR_IN)
72                 pipe = usb_rcvbulkpipe(usb_dev, dev->in_eps[ep_idx]);
73         else
74                 pipe = usb_sndbulkpipe(usb_dev, dev->out_eps[ep_idx]);
75
76         usb_fill_bulk_urb(buf->urb, usb_dev, pipe, buf->buf, buf->len,
77                           complete_fn, context);
78         buf->urb->transfer_dma = buf->dma;
79         buf->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
80
81         trace_mt_submit_urb(dev, buf->urb);
82         ret = usb_submit_urb(buf->urb, gfp);
83         if (ret)
84                 dev_err(dev->dev, "Error: submit URB dir:%d ep:%d failed:%d\n",
85                         dir, ep_idx, ret);
86         return ret;
87 }
88
89 void mt7601u_complete_urb(struct urb *urb)
90 {
91         struct completion *cmpl = urb->context;
92
93         complete(cmpl);
94 }
95
96 int mt7601u_vendor_request(struct mt7601u_dev *dev, const u8 req,
97                            const u8 direction, const u16 val, const u16 offset,
98                            void *buf, const size_t buflen)
99 {
100         int i, ret;
101         struct usb_device *usb_dev = mt7601u_to_usb_dev(dev);
102         const u8 req_type = direction | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
103         const unsigned int pipe = (direction == USB_DIR_IN) ?
104                 usb_rcvctrlpipe(usb_dev, 0) : usb_sndctrlpipe(usb_dev, 0);
105
106         for (i = 0; i < MT_VEND_REQ_MAX_RETRY; i++) {
107                 ret = usb_control_msg(usb_dev, pipe, req, req_type,
108                                       val, offset, buf, buflen,
109                                       MT_VEND_REQ_TOUT_MS);
110                 trace_mt_vend_req(dev, pipe, req, req_type, val, offset,
111                                   buf, buflen, ret);
112
113                 if (ret == -ENODEV)
114                         set_bit(MT7601U_STATE_REMOVED, &dev->state);
115                 if (ret >= 0 || ret == -ENODEV)
116                         return ret;
117
118                 msleep(5);
119         }
120
121         dev_err(dev->dev, "Vendor request req:%02x off:%04x failed:%d\n",
122                 req, offset, ret);
123
124         return ret;
125 }
126
127 void mt7601u_vendor_reset(struct mt7601u_dev *dev)
128 {
129         mt7601u_vendor_request(dev, MT_VEND_DEV_MODE, USB_DIR_OUT,
130                                MT_VEND_DEV_MODE_RESET, 0, NULL, 0);
131 }
132
133 u32 mt7601u_rr(struct mt7601u_dev *dev, u32 offset)
134 {
135         int ret;
136         u32 val = ~0;
137
138         WARN_ONCE(offset > USHRT_MAX, "read high off:%08x", offset);
139
140         mutex_lock(&dev->vendor_req_mutex);
141
142         ret = mt7601u_vendor_request(dev, MT_VEND_MULTI_READ, USB_DIR_IN,
143                                      0, offset, dev->vend_buf, MT_VEND_BUF);
144         if (ret == MT_VEND_BUF)
145                 val = get_unaligned_le32(dev->vend_buf);
146         else if (ret > 0)
147                 dev_err(dev->dev, "Error: wrong size read:%d off:%08x\n",
148                         ret, offset);
149
150         mutex_unlock(&dev->vendor_req_mutex);
151
152         trace_reg_read(dev, offset, val);
153         return val;
154 }
155
156 int mt7601u_vendor_single_wr(struct mt7601u_dev *dev, const u8 req,
157                              const u16 offset, const u32 val)
158 {
159         int ret;
160
161         mutex_lock(&dev->vendor_req_mutex);
162
163         ret = mt7601u_vendor_request(dev, req, USB_DIR_OUT,
164                                      val & 0xffff, offset, NULL, 0);
165         if (!ret)
166                 ret = mt7601u_vendor_request(dev, req, USB_DIR_OUT,
167                                              val >> 16, offset + 2, NULL, 0);
168
169         mutex_unlock(&dev->vendor_req_mutex);
170
171         return ret;
172 }
173
174 void mt7601u_wr(struct mt7601u_dev *dev, u32 offset, u32 val)
175 {
176         WARN_ONCE(offset > USHRT_MAX, "write high off:%08x", offset);
177
178         mt7601u_vendor_single_wr(dev, MT_VEND_WRITE, offset, val);
179         trace_reg_write(dev, offset, val);
180 }
181
182 u32 mt7601u_rmw(struct mt7601u_dev *dev, u32 offset, u32 mask, u32 val)
183 {
184         val |= mt7601u_rr(dev, offset) & ~mask;
185         mt7601u_wr(dev, offset, val);
186         return val;
187 }
188
189 u32 mt7601u_rmc(struct mt7601u_dev *dev, u32 offset, u32 mask, u32 val)
190 {
191         u32 reg = mt7601u_rr(dev, offset);
192
193         val |= reg & ~mask;
194         if (reg != val)
195                 mt7601u_wr(dev, offset, val);
196         return val;
197 }
198
199 void mt7601u_wr_copy(struct mt7601u_dev *dev, u32 offset,
200                      const void *data, int len)
201 {
202         WARN_ONCE(offset & 3, "unaligned write copy off:%08x", offset);
203         WARN_ONCE(len & 3, "short write copy off:%08x", offset);
204
205         mt7601u_burst_write_regs(dev, offset, data, len / 4);
206 }
207
208 void mt7601u_addr_wr(struct mt7601u_dev *dev, const u32 offset, const u8 *addr)
209 {
210         mt7601u_wr(dev, offset, get_unaligned_le32(addr));
211         mt7601u_wr(dev, offset + 4, addr[4] | addr[5] << 8);
212 }
213
214 static int mt7601u_assign_pipes(struct usb_interface *usb_intf,
215                                 struct mt7601u_dev *dev)
216 {
217         struct usb_endpoint_descriptor *ep_desc;
218         struct usb_host_interface *intf_desc = usb_intf->cur_altsetting;
219         unsigned i, ep_i = 0, ep_o = 0;
220
221         BUILD_BUG_ON(sizeof(dev->in_eps) < __MT_EP_IN_MAX);
222         BUILD_BUG_ON(sizeof(dev->out_eps) < __MT_EP_OUT_MAX);
223
224         for (i = 0; i < intf_desc->desc.bNumEndpoints; i++) {
225                 ep_desc = &intf_desc->endpoint[i].desc;
226
227                 if (usb_endpoint_is_bulk_in(ep_desc) &&
228                     ep_i++ < __MT_EP_IN_MAX) {
229                         dev->in_eps[ep_i - 1] = usb_endpoint_num(ep_desc);
230                         dev->in_max_packet = usb_endpoint_maxp(ep_desc);
231                         /* Note: this is ignored by usb sub-system but vendor
232                          *       code does it. We can drop this at some point.
233                          */
234                         dev->in_eps[ep_i - 1] |= USB_DIR_IN;
235                 } else if (usb_endpoint_is_bulk_out(ep_desc) &&
236                            ep_o++ < __MT_EP_OUT_MAX) {
237                         dev->out_eps[ep_o - 1] = usb_endpoint_num(ep_desc);
238                         dev->out_max_packet = usb_endpoint_maxp(ep_desc);
239                 }
240         }
241
242         if (ep_i != __MT_EP_IN_MAX || ep_o != __MT_EP_OUT_MAX) {
243                 dev_err(dev->dev, "Error: wrong pipe number in:%d out:%d\n",
244                         ep_i, ep_o);
245                 return -EINVAL;
246         }
247
248         return 0;
249 }
250
251 static int mt7601u_probe(struct usb_interface *usb_intf,
252                          const struct usb_device_id *id)
253 {
254         struct usb_device *usb_dev = interface_to_usbdev(usb_intf);
255         struct mt7601u_dev *dev;
256         u32 asic_rev, mac_rev;
257         int ret;
258
259         dev = mt7601u_alloc_device(&usb_intf->dev);
260         if (!dev)
261                 return -ENOMEM;
262
263         usb_dev = usb_get_dev(usb_dev);
264         usb_reset_device(usb_dev);
265
266         usb_set_intfdata(usb_intf, dev);
267
268         dev->vend_buf = devm_kmalloc(dev->dev, MT_VEND_BUF, GFP_KERNEL);
269         if (!dev->vend_buf) {
270                 ret = -ENOMEM;
271                 goto err;
272         }
273
274         ret = mt7601u_assign_pipes(usb_intf, dev);
275         if (ret)
276                 goto err;
277         ret = mt7601u_wait_asic_ready(dev);
278         if (ret)
279                 goto err;
280
281         asic_rev = mt7601u_rr(dev, MT_ASIC_VERSION);
282         mac_rev = mt7601u_rr(dev, MT_MAC_CSR0);
283         dev_info(dev->dev, "ASIC revision: %08x MAC revision: %08x\n",
284                  asic_rev, mac_rev);
285
286         /* Note: vendor driver skips this check for MT7601U */
287         if (!(mt7601u_rr(dev, MT_EFUSE_CTRL) & MT_EFUSE_CTRL_SEL))
288                 dev_warn(dev->dev, "Warning: eFUSE not present\n");
289
290         ret = mt7601u_init_hardware(dev);
291         if (ret)
292                 goto err;
293         ret = mt7601u_register_device(dev);
294         if (ret)
295                 goto err_hw;
296
297         set_bit(MT7601U_STATE_INITIALIZED, &dev->state);
298
299         return 0;
300 err_hw:
301         mt7601u_cleanup(dev);
302 err:
303         usb_set_intfdata(usb_intf, NULL);
304         usb_put_dev(interface_to_usbdev(usb_intf));
305
306         destroy_workqueue(dev->stat_wq);
307         ieee80211_free_hw(dev->hw);
308         return ret;
309 }
310
311 static void mt7601u_disconnect(struct usb_interface *usb_intf)
312 {
313         struct mt7601u_dev *dev = usb_get_intfdata(usb_intf);
314
315         ieee80211_unregister_hw(dev->hw);
316         mt7601u_cleanup(dev);
317
318         usb_set_intfdata(usb_intf, NULL);
319         usb_put_dev(interface_to_usbdev(usb_intf));
320
321         destroy_workqueue(dev->stat_wq);
322         ieee80211_free_hw(dev->hw);
323 }
324
325 static int mt7601u_suspend(struct usb_interface *usb_intf, pm_message_t state)
326 {
327         struct mt7601u_dev *dev = usb_get_intfdata(usb_intf);
328
329         mt7601u_cleanup(dev);
330
331         return 0;
332 }
333
334 static int mt7601u_resume(struct usb_interface *usb_intf)
335 {
336         struct mt7601u_dev *dev = usb_get_intfdata(usb_intf);
337         int ret;
338
339         ret = mt7601u_init_hardware(dev);
340         if (ret)
341                 return ret;
342
343         set_bit(MT7601U_STATE_INITIALIZED, &dev->state);
344
345         return 0;
346 }
347
348 MODULE_DEVICE_TABLE(usb, mt7601u_device_table);
349 /*(DEBLOBBED)*/
350 MODULE_LICENSE("GPL");
351
352 static struct usb_driver mt7601u_driver = {
353         .name           = KBUILD_MODNAME,
354         .id_table       = mt7601u_device_table,
355         .probe          = mt7601u_probe,
356         .disconnect     = mt7601u_disconnect,
357         .suspend        = mt7601u_suspend,
358         .resume         = mt7601u_resume,
359         .reset_resume   = mt7601u_resume,
360         .soft_unbind    = 1,
361         .disable_hub_initiated_lpm = 1,
362 };
363 module_usb_driver(mt7601u_driver);