1 // SPDX-License-Identifier: GPL-2.0-only
3 * CAN driver for esd CAN-USB/2 and CAN-USB/Micro
7 #include <linux/signal.h>
8 #include <linux/slab.h>
9 #include <linux/module.h>
10 #include <linux/netdevice.h>
11 #include <linux/usb.h>
13 #include <linux/can.h>
14 #include <linux/can/dev.h>
15 #include <linux/can/error.h>
18 MODULE_DESCRIPTION("CAN driver for esd CAN-USB/2 and CAN-USB/Micro interfaces");
19 MODULE_LICENSE("GPL v2");
21 /* Define these values to match your devices */
22 #define USB_ESDGMBH_VENDOR_ID 0x0ab4
23 #define USB_CANUSB2_PRODUCT_ID 0x0010
24 #define USB_CANUSBM_PRODUCT_ID 0x0011
26 #define ESD_USB2_CAN_CLOCK 60000000
27 #define ESD_USBM_CAN_CLOCK 36000000
28 #define ESD_USB2_MAX_NETS 2
31 #define CMD_VERSION 1 /* also used for VERSION_REPLY */
32 #define CMD_CAN_RX 2 /* device to host only */
33 #define CMD_CAN_TX 3 /* also used for TX_DONE */
34 #define CMD_SETBAUD 4 /* also used for SETBAUD_REPLY */
35 #define CMD_TS 5 /* also used for TS_REPLY */
36 #define CMD_IDADD 6 /* also used for IDADD_REPLY */
38 /* esd CAN message flags - dlc field */
41 /* esd CAN message flags - id field */
42 #define ESD_EXTID 0x20000000
43 #define ESD_EVENT 0x40000000
44 #define ESD_IDMASK 0x1fffffff
46 /* esd CAN event ids used by this driver */
47 #define ESD_EV_CAN_ERROR_EXT 2
49 /* baudrate message flags */
50 #define ESD_USB2_UBR 0x80000000
51 #define ESD_USB2_LOM 0x40000000
52 #define ESD_USB2_NO_BAUDRATE 0x7fffffff
53 #define ESD_USB2_TSEG1_MIN 1
54 #define ESD_USB2_TSEG1_MAX 16
55 #define ESD_USB2_TSEG1_SHIFT 16
56 #define ESD_USB2_TSEG2_MIN 1
57 #define ESD_USB2_TSEG2_MAX 8
58 #define ESD_USB2_TSEG2_SHIFT 20
59 #define ESD_USB2_SJW_MAX 4
60 #define ESD_USB2_SJW_SHIFT 14
61 #define ESD_USBM_SJW_SHIFT 24
62 #define ESD_USB2_BRP_MIN 1
63 #define ESD_USB2_BRP_MAX 1024
64 #define ESD_USB2_BRP_INC 1
65 #define ESD_USB2_3_SAMPLES 0x00800000
67 /* esd IDADD message */
68 #define ESD_ID_ENABLE 0x80
69 #define ESD_MAX_ID_SEGMENT 64
71 /* SJA1000 ECC register (emulated by usb2 firmware) */
72 #define SJA1000_ECC_SEG 0x1F
73 #define SJA1000_ECC_DIR 0x20
74 #define SJA1000_ECC_ERR 0x06
75 #define SJA1000_ECC_BIT 0x00
76 #define SJA1000_ECC_FORM 0x40
77 #define SJA1000_ECC_STUFF 0x80
78 #define SJA1000_ECC_MASK 0xc0
80 /* esd bus state event codes */
81 #define ESD_BUSSTATE_MASK 0xc0
82 #define ESD_BUSSTATE_WARN 0x40
83 #define ESD_BUSSTATE_ERRPASSIVE 0x80
84 #define ESD_BUSSTATE_BUSOFF 0xc0
86 #define RX_BUFFER_SIZE 1024
88 #define MAX_TX_URBS 16 /* must be power of 2 */
91 u8 len; /* len is always the total message length in 32bit words */
104 struct version_reply_msg {
121 __le32 id; /* upper 3 bits contain flags */
130 u32 hnd; /* opaque handle, not used by device */
131 __le32 id; /* upper 3 bits contain flags */
140 u32 hnd; /* opaque handle, not used by device */
144 struct id_filter_msg {
149 __le32 mask[ESD_MAX_ID_SEGMENT + 1];
152 struct set_baudrate_msg {
160 /* Main message type used between library and application */
161 struct __attribute__ ((packed)) esd_usb2_msg {
163 struct header_msg hdr;
164 struct version_msg version;
165 struct version_reply_msg version_reply;
168 struct tx_done_msg txdone;
169 struct set_baudrate_msg setbaud;
170 struct id_filter_msg filter;
174 static struct usb_device_id esd_usb2_table[] = {
175 {USB_DEVICE(USB_ESDGMBH_VENDOR_ID, USB_CANUSB2_PRODUCT_ID)},
176 {USB_DEVICE(USB_ESDGMBH_VENDOR_ID, USB_CANUSBM_PRODUCT_ID)},
179 MODULE_DEVICE_TABLE(usb, esd_usb2_table);
181 struct esd_usb2_net_priv;
183 struct esd_tx_urb_context {
184 struct esd_usb2_net_priv *priv;
186 int len; /* CAN payload length */
190 struct usb_device *udev;
191 struct esd_usb2_net_priv *nets[ESD_USB2_MAX_NETS];
193 struct usb_anchor rx_submitted;
198 void *rxbuf[MAX_RX_URBS];
199 dma_addr_t rxbuf_dma[MAX_RX_URBS];
202 struct esd_usb2_net_priv {
203 struct can_priv can; /* must be the first member */
205 atomic_t active_tx_jobs;
206 struct usb_anchor tx_submitted;
207 struct esd_tx_urb_context tx_contexts[MAX_TX_URBS];
209 struct esd_usb2 *usb2;
210 struct net_device *netdev;
213 struct can_berr_counter bec;
216 static void esd_usb2_rx_event(struct esd_usb2_net_priv *priv,
217 struct esd_usb2_msg *msg)
219 struct net_device_stats *stats = &priv->netdev->stats;
220 struct can_frame *cf;
222 u32 id = le32_to_cpu(msg->msg.rx.id) & ESD_IDMASK;
224 if (id == ESD_EV_CAN_ERROR_EXT) {
225 u8 state = msg->msg.rx.data[0];
226 u8 ecc = msg->msg.rx.data[1];
227 u8 rxerr = msg->msg.rx.data[2];
228 u8 txerr = msg->msg.rx.data[3];
230 skb = alloc_can_err_skb(priv->netdev, &cf);
236 if (state != priv->old_state) {
237 priv->old_state = state;
239 switch (state & ESD_BUSSTATE_MASK) {
240 case ESD_BUSSTATE_BUSOFF:
241 priv->can.state = CAN_STATE_BUS_OFF;
242 cf->can_id |= CAN_ERR_BUSOFF;
243 priv->can.can_stats.bus_off++;
244 can_bus_off(priv->netdev);
246 case ESD_BUSSTATE_WARN:
247 priv->can.state = CAN_STATE_ERROR_WARNING;
248 priv->can.can_stats.error_warning++;
250 case ESD_BUSSTATE_ERRPASSIVE:
251 priv->can.state = CAN_STATE_ERROR_PASSIVE;
252 priv->can.can_stats.error_passive++;
255 priv->can.state = CAN_STATE_ERROR_ACTIVE;
259 priv->can.can_stats.bus_error++;
262 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
264 switch (ecc & SJA1000_ECC_MASK) {
265 case SJA1000_ECC_BIT:
266 cf->data[2] |= CAN_ERR_PROT_BIT;
268 case SJA1000_ECC_FORM:
269 cf->data[2] |= CAN_ERR_PROT_FORM;
271 case SJA1000_ECC_STUFF:
272 cf->data[2] |= CAN_ERR_PROT_STUFF;
275 cf->data[3] = ecc & SJA1000_ECC_SEG;
279 /* Error occurred during transmission? */
280 if (!(ecc & SJA1000_ECC_DIR))
281 cf->data[2] |= CAN_ERR_PROT_TX;
283 if (priv->can.state == CAN_STATE_ERROR_WARNING ||
284 priv->can.state == CAN_STATE_ERROR_PASSIVE) {
285 cf->data[1] = (txerr > rxerr) ?
286 CAN_ERR_CRTL_TX_PASSIVE :
287 CAN_ERR_CRTL_RX_PASSIVE;
293 priv->bec.txerr = txerr;
294 priv->bec.rxerr = rxerr;
297 stats->rx_bytes += cf->len;
302 static void esd_usb2_rx_can_msg(struct esd_usb2_net_priv *priv,
303 struct esd_usb2_msg *msg)
305 struct net_device_stats *stats = &priv->netdev->stats;
306 struct can_frame *cf;
311 if (!netif_device_present(priv->netdev))
314 id = le32_to_cpu(msg->msg.rx.id);
316 if (id & ESD_EVENT) {
317 esd_usb2_rx_event(priv, msg);
319 skb = alloc_can_skb(priv->netdev, &cf);
325 cf->can_id = id & ESD_IDMASK;
326 can_frame_set_cc_len(cf, msg->msg.rx.dlc & ~ESD_RTR,
330 cf->can_id |= CAN_EFF_FLAG;
332 if (msg->msg.rx.dlc & ESD_RTR) {
333 cf->can_id |= CAN_RTR_FLAG;
335 for (i = 0; i < cf->len; i++)
336 cf->data[i] = msg->msg.rx.data[i];
340 stats->rx_bytes += cf->len;
347 static void esd_usb2_tx_done_msg(struct esd_usb2_net_priv *priv,
348 struct esd_usb2_msg *msg)
350 struct net_device_stats *stats = &priv->netdev->stats;
351 struct net_device *netdev = priv->netdev;
352 struct esd_tx_urb_context *context;
354 if (!netif_device_present(netdev))
357 context = &priv->tx_contexts[msg->msg.txdone.hnd & (MAX_TX_URBS - 1)];
359 if (!msg->msg.txdone.status) {
361 stats->tx_bytes += context->len;
362 can_get_echo_skb(netdev, context->echo_index, NULL);
365 can_free_echo_skb(netdev, context->echo_index, NULL);
368 /* Release context */
369 context->echo_index = MAX_TX_URBS;
370 atomic_dec(&priv->active_tx_jobs);
372 netif_wake_queue(netdev);
375 static void esd_usb2_read_bulk_callback(struct urb *urb)
377 struct esd_usb2 *dev = urb->context;
382 switch (urb->status) {
383 case 0: /* success */
393 dev_info(dev->udev->dev.parent,
394 "Rx URB aborted (%d)\n", urb->status);
398 while (pos < urb->actual_length) {
399 struct esd_usb2_msg *msg;
401 msg = (struct esd_usb2_msg *)(urb->transfer_buffer + pos);
403 switch (msg->msg.hdr.cmd) {
405 if (msg->msg.rx.net >= dev->net_count) {
406 dev_err(dev->udev->dev.parent, "format error\n");
410 esd_usb2_rx_can_msg(dev->nets[msg->msg.rx.net], msg);
414 if (msg->msg.txdone.net >= dev->net_count) {
415 dev_err(dev->udev->dev.parent, "format error\n");
419 esd_usb2_tx_done_msg(dev->nets[msg->msg.txdone.net],
424 pos += msg->msg.hdr.len << 2;
426 if (pos > urb->actual_length) {
427 dev_err(dev->udev->dev.parent, "format error\n");
433 usb_fill_bulk_urb(urb, dev->udev, usb_rcvbulkpipe(dev->udev, 1),
434 urb->transfer_buffer, RX_BUFFER_SIZE,
435 esd_usb2_read_bulk_callback, dev);
437 retval = usb_submit_urb(urb, GFP_ATOMIC);
438 if (retval == -ENODEV) {
439 for (i = 0; i < dev->net_count; i++) {
441 netif_device_detach(dev->nets[i]->netdev);
444 dev_err(dev->udev->dev.parent,
445 "failed resubmitting read bulk urb: %d\n", retval);
452 * callback for bulk IN urb
454 static void esd_usb2_write_bulk_callback(struct urb *urb)
456 struct esd_tx_urb_context *context = urb->context;
457 struct esd_usb2_net_priv *priv;
458 struct net_device *netdev;
459 size_t size = sizeof(struct esd_usb2_msg);
463 priv = context->priv;
464 netdev = priv->netdev;
466 /* free up our allocated buffer */
467 usb_free_coherent(urb->dev, size,
468 urb->transfer_buffer, urb->transfer_dma);
470 if (!netif_device_present(netdev))
474 netdev_info(netdev, "Tx URB aborted (%d)\n", urb->status);
476 netif_trans_update(netdev);
479 static ssize_t firmware_show(struct device *d,
480 struct device_attribute *attr, char *buf)
482 struct usb_interface *intf = to_usb_interface(d);
483 struct esd_usb2 *dev = usb_get_intfdata(intf);
485 return sprintf(buf, "%d.%d.%d\n",
486 (dev->version >> 12) & 0xf,
487 (dev->version >> 8) & 0xf,
488 dev->version & 0xff);
490 static DEVICE_ATTR_RO(firmware);
492 static ssize_t hardware_show(struct device *d,
493 struct device_attribute *attr, char *buf)
495 struct usb_interface *intf = to_usb_interface(d);
496 struct esd_usb2 *dev = usb_get_intfdata(intf);
498 return sprintf(buf, "%d.%d.%d\n",
499 (dev->version >> 28) & 0xf,
500 (dev->version >> 24) & 0xf,
501 (dev->version >> 16) & 0xff);
503 static DEVICE_ATTR_RO(hardware);
505 static ssize_t nets_show(struct device *d,
506 struct device_attribute *attr, char *buf)
508 struct usb_interface *intf = to_usb_interface(d);
509 struct esd_usb2 *dev = usb_get_intfdata(intf);
511 return sprintf(buf, "%d", dev->net_count);
513 static DEVICE_ATTR_RO(nets);
515 static int esd_usb2_send_msg(struct esd_usb2 *dev, struct esd_usb2_msg *msg)
519 return usb_bulk_msg(dev->udev,
520 usb_sndbulkpipe(dev->udev, 2),
522 msg->msg.hdr.len << 2,
527 static int esd_usb2_wait_msg(struct esd_usb2 *dev,
528 struct esd_usb2_msg *msg)
532 return usb_bulk_msg(dev->udev,
533 usb_rcvbulkpipe(dev->udev, 1),
540 static int esd_usb2_setup_rx_urbs(struct esd_usb2 *dev)
547 for (i = 0; i < MAX_RX_URBS; i++) {
548 struct urb *urb = NULL;
552 /* create a URB, and a buffer for it */
553 urb = usb_alloc_urb(0, GFP_KERNEL);
559 buf = usb_alloc_coherent(dev->udev, RX_BUFFER_SIZE, GFP_KERNEL,
562 dev_warn(dev->udev->dev.parent,
563 "No memory left for USB buffer\n");
568 urb->transfer_dma = buf_dma;
570 usb_fill_bulk_urb(urb, dev->udev,
571 usb_rcvbulkpipe(dev->udev, 1),
573 esd_usb2_read_bulk_callback, dev);
574 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
575 usb_anchor_urb(urb, &dev->rx_submitted);
577 err = usb_submit_urb(urb, GFP_KERNEL);
579 usb_unanchor_urb(urb);
580 usb_free_coherent(dev->udev, RX_BUFFER_SIZE, buf,
586 dev->rxbuf_dma[i] = buf_dma;
589 /* Drop reference, USB core will take care of freeing it */
595 /* Did we submit any URBs */
597 dev_err(dev->udev->dev.parent, "couldn't setup read URBs\n");
601 /* Warn if we've couldn't transmit all the URBs */
602 if (i < MAX_RX_URBS) {
603 dev_warn(dev->udev->dev.parent,
604 "rx performance may be slow\n");
614 static int esd_usb2_start(struct esd_usb2_net_priv *priv)
616 struct esd_usb2 *dev = priv->usb2;
617 struct net_device *netdev = priv->netdev;
618 struct esd_usb2_msg *msg;
621 msg = kmalloc(sizeof(*msg), GFP_KERNEL);
629 * The IDADD message takes up to 64 32 bit bitmasks (2048 bits).
630 * Each bit represents one 11 bit CAN identifier. A set bit
631 * enables reception of the corresponding CAN identifier. A cleared
632 * bit disabled this identifier. An additional bitmask value
633 * following the CAN 2.0A bits is used to enable reception of
634 * extended CAN frames. Only the LSB of this final mask is checked
635 * for the complete 29 bit ID range. The IDADD message also allows
636 * filter configuration for an ID subset. In this case you can add
637 * the number of the starting bitmask (0..64) to the filter.option
638 * field followed by only some bitmasks.
640 msg->msg.hdr.cmd = CMD_IDADD;
641 msg->msg.hdr.len = 2 + ESD_MAX_ID_SEGMENT;
642 msg->msg.filter.net = priv->index;
643 msg->msg.filter.option = ESD_ID_ENABLE; /* start with segment 0 */
644 for (i = 0; i < ESD_MAX_ID_SEGMENT; i++)
645 msg->msg.filter.mask[i] = cpu_to_le32(0xffffffff);
646 /* enable 29bit extended IDs */
647 msg->msg.filter.mask[ESD_MAX_ID_SEGMENT] = cpu_to_le32(0x00000001);
649 err = esd_usb2_send_msg(dev, msg);
653 err = esd_usb2_setup_rx_urbs(dev);
657 priv->can.state = CAN_STATE_ERROR_ACTIVE;
661 netif_device_detach(netdev);
663 netdev_err(netdev, "couldn't start device: %d\n", err);
669 static void unlink_all_urbs(struct esd_usb2 *dev)
671 struct esd_usb2_net_priv *priv;
674 usb_kill_anchored_urbs(&dev->rx_submitted);
676 for (i = 0; i < MAX_RX_URBS; ++i)
677 usb_free_coherent(dev->udev, RX_BUFFER_SIZE,
678 dev->rxbuf[i], dev->rxbuf_dma[i]);
680 for (i = 0; i < dev->net_count; i++) {
683 usb_kill_anchored_urbs(&priv->tx_submitted);
684 atomic_set(&priv->active_tx_jobs, 0);
686 for (j = 0; j < MAX_TX_URBS; j++)
687 priv->tx_contexts[j].echo_index = MAX_TX_URBS;
692 static int esd_usb2_open(struct net_device *netdev)
694 struct esd_usb2_net_priv *priv = netdev_priv(netdev);
698 err = open_candev(netdev);
702 /* finally start device */
703 err = esd_usb2_start(priv);
705 netdev_warn(netdev, "couldn't start device: %d\n", err);
706 close_candev(netdev);
710 netif_start_queue(netdev);
715 static netdev_tx_t esd_usb2_start_xmit(struct sk_buff *skb,
716 struct net_device *netdev)
718 struct esd_usb2_net_priv *priv = netdev_priv(netdev);
719 struct esd_usb2 *dev = priv->usb2;
720 struct esd_tx_urb_context *context = NULL;
721 struct net_device_stats *stats = &netdev->stats;
722 struct can_frame *cf = (struct can_frame *)skb->data;
723 struct esd_usb2_msg *msg;
727 int ret = NETDEV_TX_OK;
728 size_t size = sizeof(struct esd_usb2_msg);
730 if (can_dropped_invalid_skb(netdev, skb))
733 /* create a URB, and a buffer for it, and copy the data to the URB */
734 urb = usb_alloc_urb(0, GFP_ATOMIC);
741 buf = usb_alloc_coherent(dev->udev, size, GFP_ATOMIC,
744 netdev_err(netdev, "No memory left for USB buffer\n");
750 msg = (struct esd_usb2_msg *)buf;
752 msg->msg.hdr.len = 3; /* minimal length */
753 msg->msg.hdr.cmd = CMD_CAN_TX;
754 msg->msg.tx.net = priv->index;
755 msg->msg.tx.dlc = can_get_cc_dlc(cf, priv->can.ctrlmode);
756 msg->msg.tx.id = cpu_to_le32(cf->can_id & CAN_ERR_MASK);
758 if (cf->can_id & CAN_RTR_FLAG)
759 msg->msg.tx.dlc |= ESD_RTR;
761 if (cf->can_id & CAN_EFF_FLAG)
762 msg->msg.tx.id |= cpu_to_le32(ESD_EXTID);
764 for (i = 0; i < cf->len; i++)
765 msg->msg.tx.data[i] = cf->data[i];
767 msg->msg.hdr.len += (cf->len + 3) >> 2;
769 for (i = 0; i < MAX_TX_URBS; i++) {
770 if (priv->tx_contexts[i].echo_index == MAX_TX_URBS) {
771 context = &priv->tx_contexts[i];
777 * This may never happen.
780 netdev_warn(netdev, "couldn't find free context\n");
781 ret = NETDEV_TX_BUSY;
785 context->priv = priv;
786 context->echo_index = i;
787 context->len = cf->len;
789 /* hnd must not be 0 - MSB is stripped in txdone handling */
790 msg->msg.tx.hnd = 0x80000000 | i; /* returned in TX done message */
792 usb_fill_bulk_urb(urb, dev->udev, usb_sndbulkpipe(dev->udev, 2), buf,
793 msg->msg.hdr.len << 2,
794 esd_usb2_write_bulk_callback, context);
796 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
798 usb_anchor_urb(urb, &priv->tx_submitted);
800 can_put_echo_skb(skb, netdev, context->echo_index, 0);
802 atomic_inc(&priv->active_tx_jobs);
804 /* Slow down tx path */
805 if (atomic_read(&priv->active_tx_jobs) >= MAX_TX_URBS)
806 netif_stop_queue(netdev);
808 err = usb_submit_urb(urb, GFP_ATOMIC);
810 can_free_echo_skb(netdev, context->echo_index, NULL);
812 atomic_dec(&priv->active_tx_jobs);
813 usb_unanchor_urb(urb);
818 netif_device_detach(netdev);
820 netdev_warn(netdev, "failed tx_urb %d\n", err);
825 netif_trans_update(netdev);
828 * Release our reference to this URB, the USB core will eventually free
836 usb_free_coherent(dev->udev, size, buf, urb->transfer_dma);
845 static int esd_usb2_close(struct net_device *netdev)
847 struct esd_usb2_net_priv *priv = netdev_priv(netdev);
848 struct esd_usb2_msg *msg;
851 msg = kmalloc(sizeof(*msg), GFP_KERNEL);
855 /* Disable all IDs (see esd_usb2_start()) */
856 msg->msg.hdr.cmd = CMD_IDADD;
857 msg->msg.hdr.len = 2 + ESD_MAX_ID_SEGMENT;
858 msg->msg.filter.net = priv->index;
859 msg->msg.filter.option = ESD_ID_ENABLE; /* start with segment 0 */
860 for (i = 0; i <= ESD_MAX_ID_SEGMENT; i++)
861 msg->msg.filter.mask[i] = 0;
862 if (esd_usb2_send_msg(priv->usb2, msg) < 0)
863 netdev_err(netdev, "sending idadd message failed\n");
865 /* set CAN controller to reset mode */
866 msg->msg.hdr.len = 2;
867 msg->msg.hdr.cmd = CMD_SETBAUD;
868 msg->msg.setbaud.net = priv->index;
869 msg->msg.setbaud.rsvd = 0;
870 msg->msg.setbaud.baud = cpu_to_le32(ESD_USB2_NO_BAUDRATE);
871 if (esd_usb2_send_msg(priv->usb2, msg) < 0)
872 netdev_err(netdev, "sending setbaud message failed\n");
874 priv->can.state = CAN_STATE_STOPPED;
876 netif_stop_queue(netdev);
878 close_candev(netdev);
885 static const struct net_device_ops esd_usb2_netdev_ops = {
886 .ndo_open = esd_usb2_open,
887 .ndo_stop = esd_usb2_close,
888 .ndo_start_xmit = esd_usb2_start_xmit,
889 .ndo_change_mtu = can_change_mtu,
892 static const struct can_bittiming_const esd_usb2_bittiming_const = {
894 .tseg1_min = ESD_USB2_TSEG1_MIN,
895 .tseg1_max = ESD_USB2_TSEG1_MAX,
896 .tseg2_min = ESD_USB2_TSEG2_MIN,
897 .tseg2_max = ESD_USB2_TSEG2_MAX,
898 .sjw_max = ESD_USB2_SJW_MAX,
899 .brp_min = ESD_USB2_BRP_MIN,
900 .brp_max = ESD_USB2_BRP_MAX,
901 .brp_inc = ESD_USB2_BRP_INC,
904 static int esd_usb2_set_bittiming(struct net_device *netdev)
906 struct esd_usb2_net_priv *priv = netdev_priv(netdev);
907 struct can_bittiming *bt = &priv->can.bittiming;
908 struct esd_usb2_msg *msg;
913 canbtr = ESD_USB2_UBR;
914 if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)
915 canbtr |= ESD_USB2_LOM;
917 canbtr |= (bt->brp - 1) & (ESD_USB2_BRP_MAX - 1);
919 if (le16_to_cpu(priv->usb2->udev->descriptor.idProduct) ==
920 USB_CANUSBM_PRODUCT_ID)
921 sjw_shift = ESD_USBM_SJW_SHIFT;
923 sjw_shift = ESD_USB2_SJW_SHIFT;
925 canbtr |= ((bt->sjw - 1) & (ESD_USB2_SJW_MAX - 1))
927 canbtr |= ((bt->prop_seg + bt->phase_seg1 - 1)
928 & (ESD_USB2_TSEG1_MAX - 1))
929 << ESD_USB2_TSEG1_SHIFT;
930 canbtr |= ((bt->phase_seg2 - 1) & (ESD_USB2_TSEG2_MAX - 1))
931 << ESD_USB2_TSEG2_SHIFT;
932 if (priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES)
933 canbtr |= ESD_USB2_3_SAMPLES;
935 msg = kmalloc(sizeof(*msg), GFP_KERNEL);
939 msg->msg.hdr.len = 2;
940 msg->msg.hdr.cmd = CMD_SETBAUD;
941 msg->msg.setbaud.net = priv->index;
942 msg->msg.setbaud.rsvd = 0;
943 msg->msg.setbaud.baud = cpu_to_le32(canbtr);
945 netdev_info(netdev, "setting BTR=%#x\n", canbtr);
947 err = esd_usb2_send_msg(priv->usb2, msg);
953 static int esd_usb2_get_berr_counter(const struct net_device *netdev,
954 struct can_berr_counter *bec)
956 struct esd_usb2_net_priv *priv = netdev_priv(netdev);
958 bec->txerr = priv->bec.txerr;
959 bec->rxerr = priv->bec.rxerr;
964 static int esd_usb2_set_mode(struct net_device *netdev, enum can_mode mode)
968 netif_wake_queue(netdev);
978 static int esd_usb2_probe_one_net(struct usb_interface *intf, int index)
980 struct esd_usb2 *dev = usb_get_intfdata(intf);
981 struct net_device *netdev;
982 struct esd_usb2_net_priv *priv;
986 netdev = alloc_candev(sizeof(*priv), MAX_TX_URBS);
988 dev_err(&intf->dev, "couldn't alloc candev\n");
993 priv = netdev_priv(netdev);
995 init_usb_anchor(&priv->tx_submitted);
996 atomic_set(&priv->active_tx_jobs, 0);
998 for (i = 0; i < MAX_TX_URBS; i++)
999 priv->tx_contexts[i].echo_index = MAX_TX_URBS;
1002 priv->netdev = netdev;
1003 priv->index = index;
1005 priv->can.state = CAN_STATE_STOPPED;
1006 priv->can.ctrlmode_supported = CAN_CTRLMODE_LISTENONLY |
1007 CAN_CTRLMODE_CC_LEN8_DLC;
1009 if (le16_to_cpu(dev->udev->descriptor.idProduct) ==
1010 USB_CANUSBM_PRODUCT_ID)
1011 priv->can.clock.freq = ESD_USBM_CAN_CLOCK;
1013 priv->can.clock.freq = ESD_USB2_CAN_CLOCK;
1014 priv->can.ctrlmode_supported |= CAN_CTRLMODE_3_SAMPLES;
1017 priv->can.bittiming_const = &esd_usb2_bittiming_const;
1018 priv->can.do_set_bittiming = esd_usb2_set_bittiming;
1019 priv->can.do_set_mode = esd_usb2_set_mode;
1020 priv->can.do_get_berr_counter = esd_usb2_get_berr_counter;
1022 netdev->flags |= IFF_ECHO; /* we support local echo */
1024 netdev->netdev_ops = &esd_usb2_netdev_ops;
1026 SET_NETDEV_DEV(netdev, &intf->dev);
1027 netdev->dev_id = index;
1029 err = register_candev(netdev);
1031 dev_err(&intf->dev, "couldn't register CAN device: %d\n", err);
1032 free_candev(netdev);
1037 dev->nets[index] = priv;
1038 netdev_info(netdev, "device %s registered\n", netdev->name);
1045 * probe function for new USB2 devices
1047 * check version information and number of available
1050 static int esd_usb2_probe(struct usb_interface *intf,
1051 const struct usb_device_id *id)
1053 struct esd_usb2 *dev;
1054 struct esd_usb2_msg *msg;
1057 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1063 dev->udev = interface_to_usbdev(intf);
1065 init_usb_anchor(&dev->rx_submitted);
1067 usb_set_intfdata(intf, dev);
1069 msg = kmalloc(sizeof(*msg), GFP_KERNEL);
1075 /* query number of CAN interfaces (nets) */
1076 msg->msg.hdr.cmd = CMD_VERSION;
1077 msg->msg.hdr.len = 2;
1078 msg->msg.version.rsvd = 0;
1079 msg->msg.version.flags = 0;
1080 msg->msg.version.drv_version = 0;
1082 err = esd_usb2_send_msg(dev, msg);
1084 dev_err(&intf->dev, "sending version message failed\n");
1088 err = esd_usb2_wait_msg(dev, msg);
1090 dev_err(&intf->dev, "no version message answer\n");
1094 dev->net_count = (int)msg->msg.version_reply.nets;
1095 dev->version = le32_to_cpu(msg->msg.version_reply.version);
1097 if (device_create_file(&intf->dev, &dev_attr_firmware))
1099 "Couldn't create device file for firmware\n");
1101 if (device_create_file(&intf->dev, &dev_attr_hardware))
1103 "Couldn't create device file for hardware\n");
1105 if (device_create_file(&intf->dev, &dev_attr_nets))
1107 "Couldn't create device file for nets\n");
1109 /* do per device probing */
1110 for (i = 0; i < dev->net_count; i++)
1111 esd_usb2_probe_one_net(intf, i);
1122 * called by the usb core when the device is removed from the system
1124 static void esd_usb2_disconnect(struct usb_interface *intf)
1126 struct esd_usb2 *dev = usb_get_intfdata(intf);
1127 struct net_device *netdev;
1130 device_remove_file(&intf->dev, &dev_attr_firmware);
1131 device_remove_file(&intf->dev, &dev_attr_hardware);
1132 device_remove_file(&intf->dev, &dev_attr_nets);
1134 usb_set_intfdata(intf, NULL);
1137 for (i = 0; i < dev->net_count; i++) {
1139 netdev = dev->nets[i]->netdev;
1140 unregister_netdev(netdev);
1141 free_candev(netdev);
1144 unlink_all_urbs(dev);
1149 /* usb specific object needed to register this driver with the usb subsystem */
1150 static struct usb_driver esd_usb2_driver = {
1152 .probe = esd_usb2_probe,
1153 .disconnect = esd_usb2_disconnect,
1154 .id_table = esd_usb2_table,
1157 module_usb_driver(esd_usb2_driver);