1 // SPDX-License-Identifier: GPL-2.0-only
2 /* SocketCAN driver for Microchip CAN BUS Analyzer Tool
4 * Copyright (C) 2017 Mobica Limited
6 * This driver is inspired by the 4.6.2 version of net/can/usb/usb_8dev.c
9 #include <asm/unaligned.h>
10 #include <linux/can.h>
11 #include <linux/can/dev.h>
12 #include <linux/can/error.h>
13 #include <linux/can/led.h>
14 #include <linux/module.h>
15 #include <linux/netdevice.h>
16 #include <linux/signal.h>
17 #include <linux/slab.h>
18 #include <linux/usb.h>
20 /* vendor and product id */
21 #define MCBA_MODULE_NAME "mcba_usb"
22 #define MCBA_VENDOR_ID 0x04d8
23 #define MCBA_PRODUCT_ID 0x0a30
25 /* driver constants */
26 #define MCBA_MAX_RX_URBS 20
27 #define MCBA_MAX_TX_URBS 20
28 #define MCBA_CTX_FREE MCBA_MAX_TX_URBS
30 /* RX buffer must be bigger than msg size since at the
31 * beginning USB messages are stacked.
33 #define MCBA_USB_RX_BUFF_SIZE 64
34 #define MCBA_USB_TX_BUFF_SIZE (sizeof(struct mcba_usb_msg))
36 /* MCBA endpoint numbers */
37 #define MCBA_USB_EP_IN 1
38 #define MCBA_USB_EP_OUT 1
40 /* Microchip command id */
41 #define MBCA_CMD_RECEIVE_MESSAGE 0xE3
42 #define MBCA_CMD_I_AM_ALIVE_FROM_CAN 0xF5
43 #define MBCA_CMD_I_AM_ALIVE_FROM_USB 0xF7
44 #define MBCA_CMD_CHANGE_BIT_RATE 0xA1
45 #define MBCA_CMD_TRANSMIT_MESSAGE_EV 0xA3
46 #define MBCA_CMD_SETUP_TERMINATION_RESISTANCE 0xA8
47 #define MBCA_CMD_READ_FW_VERSION 0xA9
48 #define MBCA_CMD_NOTHING_TO_SEND 0xFF
49 #define MBCA_CMD_TRANSMIT_MESSAGE_RSP 0xE2
51 #define MCBA_VER_REQ_USB 1
52 #define MCBA_VER_REQ_CAN 2
54 #define MCBA_SIDL_EXID_MASK 0x8
55 #define MCBA_DLC_MASK 0xf
56 #define MCBA_DLC_RTR_MASK 0x40
58 #define MCBA_CAN_STATE_WRN_TH 95
59 #define MCBA_CAN_STATE_ERR_PSV_TH 127
61 #define MCBA_TERMINATION_DISABLED CAN_TERMINATION_DISABLED
62 #define MCBA_TERMINATION_ENABLED 120
65 struct mcba_priv *priv;
71 /* Structure to hold all of our device specific stuff */
73 struct can_priv can; /* must be the first member */
74 struct sk_buff *echo_skb[MCBA_MAX_TX_URBS];
75 struct mcba_usb_ctx tx_context[MCBA_MAX_TX_URBS];
76 struct usb_device *udev;
77 struct net_device *netdev;
78 struct usb_anchor tx_submitted;
79 struct usb_anchor rx_submitted;
80 struct can_berr_counter bec;
81 bool usb_ka_first_pass;
82 bool can_ka_first_pass;
84 atomic_t free_ctx_cnt;
85 void *rxbuf[MCBA_MAX_RX_URBS];
86 dma_addr_t rxbuf_dma[MCBA_MAX_RX_URBS];
90 struct __packed mcba_usb_msg_can {
101 struct __packed mcba_usb_msg {
106 struct __packed mcba_usb_msg_ka_usb {
108 u8 termination_state;
114 struct __packed mcba_usb_msg_ka_can {
131 struct __packed mcba_usb_msg_change_bitrate {
137 struct __packed mcba_usb_msg_termination {
143 struct __packed mcba_usb_msg_fw_ver {
149 static const struct usb_device_id mcba_usb_table[] = {
150 { USB_DEVICE(MCBA_VENDOR_ID, MCBA_PRODUCT_ID) },
151 {} /* Terminating entry */
154 MODULE_DEVICE_TABLE(usb, mcba_usb_table);
156 static const u16 mcba_termination[] = { MCBA_TERMINATION_DISABLED,
157 MCBA_TERMINATION_ENABLED };
159 static const u32 mcba_bitrate[] = { 20000, 33333, 50000, 80000, 83333,
160 100000, 125000, 150000, 175000, 200000,
161 225000, 250000, 275000, 300000, 500000,
162 625000, 800000, 1000000 };
164 static inline void mcba_init_ctx(struct mcba_priv *priv)
168 for (i = 0; i < MCBA_MAX_TX_URBS; i++) {
169 priv->tx_context[i].ndx = MCBA_CTX_FREE;
170 priv->tx_context[i].priv = priv;
173 atomic_set(&priv->free_ctx_cnt, ARRAY_SIZE(priv->tx_context));
176 static inline struct mcba_usb_ctx *mcba_usb_get_free_ctx(struct mcba_priv *priv,
177 struct can_frame *cf)
180 struct mcba_usb_ctx *ctx = NULL;
182 for (i = 0; i < MCBA_MAX_TX_URBS; i++) {
183 if (priv->tx_context[i].ndx == MCBA_CTX_FREE) {
184 ctx = &priv->tx_context[i];
195 atomic_dec(&priv->free_ctx_cnt);
200 if (!atomic_read(&priv->free_ctx_cnt))
201 /* That was the last free ctx. Slow down tx path */
202 netif_stop_queue(priv->netdev);
207 /* mcba_usb_free_ctx and mcba_usb_get_free_ctx are executed by different
208 * threads. The order of execution in below function is important.
210 static inline void mcba_usb_free_ctx(struct mcba_usb_ctx *ctx)
212 /* Increase number of free ctxs before freeing ctx */
213 atomic_inc(&ctx->priv->free_ctx_cnt);
215 ctx->ndx = MCBA_CTX_FREE;
217 /* Wake up the queue once ctx is marked free */
218 netif_wake_queue(ctx->priv->netdev);
221 static void mcba_usb_write_bulk_callback(struct urb *urb)
223 struct mcba_usb_ctx *ctx = urb->context;
224 struct net_device *netdev;
228 netdev = ctx->priv->netdev;
230 /* free up our allocated buffer */
231 usb_free_coherent(urb->dev, urb->transfer_buffer_length,
232 urb->transfer_buffer, urb->transfer_dma);
235 if (!netif_device_present(netdev))
238 netdev->stats.tx_packets++;
239 netdev->stats.tx_bytes += ctx->dlc;
241 can_led_event(netdev, CAN_LED_EVENT_TX);
242 can_get_echo_skb(netdev, ctx->ndx, NULL);
246 netdev_info(netdev, "Tx URB aborted (%d)\n", urb->status);
248 /* Release the context */
249 mcba_usb_free_ctx(ctx);
252 /* Send data to device */
253 static netdev_tx_t mcba_usb_xmit(struct mcba_priv *priv,
254 struct mcba_usb_msg *usb_msg,
255 struct mcba_usb_ctx *ctx)
261 /* create a URB, and a buffer for it, and copy the data to the URB */
262 urb = usb_alloc_urb(0, GFP_ATOMIC);
266 buf = usb_alloc_coherent(priv->udev, MCBA_USB_TX_BUFF_SIZE, GFP_ATOMIC,
273 memcpy(buf, usb_msg, MCBA_USB_TX_BUFF_SIZE);
275 usb_fill_bulk_urb(urb, priv->udev,
276 usb_sndbulkpipe(priv->udev, MCBA_USB_EP_OUT), buf,
277 MCBA_USB_TX_BUFF_SIZE, mcba_usb_write_bulk_callback,
280 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
281 usb_anchor_urb(urb, &priv->tx_submitted);
283 err = usb_submit_urb(urb, GFP_ATOMIC);
287 /* Release our reference to this URB, the USB core will eventually free
295 usb_unanchor_urb(urb);
296 usb_free_coherent(priv->udev, MCBA_USB_TX_BUFF_SIZE, buf,
300 netif_device_detach(priv->netdev);
302 netdev_warn(priv->netdev, "failed tx_urb %d\n", err);
310 /* Send data to device */
311 static netdev_tx_t mcba_usb_start_xmit(struct sk_buff *skb,
312 struct net_device *netdev)
314 struct mcba_priv *priv = netdev_priv(netdev);
315 struct can_frame *cf = (struct can_frame *)skb->data;
316 struct mcba_usb_ctx *ctx = NULL;
317 struct net_device_stats *stats = &priv->netdev->stats;
320 struct mcba_usb_msg_can usb_msg = {
321 .cmd_id = MBCA_CMD_TRANSMIT_MESSAGE_EV
324 if (can_dropped_invalid_skb(netdev, skb))
327 ctx = mcba_usb_get_free_ctx(priv, cf);
329 return NETDEV_TX_BUSY;
331 if (cf->can_id & CAN_EFF_FLAG) {
332 /* SIDH | SIDL | EIDH | EIDL
333 * 28 - 21 | 20 19 18 x x x 17 16 | 15 - 8 | 7 - 0
335 sid = MCBA_SIDL_EXID_MASK;
336 /* store 28-18 bits */
337 sid |= (cf->can_id & 0x1ffc0000) >> 13;
338 /* store 17-16 bits */
339 sid |= (cf->can_id & 0x30000) >> 16;
340 put_unaligned_be16(sid, &usb_msg.sid);
342 /* store 15-0 bits */
343 put_unaligned_be16(cf->can_id & 0xffff, &usb_msg.eid);
346 * 10 - 3 | 2 1 0 x x x x x
348 put_unaligned_be16((cf->can_id & CAN_SFF_MASK) << 5,
353 usb_msg.dlc = cf->len;
355 memcpy(usb_msg.data, cf->data, usb_msg.dlc);
357 if (cf->can_id & CAN_RTR_FLAG)
358 usb_msg.dlc |= MCBA_DLC_RTR_MASK;
360 can_put_echo_skb(skb, priv->netdev, ctx->ndx, 0);
362 err = mcba_usb_xmit(priv, (struct mcba_usb_msg *)&usb_msg, ctx);
369 can_free_echo_skb(priv->netdev, ctx->ndx, NULL);
370 mcba_usb_free_ctx(ctx);
377 /* Send cmd to device */
378 static void mcba_usb_xmit_cmd(struct mcba_priv *priv,
379 struct mcba_usb_msg *usb_msg)
381 struct mcba_usb_ctx *ctx = NULL;
384 ctx = mcba_usb_get_free_ctx(priv, NULL);
386 netdev_err(priv->netdev,
387 "Lack of free ctx. Sending (%d) cmd aborted",
393 err = mcba_usb_xmit(priv, usb_msg, ctx);
395 netdev_err(priv->netdev, "Failed to send cmd (%d)",
399 static void mcba_usb_xmit_change_bitrate(struct mcba_priv *priv, u16 bitrate)
401 struct mcba_usb_msg_change_bitrate usb_msg = {
402 .cmd_id = MBCA_CMD_CHANGE_BIT_RATE
405 put_unaligned_be16(bitrate, &usb_msg.bitrate);
407 mcba_usb_xmit_cmd(priv, (struct mcba_usb_msg *)&usb_msg);
410 static void mcba_usb_xmit_read_fw_ver(struct mcba_priv *priv, u8 pic)
412 struct mcba_usb_msg_fw_ver usb_msg = {
413 .cmd_id = MBCA_CMD_READ_FW_VERSION,
417 mcba_usb_xmit_cmd(priv, (struct mcba_usb_msg *)&usb_msg);
420 static void mcba_usb_process_can(struct mcba_priv *priv,
421 struct mcba_usb_msg_can *msg)
423 struct can_frame *cf;
425 struct net_device_stats *stats = &priv->netdev->stats;
428 skb = alloc_can_skb(priv->netdev, &cf);
432 sid = get_unaligned_be16(&msg->sid);
434 if (sid & MCBA_SIDL_EXID_MASK) {
435 /* SIDH | SIDL | EIDH | EIDL
436 * 28 - 21 | 20 19 18 x x x 17 16 | 15 - 8 | 7 - 0
438 cf->can_id = CAN_EFF_FLAG;
440 /* store 28-18 bits */
441 cf->can_id |= (sid & 0xffe0) << 13;
442 /* store 17-16 bits */
443 cf->can_id |= (sid & 3) << 16;
444 /* store 15-0 bits */
445 cf->can_id |= get_unaligned_be16(&msg->eid);
448 * 10 - 3 | 2 1 0 x x x x x
450 cf->can_id = (sid & 0xffe0) >> 5;
453 if (msg->dlc & MCBA_DLC_RTR_MASK)
454 cf->can_id |= CAN_RTR_FLAG;
456 cf->len = can_cc_dlc2len(msg->dlc & MCBA_DLC_MASK);
458 memcpy(cf->data, msg->data, cf->len);
461 stats->rx_bytes += cf->len;
463 can_led_event(priv->netdev, CAN_LED_EVENT_RX);
467 static void mcba_usb_process_ka_usb(struct mcba_priv *priv,
468 struct mcba_usb_msg_ka_usb *msg)
470 if (unlikely(priv->usb_ka_first_pass)) {
471 netdev_info(priv->netdev, "PIC USB version %u.%u\n",
472 msg->soft_ver_major, msg->soft_ver_minor);
474 priv->usb_ka_first_pass = false;
477 if (msg->termination_state)
478 priv->can.termination = MCBA_TERMINATION_ENABLED;
480 priv->can.termination = MCBA_TERMINATION_DISABLED;
483 static u32 convert_can2host_bitrate(struct mcba_usb_msg_ka_can *msg)
485 const u32 bitrate = get_unaligned_be16(&msg->can_bitrate);
487 if ((bitrate == 33) || (bitrate == 83))
488 return bitrate * 1000 + 333;
490 return bitrate * 1000;
493 static void mcba_usb_process_ka_can(struct mcba_priv *priv,
494 struct mcba_usb_msg_ka_can *msg)
496 if (unlikely(priv->can_ka_first_pass)) {
497 netdev_info(priv->netdev, "PIC CAN version %u.%u\n",
498 msg->soft_ver_major, msg->soft_ver_minor);
500 priv->can_ka_first_pass = false;
503 if (unlikely(priv->can_speed_check)) {
504 const u32 bitrate = convert_can2host_bitrate(msg);
506 priv->can_speed_check = false;
508 if (bitrate != priv->can.bittiming.bitrate)
511 "Wrong bitrate reported by the device (%u). Expected %u",
512 bitrate, priv->can.bittiming.bitrate);
515 priv->bec.txerr = msg->tx_err_cnt;
516 priv->bec.rxerr = msg->rx_err_cnt;
519 priv->can.state = CAN_STATE_BUS_OFF;
521 else if ((priv->bec.txerr > MCBA_CAN_STATE_ERR_PSV_TH) ||
522 (priv->bec.rxerr > MCBA_CAN_STATE_ERR_PSV_TH))
523 priv->can.state = CAN_STATE_ERROR_PASSIVE;
525 else if ((priv->bec.txerr > MCBA_CAN_STATE_WRN_TH) ||
526 (priv->bec.rxerr > MCBA_CAN_STATE_WRN_TH))
527 priv->can.state = CAN_STATE_ERROR_WARNING;
530 static void mcba_usb_process_rx(struct mcba_priv *priv,
531 struct mcba_usb_msg *msg)
533 switch (msg->cmd_id) {
534 case MBCA_CMD_I_AM_ALIVE_FROM_CAN:
535 mcba_usb_process_ka_can(priv,
536 (struct mcba_usb_msg_ka_can *)msg);
539 case MBCA_CMD_I_AM_ALIVE_FROM_USB:
540 mcba_usb_process_ka_usb(priv,
541 (struct mcba_usb_msg_ka_usb *)msg);
544 case MBCA_CMD_RECEIVE_MESSAGE:
545 mcba_usb_process_can(priv, (struct mcba_usb_msg_can *)msg);
548 case MBCA_CMD_NOTHING_TO_SEND:
549 /* Side effect of communication between PIC_USB and PIC_CAN.
550 * PIC_CAN is telling us that it has nothing to send
554 case MBCA_CMD_TRANSMIT_MESSAGE_RSP:
555 /* Transmission response from the device containing timestamp */
559 netdev_warn(priv->netdev, "Unsupported msg (0x%X)",
565 /* Callback for reading data from device
567 * Check urb status, call read function and resubmit urb read operation.
569 static void mcba_usb_read_bulk_callback(struct urb *urb)
571 struct mcba_priv *priv = urb->context;
572 struct net_device *netdev;
576 netdev = priv->netdev;
578 if (!netif_device_present(netdev))
581 switch (urb->status) {
582 case 0: /* success */
592 netdev_info(netdev, "Rx URB aborted (%d)\n", urb->status);
597 while (pos < urb->actual_length) {
598 struct mcba_usb_msg *msg;
600 if (pos + sizeof(struct mcba_usb_msg) > urb->actual_length) {
601 netdev_err(priv->netdev, "format error\n");
605 msg = (struct mcba_usb_msg *)(urb->transfer_buffer + pos);
606 mcba_usb_process_rx(priv, msg);
608 pos += sizeof(struct mcba_usb_msg);
613 usb_fill_bulk_urb(urb, priv->udev,
614 usb_rcvbulkpipe(priv->udev, MCBA_USB_EP_OUT),
615 urb->transfer_buffer, MCBA_USB_RX_BUFF_SIZE,
616 mcba_usb_read_bulk_callback, priv);
618 retval = usb_submit_urb(urb, GFP_ATOMIC);
620 if (retval == -ENODEV)
621 netif_device_detach(netdev);
623 netdev_err(netdev, "failed resubmitting read bulk urb: %d\n",
627 /* Start USB device */
628 static int mcba_usb_start(struct mcba_priv *priv)
630 struct net_device *netdev = priv->netdev;
635 for (i = 0; i < MCBA_MAX_RX_URBS; i++) {
636 struct urb *urb = NULL;
640 /* create a URB, and a buffer for it */
641 urb = usb_alloc_urb(0, GFP_KERNEL);
647 buf = usb_alloc_coherent(priv->udev, MCBA_USB_RX_BUFF_SIZE,
648 GFP_KERNEL, &buf_dma);
650 netdev_err(netdev, "No memory left for USB buffer\n");
656 urb->transfer_dma = buf_dma;
658 usb_fill_bulk_urb(urb, priv->udev,
659 usb_rcvbulkpipe(priv->udev, MCBA_USB_EP_IN),
660 buf, MCBA_USB_RX_BUFF_SIZE,
661 mcba_usb_read_bulk_callback, priv);
662 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
663 usb_anchor_urb(urb, &priv->rx_submitted);
665 err = usb_submit_urb(urb, GFP_KERNEL);
667 usb_unanchor_urb(urb);
668 usb_free_coherent(priv->udev, MCBA_USB_RX_BUFF_SIZE,
674 priv->rxbuf[i] = buf;
675 priv->rxbuf_dma[i] = buf_dma;
677 /* Drop reference, USB core will take care of freeing it */
681 /* Did we submit any URBs */
683 netdev_warn(netdev, "couldn't setup read URBs\n");
687 /* Warn if we've couldn't transmit all the URBs */
688 if (i < MCBA_MAX_RX_URBS)
689 netdev_warn(netdev, "rx performance may be slow\n");
691 mcba_usb_xmit_read_fw_ver(priv, MCBA_VER_REQ_USB);
692 mcba_usb_xmit_read_fw_ver(priv, MCBA_VER_REQ_CAN);
697 /* Open USB device */
698 static int mcba_usb_open(struct net_device *netdev)
700 struct mcba_priv *priv = netdev_priv(netdev);
704 err = open_candev(netdev);
708 priv->can_speed_check = true;
709 priv->can.state = CAN_STATE_ERROR_ACTIVE;
711 can_led_event(netdev, CAN_LED_EVENT_OPEN);
712 netif_start_queue(netdev);
717 static void mcba_urb_unlink(struct mcba_priv *priv)
721 usb_kill_anchored_urbs(&priv->rx_submitted);
723 for (i = 0; i < MCBA_MAX_RX_URBS; ++i)
724 usb_free_coherent(priv->udev, MCBA_USB_RX_BUFF_SIZE,
725 priv->rxbuf[i], priv->rxbuf_dma[i]);
727 usb_kill_anchored_urbs(&priv->tx_submitted);
730 /* Close USB device */
731 static int mcba_usb_close(struct net_device *netdev)
733 struct mcba_priv *priv = netdev_priv(netdev);
735 priv->can.state = CAN_STATE_STOPPED;
737 netif_stop_queue(netdev);
740 mcba_urb_unlink(priv);
742 close_candev(netdev);
743 can_led_event(netdev, CAN_LED_EVENT_STOP);
748 /* Set network device mode
750 * Maybe we should leave this function empty, because the device
751 * set mode variable with open command.
753 static int mcba_net_set_mode(struct net_device *netdev, enum can_mode mode)
758 static int mcba_net_get_berr_counter(const struct net_device *netdev,
759 struct can_berr_counter *bec)
761 struct mcba_priv *priv = netdev_priv(netdev);
763 bec->txerr = priv->bec.txerr;
764 bec->rxerr = priv->bec.rxerr;
769 static const struct net_device_ops mcba_netdev_ops = {
770 .ndo_open = mcba_usb_open,
771 .ndo_stop = mcba_usb_close,
772 .ndo_start_xmit = mcba_usb_start_xmit,
775 /* Microchip CANBUS has hardcoded bittiming values by default.
776 * This function sends request via USB to change the speed and align bittiming
777 * values for presentation purposes only
779 static int mcba_net_set_bittiming(struct net_device *netdev)
781 struct mcba_priv *priv = netdev_priv(netdev);
782 const u16 bitrate_kbps = priv->can.bittiming.bitrate / 1000;
784 mcba_usb_xmit_change_bitrate(priv, bitrate_kbps);
789 static int mcba_set_termination(struct net_device *netdev, u16 term)
791 struct mcba_priv *priv = netdev_priv(netdev);
792 struct mcba_usb_msg_termination usb_msg = {
793 .cmd_id = MBCA_CMD_SETUP_TERMINATION_RESISTANCE
796 if (term == MCBA_TERMINATION_ENABLED)
797 usb_msg.termination = 1;
799 usb_msg.termination = 0;
801 mcba_usb_xmit_cmd(priv, (struct mcba_usb_msg *)&usb_msg);
806 static int mcba_usb_probe(struct usb_interface *intf,
807 const struct usb_device_id *id)
809 struct net_device *netdev;
810 struct mcba_priv *priv;
812 struct usb_device *usbdev = interface_to_usbdev(intf);
814 netdev = alloc_candev(sizeof(struct mcba_priv), MCBA_MAX_TX_URBS);
816 dev_err(&intf->dev, "Couldn't alloc candev\n");
820 priv = netdev_priv(netdev);
823 priv->netdev = netdev;
824 priv->usb_ka_first_pass = true;
825 priv->can_ka_first_pass = true;
826 priv->can_speed_check = false;
828 init_usb_anchor(&priv->rx_submitted);
829 init_usb_anchor(&priv->tx_submitted);
831 usb_set_intfdata(intf, priv);
833 /* Init CAN device */
834 priv->can.state = CAN_STATE_STOPPED;
835 priv->can.termination_const = mcba_termination;
836 priv->can.termination_const_cnt = ARRAY_SIZE(mcba_termination);
837 priv->can.bitrate_const = mcba_bitrate;
838 priv->can.bitrate_const_cnt = ARRAY_SIZE(mcba_bitrate);
840 priv->can.do_set_termination = mcba_set_termination;
841 priv->can.do_set_mode = mcba_net_set_mode;
842 priv->can.do_get_berr_counter = mcba_net_get_berr_counter;
843 priv->can.do_set_bittiming = mcba_net_set_bittiming;
845 netdev->netdev_ops = &mcba_netdev_ops;
847 netdev->flags |= IFF_ECHO; /* we support local echo */
849 SET_NETDEV_DEV(netdev, &intf->dev);
851 err = register_candev(netdev);
853 netdev_err(netdev, "couldn't register CAN device: %d\n", err);
855 goto cleanup_free_candev;
858 devm_can_led_init(netdev);
860 /* Start USB dev only if we have successfully registered CAN device */
861 err = mcba_usb_start(priv);
864 netif_device_detach(priv->netdev);
866 netdev_warn(netdev, "couldn't start device: %d\n", err);
868 goto cleanup_unregister_candev;
871 dev_info(&intf->dev, "Microchip CAN BUS Analyzer connected\n");
875 cleanup_unregister_candev:
876 unregister_candev(priv->netdev);
884 /* Called by the usb core when driver is unloaded or device is removed */
885 static void mcba_usb_disconnect(struct usb_interface *intf)
887 struct mcba_priv *priv = usb_get_intfdata(intf);
889 usb_set_intfdata(intf, NULL);
891 netdev_info(priv->netdev, "device disconnected\n");
893 unregister_candev(priv->netdev);
894 mcba_urb_unlink(priv);
895 free_candev(priv->netdev);
898 static struct usb_driver mcba_usb_driver = {
899 .name = MCBA_MODULE_NAME,
900 .probe = mcba_usb_probe,
901 .disconnect = mcba_usb_disconnect,
902 .id_table = mcba_usb_table,
905 module_usb_driver(mcba_usb_driver);
908 MODULE_DESCRIPTION("SocketCAN driver for Microchip CAN BUS Analyzer Tool");
909 MODULE_LICENSE("GPL v2");