1 // SPDX-License-Identifier: GPL-2.0-only
3 * CAN driver for EMS Dr. Thomas Wuensche CPC-USB/ARM7
5 * Copyright (C) 2004-2009 EMS Dr. Thomas Wuensche
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>
17 MODULE_AUTHOR("Sebastian Haas <haas@ems-wuensche.com>");
18 MODULE_DESCRIPTION("CAN driver for EMS Dr. Thomas Wuensche CAN/USB interfaces");
19 MODULE_LICENSE("GPL v2");
21 /* Control-Values for CPC_Control() Command Subject Selection */
22 #define CONTR_CAN_MESSAGE 0x04
23 #define CONTR_CAN_STATE 0x0C
24 #define CONTR_BUS_ERROR 0x1C
26 /* Control Command Actions */
27 #define CONTR_CONT_OFF 0
28 #define CONTR_CONT_ON 1
31 /* Messages from CPC to PC */
32 #define CPC_MSG_TYPE_CAN_FRAME 1 /* CAN data frame */
33 #define CPC_MSG_TYPE_RTR_FRAME 8 /* CAN remote frame */
34 #define CPC_MSG_TYPE_CAN_PARAMS 12 /* Actual CAN parameters */
35 #define CPC_MSG_TYPE_CAN_STATE 14 /* CAN state message */
36 #define CPC_MSG_TYPE_EXT_CAN_FRAME 16 /* Extended CAN data frame */
37 #define CPC_MSG_TYPE_EXT_RTR_FRAME 17 /* Extended remote frame */
38 #define CPC_MSG_TYPE_CONTROL 19 /* change interface behavior */
39 #define CPC_MSG_TYPE_CONFIRM 20 /* command processed confirmation */
40 #define CPC_MSG_TYPE_OVERRUN 21 /* overrun events */
41 #define CPC_MSG_TYPE_CAN_FRAME_ERROR 23 /* detected bus errors */
42 #define CPC_MSG_TYPE_ERR_COUNTER 25 /* RX/TX error counter */
44 /* Messages from the PC to the CPC interface */
45 #define CPC_CMD_TYPE_CAN_FRAME 1 /* CAN data frame */
46 #define CPC_CMD_TYPE_CONTROL 3 /* control of interface behavior */
47 #define CPC_CMD_TYPE_CAN_PARAMS 6 /* set CAN parameters */
48 #define CPC_CMD_TYPE_RTR_FRAME 13 /* CAN remote frame */
49 #define CPC_CMD_TYPE_CAN_STATE 14 /* CAN state message */
50 #define CPC_CMD_TYPE_EXT_CAN_FRAME 15 /* Extended CAN data frame */
51 #define CPC_CMD_TYPE_EXT_RTR_FRAME 16 /* Extended CAN remote frame */
52 #define CPC_CMD_TYPE_CAN_EXIT 200 /* exit the CAN */
54 #define CPC_CMD_TYPE_INQ_ERR_COUNTER 25 /* request the CAN error counters */
55 #define CPC_CMD_TYPE_CLEAR_MSG_QUEUE 8 /* clear CPC_MSG queue */
56 #define CPC_CMD_TYPE_CLEAR_CMD_QUEUE 28 /* clear CPC_CMD queue */
58 #define CPC_CC_TYPE_SJA1000 2 /* Philips basic CAN controller */
60 #define CPC_CAN_ECODE_ERRFRAME 0x01 /* Ecode type */
63 #define CPC_OVR_EVENT_CAN 0x01
64 #define CPC_OVR_EVENT_CANSTATE 0x02
65 #define CPC_OVR_EVENT_BUSERROR 0x04
68 * If the CAN controller lost a message we indicate it with the highest bit
69 * set in the count field.
71 #define CPC_OVR_HW 0x80
73 /* Size of the "struct ems_cpc_msg" without the union */
74 #define CPC_MSG_HEADER_LEN 11
75 #define CPC_CAN_MSG_MIN_SIZE 5
77 /* Define these values to match your devices */
78 #define USB_CPCUSB_VENDOR_ID 0x12D6
80 #define USB_CPCUSB_ARM7_PRODUCT_ID 0x0444
82 /* Mode register NXP LPC2119/SJA1000 CAN Controller */
83 #define SJA1000_MOD_NORMAL 0x00
84 #define SJA1000_MOD_RM 0x01
86 /* ECC register NXP LPC2119/SJA1000 CAN Controller */
87 #define SJA1000_ECC_SEG 0x1F
88 #define SJA1000_ECC_DIR 0x20
89 #define SJA1000_ECC_ERR 0x06
90 #define SJA1000_ECC_BIT 0x00
91 #define SJA1000_ECC_FORM 0x40
92 #define SJA1000_ECC_STUFF 0x80
93 #define SJA1000_ECC_MASK 0xc0
95 /* Status register content */
96 #define SJA1000_SR_BS 0x80
97 #define SJA1000_SR_ES 0x40
99 #define SJA1000_DEFAULT_OUTPUT_CONTROL 0xDA
102 * The device actually uses a 16MHz clock to generate the CAN clock
103 * but it expects SJA1000 bit settings based on 8MHz (is internally
106 #define EMS_USB_ARM7_CLOCK 8000000
108 #define CPC_TX_QUEUE_TRIGGER_LOW 25
109 #define CPC_TX_QUEUE_TRIGGER_HIGH 35
112 * CAN-Message representation in a CPC_MSG. Message object type is
113 * CPC_MSG_TYPE_CAN_FRAME or CPC_MSG_TYPE_RTR_FRAME or
114 * CPC_MSG_TYPE_EXT_CAN_FRAME or CPC_MSG_TYPE_EXT_RTR_FRAME.
122 /* Representation of the CAN parameters for the SJA1000 controller */
123 struct cpc_sja1000_params
{
138 /* CAN params message representation */
139 struct cpc_can_params
{
142 /* Will support M16C CAN controller in the future */
144 struct cpc_sja1000_params sja1000
;
148 /* Structure for confirmed message handling */
150 u8 error
; /* error code */
153 /* Structure for overrun conditions */
159 /* SJA1000 CAN errors (compatible to NXP LPC2119) */
160 struct cpc_sja1000_can_error
{
166 /* structure for CAN error conditions */
167 struct cpc_can_error
{
173 /* Other controllers may also provide error code capture regs */
175 struct cpc_sja1000_can_error sja1000
;
181 * Structure containing RX/TX error counter. This structure is used to request
182 * the values of the CAN controllers TX and RX error counter.
184 struct cpc_can_err_counter
{
189 /* Main message type used between library and application */
190 struct __packed ems_cpc_msg
{
191 u8 type
; /* type of message */
192 u8 length
; /* length of data within union 'msg' */
193 u8 msgid
; /* confirmation handle */
194 __le32 ts_sec
; /* timestamp in seconds */
195 __le32 ts_nsec
; /* timestamp in nano seconds */
199 struct cpc_can_msg can_msg
;
200 struct cpc_can_params can_params
;
201 struct cpc_confirm confirmation
;
202 struct cpc_overrun overrun
;
203 struct cpc_can_error error
;
204 struct cpc_can_err_counter err_counter
;
210 * Table of devices that work with this driver
211 * NOTE: This driver supports only CPC-USB/ARM7 (LPC2119) yet.
213 static struct usb_device_id ems_usb_table
[] = {
214 {USB_DEVICE(USB_CPCUSB_VENDOR_ID
, USB_CPCUSB_ARM7_PRODUCT_ID
)},
215 {} /* Terminating entry */
218 MODULE_DEVICE_TABLE(usb
, ems_usb_table
);
220 #define RX_BUFFER_SIZE 64
221 #define CPC_HEADER_SIZE 4
222 #define INTR_IN_BUFFER_SIZE 4
224 #define MAX_RX_URBS 10
225 #define MAX_TX_URBS 10
229 struct ems_tx_urb_context
{
237 struct can_priv can
; /* must be the first member */
239 struct sk_buff
*echo_skb
[MAX_TX_URBS
];
241 struct usb_device
*udev
;
242 struct net_device
*netdev
;
244 atomic_t active_tx_urbs
;
245 struct usb_anchor tx_submitted
;
246 struct ems_tx_urb_context tx_contexts
[MAX_TX_URBS
];
248 struct usb_anchor rx_submitted
;
250 struct urb
*intr_urb
;
255 unsigned int free_slots
; /* remember number of available slots */
257 struct ems_cpc_msg active_params
; /* active controller parameters */
260 static void ems_usb_read_interrupt_callback(struct urb
*urb
)
262 struct ems_usb
*dev
= urb
->context
;
263 struct net_device
*netdev
= dev
->netdev
;
266 if (!netif_device_present(netdev
))
269 switch (urb
->status
) {
271 dev
->free_slots
= dev
->intr_in_buffer
[1];
272 if (dev
->free_slots
> CPC_TX_QUEUE_TRIGGER_HIGH
&&
273 netif_queue_stopped(netdev
))
274 netif_wake_queue(netdev
);
277 case -ECONNRESET
: /* unlink */
285 netdev_info(netdev
, "Rx interrupt aborted %d\n", urb
->status
);
289 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
292 netif_device_detach(netdev
);
294 netdev_err(netdev
, "failed resubmitting intr urb: %d\n", err
);
297 static void ems_usb_rx_can_msg(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
299 struct can_frame
*cf
;
302 struct net_device_stats
*stats
= &dev
->netdev
->stats
;
304 skb
= alloc_can_skb(dev
->netdev
, &cf
);
308 cf
->can_id
= le32_to_cpu(msg
->msg
.can_msg
.id
);
309 cf
->can_dlc
= get_can_dlc(msg
->msg
.can_msg
.length
& 0xF);
311 if (msg
->type
== CPC_MSG_TYPE_EXT_CAN_FRAME
||
312 msg
->type
== CPC_MSG_TYPE_EXT_RTR_FRAME
)
313 cf
->can_id
|= CAN_EFF_FLAG
;
315 if (msg
->type
== CPC_MSG_TYPE_RTR_FRAME
||
316 msg
->type
== CPC_MSG_TYPE_EXT_RTR_FRAME
) {
317 cf
->can_id
|= CAN_RTR_FLAG
;
319 for (i
= 0; i
< cf
->can_dlc
; i
++)
320 cf
->data
[i
] = msg
->msg
.can_msg
.msg
[i
];
324 stats
->rx_bytes
+= cf
->can_dlc
;
328 static void ems_usb_rx_err(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
330 struct can_frame
*cf
;
332 struct net_device_stats
*stats
= &dev
->netdev
->stats
;
334 skb
= alloc_can_err_skb(dev
->netdev
, &cf
);
338 if (msg
->type
== CPC_MSG_TYPE_CAN_STATE
) {
339 u8 state
= msg
->msg
.can_state
;
341 if (state
& SJA1000_SR_BS
) {
342 dev
->can
.state
= CAN_STATE_BUS_OFF
;
343 cf
->can_id
|= CAN_ERR_BUSOFF
;
345 dev
->can
.can_stats
.bus_off
++;
346 can_bus_off(dev
->netdev
);
347 } else if (state
& SJA1000_SR_ES
) {
348 dev
->can
.state
= CAN_STATE_ERROR_WARNING
;
349 dev
->can
.can_stats
.error_warning
++;
351 dev
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
352 dev
->can
.can_stats
.error_passive
++;
354 } else if (msg
->type
== CPC_MSG_TYPE_CAN_FRAME_ERROR
) {
355 u8 ecc
= msg
->msg
.error
.cc
.regs
.sja1000
.ecc
;
356 u8 txerr
= msg
->msg
.error
.cc
.regs
.sja1000
.txerr
;
357 u8 rxerr
= msg
->msg
.error
.cc
.regs
.sja1000
.rxerr
;
359 /* bus error interrupt */
360 dev
->can
.can_stats
.bus_error
++;
363 cf
->can_id
|= CAN_ERR_PROT
| CAN_ERR_BUSERROR
;
365 switch (ecc
& SJA1000_ECC_MASK
) {
366 case SJA1000_ECC_BIT
:
367 cf
->data
[2] |= CAN_ERR_PROT_BIT
;
369 case SJA1000_ECC_FORM
:
370 cf
->data
[2] |= CAN_ERR_PROT_FORM
;
372 case SJA1000_ECC_STUFF
:
373 cf
->data
[2] |= CAN_ERR_PROT_STUFF
;
376 cf
->data
[3] = ecc
& SJA1000_ECC_SEG
;
380 /* Error occurred during transmission? */
381 if ((ecc
& SJA1000_ECC_DIR
) == 0)
382 cf
->data
[2] |= CAN_ERR_PROT_TX
;
384 if (dev
->can
.state
== CAN_STATE_ERROR_WARNING
||
385 dev
->can
.state
== CAN_STATE_ERROR_PASSIVE
) {
386 cf
->can_id
|= CAN_ERR_CRTL
;
387 cf
->data
[1] = (txerr
> rxerr
) ?
388 CAN_ERR_CRTL_TX_PASSIVE
: CAN_ERR_CRTL_RX_PASSIVE
;
390 } else if (msg
->type
== CPC_MSG_TYPE_OVERRUN
) {
391 cf
->can_id
|= CAN_ERR_CRTL
;
392 cf
->data
[1] = CAN_ERR_CRTL_RX_OVERFLOW
;
394 stats
->rx_over_errors
++;
399 stats
->rx_bytes
+= cf
->can_dlc
;
404 * callback for bulk IN urb
406 static void ems_usb_read_bulk_callback(struct urb
*urb
)
408 struct ems_usb
*dev
= urb
->context
;
409 struct net_device
*netdev
;
412 netdev
= dev
->netdev
;
414 if (!netif_device_present(netdev
))
417 switch (urb
->status
) {
418 case 0: /* success */
425 netdev_info(netdev
, "Rx URB aborted (%d)\n", urb
->status
);
429 if (urb
->actual_length
> CPC_HEADER_SIZE
) {
430 struct ems_cpc_msg
*msg
;
431 u8
*ibuf
= urb
->transfer_buffer
;
434 msg_count
= ibuf
[0] & ~0x80;
436 start
= CPC_HEADER_SIZE
;
439 msg
= (struct ems_cpc_msg
*)&ibuf
[start
];
442 case CPC_MSG_TYPE_CAN_STATE
:
443 /* Process CAN state changes */
444 ems_usb_rx_err(dev
, msg
);
447 case CPC_MSG_TYPE_CAN_FRAME
:
448 case CPC_MSG_TYPE_EXT_CAN_FRAME
:
449 case CPC_MSG_TYPE_RTR_FRAME
:
450 case CPC_MSG_TYPE_EXT_RTR_FRAME
:
451 ems_usb_rx_can_msg(dev
, msg
);
454 case CPC_MSG_TYPE_CAN_FRAME_ERROR
:
455 /* Process errorframe */
456 ems_usb_rx_err(dev
, msg
);
459 case CPC_MSG_TYPE_OVERRUN
:
460 /* Message lost while receiving */
461 ems_usb_rx_err(dev
, msg
);
465 start
+= CPC_MSG_HEADER_LEN
+ msg
->length
;
468 if (start
> urb
->transfer_buffer_length
) {
469 netdev_err(netdev
, "format error\n");
476 usb_fill_bulk_urb(urb
, dev
->udev
, usb_rcvbulkpipe(dev
->udev
, 2),
477 urb
->transfer_buffer
, RX_BUFFER_SIZE
,
478 ems_usb_read_bulk_callback
, dev
);
480 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
482 if (retval
== -ENODEV
)
483 netif_device_detach(netdev
);
486 "failed resubmitting read bulk urb: %d\n", retval
);
490 * callback for bulk IN urb
492 static void ems_usb_write_bulk_callback(struct urb
*urb
)
494 struct ems_tx_urb_context
*context
= urb
->context
;
496 struct net_device
*netdev
;
501 netdev
= dev
->netdev
;
503 /* free up our allocated buffer */
504 usb_free_coherent(urb
->dev
, urb
->transfer_buffer_length
,
505 urb
->transfer_buffer
, urb
->transfer_dma
);
507 atomic_dec(&dev
->active_tx_urbs
);
509 if (!netif_device_present(netdev
))
513 netdev_info(netdev
, "Tx URB aborted (%d)\n", urb
->status
);
515 netif_trans_update(netdev
);
517 /* transmission complete interrupt */
518 netdev
->stats
.tx_packets
++;
519 netdev
->stats
.tx_bytes
+= context
->dlc
;
521 can_get_echo_skb(netdev
, context
->echo_index
);
523 /* Release context */
524 context
->echo_index
= MAX_TX_URBS
;
529 * Send the given CPC command synchronously
531 static int ems_usb_command_msg(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
536 memcpy(&dev
->tx_msg_buffer
[CPC_HEADER_SIZE
], msg
,
537 msg
->length
+ CPC_MSG_HEADER_LEN
);
540 memset(&dev
->tx_msg_buffer
[0], 0, CPC_HEADER_SIZE
);
542 return usb_bulk_msg(dev
->udev
, usb_sndbulkpipe(dev
->udev
, 2),
543 &dev
->tx_msg_buffer
[0],
544 msg
->length
+ CPC_MSG_HEADER_LEN
+ CPC_HEADER_SIZE
,
545 &actual_length
, 1000);
549 * Change CAN controllers' mode register
551 static int ems_usb_write_mode(struct ems_usb
*dev
, u8 mode
)
553 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.mode
= mode
;
555 return ems_usb_command_msg(dev
, &dev
->active_params
);
559 * Send a CPC_Control command to change behaviour when interface receives a CAN
560 * message, bus error or CAN state changed notifications.
562 static int ems_usb_control_cmd(struct ems_usb
*dev
, u8 val
)
564 struct ems_cpc_msg cmd
;
566 cmd
.type
= CPC_CMD_TYPE_CONTROL
;
567 cmd
.length
= CPC_MSG_HEADER_LEN
+ 1;
571 cmd
.msg
.generic
[0] = val
;
573 return ems_usb_command_msg(dev
, &cmd
);
579 static int ems_usb_start(struct ems_usb
*dev
)
581 struct net_device
*netdev
= dev
->netdev
;
584 dev
->intr_in_buffer
[0] = 0;
585 dev
->free_slots
= 50; /* initial size */
587 for (i
= 0; i
< MAX_RX_URBS
; i
++) {
588 struct urb
*urb
= NULL
;
591 /* create a URB, and a buffer for it */
592 urb
= usb_alloc_urb(0, GFP_KERNEL
);
598 buf
= usb_alloc_coherent(dev
->udev
, RX_BUFFER_SIZE
, GFP_KERNEL
,
601 netdev_err(netdev
, "No memory left for USB buffer\n");
607 usb_fill_bulk_urb(urb
, dev
->udev
, usb_rcvbulkpipe(dev
->udev
, 2),
609 ems_usb_read_bulk_callback
, dev
);
610 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
611 usb_anchor_urb(urb
, &dev
->rx_submitted
);
613 err
= usb_submit_urb(urb
, GFP_KERNEL
);
615 usb_unanchor_urb(urb
);
616 usb_free_coherent(dev
->udev
, RX_BUFFER_SIZE
, buf
,
622 /* Drop reference, USB core will take care of freeing it */
626 /* Did we submit any URBs */
628 netdev_warn(netdev
, "couldn't setup read URBs\n");
632 /* Warn if we've couldn't transmit all the URBs */
634 netdev_warn(netdev
, "rx performance may be slow\n");
636 /* Setup and start interrupt URB */
637 usb_fill_int_urb(dev
->intr_urb
, dev
->udev
,
638 usb_rcvintpipe(dev
->udev
, 1),
641 ems_usb_read_interrupt_callback
, dev
, 1);
643 err
= usb_submit_urb(dev
->intr_urb
, GFP_KERNEL
);
645 netdev_warn(netdev
, "intr URB submit failed: %d\n", err
);
650 /* CPC-USB will transfer received message to host */
651 err
= ems_usb_control_cmd(dev
, CONTR_CAN_MESSAGE
| CONTR_CONT_ON
);
655 /* CPC-USB will transfer CAN state changes to host */
656 err
= ems_usb_control_cmd(dev
, CONTR_CAN_STATE
| CONTR_CONT_ON
);
660 /* CPC-USB will transfer bus errors to host */
661 err
= ems_usb_control_cmd(dev
, CONTR_BUS_ERROR
| CONTR_CONT_ON
);
665 err
= ems_usb_write_mode(dev
, SJA1000_MOD_NORMAL
);
669 dev
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
674 netdev_warn(netdev
, "couldn't submit control: %d\n", err
);
679 static void unlink_all_urbs(struct ems_usb
*dev
)
683 usb_unlink_urb(dev
->intr_urb
);
685 usb_kill_anchored_urbs(&dev
->rx_submitted
);
687 usb_kill_anchored_urbs(&dev
->tx_submitted
);
688 atomic_set(&dev
->active_tx_urbs
, 0);
690 for (i
= 0; i
< MAX_TX_URBS
; i
++)
691 dev
->tx_contexts
[i
].echo_index
= MAX_TX_URBS
;
694 static int ems_usb_open(struct net_device
*netdev
)
696 struct ems_usb
*dev
= netdev_priv(netdev
);
699 err
= ems_usb_write_mode(dev
, SJA1000_MOD_RM
);
704 err
= open_candev(netdev
);
708 /* finally start device */
709 err
= ems_usb_start(dev
);
712 netif_device_detach(dev
->netdev
);
714 netdev_warn(netdev
, "couldn't start device: %d\n", err
);
716 close_candev(netdev
);
722 netif_start_queue(netdev
);
727 static netdev_tx_t
ems_usb_start_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
729 struct ems_usb
*dev
= netdev_priv(netdev
);
730 struct ems_tx_urb_context
*context
= NULL
;
731 struct net_device_stats
*stats
= &netdev
->stats
;
732 struct can_frame
*cf
= (struct can_frame
*)skb
->data
;
733 struct ems_cpc_msg
*msg
;
737 size_t size
= CPC_HEADER_SIZE
+ CPC_MSG_HEADER_LEN
738 + sizeof(struct cpc_can_msg
);
740 if (can_dropped_invalid_skb(netdev
, skb
))
743 /* create a URB, and a buffer for it, and copy the data to the URB */
744 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
748 buf
= usb_alloc_coherent(dev
->udev
, size
, GFP_ATOMIC
, &urb
->transfer_dma
);
750 netdev_err(netdev
, "No memory left for USB buffer\n");
755 msg
= (struct ems_cpc_msg
*)&buf
[CPC_HEADER_SIZE
];
757 msg
->msg
.can_msg
.id
= cpu_to_le32(cf
->can_id
& CAN_ERR_MASK
);
758 msg
->msg
.can_msg
.length
= cf
->can_dlc
;
760 if (cf
->can_id
& CAN_RTR_FLAG
) {
761 msg
->type
= cf
->can_id
& CAN_EFF_FLAG
?
762 CPC_CMD_TYPE_EXT_RTR_FRAME
: CPC_CMD_TYPE_RTR_FRAME
;
764 msg
->length
= CPC_CAN_MSG_MIN_SIZE
;
766 msg
->type
= cf
->can_id
& CAN_EFF_FLAG
?
767 CPC_CMD_TYPE_EXT_CAN_FRAME
: CPC_CMD_TYPE_CAN_FRAME
;
769 for (i
= 0; i
< cf
->can_dlc
; i
++)
770 msg
->msg
.can_msg
.msg
[i
] = cf
->data
[i
];
772 msg
->length
= CPC_CAN_MSG_MIN_SIZE
+ cf
->can_dlc
;
775 for (i
= 0; i
< MAX_TX_URBS
; i
++) {
776 if (dev
->tx_contexts
[i
].echo_index
== MAX_TX_URBS
) {
777 context
= &dev
->tx_contexts
[i
];
783 * May never happen! When this happens we'd more URBs in flight as
784 * allowed (MAX_TX_URBS).
787 usb_free_coherent(dev
->udev
, size
, buf
, urb
->transfer_dma
);
790 netdev_warn(netdev
, "couldn't find free context\n");
792 return NETDEV_TX_BUSY
;
796 context
->echo_index
= i
;
797 context
->dlc
= cf
->can_dlc
;
799 usb_fill_bulk_urb(urb
, dev
->udev
, usb_sndbulkpipe(dev
->udev
, 2), buf
,
800 size
, ems_usb_write_bulk_callback
, context
);
801 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
802 usb_anchor_urb(urb
, &dev
->tx_submitted
);
804 can_put_echo_skb(skb
, netdev
, context
->echo_index
);
806 atomic_inc(&dev
->active_tx_urbs
);
808 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
810 can_free_echo_skb(netdev
, context
->echo_index
);
812 usb_unanchor_urb(urb
);
813 usb_free_coherent(dev
->udev
, size
, buf
, urb
->transfer_dma
);
816 atomic_dec(&dev
->active_tx_urbs
);
818 if (err
== -ENODEV
) {
819 netif_device_detach(netdev
);
821 netdev_warn(netdev
, "failed tx_urb %d\n", err
);
826 netif_trans_update(netdev
);
828 /* Slow down tx path */
829 if (atomic_read(&dev
->active_tx_urbs
) >= MAX_TX_URBS
||
830 dev
->free_slots
< CPC_TX_QUEUE_TRIGGER_LOW
) {
831 netif_stop_queue(netdev
);
836 * Release our reference to this URB, the USB core will eventually free
850 static int ems_usb_close(struct net_device
*netdev
)
852 struct ems_usb
*dev
= netdev_priv(netdev
);
855 unlink_all_urbs(dev
);
857 netif_stop_queue(netdev
);
859 /* Set CAN controller to reset mode */
860 if (ems_usb_write_mode(dev
, SJA1000_MOD_RM
))
861 netdev_warn(netdev
, "couldn't stop device");
863 close_candev(netdev
);
868 static const struct net_device_ops ems_usb_netdev_ops
= {
869 .ndo_open
= ems_usb_open
,
870 .ndo_stop
= ems_usb_close
,
871 .ndo_start_xmit
= ems_usb_start_xmit
,
872 .ndo_change_mtu
= can_change_mtu
,
875 static const struct can_bittiming_const ems_usb_bittiming_const
= {
887 static int ems_usb_set_mode(struct net_device
*netdev
, enum can_mode mode
)
889 struct ems_usb
*dev
= netdev_priv(netdev
);
893 if (ems_usb_write_mode(dev
, SJA1000_MOD_NORMAL
))
894 netdev_warn(netdev
, "couldn't start device");
896 if (netif_queue_stopped(netdev
))
897 netif_wake_queue(netdev
);
907 static int ems_usb_set_bittiming(struct net_device
*netdev
)
909 struct ems_usb
*dev
= netdev_priv(netdev
);
910 struct can_bittiming
*bt
= &dev
->can
.bittiming
;
913 btr0
= ((bt
->brp
- 1) & 0x3f) | (((bt
->sjw
- 1) & 0x3) << 6);
914 btr1
= ((bt
->prop_seg
+ bt
->phase_seg1
- 1) & 0xf) |
915 (((bt
->phase_seg2
- 1) & 0x7) << 4);
916 if (dev
->can
.ctrlmode
& CAN_CTRLMODE_3_SAMPLES
)
919 netdev_info(netdev
, "setting BTR0=0x%02x BTR1=0x%02x\n", btr0
, btr1
);
921 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.btr0
= btr0
;
922 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.btr1
= btr1
;
924 return ems_usb_command_msg(dev
, &dev
->active_params
);
927 static void init_params_sja1000(struct ems_cpc_msg
*msg
)
929 struct cpc_sja1000_params
*sja1000
=
930 &msg
->msg
.can_params
.cc_params
.sja1000
;
932 msg
->type
= CPC_CMD_TYPE_CAN_PARAMS
;
933 msg
->length
= sizeof(struct cpc_can_params
);
936 msg
->msg
.can_params
.cc_type
= CPC_CC_TYPE_SJA1000
;
938 /* Acceptance filter open */
939 sja1000
->acc_code0
= 0x00;
940 sja1000
->acc_code1
= 0x00;
941 sja1000
->acc_code2
= 0x00;
942 sja1000
->acc_code3
= 0x00;
944 /* Acceptance filter open */
945 sja1000
->acc_mask0
= 0xFF;
946 sja1000
->acc_mask1
= 0xFF;
947 sja1000
->acc_mask2
= 0xFF;
948 sja1000
->acc_mask3
= 0xFF;
953 sja1000
->outp_contr
= SJA1000_DEFAULT_OUTPUT_CONTROL
;
954 sja1000
->mode
= SJA1000_MOD_RM
;
958 * probe function for new CPC-USB devices
960 static int ems_usb_probe(struct usb_interface
*intf
,
961 const struct usb_device_id
*id
)
963 struct net_device
*netdev
;
965 int i
, err
= -ENOMEM
;
967 netdev
= alloc_candev(sizeof(struct ems_usb
), MAX_TX_URBS
);
969 dev_err(&intf
->dev
, "ems_usb: Couldn't alloc candev\n");
973 dev
= netdev_priv(netdev
);
975 dev
->udev
= interface_to_usbdev(intf
);
976 dev
->netdev
= netdev
;
978 dev
->can
.state
= CAN_STATE_STOPPED
;
979 dev
->can
.clock
.freq
= EMS_USB_ARM7_CLOCK
;
980 dev
->can
.bittiming_const
= &ems_usb_bittiming_const
;
981 dev
->can
.do_set_bittiming
= ems_usb_set_bittiming
;
982 dev
->can
.do_set_mode
= ems_usb_set_mode
;
983 dev
->can
.ctrlmode_supported
= CAN_CTRLMODE_3_SAMPLES
;
985 netdev
->netdev_ops
= &ems_usb_netdev_ops
;
987 netdev
->flags
|= IFF_ECHO
; /* we support local echo */
989 init_usb_anchor(&dev
->rx_submitted
);
991 init_usb_anchor(&dev
->tx_submitted
);
992 atomic_set(&dev
->active_tx_urbs
, 0);
994 for (i
= 0; i
< MAX_TX_URBS
; i
++)
995 dev
->tx_contexts
[i
].echo_index
= MAX_TX_URBS
;
997 dev
->intr_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1001 dev
->intr_in_buffer
= kzalloc(INTR_IN_BUFFER_SIZE
, GFP_KERNEL
);
1002 if (!dev
->intr_in_buffer
)
1003 goto cleanup_intr_urb
;
1005 dev
->tx_msg_buffer
= kzalloc(CPC_HEADER_SIZE
+
1006 sizeof(struct ems_cpc_msg
), GFP_KERNEL
);
1007 if (!dev
->tx_msg_buffer
)
1008 goto cleanup_intr_in_buffer
;
1010 usb_set_intfdata(intf
, dev
);
1012 SET_NETDEV_DEV(netdev
, &intf
->dev
);
1014 init_params_sja1000(&dev
->active_params
);
1016 err
= ems_usb_command_msg(dev
, &dev
->active_params
);
1018 netdev_err(netdev
, "couldn't initialize controller: %d\n", err
);
1019 goto cleanup_tx_msg_buffer
;
1022 err
= register_candev(netdev
);
1024 netdev_err(netdev
, "couldn't register CAN device: %d\n", err
);
1025 goto cleanup_tx_msg_buffer
;
1030 cleanup_tx_msg_buffer
:
1031 kfree(dev
->tx_msg_buffer
);
1033 cleanup_intr_in_buffer
:
1034 kfree(dev
->intr_in_buffer
);
1037 usb_free_urb(dev
->intr_urb
);
1040 free_candev(netdev
);
1046 * called by the usb core when the device is removed from the system
1048 static void ems_usb_disconnect(struct usb_interface
*intf
)
1050 struct ems_usb
*dev
= usb_get_intfdata(intf
);
1052 usb_set_intfdata(intf
, NULL
);
1055 unregister_netdev(dev
->netdev
);
1056 free_candev(dev
->netdev
);
1058 unlink_all_urbs(dev
);
1060 usb_free_urb(dev
->intr_urb
);
1062 kfree(dev
->intr_in_buffer
);
1063 kfree(dev
->tx_msg_buffer
);
1067 /* usb specific object needed to register this driver with the usb subsystem */
1068 static struct usb_driver ems_usb_driver
= {
1070 .probe
= ems_usb_probe
,
1071 .disconnect
= ems_usb_disconnect
,
1072 .id_table
= ems_usb_table
,
1075 module_usb_driver(ems_usb_driver
);