blob: 300349fe8dc04945d956ec0dd17a470aa7ddb426 [file] [log] [blame]
Maximilian Schneiderf155d9c2016-06-08 18:00:26 +00001/* CAN driver for Geschwister Schneider USB/CAN devices
2 * and bytewerk.org candleLight USB CAN interfaces.
Maximilian Schneiderd08e9732013-12-24 19:29:45 +00003 *
Maximilian Schneiderf155d9c2016-06-08 18:00:26 +00004 * Copyright (C) 2013-2016 Geschwister Schneider Technologie-,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +00005 * Entwicklungs- und Vertriebs UG (Haftungsbeschränkt).
Maximilian Schneiderf155d9c2016-06-08 18:00:26 +00006 * Copyright (C) 2016 Hubert Denkmair
Maximilian Schneiderd08e9732013-12-24 19:29:45 +00007 *
8 * Many thanks to all socketcan devs!
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published
12 * by the Free Software Foundation; version 2 of the License.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 */
19
20#include <linux/init.h>
21#include <linux/signal.h>
22#include <linux/module.h>
23#include <linux/netdevice.h>
24#include <linux/usb.h>
25
26#include <linux/can.h>
27#include <linux/can/dev.h>
28#include <linux/can/error.h>
29
30/* Device specific constants */
31#define USB_GSUSB_1_VENDOR_ID 0x1d50
32#define USB_GSUSB_1_PRODUCT_ID 0x606f
33
Maximilian Schneiderf155d9c2016-06-08 18:00:26 +000034#define USB_CANDLELIGHT_VENDOR_ID 0x1209
35#define USB_CANDLELIGHT_PRODUCT_ID 0x2323
36
Maximilian Schneiderd08e9732013-12-24 19:29:45 +000037#define GSUSB_ENDPOINT_IN 1
38#define GSUSB_ENDPOINT_OUT 2
39
40/* Device specific constants */
41enum gs_usb_breq {
42 GS_USB_BREQ_HOST_FORMAT = 0,
43 GS_USB_BREQ_BITTIMING,
44 GS_USB_BREQ_MODE,
45 GS_USB_BREQ_BERR,
46 GS_USB_BREQ_BT_CONST,
Maximilian Schneider05ca5272016-06-10 20:39:22 +000047 GS_USB_BREQ_DEVICE_CONFIG,
48 GS_USB_BREQ_TIMESTAMP,
49 GS_USB_BREQ_IDENTIFY,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +000050};
51
52enum gs_can_mode {
53 /* reset a channel. turns it off */
54 GS_CAN_MODE_RESET = 0,
55 /* starts a channel */
56 GS_CAN_MODE_START
57};
58
59enum gs_can_state {
60 GS_CAN_STATE_ERROR_ACTIVE = 0,
61 GS_CAN_STATE_ERROR_WARNING,
62 GS_CAN_STATE_ERROR_PASSIVE,
63 GS_CAN_STATE_BUS_OFF,
64 GS_CAN_STATE_STOPPED,
65 GS_CAN_STATE_SLEEPING
66};
67
Maximilian Schneider05ca5272016-06-10 20:39:22 +000068enum gs_can_identify_mode {
69 GS_CAN_IDENTIFY_OFF = 0,
70 GS_CAN_IDENTIFY_ON
71};
72
Maximilian Schneiderd08e9732013-12-24 19:29:45 +000073/* data types passed between host and device */
74struct gs_host_config {
75 u32 byte_order;
76} __packed;
77/* All data exchanged between host and device is exchanged in host byte order,
78 * thanks to the struct gs_host_config byte_order member, which is sent first
79 * to indicate the desired byte order.
80 */
81
82struct gs_device_config {
83 u8 reserved1;
84 u8 reserved2;
85 u8 reserved3;
86 u8 icount;
87 u32 sw_version;
88 u32 hw_version;
89} __packed;
90
91#define GS_CAN_MODE_NORMAL 0
Maximilian Schneider9be95c92016-06-10 20:39:22 +000092#define GS_CAN_MODE_LISTEN_ONLY BIT(0)
93#define GS_CAN_MODE_LOOP_BACK BIT(1)
94#define GS_CAN_MODE_TRIPLE_SAMPLE BIT(2)
95#define GS_CAN_MODE_ONE_SHOT BIT(3)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +000096
97struct gs_device_mode {
98 u32 mode;
99 u32 flags;
100} __packed;
101
102struct gs_device_state {
103 u32 state;
104 u32 rxerr;
105 u32 txerr;
106} __packed;
107
108struct gs_device_bittiming {
109 u32 prop_seg;
110 u32 phase_seg1;
111 u32 phase_seg2;
112 u32 sjw;
113 u32 brp;
114} __packed;
115
Maximilian Schneider05ca5272016-06-10 20:39:22 +0000116struct gs_identify_mode {
117 u32 mode;
118} __packed;
119
Maximilian Schneider9be95c92016-06-10 20:39:22 +0000120#define GS_CAN_FEATURE_LISTEN_ONLY BIT(0)
121#define GS_CAN_FEATURE_LOOP_BACK BIT(1)
122#define GS_CAN_FEATURE_TRIPLE_SAMPLE BIT(2)
123#define GS_CAN_FEATURE_ONE_SHOT BIT(3)
Maximilian Schneider05ca5272016-06-10 20:39:22 +0000124#define GS_CAN_FEATURE_HW_TIMESTAMP BIT(4)
125#define GS_CAN_FEATURE_IDENTIFY BIT(5)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000126
127struct gs_device_bt_const {
128 u32 feature;
129 u32 fclk_can;
130 u32 tseg1_min;
131 u32 tseg1_max;
132 u32 tseg2_min;
133 u32 tseg2_max;
134 u32 sjw_max;
135 u32 brp_min;
136 u32 brp_max;
137 u32 brp_inc;
138} __packed;
139
140#define GS_CAN_FLAG_OVERFLOW 1
141
142struct gs_host_frame {
143 u32 echo_id;
144 u32 can_id;
145
146 u8 can_dlc;
147 u8 channel;
148 u8 flags;
149 u8 reserved;
150
151 u8 data[8];
152} __packed;
153/* The GS USB devices make use of the same flags and masks as in
154 * linux/can.h and linux/can/error.h, and no additional mapping is necessary.
155 */
156
157/* Only send a max of GS_MAX_TX_URBS frames per channel at a time. */
158#define GS_MAX_TX_URBS 10
159/* Only launch a max of GS_MAX_RX_URBS usb requests at a time. */
160#define GS_MAX_RX_URBS 30
161/* Maximum number of interfaces the driver supports per device.
162 * Current hardware only supports 2 interfaces. The future may vary.
163 */
164#define GS_MAX_INTF 2
165
166struct gs_tx_context {
167 struct gs_can *dev;
168 unsigned int echo_id;
169};
170
171struct gs_can {
172 struct can_priv can; /* must be the first member */
173
174 struct gs_usb *parent;
175
176 struct net_device *netdev;
177 struct usb_device *udev;
178 struct usb_interface *iface;
179
180 struct can_bittiming_const bt_const;
181 unsigned int channel; /* channel number */
182
Nik Nybyae421e32015-06-29 19:09:57 -0400183 /* This lock prevents a race condition between xmit and receive. */
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000184 spinlock_t tx_ctx_lock;
185 struct gs_tx_context tx_context[GS_MAX_TX_URBS];
186
187 struct usb_anchor tx_submitted;
188 atomic_t active_tx_urbs;
189};
190
191/* usb interface struct */
192struct gs_usb {
193 struct gs_can *canch[GS_MAX_INTF];
194 struct usb_anchor rx_submitted;
195 atomic_t active_channels;
196 struct usb_device *udev;
197};
198
199/* 'allocate' a tx context.
200 * returns a valid tx context or NULL if there is no space.
201 */
202static struct gs_tx_context *gs_alloc_tx_context(struct gs_can *dev)
203{
204 int i = 0;
205 unsigned long flags;
206
207 spin_lock_irqsave(&dev->tx_ctx_lock, flags);
208
209 for (; i < GS_MAX_TX_URBS; i++) {
210 if (dev->tx_context[i].echo_id == GS_MAX_TX_URBS) {
211 dev->tx_context[i].echo_id = i;
212 spin_unlock_irqrestore(&dev->tx_ctx_lock, flags);
213 return &dev->tx_context[i];
214 }
215 }
216
217 spin_unlock_irqrestore(&dev->tx_ctx_lock, flags);
218 return NULL;
219}
220
221/* releases a tx context
222 */
223static void gs_free_tx_context(struct gs_tx_context *txc)
224{
225 txc->echo_id = GS_MAX_TX_URBS;
226}
227
228/* Get a tx context by id.
229 */
Maximilian Schneider9be95c92016-06-10 20:39:22 +0000230static struct gs_tx_context *gs_get_tx_context(struct gs_can *dev,
231 unsigned int id)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000232{
233 unsigned long flags;
234
235 if (id < GS_MAX_TX_URBS) {
236 spin_lock_irqsave(&dev->tx_ctx_lock, flags);
237 if (dev->tx_context[id].echo_id == id) {
238 spin_unlock_irqrestore(&dev->tx_ctx_lock, flags);
239 return &dev->tx_context[id];
240 }
241 spin_unlock_irqrestore(&dev->tx_ctx_lock, flags);
242 }
243 return NULL;
244}
245
246static int gs_cmd_reset(struct gs_usb *gsusb, struct gs_can *gsdev)
247{
248 struct gs_device_mode *dm;
249 struct usb_interface *intf = gsdev->iface;
250 int rc;
251
252 dm = kzalloc(sizeof(*dm), GFP_KERNEL);
253 if (!dm)
254 return -ENOMEM;
255
256 dm->mode = GS_CAN_MODE_RESET;
257
258 rc = usb_control_msg(interface_to_usbdev(intf),
259 usb_sndctrlpipe(interface_to_usbdev(intf), 0),
260 GS_USB_BREQ_MODE,
Ethan Zonca540a27a2017-02-24 11:00:34 -0500261 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000262 gsdev->channel,
263 0,
264 dm,
265 sizeof(*dm),
266 1000);
267
268 return rc;
269}
270
271static void gs_update_state(struct gs_can *dev, struct can_frame *cf)
272{
273 struct can_device_stats *can_stats = &dev->can.can_stats;
274
275 if (cf->can_id & CAN_ERR_RESTARTED) {
276 dev->can.state = CAN_STATE_ERROR_ACTIVE;
277 can_stats->restarts++;
278 } else if (cf->can_id & CAN_ERR_BUSOFF) {
279 dev->can.state = CAN_STATE_BUS_OFF;
280 can_stats->bus_off++;
281 } else if (cf->can_id & CAN_ERR_CRTL) {
282 if ((cf->data[1] & CAN_ERR_CRTL_TX_WARNING) ||
283 (cf->data[1] & CAN_ERR_CRTL_RX_WARNING)) {
284 dev->can.state = CAN_STATE_ERROR_WARNING;
285 can_stats->error_warning++;
286 } else if ((cf->data[1] & CAN_ERR_CRTL_TX_PASSIVE) ||
287 (cf->data[1] & CAN_ERR_CRTL_RX_PASSIVE)) {
288 dev->can.state = CAN_STATE_ERROR_PASSIVE;
289 can_stats->error_passive++;
290 } else {
291 dev->can.state = CAN_STATE_ERROR_ACTIVE;
292 }
293 }
294}
295
Nik Nybyae421e32015-06-29 19:09:57 -0400296static void gs_usb_receive_bulk_callback(struct urb *urb)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000297{
298 struct gs_usb *usbcan = urb->context;
299 struct gs_can *dev;
300 struct net_device *netdev;
301 int rc;
302 struct net_device_stats *stats;
303 struct gs_host_frame *hf = urb->transfer_buffer;
304 struct gs_tx_context *txc;
305 struct can_frame *cf;
306 struct sk_buff *skb;
307
308 BUG_ON(!usbcan);
309
310 switch (urb->status) {
311 case 0: /* success */
312 break;
313 case -ENOENT:
314 case -ESHUTDOWN:
315 return;
316 default:
317 /* do not resubmit aborted urbs. eg: when device goes down */
318 return;
319 }
320
321 /* device reports out of range channel id */
322 if (hf->channel >= GS_MAX_INTF)
323 goto resubmit_urb;
324
325 dev = usbcan->canch[hf->channel];
326
327 netdev = dev->netdev;
328 stats = &netdev->stats;
329
330 if (!netif_device_present(netdev))
331 return;
332
333 if (hf->echo_id == -1) { /* normal rx */
334 skb = alloc_can_skb(dev->netdev, &cf);
335 if (!skb)
336 return;
337
338 cf->can_id = hf->can_id;
339
340 cf->can_dlc = get_can_dlc(hf->can_dlc);
341 memcpy(cf->data, hf->data, 8);
342
343 /* ERROR frames tell us information about the controller */
344 if (hf->can_id & CAN_ERR_FLAG)
345 gs_update_state(dev, cf);
346
347 netdev->stats.rx_packets++;
348 netdev->stats.rx_bytes += hf->can_dlc;
349
350 netif_rx(skb);
351 } else { /* echo_id == hf->echo_id */
352 if (hf->echo_id >= GS_MAX_TX_URBS) {
353 netdev_err(netdev,
354 "Unexpected out of range echo id %d\n",
355 hf->echo_id);
356 goto resubmit_urb;
357 }
358
359 netdev->stats.tx_packets++;
360 netdev->stats.tx_bytes += hf->can_dlc;
361
362 txc = gs_get_tx_context(dev, hf->echo_id);
363
364 /* bad devices send bad echo_ids. */
365 if (!txc) {
366 netdev_err(netdev,
367 "Unexpected unused echo id %d\n",
368 hf->echo_id);
369 goto resubmit_urb;
370 }
371
372 can_get_echo_skb(netdev, hf->echo_id);
373
374 gs_free_tx_context(txc);
375
376 netif_wake_queue(netdev);
377 }
378
379 if (hf->flags & GS_CAN_FLAG_OVERFLOW) {
380 skb = alloc_can_err_skb(netdev, &cf);
381 if (!skb)
382 goto resubmit_urb;
383
384 cf->can_id |= CAN_ERR_CRTL;
385 cf->can_dlc = CAN_ERR_DLC;
386 cf->data[1] = CAN_ERR_CRTL_RX_OVERFLOW;
387 stats->rx_over_errors++;
388 stats->rx_errors++;
389 netif_rx(skb);
390 }
391
392 resubmit_urb:
393 usb_fill_bulk_urb(urb,
394 usbcan->udev,
395 usb_rcvbulkpipe(usbcan->udev, GSUSB_ENDPOINT_IN),
396 hf,
397 sizeof(struct gs_host_frame),
Nik Nybyae421e32015-06-29 19:09:57 -0400398 gs_usb_receive_bulk_callback,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000399 usbcan
400 );
401
402 rc = usb_submit_urb(urb, GFP_ATOMIC);
403
404 /* USB failure take down all interfaces */
405 if (rc == -ENODEV) {
406 for (rc = 0; rc < GS_MAX_INTF; rc++) {
407 if (usbcan->canch[rc])
408 netif_device_detach(usbcan->canch[rc]->netdev);
409 }
410 }
411}
412
413static int gs_usb_set_bittiming(struct net_device *netdev)
414{
415 struct gs_can *dev = netdev_priv(netdev);
416 struct can_bittiming *bt = &dev->can.bittiming;
417 struct usb_interface *intf = dev->iface;
418 int rc;
419 struct gs_device_bittiming *dbt;
420
421 dbt = kmalloc(sizeof(*dbt), GFP_KERNEL);
422 if (!dbt)
423 return -ENOMEM;
424
425 dbt->prop_seg = bt->prop_seg;
426 dbt->phase_seg1 = bt->phase_seg1;
427 dbt->phase_seg2 = bt->phase_seg2;
428 dbt->sjw = bt->sjw;
429 dbt->brp = bt->brp;
430
431 /* request bit timings */
432 rc = usb_control_msg(interface_to_usbdev(intf),
433 usb_sndctrlpipe(interface_to_usbdev(intf), 0),
434 GS_USB_BREQ_BITTIMING,
Ethan Zonca540a27a2017-02-24 11:00:34 -0500435 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000436 dev->channel,
437 0,
438 dbt,
439 sizeof(*dbt),
440 1000);
441
442 kfree(dbt);
443
444 if (rc < 0)
445 dev_err(netdev->dev.parent, "Couldn't set bittimings (err=%d)",
446 rc);
447
448 return rc;
449}
450
451static void gs_usb_xmit_callback(struct urb *urb)
452{
453 struct gs_tx_context *txc = urb->context;
454 struct gs_can *dev = txc->dev;
455 struct net_device *netdev = dev->netdev;
456
457 if (urb->status)
458 netdev_info(netdev, "usb xmit fail %d\n", txc->echo_id);
459
460 usb_free_coherent(urb->dev,
461 urb->transfer_buffer_length,
462 urb->transfer_buffer,
463 urb->transfer_dma);
464
465 atomic_dec(&dev->active_tx_urbs);
466
467 if (!netif_device_present(netdev))
468 return;
469
470 if (netif_queue_stopped(netdev))
471 netif_wake_queue(netdev);
472}
473
Maximilian Schneider9be95c92016-06-10 20:39:22 +0000474static netdev_tx_t gs_can_start_xmit(struct sk_buff *skb,
475 struct net_device *netdev)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000476{
477 struct gs_can *dev = netdev_priv(netdev);
478 struct net_device_stats *stats = &dev->netdev->stats;
479 struct urb *urb;
480 struct gs_host_frame *hf;
481 struct can_frame *cf;
482 int rc;
483 unsigned int idx;
484 struct gs_tx_context *txc;
485
486 if (can_dropped_invalid_skb(netdev, skb))
487 return NETDEV_TX_OK;
488
489 /* find an empty context to keep track of transmission */
490 txc = gs_alloc_tx_context(dev);
491 if (!txc)
492 return NETDEV_TX_BUSY;
493
494 /* create a URB, and a buffer for it */
495 urb = usb_alloc_urb(0, GFP_ATOMIC);
Wolfram Sang2a4a1e42016-08-11 23:05:22 +0200496 if (!urb)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000497 goto nomem_urb;
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000498
499 hf = usb_alloc_coherent(dev->udev, sizeof(*hf), GFP_ATOMIC,
500 &urb->transfer_dma);
501 if (!hf) {
502 netdev_err(netdev, "No memory left for USB buffer\n");
503 goto nomem_hf;
504 }
505
506 idx = txc->echo_id;
507
508 if (idx >= GS_MAX_TX_URBS) {
509 netdev_err(netdev, "Invalid tx context %d\n", idx);
510 goto badidx;
511 }
512
513 hf->echo_id = idx;
514 hf->channel = dev->channel;
515
516 cf = (struct can_frame *)skb->data;
517
518 hf->can_id = cf->can_id;
519 hf->can_dlc = cf->can_dlc;
520 memcpy(hf->data, cf->data, cf->can_dlc);
521
522 usb_fill_bulk_urb(urb, dev->udev,
523 usb_sndbulkpipe(dev->udev, GSUSB_ENDPOINT_OUT),
524 hf,
525 sizeof(*hf),
526 gs_usb_xmit_callback,
527 txc);
528
529 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
530 usb_anchor_urb(urb, &dev->tx_submitted);
531
532 can_put_echo_skb(skb, netdev, idx);
533
534 atomic_inc(&dev->active_tx_urbs);
535
536 rc = usb_submit_urb(urb, GFP_ATOMIC);
537 if (unlikely(rc)) { /* usb send failed */
538 atomic_dec(&dev->active_tx_urbs);
539
540 can_free_echo_skb(netdev, idx);
541 gs_free_tx_context(txc);
542
543 usb_unanchor_urb(urb);
544 usb_free_coherent(dev->udev,
545 sizeof(*hf),
546 hf,
547 urb->transfer_dma);
548
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000549 if (rc == -ENODEV) {
550 netif_device_detach(netdev);
551 } else {
552 netdev_err(netdev, "usb_submit failed (err=%d)\n", rc);
553 stats->tx_dropped++;
554 }
555 } else {
556 /* Slow down tx path */
557 if (atomic_read(&dev->active_tx_urbs) >= GS_MAX_TX_URBS)
558 netif_stop_queue(netdev);
559 }
560
561 /* let usb core take care of this urb */
562 usb_free_urb(urb);
563
564 return NETDEV_TX_OK;
565
566 badidx:
567 usb_free_coherent(dev->udev,
568 sizeof(*hf),
569 hf,
570 urb->transfer_dma);
571 nomem_hf:
572 usb_free_urb(urb);
573
574 nomem_urb:
575 gs_free_tx_context(txc);
576 dev_kfree_skb(skb);
577 stats->tx_dropped++;
578 return NETDEV_TX_OK;
579}
580
581static int gs_can_open(struct net_device *netdev)
582{
583 struct gs_can *dev = netdev_priv(netdev);
584 struct gs_usb *parent = dev->parent;
585 int rc, i;
586 struct gs_device_mode *dm;
587 u32 ctrlmode;
588
589 rc = open_candev(netdev);
590 if (rc)
591 return rc;
592
593 if (atomic_add_return(1, &parent->active_channels) == 1) {
594 for (i = 0; i < GS_MAX_RX_URBS; i++) {
595 struct urb *urb;
596 u8 *buf;
597
598 /* alloc rx urb */
599 urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sang2a4a1e42016-08-11 23:05:22 +0200600 if (!urb)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000601 return -ENOMEM;
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000602
603 /* alloc rx buffer */
604 buf = usb_alloc_coherent(dev->udev,
605 sizeof(struct gs_host_frame),
606 GFP_KERNEL,
607 &urb->transfer_dma);
608 if (!buf) {
609 netdev_err(netdev,
610 "No memory left for USB buffer\n");
611 usb_free_urb(urb);
612 return -ENOMEM;
613 }
614
615 /* fill, anchor, and submit rx urb */
616 usb_fill_bulk_urb(urb,
617 dev->udev,
618 usb_rcvbulkpipe(dev->udev,
619 GSUSB_ENDPOINT_IN),
620 buf,
621 sizeof(struct gs_host_frame),
Nik Nybyae421e32015-06-29 19:09:57 -0400622 gs_usb_receive_bulk_callback,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000623 parent);
624 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
625
626 usb_anchor_urb(urb, &parent->rx_submitted);
627
628 rc = usb_submit_urb(urb, GFP_KERNEL);
629 if (rc) {
630 if (rc == -ENODEV)
631 netif_device_detach(dev->netdev);
632
633 netdev_err(netdev,
634 "usb_submit failed (err=%d)\n",
635 rc);
636
637 usb_unanchor_urb(urb);
638 break;
639 }
640
641 /* Drop reference,
642 * USB core will take care of freeing it
643 */
644 usb_free_urb(urb);
645 }
646 }
647
648 dm = kmalloc(sizeof(*dm), GFP_KERNEL);
649 if (!dm)
650 return -ENOMEM;
651
652 /* flags */
653 ctrlmode = dev->can.ctrlmode;
654 dm->flags = 0;
655
656 if (ctrlmode & CAN_CTRLMODE_LOOPBACK)
657 dm->flags |= GS_CAN_MODE_LOOP_BACK;
658 else if (ctrlmode & CAN_CTRLMODE_LISTENONLY)
659 dm->flags |= GS_CAN_MODE_LISTEN_ONLY;
660
661 /* Controller is not allowed to retry TX
662 * this mode is unavailable on atmels uc3c hardware
663 */
664 if (ctrlmode & CAN_CTRLMODE_ONE_SHOT)
665 dm->flags |= GS_CAN_MODE_ONE_SHOT;
666
667 if (ctrlmode & CAN_CTRLMODE_3_SAMPLES)
668 dm->flags |= GS_CAN_MODE_TRIPLE_SAMPLE;
669
670 /* finally start device */
671 dm->mode = GS_CAN_MODE_START;
672 rc = usb_control_msg(interface_to_usbdev(dev->iface),
673 usb_sndctrlpipe(interface_to_usbdev(dev->iface), 0),
674 GS_USB_BREQ_MODE,
Maximilian Schneider9be95c92016-06-10 20:39:22 +0000675 USB_DIR_OUT | USB_TYPE_VENDOR |
676 USB_RECIP_INTERFACE,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000677 dev->channel,
678 0,
679 dm,
680 sizeof(*dm),
681 1000);
682
683 if (rc < 0) {
684 netdev_err(netdev, "Couldn't start device (err=%d)\n", rc);
685 kfree(dm);
686 return rc;
687 }
688
689 kfree(dm);
690
691 dev->can.state = CAN_STATE_ERROR_ACTIVE;
692
693 if (!(dev->can.ctrlmode & CAN_CTRLMODE_LISTENONLY))
694 netif_start_queue(netdev);
695
696 return 0;
697}
698
699static int gs_can_close(struct net_device *netdev)
700{
701 int rc;
702 struct gs_can *dev = netdev_priv(netdev);
703 struct gs_usb *parent = dev->parent;
704
705 netif_stop_queue(netdev);
706
707 /* Stop polling */
708 if (atomic_dec_and_test(&parent->active_channels))
709 usb_kill_anchored_urbs(&parent->rx_submitted);
710
711 /* Stop sending URBs */
712 usb_kill_anchored_urbs(&dev->tx_submitted);
713 atomic_set(&dev->active_tx_urbs, 0);
714
715 /* reset the device */
716 rc = gs_cmd_reset(parent, dev);
717 if (rc < 0)
718 netdev_warn(netdev, "Couldn't shutdown device (err=%d)", rc);
719
720 /* reset tx contexts */
721 for (rc = 0; rc < GS_MAX_TX_URBS; rc++) {
722 dev->tx_context[rc].dev = dev;
723 dev->tx_context[rc].echo_id = GS_MAX_TX_URBS;
724 }
725
726 /* close the netdev */
727 close_candev(netdev);
728
729 return 0;
730}
731
732static const struct net_device_ops gs_usb_netdev_ops = {
733 .ndo_open = gs_can_open,
734 .ndo_stop = gs_can_close,
735 .ndo_start_xmit = gs_can_start_xmit,
Marc Kleine-Budde50212b42014-11-18 13:16:13 +0100736 .ndo_change_mtu = can_change_mtu,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000737};
738
Maximilian Schneider05ca5272016-06-10 20:39:22 +0000739static int gs_usb_set_identify(struct net_device *netdev, bool do_identify)
740{
741 struct gs_can *dev = netdev_priv(netdev);
742 struct gs_identify_mode imode;
743 int rc;
744
745 if (do_identify)
746 imode.mode = GS_CAN_IDENTIFY_ON;
747 else
748 imode.mode = GS_CAN_IDENTIFY_OFF;
749
750 rc = usb_control_msg(interface_to_usbdev(dev->iface),
751 usb_sndctrlpipe(interface_to_usbdev(dev->iface),
752 0),
753 GS_USB_BREQ_IDENTIFY,
754 USB_DIR_OUT | USB_TYPE_VENDOR |
755 USB_RECIP_INTERFACE,
756 dev->channel,
757 0,
758 &imode,
759 sizeof(imode),
760 100);
761
762 return (rc > 0) ? 0 : rc;
763}
764
765/* blink LED's for finding the this interface */
766static int gs_usb_set_phys_id(struct net_device *dev,
767 enum ethtool_phys_id_state state)
768{
769 int rc = 0;
770
771 switch (state) {
772 case ETHTOOL_ID_ACTIVE:
773 rc = gs_usb_set_identify(dev, GS_CAN_IDENTIFY_ON);
774 break;
775 case ETHTOOL_ID_INACTIVE:
776 rc = gs_usb_set_identify(dev, GS_CAN_IDENTIFY_OFF);
777 break;
778 default:
779 break;
780 }
781
782 return rc;
783}
784
785static const struct ethtool_ops gs_usb_ethtool_ops = {
786 .set_phys_id = gs_usb_set_phys_id,
787};
788
789static struct gs_can *gs_make_candev(unsigned int channel,
790 struct usb_interface *intf,
791 struct gs_device_config *dconf)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000792{
793 struct gs_can *dev;
794 struct net_device *netdev;
795 int rc;
796 struct gs_device_bt_const *bt_const;
797
798 bt_const = kmalloc(sizeof(*bt_const), GFP_KERNEL);
799 if (!bt_const)
800 return ERR_PTR(-ENOMEM);
801
802 /* fetch bit timing constants */
803 rc = usb_control_msg(interface_to_usbdev(intf),
804 usb_rcvctrlpipe(interface_to_usbdev(intf), 0),
805 GS_USB_BREQ_BT_CONST,
Ethan Zonca540a27a2017-02-24 11:00:34 -0500806 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000807 channel,
808 0,
809 bt_const,
810 sizeof(*bt_const),
811 1000);
812
813 if (rc < 0) {
814 dev_err(&intf->dev,
815 "Couldn't get bit timing const for channel (err=%d)\n",
816 rc);
817 kfree(bt_const);
818 return ERR_PTR(rc);
819 }
820
821 /* create netdev */
822 netdev = alloc_candev(sizeof(struct gs_can), GS_MAX_TX_URBS);
823 if (!netdev) {
824 dev_err(&intf->dev, "Couldn't allocate candev\n");
825 kfree(bt_const);
826 return ERR_PTR(-ENOMEM);
827 }
828
829 dev = netdev_priv(netdev);
830
831 netdev->netdev_ops = &gs_usb_netdev_ops;
832
833 netdev->flags |= IFF_ECHO; /* we support full roundtrip echo */
834
835 /* dev settup */
836 strcpy(dev->bt_const.name, "gs_usb");
837 dev->bt_const.tseg1_min = bt_const->tseg1_min;
838 dev->bt_const.tseg1_max = bt_const->tseg1_max;
839 dev->bt_const.tseg2_min = bt_const->tseg2_min;
840 dev->bt_const.tseg2_max = bt_const->tseg2_max;
841 dev->bt_const.sjw_max = bt_const->sjw_max;
842 dev->bt_const.brp_min = bt_const->brp_min;
843 dev->bt_const.brp_max = bt_const->brp_max;
844 dev->bt_const.brp_inc = bt_const->brp_inc;
845
846 dev->udev = interface_to_usbdev(intf);
847 dev->iface = intf;
848 dev->netdev = netdev;
849 dev->channel = channel;
850
851 init_usb_anchor(&dev->tx_submitted);
852 atomic_set(&dev->active_tx_urbs, 0);
853 spin_lock_init(&dev->tx_ctx_lock);
854 for (rc = 0; rc < GS_MAX_TX_URBS; rc++) {
855 dev->tx_context[rc].dev = dev;
856 dev->tx_context[rc].echo_id = GS_MAX_TX_URBS;
857 }
858
859 /* can settup */
860 dev->can.state = CAN_STATE_STOPPED;
861 dev->can.clock.freq = bt_const->fclk_can;
862 dev->can.bittiming_const = &dev->bt_const;
863 dev->can.do_set_bittiming = gs_usb_set_bittiming;
864
865 dev->can.ctrlmode_supported = 0;
866
867 if (bt_const->feature & GS_CAN_FEATURE_LISTEN_ONLY)
868 dev->can.ctrlmode_supported |= CAN_CTRLMODE_LISTENONLY;
869
870 if (bt_const->feature & GS_CAN_FEATURE_LOOP_BACK)
871 dev->can.ctrlmode_supported |= CAN_CTRLMODE_LOOPBACK;
872
873 if (bt_const->feature & GS_CAN_FEATURE_TRIPLE_SAMPLE)
874 dev->can.ctrlmode_supported |= CAN_CTRLMODE_3_SAMPLES;
875
876 if (bt_const->feature & GS_CAN_FEATURE_ONE_SHOT)
877 dev->can.ctrlmode_supported |= CAN_CTRLMODE_ONE_SHOT;
878
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000879 SET_NETDEV_DEV(netdev, &intf->dev);
880
Maximilian Schneider05ca5272016-06-10 20:39:22 +0000881 if (dconf->sw_version > 1)
882 if (bt_const->feature & GS_CAN_FEATURE_IDENTIFY)
883 netdev->ethtool_ops = &gs_usb_ethtool_ops;
884
885 kfree(bt_const);
886
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000887 rc = register_candev(dev->netdev);
888 if (rc) {
889 free_candev(dev->netdev);
890 dev_err(&intf->dev, "Couldn't register candev (err=%d)\n", rc);
891 return ERR_PTR(rc);
892 }
893
894 return dev;
895}
896
897static void gs_destroy_candev(struct gs_can *dev)
898{
899 unregister_candev(dev->netdev);
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000900 usb_kill_anchored_urbs(&dev->tx_submitted);
Maximilain Schneidere9a2d812016-02-23 01:17:28 +0000901 free_candev(dev->netdev);
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000902}
903
Maximilian Schneider05ca5272016-06-10 20:39:22 +0000904static int gs_usb_probe(struct usb_interface *intf,
905 const struct usb_device_id *id)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000906{
907 struct gs_usb *dev;
908 int rc = -ENOMEM;
909 unsigned int icount, i;
Ethan Zoncac919a302017-02-24 11:27:36 -0500910 struct gs_host_config *hconf;
911 struct gs_device_config *dconf;
912
913 hconf = kmalloc(sizeof(*hconf), GFP_KERNEL);
914 if (!hconf)
915 return -ENOMEM;
916
917 hconf->byte_order = 0x0000beef;
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000918
919 /* send host config */
920 rc = usb_control_msg(interface_to_usbdev(intf),
921 usb_sndctrlpipe(interface_to_usbdev(intf), 0),
922 GS_USB_BREQ_HOST_FORMAT,
Ethan Zonca540a27a2017-02-24 11:00:34 -0500923 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000924 1,
925 intf->altsetting[0].desc.bInterfaceNumber,
Ethan Zoncac919a302017-02-24 11:27:36 -0500926 hconf,
927 sizeof(*hconf),
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000928 1000);
929
Ethan Zoncac919a302017-02-24 11:27:36 -0500930 kfree(hconf);
931
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000932 if (rc < 0) {
933 dev_err(&intf->dev, "Couldn't send data format (err=%d)\n",
934 rc);
935 return rc;
936 }
937
Ethan Zoncac919a302017-02-24 11:27:36 -0500938 dconf = kmalloc(sizeof(*dconf), GFP_KERNEL);
939 if (!dconf)
940 return -ENOMEM;
941
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000942 /* read device config */
943 rc = usb_control_msg(interface_to_usbdev(intf),
944 usb_rcvctrlpipe(interface_to_usbdev(intf), 0),
945 GS_USB_BREQ_DEVICE_CONFIG,
Ethan Zonca540a27a2017-02-24 11:00:34 -0500946 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000947 1,
948 intf->altsetting[0].desc.bInterfaceNumber,
Ethan Zoncac919a302017-02-24 11:27:36 -0500949 dconf,
950 sizeof(*dconf),
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000951 1000);
952 if (rc < 0) {
953 dev_err(&intf->dev, "Couldn't get device config: (err=%d)\n",
954 rc);
Ethan Zoncac919a302017-02-24 11:27:36 -0500955 kfree(dconf);
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000956 return rc;
957 }
958
Ethan Zoncac919a302017-02-24 11:27:36 -0500959 icount = dconf->icount + 1;
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000960 dev_info(&intf->dev, "Configuring for %d interfaces\n", icount);
961
962 if (icount > GS_MAX_INTF) {
963 dev_err(&intf->dev,
964 "Driver cannot handle more that %d CAN interfaces\n",
965 GS_MAX_INTF);
Ethan Zoncac919a302017-02-24 11:27:36 -0500966 kfree(dconf);
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000967 return -EINVAL;
968 }
969
970 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ethan Zoncac919a302017-02-24 11:27:36 -0500971 if (!dev) {
972 kfree(dconf);
Colin Ian King37920a72015-03-16 22:42:24 +0000973 return -ENOMEM;
Ethan Zoncac919a302017-02-24 11:27:36 -0500974 }
975
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000976 init_usb_anchor(&dev->rx_submitted);
977
978 atomic_set(&dev->active_channels, 0);
979
980 usb_set_intfdata(intf, dev);
981 dev->udev = interface_to_usbdev(intf);
982
983 for (i = 0; i < icount; i++) {
Ethan Zoncac919a302017-02-24 11:27:36 -0500984 dev->canch[i] = gs_make_candev(i, intf, dconf);
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000985 if (IS_ERR_OR_NULL(dev->canch[i])) {
Maximilain Schneidere9a2d812016-02-23 01:17:28 +0000986 /* save error code to return later */
987 rc = PTR_ERR(dev->canch[i]);
988
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000989 /* on failure destroy previously created candevs */
990 icount = i;
Maximilain Schneidere9a2d812016-02-23 01:17:28 +0000991 for (i = 0; i < icount; i++)
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000992 gs_destroy_candev(dev->canch[i]);
Maximilain Schneidere9a2d812016-02-23 01:17:28 +0000993
994 usb_kill_anchored_urbs(&dev->rx_submitted);
Ethan Zoncac919a302017-02-24 11:27:36 -0500995 kfree(dconf);
Maximilian Schneiderd08e9732013-12-24 19:29:45 +0000996 kfree(dev);
997 return rc;
998 }
999 dev->canch[i]->parent = dev;
1000 }
1001
Ethan Zoncac919a302017-02-24 11:27:36 -05001002 kfree(dconf);
1003
Maximilian Schneiderd08e9732013-12-24 19:29:45 +00001004 return 0;
1005}
1006
1007static void gs_usb_disconnect(struct usb_interface *intf)
1008{
1009 unsigned i;
1010 struct gs_usb *dev = usb_get_intfdata(intf);
1011 usb_set_intfdata(intf, NULL);
1012
1013 if (!dev) {
1014 dev_err(&intf->dev, "Disconnect (nodata)\n");
1015 return;
1016 }
1017
Maximilain Schneidere9a2d812016-02-23 01:17:28 +00001018 for (i = 0; i < GS_MAX_INTF; i++)
1019 if (dev->canch[i])
1020 gs_destroy_candev(dev->canch[i]);
Maximilian Schneiderd08e9732013-12-24 19:29:45 +00001021
1022 usb_kill_anchored_urbs(&dev->rx_submitted);
Maximilain Schneidere9a2d812016-02-23 01:17:28 +00001023 kfree(dev);
Maximilian Schneiderd08e9732013-12-24 19:29:45 +00001024}
1025
1026static const struct usb_device_id gs_usb_table[] = {
Maximilian Schneider2fe6c942016-04-25 08:54:19 +00001027 { USB_DEVICE_INTERFACE_NUMBER(USB_GSUSB_1_VENDOR_ID,
1028 USB_GSUSB_1_PRODUCT_ID, 0) },
Maximilian Schneiderf155d9c2016-06-08 18:00:26 +00001029 { USB_DEVICE_INTERFACE_NUMBER(USB_CANDLELIGHT_VENDOR_ID,
1030 USB_CANDLELIGHT_PRODUCT_ID, 0) },
Maximilian Schneiderd08e9732013-12-24 19:29:45 +00001031 {} /* Terminating entry */
1032};
1033
1034MODULE_DEVICE_TABLE(usb, gs_usb_table);
1035
1036static struct usb_driver gs_usb_driver = {
1037 .name = "gs_usb",
1038 .probe = gs_usb_probe,
1039 .disconnect = gs_usb_disconnect,
1040 .id_table = gs_usb_table,
1041};
1042
1043module_usb_driver(gs_usb_driver);
1044
1045MODULE_AUTHOR("Maximilian Schneider <mws@schneidersoft.net>");
1046MODULE_DESCRIPTION(
1047"Socket CAN device driver for Geschwister Schneider Technologie-, "
Maximilian Schneiderf155d9c2016-06-08 18:00:26 +00001048"Entwicklungs- und Vertriebs UG. USB2.0 to CAN interfaces\n"
1049"and bytewerk.org candleLight USB CAN interfaces.");
Maximilian Schneiderd08e9732013-12-24 19:29:45 +00001050MODULE_LICENSE("GPL v2");