2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License as
4 * published by the Free Software Foundation version 2.
6 * Parts of this driver are based on the following:
7 * - Kvaser linux leaf driver (version 4.78)
8 * - CAN driver for esd CAN-USB/2
9 * - Kvaser linux usbcanII driver (version 5.3)
11 * Copyright (C) 2002-2006 KVASER AB, Sweden. All rights reserved.
12 * Copyright (C) 2010 Matthias Fuchs <matthias.fuchs@esd.eu>, esd gmbh
13 * Copyright (C) 2012 Olivier Sobrie <olivier@sobrie.be>
14 * Copyright (C) 2015 Valeo S.A.
17 #include <linux/spinlock.h>
18 #include <linux/kernel.h>
19 #include <linux/completion.h>
20 #include <linux/module.h>
21 #include <linux/netdevice.h>
22 #include <linux/usb.h>
24 #include <linux/can.h>
25 #include <linux/can/dev.h>
26 #include <linux/can/error.h>
29 #define START_TIMEOUT 1000 /* msecs */
30 #define STOP_TIMEOUT 1000 /* msecs */
31 #define USB_SEND_TIMEOUT 1000 /* msecs */
32 #define USB_RECV_TIMEOUT 1000 /* msecs */
33 #define RX_BUFFER_SIZE 3072
34 #define CAN_USB_CLOCK 8000000
35 #define MAX_NET_DEVICES 3
36 #define MAX_USBCAN_NET_DEVICES 2
38 /* Kvaser Leaf USB devices */
39 #define KVASER_VENDOR_ID 0x0bfd
40 #define USB_LEAF_DEVEL_PRODUCT_ID 10
41 #define USB_LEAF_LITE_PRODUCT_ID 11
42 #define USB_LEAF_PRO_PRODUCT_ID 12
43 #define USB_LEAF_SPRO_PRODUCT_ID 14
44 #define USB_LEAF_PRO_LS_PRODUCT_ID 15
45 #define USB_LEAF_PRO_SWC_PRODUCT_ID 16
46 #define USB_LEAF_PRO_LIN_PRODUCT_ID 17
47 #define USB_LEAF_SPRO_LS_PRODUCT_ID 18
48 #define USB_LEAF_SPRO_SWC_PRODUCT_ID 19
49 #define USB_MEMO2_DEVEL_PRODUCT_ID 22
50 #define USB_MEMO2_HSHS_PRODUCT_ID 23
51 #define USB_UPRO_HSHS_PRODUCT_ID 24
52 #define USB_LEAF_LITE_GI_PRODUCT_ID 25
53 #define USB_LEAF_PRO_OBDII_PRODUCT_ID 26
54 #define USB_MEMO2_HSLS_PRODUCT_ID 27
55 #define USB_LEAF_LITE_CH_PRODUCT_ID 28
56 #define USB_BLACKBIRD_SPRO_PRODUCT_ID 29
57 #define USB_OEM_MERCURY_PRODUCT_ID 34
58 #define USB_OEM_LEAF_PRODUCT_ID 35
59 #define USB_CAN_R_PRODUCT_ID 39
60 #define USB_LEAF_LITE_V2_PRODUCT_ID 288
61 #define USB_MINI_PCIE_HS_PRODUCT_ID 289
62 #define USB_LEAF_LIGHT_HS_V2_OEM_PRODUCT_ID 290
63 #define USB_USBCAN_LIGHT_2HS_PRODUCT_ID 291
64 #define USB_MINI_PCIE_2HS_PRODUCT_ID 292
66 static inline bool kvaser_is_leaf(const struct usb_device_id
*id
)
68 return id
->idProduct
>= USB_LEAF_DEVEL_PRODUCT_ID
&&
69 id
->idProduct
<= USB_MINI_PCIE_2HS_PRODUCT_ID
;
72 /* Kvaser USBCan-II devices */
73 #define USB_USBCAN_REVB_PRODUCT_ID 2
74 #define USB_VCI2_PRODUCT_ID 3
75 #define USB_USBCAN2_PRODUCT_ID 4
76 #define USB_MEMORATOR_PRODUCT_ID 5
78 static inline bool kvaser_is_usbcan(const struct usb_device_id
*id
)
80 return id
->idProduct
>= USB_USBCAN_REVB_PRODUCT_ID
&&
81 id
->idProduct
<= USB_MEMORATOR_PRODUCT_ID
;
84 /* USB devices features */
85 #define KVASER_HAS_SILENT_MODE BIT(0)
86 #define KVASER_HAS_TXRX_ERRORS BIT(1)
88 /* Message header size */
89 #define MSG_HEADER_LEN 2
91 /* Can message flags */
92 #define MSG_FLAG_ERROR_FRAME BIT(0)
93 #define MSG_FLAG_OVERRUN BIT(1)
94 #define MSG_FLAG_NERR BIT(2)
95 #define MSG_FLAG_WAKEUP BIT(3)
96 #define MSG_FLAG_REMOTE_FRAME BIT(4)
97 #define MSG_FLAG_RESERVED BIT(5)
98 #define MSG_FLAG_TX_ACK BIT(6)
99 #define MSG_FLAG_TX_REQUEST BIT(7)
101 /* Can states (M16C CxSTRH register) */
102 #define M16C_STATE_BUS_RESET BIT(0)
103 #define M16C_STATE_BUS_ERROR BIT(4)
104 #define M16C_STATE_BUS_PASSIVE BIT(5)
105 #define M16C_STATE_BUS_OFF BIT(6)
108 #define CMD_RX_STD_MESSAGE 12
109 #define CMD_TX_STD_MESSAGE 13
110 #define CMD_RX_EXT_MESSAGE 14
111 #define CMD_TX_EXT_MESSAGE 15
112 #define CMD_SET_BUS_PARAMS 16
113 #define CMD_GET_BUS_PARAMS 17
114 #define CMD_GET_BUS_PARAMS_REPLY 18
115 #define CMD_GET_CHIP_STATE 19
116 #define CMD_CHIP_STATE_EVENT 20
117 #define CMD_SET_CTRL_MODE 21
118 #define CMD_GET_CTRL_MODE 22
119 #define CMD_GET_CTRL_MODE_REPLY 23
120 #define CMD_RESET_CHIP 24
121 #define CMD_RESET_CARD 25
122 #define CMD_START_CHIP 26
123 #define CMD_START_CHIP_REPLY 27
124 #define CMD_STOP_CHIP 28
125 #define CMD_STOP_CHIP_REPLY 29
127 #define CMD_LEAF_GET_CARD_INFO2 32
128 #define CMD_USBCAN_RESET_CLOCK 32
129 #define CMD_USBCAN_CLOCK_OVERFLOW_EVENT 33
131 #define CMD_GET_CARD_INFO 34
132 #define CMD_GET_CARD_INFO_REPLY 35
133 #define CMD_GET_SOFTWARE_INFO 38
134 #define CMD_GET_SOFTWARE_INFO_REPLY 39
135 #define CMD_ERROR_EVENT 45
136 #define CMD_FLUSH_QUEUE 48
137 #define CMD_RESET_ERROR_COUNTER 49
138 #define CMD_TX_ACKNOWLEDGE 50
139 #define CMD_CAN_ERROR_EVENT 51
140 #define CMD_FLUSH_QUEUE_REPLY 68
142 #define CMD_LEAF_USB_THROTTLE 77
143 #define CMD_LEAF_LOG_MESSAGE 106
146 #define M16C_EF_ACKE BIT(0)
147 #define M16C_EF_CRCE BIT(1)
148 #define M16C_EF_FORME BIT(2)
149 #define M16C_EF_STFE BIT(3)
150 #define M16C_EF_BITE0 BIT(4)
151 #define M16C_EF_BITE1 BIT(5)
152 #define M16C_EF_RCVE BIT(6)
153 #define M16C_EF_TRE BIT(7)
155 /* Only Leaf-based devices can report M16C error factors,
156 * thus define our own error status flags for USBCANII
158 #define USBCAN_ERROR_STATE_NONE 0
159 #define USBCAN_ERROR_STATE_TX_ERROR BIT(0)
160 #define USBCAN_ERROR_STATE_RX_ERROR BIT(1)
161 #define USBCAN_ERROR_STATE_BUSERROR BIT(2)
163 /* bittiming parameters */
164 #define KVASER_USB_TSEG1_MIN 1
165 #define KVASER_USB_TSEG1_MAX 16
166 #define KVASER_USB_TSEG2_MIN 1
167 #define KVASER_USB_TSEG2_MAX 8
168 #define KVASER_USB_SJW_MAX 4
169 #define KVASER_USB_BRP_MIN 1
170 #define KVASER_USB_BRP_MAX 64
171 #define KVASER_USB_BRP_INC 1
174 #define KVASER_CTRL_MODE_NORMAL 1
175 #define KVASER_CTRL_MODE_SILENT 2
176 #define KVASER_CTRL_MODE_SELFRECEPTION 3
177 #define KVASER_CTRL_MODE_OFF 4
179 /* Extended CAN identifier flag */
180 #define KVASER_EXTENDED_FRAME BIT(31)
182 /* Kvaser USB CAN dongles are divided into two major families:
183 * - Leaf: Based on Renesas M32C, running firmware labeled as 'filo'
184 * - UsbcanII: Based on Renesas M16C, running firmware labeled as 'helios'
186 enum kvaser_usb_family
{
191 struct kvaser_msg_simple
{
196 struct kvaser_msg_cardinfo
{
201 __le32 serial_number
;
205 __le32 serial_number_low
;
206 __le32 serial_number_high
;
209 __le32 clock_resolution
;
224 struct kvaser_msg_cardinfo2
{
228 __le32 oem_unlock_code
;
231 struct leaf_msg_softinfo
{
236 __le16 max_outstanding_tx
;
240 struct usbcan_msg_softinfo
{
243 __le16 max_outstanding_tx
;
250 struct kvaser_msg_busparams
{
260 struct kvaser_msg_tx_can
{
276 struct kvaser_msg_rx_can_header
{
281 struct leaf_msg_rx_can
{
289 struct usbcan_msg_rx_can
{
297 struct leaf_msg_chip_state_event
{
309 struct usbcan_msg_chip_state_event
{
321 struct kvaser_msg_tx_acknowledge_header
{
326 struct leaf_msg_tx_acknowledge
{
335 struct usbcan_msg_tx_acknowledge
{
343 struct leaf_msg_error_event
{
355 struct usbcan_msg_error_event
{
358 u8 tx_errors_count_ch0
;
359 u8 rx_errors_count_ch0
;
360 u8 tx_errors_count_ch1
;
361 u8 rx_errors_count_ch1
;
367 struct kvaser_msg_ctrl_mode
{
374 struct kvaser_msg_flush_queue
{
381 struct leaf_msg_log_message
{
395 struct kvaser_msg_simple simple
;
396 struct kvaser_msg_cardinfo cardinfo
;
397 struct kvaser_msg_cardinfo2 cardinfo2
;
398 struct kvaser_msg_busparams busparams
;
400 struct kvaser_msg_rx_can_header rx_can_header
;
401 struct kvaser_msg_tx_acknowledge_header tx_acknowledge_header
;
404 struct leaf_msg_softinfo softinfo
;
405 struct leaf_msg_rx_can rx_can
;
406 struct leaf_msg_chip_state_event chip_state_event
;
407 struct leaf_msg_tx_acknowledge tx_acknowledge
;
408 struct leaf_msg_error_event error_event
;
409 struct leaf_msg_log_message log_message
;
413 struct usbcan_msg_softinfo softinfo
;
414 struct usbcan_msg_rx_can rx_can
;
415 struct usbcan_msg_chip_state_event chip_state_event
;
416 struct usbcan_msg_tx_acknowledge tx_acknowledge
;
417 struct usbcan_msg_error_event error_event
;
420 struct kvaser_msg_tx_can tx_can
;
421 struct kvaser_msg_ctrl_mode ctrl_mode
;
422 struct kvaser_msg_flush_queue flush_queue
;
426 /* Summary of a kvaser error event, for a unified Leaf/Usbcan error
427 * handling. Some discrepancies between the two families exist:
429 * - USBCAN firmware does not report M16C "error factors"
430 * - USBCAN controllers has difficulties reporting if the raised error
431 * event is for ch0 or ch1. They leave such arbitration to the OS
432 * driver by letting it compare error counters with previous values
433 * and decide the error event's channel. Thus for USBCAN, the channel
434 * field is only advisory.
436 struct kvaser_usb_error_summary
{
437 u8 channel
, status
, txerr
, rxerr
;
449 /* Context for an outstanding, not yet ACKed, transmission */
450 struct kvaser_usb_tx_urb_context
{
451 struct kvaser_usb_net_priv
*priv
;
457 struct usb_device
*udev
;
458 struct kvaser_usb_net_priv
*nets
[MAX_NET_DEVICES
];
460 struct usb_endpoint_descriptor
*bulk_in
, *bulk_out
;
461 struct usb_anchor rx_submitted
;
463 /* @max_tx_urbs: Firmware-reported maximum number of outstanding,
464 * not yet ACKed, transmissions on this device. This value is
465 * also used as a sentinel for marking free tx contexts.
468 unsigned int nchannels
;
469 unsigned int max_tx_urbs
;
470 enum kvaser_usb_family family
;
473 void *rxbuf
[MAX_RX_URBS
];
474 dma_addr_t rxbuf_dma
[MAX_RX_URBS
];
477 struct kvaser_usb_net_priv
{
479 struct can_berr_counter bec
;
481 struct kvaser_usb
*dev
;
482 struct net_device
*netdev
;
485 struct completion start_comp
, stop_comp
;
486 struct usb_anchor tx_submitted
;
488 spinlock_t tx_contexts_lock
;
489 int active_tx_contexts
;
490 struct kvaser_usb_tx_urb_context tx_contexts
[];
493 static const struct usb_device_id kvaser_usb_table
[] = {
494 /* Leaf family IDs */
495 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_DEVEL_PRODUCT_ID
) },
496 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_LITE_PRODUCT_ID
) },
497 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_PRO_PRODUCT_ID
),
498 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
499 KVASER_HAS_SILENT_MODE
},
500 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_SPRO_PRODUCT_ID
),
501 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
502 KVASER_HAS_SILENT_MODE
},
503 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_PRO_LS_PRODUCT_ID
),
504 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
505 KVASER_HAS_SILENT_MODE
},
506 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_PRO_SWC_PRODUCT_ID
),
507 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
508 KVASER_HAS_SILENT_MODE
},
509 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_PRO_LIN_PRODUCT_ID
),
510 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
511 KVASER_HAS_SILENT_MODE
},
512 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_SPRO_LS_PRODUCT_ID
),
513 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
514 KVASER_HAS_SILENT_MODE
},
515 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_SPRO_SWC_PRODUCT_ID
),
516 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
517 KVASER_HAS_SILENT_MODE
},
518 { USB_DEVICE(KVASER_VENDOR_ID
, USB_MEMO2_DEVEL_PRODUCT_ID
),
519 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
520 KVASER_HAS_SILENT_MODE
},
521 { USB_DEVICE(KVASER_VENDOR_ID
, USB_MEMO2_HSHS_PRODUCT_ID
),
522 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
523 KVASER_HAS_SILENT_MODE
},
524 { USB_DEVICE(KVASER_VENDOR_ID
, USB_UPRO_HSHS_PRODUCT_ID
),
525 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
526 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_LITE_GI_PRODUCT_ID
) },
527 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_PRO_OBDII_PRODUCT_ID
),
528 .driver_info
= KVASER_HAS_TXRX_ERRORS
|
529 KVASER_HAS_SILENT_MODE
},
530 { USB_DEVICE(KVASER_VENDOR_ID
, USB_MEMO2_HSLS_PRODUCT_ID
),
531 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
532 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_LITE_CH_PRODUCT_ID
),
533 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
534 { USB_DEVICE(KVASER_VENDOR_ID
, USB_BLACKBIRD_SPRO_PRODUCT_ID
),
535 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
536 { USB_DEVICE(KVASER_VENDOR_ID
, USB_OEM_MERCURY_PRODUCT_ID
),
537 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
538 { USB_DEVICE(KVASER_VENDOR_ID
, USB_OEM_LEAF_PRODUCT_ID
),
539 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
540 { USB_DEVICE(KVASER_VENDOR_ID
, USB_CAN_R_PRODUCT_ID
),
541 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
542 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_LITE_V2_PRODUCT_ID
) },
543 { USB_DEVICE(KVASER_VENDOR_ID
, USB_MINI_PCIE_HS_PRODUCT_ID
) },
544 { USB_DEVICE(KVASER_VENDOR_ID
, USB_LEAF_LIGHT_HS_V2_OEM_PRODUCT_ID
) },
545 { USB_DEVICE(KVASER_VENDOR_ID
, USB_USBCAN_LIGHT_2HS_PRODUCT_ID
) },
546 { USB_DEVICE(KVASER_VENDOR_ID
, USB_MINI_PCIE_2HS_PRODUCT_ID
) },
548 /* USBCANII family IDs */
549 { USB_DEVICE(KVASER_VENDOR_ID
, USB_USBCAN2_PRODUCT_ID
),
550 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
551 { USB_DEVICE(KVASER_VENDOR_ID
, USB_USBCAN_REVB_PRODUCT_ID
),
552 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
553 { USB_DEVICE(KVASER_VENDOR_ID
, USB_MEMORATOR_PRODUCT_ID
),
554 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
555 { USB_DEVICE(KVASER_VENDOR_ID
, USB_VCI2_PRODUCT_ID
),
556 .driver_info
= KVASER_HAS_TXRX_ERRORS
},
560 MODULE_DEVICE_TABLE(usb
, kvaser_usb_table
);
562 static inline int kvaser_usb_send_msg(const struct kvaser_usb
*dev
,
563 struct kvaser_msg
*msg
)
567 return usb_bulk_msg(dev
->udev
,
568 usb_sndbulkpipe(dev
->udev
,
569 dev
->bulk_out
->bEndpointAddress
),
570 msg
, msg
->len
, &actual_len
,
574 static int kvaser_usb_wait_msg(const struct kvaser_usb
*dev
, u8 id
,
575 struct kvaser_msg
*msg
)
577 struct kvaser_msg
*tmp
;
582 unsigned long to
= jiffies
+ msecs_to_jiffies(USB_RECV_TIMEOUT
);
584 buf
= kzalloc(RX_BUFFER_SIZE
, GFP_KERNEL
);
589 err
= usb_bulk_msg(dev
->udev
,
590 usb_rcvbulkpipe(dev
->udev
,
591 dev
->bulk_in
->bEndpointAddress
),
592 buf
, RX_BUFFER_SIZE
, &actual_len
,
598 while (pos
<= actual_len
- MSG_HEADER_LEN
) {
601 /* Handle messages crossing the USB endpoint max packet
602 * size boundary. Check kvaser_usb_read_bulk_callback()
603 * for further details.
606 pos
= round_up(pos
, le16_to_cpu(dev
->bulk_in
->
611 if (pos
+ tmp
->len
> actual_len
) {
612 dev_err_ratelimited(dev
->udev
->dev
.parent
,
618 memcpy(msg
, tmp
, tmp
->len
);
624 } while (time_before(jiffies
, to
));
634 static int kvaser_usb_send_simple_msg(const struct kvaser_usb
*dev
,
635 u8 msg_id
, int channel
)
637 struct kvaser_msg
*msg
;
640 msg
= kmalloc(sizeof(*msg
), GFP_KERNEL
);
645 msg
->len
= MSG_HEADER_LEN
+ sizeof(struct kvaser_msg_simple
);
646 msg
->u
.simple
.channel
= channel
;
647 msg
->u
.simple
.tid
= 0xff;
649 rc
= kvaser_usb_send_msg(dev
, msg
);
655 static int kvaser_usb_get_software_info(struct kvaser_usb
*dev
)
657 struct kvaser_msg msg
;
660 err
= kvaser_usb_send_simple_msg(dev
, CMD_GET_SOFTWARE_INFO
, 0);
664 err
= kvaser_usb_wait_msg(dev
, CMD_GET_SOFTWARE_INFO_REPLY
, &msg
);
668 switch (dev
->family
) {
670 dev
->fw_version
= le32_to_cpu(msg
.u
.leaf
.softinfo
.fw_version
);
672 le16_to_cpu(msg
.u
.leaf
.softinfo
.max_outstanding_tx
);
675 dev
->fw_version
= le32_to_cpu(msg
.u
.usbcan
.softinfo
.fw_version
);
677 le16_to_cpu(msg
.u
.usbcan
.softinfo
.max_outstanding_tx
);
684 static int kvaser_usb_get_card_info(struct kvaser_usb
*dev
)
686 struct kvaser_msg msg
;
689 err
= kvaser_usb_send_simple_msg(dev
, CMD_GET_CARD_INFO
, 0);
693 err
= kvaser_usb_wait_msg(dev
, CMD_GET_CARD_INFO_REPLY
, &msg
);
697 dev
->nchannels
= msg
.u
.cardinfo
.nchannels
;
698 if ((dev
->nchannels
> MAX_NET_DEVICES
) ||
699 (dev
->family
== KVASER_USBCAN
&&
700 dev
->nchannels
> MAX_USBCAN_NET_DEVICES
))
706 static void kvaser_usb_tx_acknowledge(const struct kvaser_usb
*dev
,
707 const struct kvaser_msg
*msg
)
709 struct net_device_stats
*stats
;
710 struct kvaser_usb_tx_urb_context
*context
;
711 struct kvaser_usb_net_priv
*priv
;
713 struct can_frame
*cf
;
717 channel
= msg
->u
.tx_acknowledge_header
.channel
;
718 tid
= msg
->u
.tx_acknowledge_header
.tid
;
720 if (channel
>= dev
->nchannels
) {
721 dev_err(dev
->udev
->dev
.parent
,
722 "Invalid channel number (%d)\n", channel
);
726 priv
= dev
->nets
[channel
];
728 if (!netif_device_present(priv
->netdev
))
731 stats
= &priv
->netdev
->stats
;
733 context
= &priv
->tx_contexts
[tid
% dev
->max_tx_urbs
];
735 /* Sometimes the state change doesn't come after a bus-off event */
736 if (priv
->can
.restart_ms
&&
737 (priv
->can
.state
>= CAN_STATE_BUS_OFF
)) {
738 skb
= alloc_can_err_skb(priv
->netdev
, &cf
);
740 cf
->can_id
|= CAN_ERR_RESTARTED
;
743 stats
->rx_bytes
+= cf
->can_dlc
;
746 netdev_err(priv
->netdev
,
747 "No memory left for err_skb\n");
750 priv
->can
.can_stats
.restarts
++;
751 netif_carrier_on(priv
->netdev
);
753 priv
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
757 stats
->tx_bytes
+= context
->dlc
;
759 spin_lock_irqsave(&priv
->tx_contexts_lock
, flags
);
761 can_get_echo_skb(priv
->netdev
, context
->echo_index
);
762 context
->echo_index
= dev
->max_tx_urbs
;
763 --priv
->active_tx_contexts
;
764 netif_wake_queue(priv
->netdev
);
766 spin_unlock_irqrestore(&priv
->tx_contexts_lock
, flags
);
769 static void kvaser_usb_simple_msg_callback(struct urb
*urb
)
771 struct net_device
*netdev
= urb
->context
;
773 kfree(urb
->transfer_buffer
);
776 netdev_warn(netdev
, "urb status received: %d\n",
780 static int kvaser_usb_simple_msg_async(struct kvaser_usb_net_priv
*priv
,
783 struct kvaser_usb
*dev
= priv
->dev
;
784 struct net_device
*netdev
= priv
->netdev
;
785 struct kvaser_msg
*msg
;
790 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
794 buf
= kmalloc(sizeof(struct kvaser_msg
), GFP_ATOMIC
);
800 msg
= (struct kvaser_msg
*)buf
;
801 msg
->len
= MSG_HEADER_LEN
+ sizeof(struct kvaser_msg_simple
);
803 msg
->u
.simple
.channel
= priv
->channel
;
805 usb_fill_bulk_urb(urb
, dev
->udev
,
806 usb_sndbulkpipe(dev
->udev
,
807 dev
->bulk_out
->bEndpointAddress
),
809 kvaser_usb_simple_msg_callback
, netdev
);
810 usb_anchor_urb(urb
, &priv
->tx_submitted
);
812 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
814 netdev_err(netdev
, "Error transmitting URB\n");
815 usb_unanchor_urb(urb
);
826 static void kvaser_usb_rx_error_update_can_state(struct kvaser_usb_net_priv
*priv
,
827 const struct kvaser_usb_error_summary
*es
,
828 struct can_frame
*cf
)
830 struct kvaser_usb
*dev
= priv
->dev
;
831 struct net_device_stats
*stats
= &priv
->netdev
->stats
;
832 enum can_state cur_state
, new_state
, tx_state
, rx_state
;
834 netdev_dbg(priv
->netdev
, "Error status: 0x%02x\n", es
->status
);
836 new_state
= cur_state
= priv
->can
.state
;
838 if (es
->status
& (M16C_STATE_BUS_OFF
| M16C_STATE_BUS_RESET
))
839 new_state
= CAN_STATE_BUS_OFF
;
840 else if (es
->status
& M16C_STATE_BUS_PASSIVE
)
841 new_state
= CAN_STATE_ERROR_PASSIVE
;
842 else if (es
->status
& M16C_STATE_BUS_ERROR
) {
843 /* Guard against spurious error events after a busoff */
844 if (cur_state
< CAN_STATE_BUS_OFF
) {
845 if ((es
->txerr
>= 128) || (es
->rxerr
>= 128))
846 new_state
= CAN_STATE_ERROR_PASSIVE
;
847 else if ((es
->txerr
>= 96) || (es
->rxerr
>= 96))
848 new_state
= CAN_STATE_ERROR_WARNING
;
849 else if (cur_state
> CAN_STATE_ERROR_ACTIVE
)
850 new_state
= CAN_STATE_ERROR_ACTIVE
;
855 new_state
= CAN_STATE_ERROR_ACTIVE
;
857 if (new_state
!= cur_state
) {
858 tx_state
= (es
->txerr
>= es
->rxerr
) ? new_state
: 0;
859 rx_state
= (es
->txerr
<= es
->rxerr
) ? new_state
: 0;
861 can_change_state(priv
->netdev
, cf
, tx_state
, rx_state
);
864 if (priv
->can
.restart_ms
&&
865 (cur_state
>= CAN_STATE_BUS_OFF
) &&
866 (new_state
< CAN_STATE_BUS_OFF
)) {
867 priv
->can
.can_stats
.restarts
++;
870 switch (dev
->family
) {
872 if (es
->leaf
.error_factor
) {
873 priv
->can
.can_stats
.bus_error
++;
878 if (es
->usbcan
.error_state
& USBCAN_ERROR_STATE_TX_ERROR
)
880 if (es
->usbcan
.error_state
& USBCAN_ERROR_STATE_RX_ERROR
)
882 if (es
->usbcan
.error_state
& USBCAN_ERROR_STATE_BUSERROR
) {
883 priv
->can
.can_stats
.bus_error
++;
888 priv
->bec
.txerr
= es
->txerr
;
889 priv
->bec
.rxerr
= es
->rxerr
;
892 static void kvaser_usb_rx_error(const struct kvaser_usb
*dev
,
893 const struct kvaser_usb_error_summary
*es
)
895 struct can_frame
*cf
, tmp_cf
= { .can_id
= CAN_ERR_FLAG
, .can_dlc
= CAN_ERR_DLC
};
897 struct net_device_stats
*stats
;
898 struct kvaser_usb_net_priv
*priv
;
899 enum can_state old_state
, new_state
;
901 if (es
->channel
>= dev
->nchannels
) {
902 dev_err(dev
->udev
->dev
.parent
,
903 "Invalid channel number (%d)\n", es
->channel
);
907 priv
= dev
->nets
[es
->channel
];
908 stats
= &priv
->netdev
->stats
;
910 /* Update all of the can interface's state and error counters before
911 * trying any memory allocation that can actually fail with -ENOMEM.
913 * We send a temporary stack-allocated error can frame to
914 * can_change_state() for the very same reason.
916 * TODO: Split can_change_state() responsibility between updating the
917 * can interface's state and counters, and the setting up of can error
918 * frame ID and data to userspace. Remove stack allocation afterwards.
920 old_state
= priv
->can
.state
;
921 kvaser_usb_rx_error_update_can_state(priv
, es
, &tmp_cf
);
922 new_state
= priv
->can
.state
;
924 skb
= alloc_can_err_skb(priv
->netdev
, &cf
);
929 memcpy(cf
, &tmp_cf
, sizeof(*cf
));
931 if (new_state
!= old_state
) {
933 (M16C_STATE_BUS_OFF
| M16C_STATE_BUS_RESET
)) {
934 if (!priv
->can
.restart_ms
)
935 kvaser_usb_simple_msg_async(priv
, CMD_STOP_CHIP
);
936 netif_carrier_off(priv
->netdev
);
939 if (priv
->can
.restart_ms
&&
940 (old_state
>= CAN_STATE_BUS_OFF
) &&
941 (new_state
< CAN_STATE_BUS_OFF
)) {
942 cf
->can_id
|= CAN_ERR_RESTARTED
;
943 netif_carrier_on(priv
->netdev
);
947 switch (dev
->family
) {
949 if (es
->leaf
.error_factor
) {
950 cf
->can_id
|= CAN_ERR_BUSERROR
| CAN_ERR_PROT
;
952 if (es
->leaf
.error_factor
& M16C_EF_ACKE
)
953 cf
->data
[3] = CAN_ERR_PROT_LOC_ACK
;
954 if (es
->leaf
.error_factor
& M16C_EF_CRCE
)
955 cf
->data
[3] = CAN_ERR_PROT_LOC_CRC_SEQ
;
956 if (es
->leaf
.error_factor
& M16C_EF_FORME
)
957 cf
->data
[2] |= CAN_ERR_PROT_FORM
;
958 if (es
->leaf
.error_factor
& M16C_EF_STFE
)
959 cf
->data
[2] |= CAN_ERR_PROT_STUFF
;
960 if (es
->leaf
.error_factor
& M16C_EF_BITE0
)
961 cf
->data
[2] |= CAN_ERR_PROT_BIT0
;
962 if (es
->leaf
.error_factor
& M16C_EF_BITE1
)
963 cf
->data
[2] |= CAN_ERR_PROT_BIT1
;
964 if (es
->leaf
.error_factor
& M16C_EF_TRE
)
965 cf
->data
[2] |= CAN_ERR_PROT_TX
;
969 if (es
->usbcan
.error_state
& USBCAN_ERROR_STATE_BUSERROR
) {
970 cf
->can_id
|= CAN_ERR_BUSERROR
;
975 cf
->data
[6] = es
->txerr
;
976 cf
->data
[7] = es
->rxerr
;
979 stats
->rx_bytes
+= cf
->can_dlc
;
983 /* For USBCAN, report error to userspace iff the channels's errors counter
984 * has changed, or we're the only channel seeing a bus error state.
986 static void kvaser_usbcan_conditionally_rx_error(const struct kvaser_usb
*dev
,
987 struct kvaser_usb_error_summary
*es
)
989 struct kvaser_usb_net_priv
*priv
;
993 channel
= es
->channel
;
994 if (channel
>= dev
->nchannels
) {
995 dev_err(dev
->udev
->dev
.parent
,
996 "Invalid channel number (%d)\n", channel
);
1000 priv
= dev
->nets
[channel
];
1001 report_error
= false;
1003 if (es
->txerr
!= priv
->bec
.txerr
) {
1004 es
->usbcan
.error_state
|= USBCAN_ERROR_STATE_TX_ERROR
;
1005 report_error
= true;
1007 if (es
->rxerr
!= priv
->bec
.rxerr
) {
1008 es
->usbcan
.error_state
|= USBCAN_ERROR_STATE_RX_ERROR
;
1009 report_error
= true;
1011 if ((es
->status
& M16C_STATE_BUS_ERROR
) &&
1012 !(es
->usbcan
.other_ch_status
& M16C_STATE_BUS_ERROR
)) {
1013 es
->usbcan
.error_state
|= USBCAN_ERROR_STATE_BUSERROR
;
1014 report_error
= true;
1018 kvaser_usb_rx_error(dev
, es
);
1021 static void kvaser_usbcan_rx_error(const struct kvaser_usb
*dev
,
1022 const struct kvaser_msg
*msg
)
1024 struct kvaser_usb_error_summary es
= { };
1027 /* Sometimes errors are sent as unsolicited chip state events */
1028 case CMD_CHIP_STATE_EVENT
:
1029 es
.channel
= msg
->u
.usbcan
.chip_state_event
.channel
;
1030 es
.status
= msg
->u
.usbcan
.chip_state_event
.status
;
1031 es
.txerr
= msg
->u
.usbcan
.chip_state_event
.tx_errors_count
;
1032 es
.rxerr
= msg
->u
.usbcan
.chip_state_event
.rx_errors_count
;
1033 kvaser_usbcan_conditionally_rx_error(dev
, &es
);
1036 case CMD_CAN_ERROR_EVENT
:
1038 es
.status
= msg
->u
.usbcan
.error_event
.status_ch0
;
1039 es
.txerr
= msg
->u
.usbcan
.error_event
.tx_errors_count_ch0
;
1040 es
.rxerr
= msg
->u
.usbcan
.error_event
.rx_errors_count_ch0
;
1041 es
.usbcan
.other_ch_status
=
1042 msg
->u
.usbcan
.error_event
.status_ch1
;
1043 kvaser_usbcan_conditionally_rx_error(dev
, &es
);
1045 /* The USBCAN firmware supports up to 2 channels.
1046 * Now that ch0 was checked, check if ch1 has any errors.
1048 if (dev
->nchannels
== MAX_USBCAN_NET_DEVICES
) {
1050 es
.status
= msg
->u
.usbcan
.error_event
.status_ch1
;
1051 es
.txerr
= msg
->u
.usbcan
.error_event
.tx_errors_count_ch1
;
1052 es
.rxerr
= msg
->u
.usbcan
.error_event
.rx_errors_count_ch1
;
1053 es
.usbcan
.other_ch_status
=
1054 msg
->u
.usbcan
.error_event
.status_ch0
;
1055 kvaser_usbcan_conditionally_rx_error(dev
, &es
);
1060 dev_err(dev
->udev
->dev
.parent
, "Invalid msg id (%d)\n",
1065 static void kvaser_leaf_rx_error(const struct kvaser_usb
*dev
,
1066 const struct kvaser_msg
*msg
)
1068 struct kvaser_usb_error_summary es
= { };
1071 case CMD_CAN_ERROR_EVENT
:
1072 es
.channel
= msg
->u
.leaf
.error_event
.channel
;
1073 es
.status
= msg
->u
.leaf
.error_event
.status
;
1074 es
.txerr
= msg
->u
.leaf
.error_event
.tx_errors_count
;
1075 es
.rxerr
= msg
->u
.leaf
.error_event
.rx_errors_count
;
1076 es
.leaf
.error_factor
= msg
->u
.leaf
.error_event
.error_factor
;
1078 case CMD_LEAF_LOG_MESSAGE
:
1079 es
.channel
= msg
->u
.leaf
.log_message
.channel
;
1080 es
.status
= msg
->u
.leaf
.log_message
.data
[0];
1081 es
.txerr
= msg
->u
.leaf
.log_message
.data
[2];
1082 es
.rxerr
= msg
->u
.leaf
.log_message
.data
[3];
1083 es
.leaf
.error_factor
= msg
->u
.leaf
.log_message
.data
[1];
1085 case CMD_CHIP_STATE_EVENT
:
1086 es
.channel
= msg
->u
.leaf
.chip_state_event
.channel
;
1087 es
.status
= msg
->u
.leaf
.chip_state_event
.status
;
1088 es
.txerr
= msg
->u
.leaf
.chip_state_event
.tx_errors_count
;
1089 es
.rxerr
= msg
->u
.leaf
.chip_state_event
.rx_errors_count
;
1090 es
.leaf
.error_factor
= 0;
1093 dev_err(dev
->udev
->dev
.parent
, "Invalid msg id (%d)\n",
1098 kvaser_usb_rx_error(dev
, &es
);
1101 static void kvaser_usb_rx_can_err(const struct kvaser_usb_net_priv
*priv
,
1102 const struct kvaser_msg
*msg
)
1104 struct can_frame
*cf
;
1105 struct sk_buff
*skb
;
1106 struct net_device_stats
*stats
= &priv
->netdev
->stats
;
1108 if (msg
->u
.rx_can_header
.flag
& (MSG_FLAG_ERROR_FRAME
|
1110 netdev_err(priv
->netdev
, "Unknown error (flags: 0x%02x)\n",
1111 msg
->u
.rx_can_header
.flag
);
1117 if (msg
->u
.rx_can_header
.flag
& MSG_FLAG_OVERRUN
) {
1118 stats
->rx_over_errors
++;
1121 skb
= alloc_can_err_skb(priv
->netdev
, &cf
);
1123 stats
->rx_dropped
++;
1127 cf
->can_id
|= CAN_ERR_CRTL
;
1128 cf
->data
[1] = CAN_ERR_CRTL_RX_OVERFLOW
;
1130 stats
->rx_packets
++;
1131 stats
->rx_bytes
+= cf
->can_dlc
;
1136 static void kvaser_usb_rx_can_msg(const struct kvaser_usb
*dev
,
1137 const struct kvaser_msg
*msg
)
1139 struct kvaser_usb_net_priv
*priv
;
1140 struct can_frame
*cf
;
1141 struct sk_buff
*skb
;
1142 struct net_device_stats
*stats
;
1143 u8 channel
= msg
->u
.rx_can_header
.channel
;
1144 const u8
*rx_msg
= NULL
; /* GCC */
1146 if (channel
>= dev
->nchannels
) {
1147 dev_err(dev
->udev
->dev
.parent
,
1148 "Invalid channel number (%d)\n", channel
);
1152 priv
= dev
->nets
[channel
];
1153 stats
= &priv
->netdev
->stats
;
1155 if ((msg
->u
.rx_can_header
.flag
& MSG_FLAG_ERROR_FRAME
) &&
1156 (dev
->family
== KVASER_LEAF
&& msg
->id
== CMD_LEAF_LOG_MESSAGE
)) {
1157 kvaser_leaf_rx_error(dev
, msg
);
1159 } else if (msg
->u
.rx_can_header
.flag
& (MSG_FLAG_ERROR_FRAME
|
1161 MSG_FLAG_OVERRUN
)) {
1162 kvaser_usb_rx_can_err(priv
, msg
);
1164 } else if (msg
->u
.rx_can_header
.flag
& ~MSG_FLAG_REMOTE_FRAME
) {
1165 netdev_warn(priv
->netdev
,
1166 "Unhandled frame (flags: 0x%02x)",
1167 msg
->u
.rx_can_header
.flag
);
1171 switch (dev
->family
) {
1173 rx_msg
= msg
->u
.leaf
.rx_can
.msg
;
1176 rx_msg
= msg
->u
.usbcan
.rx_can
.msg
;
1180 skb
= alloc_can_skb(priv
->netdev
, &cf
);
1182 stats
->tx_dropped
++;
1186 if (dev
->family
== KVASER_LEAF
&& msg
->id
== CMD_LEAF_LOG_MESSAGE
) {
1187 cf
->can_id
= le32_to_cpu(msg
->u
.leaf
.log_message
.id
);
1188 if (cf
->can_id
& KVASER_EXTENDED_FRAME
)
1189 cf
->can_id
&= CAN_EFF_MASK
| CAN_EFF_FLAG
;
1191 cf
->can_id
&= CAN_SFF_MASK
;
1193 cf
->can_dlc
= get_can_dlc(msg
->u
.leaf
.log_message
.dlc
);
1195 if (msg
->u
.leaf
.log_message
.flags
& MSG_FLAG_REMOTE_FRAME
)
1196 cf
->can_id
|= CAN_RTR_FLAG
;
1198 memcpy(cf
->data
, &msg
->u
.leaf
.log_message
.data
,
1201 cf
->can_id
= ((rx_msg
[0] & 0x1f) << 6) | (rx_msg
[1] & 0x3f);
1203 if (msg
->id
== CMD_RX_EXT_MESSAGE
) {
1205 cf
->can_id
|= ((rx_msg
[2] & 0x0f) << 14) |
1206 ((rx_msg
[3] & 0xff) << 6) |
1208 cf
->can_id
|= CAN_EFF_FLAG
;
1211 cf
->can_dlc
= get_can_dlc(rx_msg
[5]);
1213 if (msg
->u
.rx_can_header
.flag
& MSG_FLAG_REMOTE_FRAME
)
1214 cf
->can_id
|= CAN_RTR_FLAG
;
1216 memcpy(cf
->data
, &rx_msg
[6],
1220 stats
->rx_packets
++;
1221 stats
->rx_bytes
+= cf
->can_dlc
;
1225 static void kvaser_usb_start_chip_reply(const struct kvaser_usb
*dev
,
1226 const struct kvaser_msg
*msg
)
1228 struct kvaser_usb_net_priv
*priv
;
1229 u8 channel
= msg
->u
.simple
.channel
;
1231 if (channel
>= dev
->nchannels
) {
1232 dev_err(dev
->udev
->dev
.parent
,
1233 "Invalid channel number (%d)\n", channel
);
1237 priv
= dev
->nets
[channel
];
1239 if (completion_done(&priv
->start_comp
) &&
1240 netif_queue_stopped(priv
->netdev
)) {
1241 netif_wake_queue(priv
->netdev
);
1243 netif_start_queue(priv
->netdev
);
1244 complete(&priv
->start_comp
);
1248 static void kvaser_usb_stop_chip_reply(const struct kvaser_usb
*dev
,
1249 const struct kvaser_msg
*msg
)
1251 struct kvaser_usb_net_priv
*priv
;
1252 u8 channel
= msg
->u
.simple
.channel
;
1254 if (channel
>= dev
->nchannels
) {
1255 dev_err(dev
->udev
->dev
.parent
,
1256 "Invalid channel number (%d)\n", channel
);
1260 priv
= dev
->nets
[channel
];
1262 complete(&priv
->stop_comp
);
1265 static void kvaser_usb_handle_message(const struct kvaser_usb
*dev
,
1266 const struct kvaser_msg
*msg
)
1269 case CMD_START_CHIP_REPLY
:
1270 kvaser_usb_start_chip_reply(dev
, msg
);
1273 case CMD_STOP_CHIP_REPLY
:
1274 kvaser_usb_stop_chip_reply(dev
, msg
);
1277 case CMD_RX_STD_MESSAGE
:
1278 case CMD_RX_EXT_MESSAGE
:
1279 kvaser_usb_rx_can_msg(dev
, msg
);
1282 case CMD_LEAF_LOG_MESSAGE
:
1283 if (dev
->family
!= KVASER_LEAF
)
1285 kvaser_usb_rx_can_msg(dev
, msg
);
1288 case CMD_CHIP_STATE_EVENT
:
1289 case CMD_CAN_ERROR_EVENT
:
1290 if (dev
->family
== KVASER_LEAF
)
1291 kvaser_leaf_rx_error(dev
, msg
);
1293 kvaser_usbcan_rx_error(dev
, msg
);
1296 case CMD_TX_ACKNOWLEDGE
:
1297 kvaser_usb_tx_acknowledge(dev
, msg
);
1300 /* Ignored messages */
1301 case CMD_USBCAN_CLOCK_OVERFLOW_EVENT
:
1302 if (dev
->family
!= KVASER_USBCAN
)
1306 case CMD_FLUSH_QUEUE_REPLY
:
1307 if (dev
->family
!= KVASER_LEAF
)
1312 warn
: dev_warn(dev
->udev
->dev
.parent
,
1313 "Unhandled message (%d)\n", msg
->id
);
1318 static void kvaser_usb_read_bulk_callback(struct urb
*urb
)
1320 struct kvaser_usb
*dev
= urb
->context
;
1321 struct kvaser_msg
*msg
;
1325 switch (urb
->status
) {
1334 dev_info(dev
->udev
->dev
.parent
, "Rx URB aborted (%d)\n",
1339 while (pos
<= (int)(urb
->actual_length
- MSG_HEADER_LEN
)) {
1340 msg
= urb
->transfer_buffer
+ pos
;
1342 /* The Kvaser firmware can only read and write messages that
1343 * does not cross the USB's endpoint wMaxPacketSize boundary.
1344 * If a follow-up command crosses such boundary, firmware puts
1345 * a placeholder zero-length command in its place then aligns
1346 * the real command to the next max packet size.
1348 * Handle such cases or we're going to miss a significant
1349 * number of events in case of a heavy rx load on the bus.
1351 if (msg
->len
== 0) {
1352 pos
= round_up(pos
, le16_to_cpu(dev
->bulk_in
->
1357 if (pos
+ msg
->len
> urb
->actual_length
) {
1358 dev_err_ratelimited(dev
->udev
->dev
.parent
,
1363 kvaser_usb_handle_message(dev
, msg
);
1368 usb_fill_bulk_urb(urb
, dev
->udev
,
1369 usb_rcvbulkpipe(dev
->udev
,
1370 dev
->bulk_in
->bEndpointAddress
),
1371 urb
->transfer_buffer
, RX_BUFFER_SIZE
,
1372 kvaser_usb_read_bulk_callback
, dev
);
1374 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
1375 if (err
== -ENODEV
) {
1376 for (i
= 0; i
< dev
->nchannels
; i
++) {
1380 netif_device_detach(dev
->nets
[i
]->netdev
);
1383 dev_err(dev
->udev
->dev
.parent
,
1384 "Failed resubmitting read bulk urb: %d\n", err
);
1390 static int kvaser_usb_setup_rx_urbs(struct kvaser_usb
*dev
)
1394 if (dev
->rxinitdone
)
1397 for (i
= 0; i
< MAX_RX_URBS
; i
++) {
1398 struct urb
*urb
= NULL
;
1402 urb
= usb_alloc_urb(0, GFP_KERNEL
);
1408 buf
= usb_alloc_coherent(dev
->udev
, RX_BUFFER_SIZE
,
1409 GFP_KERNEL
, &buf_dma
);
1411 dev_warn(dev
->udev
->dev
.parent
,
1412 "No memory left for USB buffer\n");
1418 usb_fill_bulk_urb(urb
, dev
->udev
,
1419 usb_rcvbulkpipe(dev
->udev
,
1420 dev
->bulk_in
->bEndpointAddress
),
1421 buf
, RX_BUFFER_SIZE
,
1422 kvaser_usb_read_bulk_callback
,
1424 urb
->transfer_dma
= buf_dma
;
1425 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1426 usb_anchor_urb(urb
, &dev
->rx_submitted
);
1428 err
= usb_submit_urb(urb
, GFP_KERNEL
);
1430 usb_unanchor_urb(urb
);
1431 usb_free_coherent(dev
->udev
, RX_BUFFER_SIZE
, buf
,
1437 dev
->rxbuf
[i
] = buf
;
1438 dev
->rxbuf_dma
[i
] = buf_dma
;
1444 dev_warn(dev
->udev
->dev
.parent
,
1445 "Cannot setup read URBs, error %d\n", err
);
1447 } else if (i
< MAX_RX_URBS
) {
1448 dev_warn(dev
->udev
->dev
.parent
,
1449 "RX performances may be slow\n");
1452 dev
->rxinitdone
= true;
1457 static int kvaser_usb_set_opt_mode(const struct kvaser_usb_net_priv
*priv
)
1459 struct kvaser_msg
*msg
;
1462 msg
= kmalloc(sizeof(*msg
), GFP_KERNEL
);
1466 msg
->id
= CMD_SET_CTRL_MODE
;
1467 msg
->len
= MSG_HEADER_LEN
+ sizeof(struct kvaser_msg_ctrl_mode
);
1468 msg
->u
.ctrl_mode
.tid
= 0xff;
1469 msg
->u
.ctrl_mode
.channel
= priv
->channel
;
1471 if (priv
->can
.ctrlmode
& CAN_CTRLMODE_LISTENONLY
)
1472 msg
->u
.ctrl_mode
.ctrl_mode
= KVASER_CTRL_MODE_SILENT
;
1474 msg
->u
.ctrl_mode
.ctrl_mode
= KVASER_CTRL_MODE_NORMAL
;
1476 rc
= kvaser_usb_send_msg(priv
->dev
, msg
);
1482 static int kvaser_usb_start_chip(struct kvaser_usb_net_priv
*priv
)
1486 init_completion(&priv
->start_comp
);
1488 err
= kvaser_usb_send_simple_msg(priv
->dev
, CMD_START_CHIP
,
1493 if (!wait_for_completion_timeout(&priv
->start_comp
,
1494 msecs_to_jiffies(START_TIMEOUT
)))
1500 static int kvaser_usb_open(struct net_device
*netdev
)
1502 struct kvaser_usb_net_priv
*priv
= netdev_priv(netdev
);
1503 struct kvaser_usb
*dev
= priv
->dev
;
1506 err
= open_candev(netdev
);
1510 err
= kvaser_usb_setup_rx_urbs(dev
);
1514 err
= kvaser_usb_set_opt_mode(priv
);
1518 err
= kvaser_usb_start_chip(priv
);
1520 netdev_warn(netdev
, "Cannot start device, error %d\n", err
);
1524 priv
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
1529 close_candev(netdev
);
1533 static void kvaser_usb_reset_tx_urb_contexts(struct kvaser_usb_net_priv
*priv
)
1537 max_tx_urbs
= priv
->dev
->max_tx_urbs
;
1539 priv
->active_tx_contexts
= 0;
1540 for (i
= 0; i
< max_tx_urbs
; i
++)
1541 priv
->tx_contexts
[i
].echo_index
= max_tx_urbs
;
1544 /* This method might sleep. Do not call it in the atomic context
1545 * of URB completions.
1547 static void kvaser_usb_unlink_tx_urbs(struct kvaser_usb_net_priv
*priv
)
1549 usb_kill_anchored_urbs(&priv
->tx_submitted
);
1550 kvaser_usb_reset_tx_urb_contexts(priv
);
1553 static void kvaser_usb_unlink_all_urbs(struct kvaser_usb
*dev
)
1557 usb_kill_anchored_urbs(&dev
->rx_submitted
);
1559 for (i
= 0; i
< MAX_RX_URBS
; i
++)
1560 usb_free_coherent(dev
->udev
, RX_BUFFER_SIZE
,
1564 for (i
= 0; i
< dev
->nchannels
; i
++) {
1565 struct kvaser_usb_net_priv
*priv
= dev
->nets
[i
];
1568 kvaser_usb_unlink_tx_urbs(priv
);
1572 static int kvaser_usb_stop_chip(struct kvaser_usb_net_priv
*priv
)
1576 init_completion(&priv
->stop_comp
);
1578 err
= kvaser_usb_send_simple_msg(priv
->dev
, CMD_STOP_CHIP
,
1583 if (!wait_for_completion_timeout(&priv
->stop_comp
,
1584 msecs_to_jiffies(STOP_TIMEOUT
)))
1590 static int kvaser_usb_flush_queue(struct kvaser_usb_net_priv
*priv
)
1592 struct kvaser_msg
*msg
;
1595 msg
= kmalloc(sizeof(*msg
), GFP_KERNEL
);
1599 msg
->id
= CMD_FLUSH_QUEUE
;
1600 msg
->len
= MSG_HEADER_LEN
+ sizeof(struct kvaser_msg_flush_queue
);
1601 msg
->u
.flush_queue
.channel
= priv
->channel
;
1602 msg
->u
.flush_queue
.flags
= 0x00;
1604 rc
= kvaser_usb_send_msg(priv
->dev
, msg
);
1610 static int kvaser_usb_close(struct net_device
*netdev
)
1612 struct kvaser_usb_net_priv
*priv
= netdev_priv(netdev
);
1613 struct kvaser_usb
*dev
= priv
->dev
;
1616 netif_stop_queue(netdev
);
1618 err
= kvaser_usb_flush_queue(priv
);
1620 netdev_warn(netdev
, "Cannot flush queue, error %d\n", err
);
1622 err
= kvaser_usb_send_simple_msg(dev
, CMD_RESET_CHIP
, priv
->channel
);
1624 netdev_warn(netdev
, "Cannot reset card, error %d\n", err
);
1626 err
= kvaser_usb_stop_chip(priv
);
1628 netdev_warn(netdev
, "Cannot stop device, error %d\n", err
);
1630 /* reset tx contexts */
1631 kvaser_usb_unlink_tx_urbs(priv
);
1633 priv
->can
.state
= CAN_STATE_STOPPED
;
1634 close_candev(priv
->netdev
);
1639 static void kvaser_usb_write_bulk_callback(struct urb
*urb
)
1641 struct kvaser_usb_tx_urb_context
*context
= urb
->context
;
1642 struct kvaser_usb_net_priv
*priv
;
1643 struct net_device
*netdev
;
1645 if (WARN_ON(!context
))
1648 priv
= context
->priv
;
1649 netdev
= priv
->netdev
;
1651 kfree(urb
->transfer_buffer
);
1653 if (!netif_device_present(netdev
))
1657 netdev_info(netdev
, "Tx URB aborted (%d)\n", urb
->status
);
1660 static netdev_tx_t
kvaser_usb_start_xmit(struct sk_buff
*skb
,
1661 struct net_device
*netdev
)
1663 struct kvaser_usb_net_priv
*priv
= netdev_priv(netdev
);
1664 struct kvaser_usb
*dev
= priv
->dev
;
1665 struct net_device_stats
*stats
= &netdev
->stats
;
1666 struct can_frame
*cf
= (struct can_frame
*)skb
->data
;
1667 struct kvaser_usb_tx_urb_context
*context
= NULL
;
1670 struct kvaser_msg
*msg
;
1671 int i
, err
, ret
= NETDEV_TX_OK
;
1672 u8
*msg_tx_can_flags
= NULL
; /* GCC */
1673 unsigned long flags
;
1675 if (can_dropped_invalid_skb(netdev
, skb
))
1676 return NETDEV_TX_OK
;
1678 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
1680 stats
->tx_dropped
++;
1682 return NETDEV_TX_OK
;
1685 buf
= kmalloc(sizeof(struct kvaser_msg
), GFP_ATOMIC
);
1687 stats
->tx_dropped
++;
1693 msg
->len
= MSG_HEADER_LEN
+ sizeof(struct kvaser_msg_tx_can
);
1694 msg
->u
.tx_can
.channel
= priv
->channel
;
1696 switch (dev
->family
) {
1698 msg_tx_can_flags
= &msg
->u
.tx_can
.leaf
.flags
;
1701 msg_tx_can_flags
= &msg
->u
.tx_can
.usbcan
.flags
;
1705 *msg_tx_can_flags
= 0;
1707 if (cf
->can_id
& CAN_EFF_FLAG
) {
1708 msg
->id
= CMD_TX_EXT_MESSAGE
;
1709 msg
->u
.tx_can
.msg
[0] = (cf
->can_id
>> 24) & 0x1f;
1710 msg
->u
.tx_can
.msg
[1] = (cf
->can_id
>> 18) & 0x3f;
1711 msg
->u
.tx_can
.msg
[2] = (cf
->can_id
>> 14) & 0x0f;
1712 msg
->u
.tx_can
.msg
[3] = (cf
->can_id
>> 6) & 0xff;
1713 msg
->u
.tx_can
.msg
[4] = cf
->can_id
& 0x3f;
1715 msg
->id
= CMD_TX_STD_MESSAGE
;
1716 msg
->u
.tx_can
.msg
[0] = (cf
->can_id
>> 6) & 0x1f;
1717 msg
->u
.tx_can
.msg
[1] = cf
->can_id
& 0x3f;
1720 msg
->u
.tx_can
.msg
[5] = cf
->can_dlc
;
1721 memcpy(&msg
->u
.tx_can
.msg
[6], cf
->data
, cf
->can_dlc
);
1723 if (cf
->can_id
& CAN_RTR_FLAG
)
1724 *msg_tx_can_flags
|= MSG_FLAG_REMOTE_FRAME
;
1726 spin_lock_irqsave(&priv
->tx_contexts_lock
, flags
);
1727 for (i
= 0; i
< dev
->max_tx_urbs
; i
++) {
1728 if (priv
->tx_contexts
[i
].echo_index
== dev
->max_tx_urbs
) {
1729 context
= &priv
->tx_contexts
[i
];
1731 context
->echo_index
= i
;
1732 can_put_echo_skb(skb
, netdev
, context
->echo_index
);
1733 ++priv
->active_tx_contexts
;
1734 if (priv
->active_tx_contexts
>= dev
->max_tx_urbs
)
1735 netif_stop_queue(netdev
);
1740 spin_unlock_irqrestore(&priv
->tx_contexts_lock
, flags
);
1742 /* This should never happen; it implies a flow control bug */
1744 netdev_warn(netdev
, "cannot find free context\n");
1747 ret
= NETDEV_TX_BUSY
;
1751 context
->priv
= priv
;
1752 context
->dlc
= cf
->can_dlc
;
1754 msg
->u
.tx_can
.tid
= context
->echo_index
;
1756 usb_fill_bulk_urb(urb
, dev
->udev
,
1757 usb_sndbulkpipe(dev
->udev
,
1758 dev
->bulk_out
->bEndpointAddress
),
1760 kvaser_usb_write_bulk_callback
, context
);
1761 usb_anchor_urb(urb
, &priv
->tx_submitted
);
1763 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
1764 if (unlikely(err
)) {
1765 spin_lock_irqsave(&priv
->tx_contexts_lock
, flags
);
1767 can_free_echo_skb(netdev
, context
->echo_index
);
1768 context
->echo_index
= dev
->max_tx_urbs
;
1769 --priv
->active_tx_contexts
;
1770 netif_wake_queue(netdev
);
1772 spin_unlock_irqrestore(&priv
->tx_contexts_lock
, flags
);
1774 usb_unanchor_urb(urb
);
1777 stats
->tx_dropped
++;
1780 netif_device_detach(netdev
);
1782 netdev_warn(netdev
, "Failed tx_urb %d\n", err
);
1794 static const struct net_device_ops kvaser_usb_netdev_ops
= {
1795 .ndo_open
= kvaser_usb_open
,
1796 .ndo_stop
= kvaser_usb_close
,
1797 .ndo_start_xmit
= kvaser_usb_start_xmit
,
1798 .ndo_change_mtu
= can_change_mtu
,
1801 static const struct can_bittiming_const kvaser_usb_bittiming_const
= {
1802 .name
= "kvaser_usb",
1803 .tseg1_min
= KVASER_USB_TSEG1_MIN
,
1804 .tseg1_max
= KVASER_USB_TSEG1_MAX
,
1805 .tseg2_min
= KVASER_USB_TSEG2_MIN
,
1806 .tseg2_max
= KVASER_USB_TSEG2_MAX
,
1807 .sjw_max
= KVASER_USB_SJW_MAX
,
1808 .brp_min
= KVASER_USB_BRP_MIN
,
1809 .brp_max
= KVASER_USB_BRP_MAX
,
1810 .brp_inc
= KVASER_USB_BRP_INC
,
1813 static int kvaser_usb_set_bittiming(struct net_device
*netdev
)
1815 struct kvaser_usb_net_priv
*priv
= netdev_priv(netdev
);
1816 struct can_bittiming
*bt
= &priv
->can
.bittiming
;
1817 struct kvaser_usb
*dev
= priv
->dev
;
1818 struct kvaser_msg
*msg
;
1821 msg
= kmalloc(sizeof(*msg
), GFP_KERNEL
);
1825 msg
->id
= CMD_SET_BUS_PARAMS
;
1826 msg
->len
= MSG_HEADER_LEN
+ sizeof(struct kvaser_msg_busparams
);
1827 msg
->u
.busparams
.channel
= priv
->channel
;
1828 msg
->u
.busparams
.tid
= 0xff;
1829 msg
->u
.busparams
.bitrate
= cpu_to_le32(bt
->bitrate
);
1830 msg
->u
.busparams
.sjw
= bt
->sjw
;
1831 msg
->u
.busparams
.tseg1
= bt
->prop_seg
+ bt
->phase_seg1
;
1832 msg
->u
.busparams
.tseg2
= bt
->phase_seg2
;
1834 if (priv
->can
.ctrlmode
& CAN_CTRLMODE_3_SAMPLES
)
1835 msg
->u
.busparams
.no_samp
= 3;
1837 msg
->u
.busparams
.no_samp
= 1;
1839 rc
= kvaser_usb_send_msg(dev
, msg
);
1845 static int kvaser_usb_set_mode(struct net_device
*netdev
,
1848 struct kvaser_usb_net_priv
*priv
= netdev_priv(netdev
);
1852 case CAN_MODE_START
:
1853 err
= kvaser_usb_simple_msg_async(priv
, CMD_START_CHIP
);
1864 static int kvaser_usb_get_berr_counter(const struct net_device
*netdev
,
1865 struct can_berr_counter
*bec
)
1867 struct kvaser_usb_net_priv
*priv
= netdev_priv(netdev
);
1874 static void kvaser_usb_remove_interfaces(struct kvaser_usb
*dev
)
1878 for (i
= 0; i
< dev
->nchannels
; i
++) {
1882 unregister_candev(dev
->nets
[i
]->netdev
);
1885 kvaser_usb_unlink_all_urbs(dev
);
1887 for (i
= 0; i
< dev
->nchannels
; i
++) {
1891 free_candev(dev
->nets
[i
]->netdev
);
1895 static int kvaser_usb_init_one(struct usb_interface
*intf
,
1896 const struct usb_device_id
*id
, int channel
)
1898 struct kvaser_usb
*dev
= usb_get_intfdata(intf
);
1899 struct net_device
*netdev
;
1900 struct kvaser_usb_net_priv
*priv
;
1903 err
= kvaser_usb_send_simple_msg(dev
, CMD_RESET_CHIP
, channel
);
1907 netdev
= alloc_candev(sizeof(*priv
) +
1908 dev
->max_tx_urbs
* sizeof(*priv
->tx_contexts
),
1911 dev_err(&intf
->dev
, "Cannot alloc candev\n");
1915 priv
= netdev_priv(netdev
);
1917 init_usb_anchor(&priv
->tx_submitted
);
1918 init_completion(&priv
->start_comp
);
1919 init_completion(&priv
->stop_comp
);
1922 priv
->netdev
= netdev
;
1923 priv
->channel
= channel
;
1925 spin_lock_init(&priv
->tx_contexts_lock
);
1926 kvaser_usb_reset_tx_urb_contexts(priv
);
1928 priv
->can
.state
= CAN_STATE_STOPPED
;
1929 priv
->can
.clock
.freq
= CAN_USB_CLOCK
;
1930 priv
->can
.bittiming_const
= &kvaser_usb_bittiming_const
;
1931 priv
->can
.do_set_bittiming
= kvaser_usb_set_bittiming
;
1932 priv
->can
.do_set_mode
= kvaser_usb_set_mode
;
1933 if (id
->driver_info
& KVASER_HAS_TXRX_ERRORS
)
1934 priv
->can
.do_get_berr_counter
= kvaser_usb_get_berr_counter
;
1935 priv
->can
.ctrlmode_supported
= CAN_CTRLMODE_3_SAMPLES
;
1936 if (id
->driver_info
& KVASER_HAS_SILENT_MODE
)
1937 priv
->can
.ctrlmode_supported
|= CAN_CTRLMODE_LISTENONLY
;
1939 netdev
->flags
|= IFF_ECHO
;
1941 netdev
->netdev_ops
= &kvaser_usb_netdev_ops
;
1943 SET_NETDEV_DEV(netdev
, &intf
->dev
);
1944 netdev
->dev_id
= channel
;
1946 dev
->nets
[channel
] = priv
;
1948 err
= register_candev(netdev
);
1950 dev_err(&intf
->dev
, "Failed to register can device\n");
1951 free_candev(netdev
);
1952 dev
->nets
[channel
] = NULL
;
1956 netdev_dbg(netdev
, "device registered\n");
1961 static int kvaser_usb_get_endpoints(const struct usb_interface
*intf
,
1962 struct usb_endpoint_descriptor
**in
,
1963 struct usb_endpoint_descriptor
**out
)
1965 const struct usb_host_interface
*iface_desc
;
1966 struct usb_endpoint_descriptor
*endpoint
;
1969 iface_desc
= &intf
->altsetting
[0];
1971 for (i
= 0; i
< iface_desc
->desc
.bNumEndpoints
; ++i
) {
1972 endpoint
= &iface_desc
->endpoint
[i
].desc
;
1974 if (!*in
&& usb_endpoint_is_bulk_in(endpoint
))
1977 if (!*out
&& usb_endpoint_is_bulk_out(endpoint
))
1980 /* use first bulk endpoint for in and out */
1988 static int kvaser_usb_probe(struct usb_interface
*intf
,
1989 const struct usb_device_id
*id
)
1991 struct kvaser_usb
*dev
;
1995 dev
= devm_kzalloc(&intf
->dev
, sizeof(*dev
), GFP_KERNEL
);
1999 if (kvaser_is_leaf(id
)) {
2000 dev
->family
= KVASER_LEAF
;
2001 } else if (kvaser_is_usbcan(id
)) {
2002 dev
->family
= KVASER_USBCAN
;
2005 "Product ID (%d) does not belong to any known Kvaser USB family",
2010 err
= kvaser_usb_get_endpoints(intf
, &dev
->bulk_in
, &dev
->bulk_out
);
2012 dev_err(&intf
->dev
, "Cannot get usb endpoint(s)");
2016 dev
->udev
= interface_to_usbdev(intf
);
2018 init_usb_anchor(&dev
->rx_submitted
);
2020 usb_set_intfdata(intf
, dev
);
2022 /* On some x86 laptops, plugging a Kvaser device again after
2023 * an unplug makes the firmware always ignore the very first
2024 * command. For such a case, provide some room for retries
2025 * instead of completely exiting the driver.
2028 err
= kvaser_usb_get_software_info(dev
);
2029 } while (--retry
&& err
== -ETIMEDOUT
);
2033 "Cannot get software infos, error %d\n", err
);
2037 dev_dbg(&intf
->dev
, "Firmware version: %d.%d.%d\n",
2038 ((dev
->fw_version
>> 24) & 0xff),
2039 ((dev
->fw_version
>> 16) & 0xff),
2040 (dev
->fw_version
& 0xffff));
2042 dev_dbg(&intf
->dev
, "Max outstanding tx = %d URBs\n", dev
->max_tx_urbs
);
2044 err
= kvaser_usb_get_card_info(dev
);
2047 "Cannot get card infos, error %d\n", err
);
2051 for (i
= 0; i
< dev
->nchannels
; i
++) {
2052 err
= kvaser_usb_init_one(intf
, id
, i
);
2054 kvaser_usb_remove_interfaces(dev
);
2062 static void kvaser_usb_disconnect(struct usb_interface
*intf
)
2064 struct kvaser_usb
*dev
= usb_get_intfdata(intf
);
2066 usb_set_intfdata(intf
, NULL
);
2071 kvaser_usb_remove_interfaces(dev
);
2074 static struct usb_driver kvaser_usb_driver
= {
2075 .name
= "kvaser_usb",
2076 .probe
= kvaser_usb_probe
,
2077 .disconnect
= kvaser_usb_disconnect
,
2078 .id_table
= kvaser_usb_table
,
2081 module_usb_driver(kvaser_usb_driver
);
2083 MODULE_AUTHOR("Olivier Sobrie <olivier@sobrie.be>");
2084 MODULE_DESCRIPTION("CAN driver for Kvaser CAN/USB devices");
2085 MODULE_LICENSE("GPL v2");