2 * CAN driver for EMS Dr. Thomas Wuensche CPC-USB/ARM7
4 * Copyright (C) 2004-2009 EMS Dr. Thomas Wuensche
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published
8 * by the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include <linux/signal.h>
20 #include <linux/slab.h>
21 #include <linux/module.h>
22 #include <linux/netdevice.h>
23 #include <linux/usb.h>
25 #include <linux/can.h>
26 #include <linux/can/dev.h>
27 #include <linux/can/error.h>
29 MODULE_AUTHOR("Sebastian Haas <haas@ems-wuensche.com>");
30 MODULE_DESCRIPTION("CAN driver for EMS Dr. Thomas Wuensche CAN/USB interfaces");
31 MODULE_LICENSE("GPL v2");
33 /* Control-Values for CPC_Control() Command Subject Selection */
34 #define CONTR_CAN_MESSAGE 0x04
35 #define CONTR_CAN_STATE 0x0C
36 #define CONTR_BUS_ERROR 0x1C
38 /* Control Command Actions */
39 #define CONTR_CONT_OFF 0
40 #define CONTR_CONT_ON 1
43 /* Messages from CPC to PC */
44 #define CPC_MSG_TYPE_CAN_FRAME 1 /* CAN data frame */
45 #define CPC_MSG_TYPE_RTR_FRAME 8 /* CAN remote frame */
46 #define CPC_MSG_TYPE_CAN_PARAMS 12 /* Actual CAN parameters */
47 #define CPC_MSG_TYPE_CAN_STATE 14 /* CAN state message */
48 #define CPC_MSG_TYPE_EXT_CAN_FRAME 16 /* Extended CAN data frame */
49 #define CPC_MSG_TYPE_EXT_RTR_FRAME 17 /* Extended remote frame */
50 #define CPC_MSG_TYPE_CONTROL 19 /* change interface behavior */
51 #define CPC_MSG_TYPE_CONFIRM 20 /* command processed confirmation */
52 #define CPC_MSG_TYPE_OVERRUN 21 /* overrun events */
53 #define CPC_MSG_TYPE_CAN_FRAME_ERROR 23 /* detected bus errors */
54 #define CPC_MSG_TYPE_ERR_COUNTER 25 /* RX/TX error counter */
56 /* Messages from the PC to the CPC interface */
57 #define CPC_CMD_TYPE_CAN_FRAME 1 /* CAN data frame */
58 #define CPC_CMD_TYPE_CONTROL 3 /* control of interface behavior */
59 #define CPC_CMD_TYPE_CAN_PARAMS 6 /* set CAN parameters */
60 #define CPC_CMD_TYPE_RTR_FRAME 13 /* CAN remote frame */
61 #define CPC_CMD_TYPE_CAN_STATE 14 /* CAN state message */
62 #define CPC_CMD_TYPE_EXT_CAN_FRAME 15 /* Extended CAN data frame */
63 #define CPC_CMD_TYPE_EXT_RTR_FRAME 16 /* Extended CAN remote frame */
64 #define CPC_CMD_TYPE_CAN_EXIT 200 /* exit the CAN */
66 #define CPC_CMD_TYPE_INQ_ERR_COUNTER 25 /* request the CAN error counters */
67 #define CPC_CMD_TYPE_CLEAR_MSG_QUEUE 8 /* clear CPC_MSG queue */
68 #define CPC_CMD_TYPE_CLEAR_CMD_QUEUE 28 /* clear CPC_CMD queue */
70 #define CPC_CC_TYPE_SJA1000 2 /* Philips basic CAN controller */
72 #define CPC_CAN_ECODE_ERRFRAME 0x01 /* Ecode type */
75 #define CPC_OVR_EVENT_CAN 0x01
76 #define CPC_OVR_EVENT_CANSTATE 0x02
77 #define CPC_OVR_EVENT_BUSERROR 0x04
80 * If the CAN controller lost a message we indicate it with the highest bit
81 * set in the count field.
83 #define CPC_OVR_HW 0x80
85 /* Size of the "struct ems_cpc_msg" without the union */
86 #define CPC_MSG_HEADER_LEN 11
87 #define CPC_CAN_MSG_MIN_SIZE 5
89 /* Define these values to match your devices */
90 #define USB_CPCUSB_VENDOR_ID 0x12D6
92 #define USB_CPCUSB_ARM7_PRODUCT_ID 0x0444
94 /* Mode register NXP LPC2119/SJA1000 CAN Controller */
95 #define SJA1000_MOD_NORMAL 0x00
96 #define SJA1000_MOD_RM 0x01
98 /* ECC register NXP LPC2119/SJA1000 CAN Controller */
99 #define SJA1000_ECC_SEG 0x1F
100 #define SJA1000_ECC_DIR 0x20
101 #define SJA1000_ECC_ERR 0x06
102 #define SJA1000_ECC_BIT 0x00
103 #define SJA1000_ECC_FORM 0x40
104 #define SJA1000_ECC_STUFF 0x80
105 #define SJA1000_ECC_MASK 0xc0
107 /* Status register content */
108 #define SJA1000_SR_BS 0x80
109 #define SJA1000_SR_ES 0x40
111 #define SJA1000_DEFAULT_OUTPUT_CONTROL 0xDA
114 * The device actually uses a 16MHz clock to generate the CAN clock
115 * but it expects SJA1000 bit settings based on 8MHz (is internally
118 #define EMS_USB_ARM7_CLOCK 8000000
121 * CAN-Message representation in a CPC_MSG. Message object type is
122 * CPC_MSG_TYPE_CAN_FRAME or CPC_MSG_TYPE_RTR_FRAME or
123 * CPC_MSG_TYPE_EXT_CAN_FRAME or CPC_MSG_TYPE_EXT_RTR_FRAME.
131 /* Representation of the CAN parameters for the SJA1000 controller */
132 struct cpc_sja1000_params
{
147 /* CAN params message representation */
148 struct cpc_can_params
{
151 /* Will support M16C CAN controller in the future */
153 struct cpc_sja1000_params sja1000
;
157 /* Structure for confirmed message handling */
159 u8 error
; /* error code */
162 /* Structure for overrun conditions */
168 /* SJA1000 CAN errors (compatible to NXP LPC2119) */
169 struct cpc_sja1000_can_error
{
175 /* structure for CAN error conditions */
176 struct cpc_can_error
{
182 /* Other controllers may also provide error code capture regs */
184 struct cpc_sja1000_can_error sja1000
;
190 * Structure containing RX/TX error counter. This structure is used to request
191 * the values of the CAN controllers TX and RX error counter.
193 struct cpc_can_err_counter
{
198 /* Main message type used between library and application */
199 struct __packed ems_cpc_msg
{
200 u8 type
; /* type of message */
201 u8 length
; /* length of data within union 'msg' */
202 u8 msgid
; /* confirmation handle */
203 __le32 ts_sec
; /* timestamp in seconds */
204 __le32 ts_nsec
; /* timestamp in nano seconds */
208 struct cpc_can_msg can_msg
;
209 struct cpc_can_params can_params
;
210 struct cpc_confirm confirmation
;
211 struct cpc_overrun overrun
;
212 struct cpc_can_error error
;
213 struct cpc_can_err_counter err_counter
;
219 * Table of devices that work with this driver
220 * NOTE: This driver supports only CPC-USB/ARM7 (LPC2119) yet.
222 static struct usb_device_id ems_usb_table
[] = {
223 {USB_DEVICE(USB_CPCUSB_VENDOR_ID
, USB_CPCUSB_ARM7_PRODUCT_ID
)},
224 {} /* Terminating entry */
227 MODULE_DEVICE_TABLE(usb
, ems_usb_table
);
229 #define RX_BUFFER_SIZE 64
230 #define CPC_HEADER_SIZE 4
231 #define INTR_IN_BUFFER_SIZE 4
233 #define MAX_RX_URBS 10
234 #define MAX_TX_URBS 10
238 struct ems_tx_urb_context
{
246 struct can_priv can
; /* must be the first member */
248 struct sk_buff
*echo_skb
[MAX_TX_URBS
];
250 struct usb_device
*udev
;
251 struct net_device
*netdev
;
253 atomic_t active_tx_urbs
;
254 struct usb_anchor tx_submitted
;
255 struct ems_tx_urb_context tx_contexts
[MAX_TX_URBS
];
257 struct usb_anchor rx_submitted
;
259 struct urb
*intr_urb
;
264 unsigned int free_slots
; /* remember number of available slots */
266 struct ems_cpc_msg active_params
; /* active controller parameters */
269 static void ems_usb_read_interrupt_callback(struct urb
*urb
)
271 struct ems_usb
*dev
= urb
->context
;
272 struct net_device
*netdev
= dev
->netdev
;
275 if (!netif_device_present(netdev
))
278 switch (urb
->status
) {
280 dev
->free_slots
= dev
->intr_in_buffer
[1];
283 case -ECONNRESET
: /* unlink */
289 netdev_info(netdev
, "Rx interrupt aborted %d\n", urb
->status
);
293 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
296 netif_device_detach(netdev
);
298 netdev_err(netdev
, "failed resubmitting intr urb: %d\n", err
);
301 static void ems_usb_rx_can_msg(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
303 struct can_frame
*cf
;
306 struct net_device_stats
*stats
= &dev
->netdev
->stats
;
308 skb
= alloc_can_skb(dev
->netdev
, &cf
);
312 cf
->can_id
= le32_to_cpu(msg
->msg
.can_msg
.id
);
313 cf
->can_dlc
= get_can_dlc(msg
->msg
.can_msg
.length
& 0xF);
315 if (msg
->type
== CPC_MSG_TYPE_EXT_CAN_FRAME
||
316 msg
->type
== CPC_MSG_TYPE_EXT_RTR_FRAME
)
317 cf
->can_id
|= CAN_EFF_FLAG
;
319 if (msg
->type
== CPC_MSG_TYPE_RTR_FRAME
||
320 msg
->type
== CPC_MSG_TYPE_EXT_RTR_FRAME
) {
321 cf
->can_id
|= CAN_RTR_FLAG
;
323 for (i
= 0; i
< cf
->can_dlc
; i
++)
324 cf
->data
[i
] = msg
->msg
.can_msg
.msg
[i
];
328 stats
->rx_bytes
+= cf
->can_dlc
;
332 static void ems_usb_rx_err(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
334 struct can_frame
*cf
;
336 struct net_device_stats
*stats
= &dev
->netdev
->stats
;
338 skb
= alloc_can_err_skb(dev
->netdev
, &cf
);
342 if (msg
->type
== CPC_MSG_TYPE_CAN_STATE
) {
343 u8 state
= msg
->msg
.can_state
;
345 if (state
& SJA1000_SR_BS
) {
346 dev
->can
.state
= CAN_STATE_BUS_OFF
;
347 cf
->can_id
|= CAN_ERR_BUSOFF
;
349 dev
->can
.can_stats
.bus_off
++;
350 can_bus_off(dev
->netdev
);
351 } else if (state
& SJA1000_SR_ES
) {
352 dev
->can
.state
= CAN_STATE_ERROR_WARNING
;
353 dev
->can
.can_stats
.error_warning
++;
355 dev
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
356 dev
->can
.can_stats
.error_passive
++;
358 } else if (msg
->type
== CPC_MSG_TYPE_CAN_FRAME_ERROR
) {
359 u8 ecc
= msg
->msg
.error
.cc
.regs
.sja1000
.ecc
;
360 u8 txerr
= msg
->msg
.error
.cc
.regs
.sja1000
.txerr
;
361 u8 rxerr
= msg
->msg
.error
.cc
.regs
.sja1000
.rxerr
;
363 /* bus error interrupt */
364 dev
->can
.can_stats
.bus_error
++;
367 cf
->can_id
|= CAN_ERR_PROT
| CAN_ERR_BUSERROR
;
369 switch (ecc
& SJA1000_ECC_MASK
) {
370 case SJA1000_ECC_BIT
:
371 cf
->data
[2] |= CAN_ERR_PROT_BIT
;
373 case SJA1000_ECC_FORM
:
374 cf
->data
[2] |= CAN_ERR_PROT_FORM
;
376 case SJA1000_ECC_STUFF
:
377 cf
->data
[2] |= CAN_ERR_PROT_STUFF
;
380 cf
->data
[3] = ecc
& SJA1000_ECC_SEG
;
384 /* Error occurred during transmission? */
385 if ((ecc
& SJA1000_ECC_DIR
) == 0)
386 cf
->data
[2] |= CAN_ERR_PROT_TX
;
388 if (dev
->can
.state
== CAN_STATE_ERROR_WARNING
||
389 dev
->can
.state
== CAN_STATE_ERROR_PASSIVE
) {
390 cf
->data
[1] = (txerr
> rxerr
) ?
391 CAN_ERR_CRTL_TX_PASSIVE
: CAN_ERR_CRTL_RX_PASSIVE
;
393 } else if (msg
->type
== CPC_MSG_TYPE_OVERRUN
) {
394 cf
->can_id
|= CAN_ERR_CRTL
;
395 cf
->data
[1] = CAN_ERR_CRTL_RX_OVERFLOW
;
397 stats
->rx_over_errors
++;
402 stats
->rx_bytes
+= cf
->can_dlc
;
407 * callback for bulk IN urb
409 static void ems_usb_read_bulk_callback(struct urb
*urb
)
411 struct ems_usb
*dev
= urb
->context
;
412 struct net_device
*netdev
;
415 netdev
= dev
->netdev
;
417 if (!netif_device_present(netdev
))
420 switch (urb
->status
) {
421 case 0: /* success */
428 netdev_info(netdev
, "Rx URB aborted (%d)\n", urb
->status
);
432 if (urb
->actual_length
> CPC_HEADER_SIZE
) {
433 struct ems_cpc_msg
*msg
;
434 u8
*ibuf
= urb
->transfer_buffer
;
437 msg_count
= ibuf
[0] & ~0x80;
439 start
= CPC_HEADER_SIZE
;
442 msg
= (struct ems_cpc_msg
*)&ibuf
[start
];
445 case CPC_MSG_TYPE_CAN_STATE
:
446 /* Process CAN state changes */
447 ems_usb_rx_err(dev
, msg
);
450 case CPC_MSG_TYPE_CAN_FRAME
:
451 case CPC_MSG_TYPE_EXT_CAN_FRAME
:
452 case CPC_MSG_TYPE_RTR_FRAME
:
453 case CPC_MSG_TYPE_EXT_RTR_FRAME
:
454 ems_usb_rx_can_msg(dev
, msg
);
457 case CPC_MSG_TYPE_CAN_FRAME_ERROR
:
458 /* Process errorframe */
459 ems_usb_rx_err(dev
, msg
);
462 case CPC_MSG_TYPE_OVERRUN
:
463 /* Message lost while receiving */
464 ems_usb_rx_err(dev
, msg
);
468 start
+= CPC_MSG_HEADER_LEN
+ msg
->length
;
471 if (start
> urb
->transfer_buffer_length
) {
472 netdev_err(netdev
, "format error\n");
479 usb_fill_bulk_urb(urb
, dev
->udev
, usb_rcvbulkpipe(dev
->udev
, 2),
480 urb
->transfer_buffer
, RX_BUFFER_SIZE
,
481 ems_usb_read_bulk_callback
, dev
);
483 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
485 if (retval
== -ENODEV
)
486 netif_device_detach(netdev
);
489 "failed resubmitting read bulk urb: %d\n", retval
);
493 * callback for bulk IN urb
495 static void ems_usb_write_bulk_callback(struct urb
*urb
)
497 struct ems_tx_urb_context
*context
= urb
->context
;
499 struct net_device
*netdev
;
504 netdev
= dev
->netdev
;
506 /* free up our allocated buffer */
507 usb_free_coherent(urb
->dev
, urb
->transfer_buffer_length
,
508 urb
->transfer_buffer
, urb
->transfer_dma
);
510 atomic_dec(&dev
->active_tx_urbs
);
512 if (!netif_device_present(netdev
))
516 netdev_info(netdev
, "Tx URB aborted (%d)\n", urb
->status
);
518 netdev
->trans_start
= jiffies
;
520 /* transmission complete interrupt */
521 netdev
->stats
.tx_packets
++;
522 netdev
->stats
.tx_bytes
+= context
->dlc
;
524 can_get_echo_skb(netdev
, context
->echo_index
);
526 /* Release context */
527 context
->echo_index
= MAX_TX_URBS
;
529 if (netif_queue_stopped(netdev
))
530 netif_wake_queue(netdev
);
534 * Send the given CPC command synchronously
536 static int ems_usb_command_msg(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
541 memcpy(&dev
->tx_msg_buffer
[CPC_HEADER_SIZE
], msg
,
542 msg
->length
+ CPC_MSG_HEADER_LEN
);
545 memset(&dev
->tx_msg_buffer
[0], 0, CPC_HEADER_SIZE
);
547 return usb_bulk_msg(dev
->udev
, usb_sndbulkpipe(dev
->udev
, 2),
548 &dev
->tx_msg_buffer
[0],
549 msg
->length
+ CPC_MSG_HEADER_LEN
+ CPC_HEADER_SIZE
,
550 &actual_length
, 1000);
554 * Change CAN controllers' mode register
556 static int ems_usb_write_mode(struct ems_usb
*dev
, u8 mode
)
558 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.mode
= mode
;
560 return ems_usb_command_msg(dev
, &dev
->active_params
);
564 * Send a CPC_Control command to change behaviour when interface receives a CAN
565 * message, bus error or CAN state changed notifications.
567 static int ems_usb_control_cmd(struct ems_usb
*dev
, u8 val
)
569 struct ems_cpc_msg cmd
;
571 cmd
.type
= CPC_CMD_TYPE_CONTROL
;
572 cmd
.length
= CPC_MSG_HEADER_LEN
+ 1;
576 cmd
.msg
.generic
[0] = val
;
578 return ems_usb_command_msg(dev
, &cmd
);
584 static int ems_usb_start(struct ems_usb
*dev
)
586 struct net_device
*netdev
= dev
->netdev
;
589 dev
->intr_in_buffer
[0] = 0;
590 dev
->free_slots
= 15; /* initial size */
592 for (i
= 0; i
< MAX_RX_URBS
; i
++) {
593 struct urb
*urb
= NULL
;
596 /* create a URB, and a buffer for it */
597 urb
= usb_alloc_urb(0, GFP_KERNEL
);
599 netdev_err(netdev
, "No memory left for URBs\n");
604 buf
= usb_alloc_coherent(dev
->udev
, RX_BUFFER_SIZE
, GFP_KERNEL
,
607 netdev_err(netdev
, "No memory left for USB buffer\n");
613 usb_fill_bulk_urb(urb
, dev
->udev
, usb_rcvbulkpipe(dev
->udev
, 2),
615 ems_usb_read_bulk_callback
, dev
);
616 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
617 usb_anchor_urb(urb
, &dev
->rx_submitted
);
619 err
= usb_submit_urb(urb
, GFP_KERNEL
);
621 usb_unanchor_urb(urb
);
622 usb_free_coherent(dev
->udev
, RX_BUFFER_SIZE
, buf
,
628 /* Drop reference, USB core will take care of freeing it */
632 /* Did we submit any URBs */
634 netdev_warn(netdev
, "couldn't setup read URBs\n");
638 /* Warn if we've couldn't transmit all the URBs */
640 netdev_warn(netdev
, "rx performance may be slow\n");
642 /* Setup and start interrupt URB */
643 usb_fill_int_urb(dev
->intr_urb
, dev
->udev
,
644 usb_rcvintpipe(dev
->udev
, 1),
647 ems_usb_read_interrupt_callback
, dev
, 1);
649 err
= usb_submit_urb(dev
->intr_urb
, GFP_KERNEL
);
651 netdev_warn(netdev
, "intr URB submit failed: %d\n", err
);
656 /* CPC-USB will transfer received message to host */
657 err
= ems_usb_control_cmd(dev
, CONTR_CAN_MESSAGE
| CONTR_CONT_ON
);
661 /* CPC-USB will transfer CAN state changes to host */
662 err
= ems_usb_control_cmd(dev
, CONTR_CAN_STATE
| CONTR_CONT_ON
);
666 /* CPC-USB will transfer bus errors to host */
667 err
= ems_usb_control_cmd(dev
, CONTR_BUS_ERROR
| CONTR_CONT_ON
);
671 err
= ems_usb_write_mode(dev
, SJA1000_MOD_NORMAL
);
675 dev
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
680 netdev_warn(netdev
, "couldn't submit control: %d\n", err
);
685 static void unlink_all_urbs(struct ems_usb
*dev
)
689 usb_unlink_urb(dev
->intr_urb
);
691 usb_kill_anchored_urbs(&dev
->rx_submitted
);
693 usb_kill_anchored_urbs(&dev
->tx_submitted
);
694 atomic_set(&dev
->active_tx_urbs
, 0);
696 for (i
= 0; i
< MAX_TX_URBS
; i
++)
697 dev
->tx_contexts
[i
].echo_index
= MAX_TX_URBS
;
700 static int ems_usb_open(struct net_device
*netdev
)
702 struct ems_usb
*dev
= netdev_priv(netdev
);
705 err
= ems_usb_write_mode(dev
, SJA1000_MOD_RM
);
710 err
= open_candev(netdev
);
714 /* finally start device */
715 err
= ems_usb_start(dev
);
718 netif_device_detach(dev
->netdev
);
720 netdev_warn(netdev
, "couldn't start device: %d\n", err
);
722 close_candev(netdev
);
728 netif_start_queue(netdev
);
733 static netdev_tx_t
ems_usb_start_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
735 struct ems_usb
*dev
= netdev_priv(netdev
);
736 struct ems_tx_urb_context
*context
= NULL
;
737 struct net_device_stats
*stats
= &netdev
->stats
;
738 struct can_frame
*cf
= (struct can_frame
*)skb
->data
;
739 struct ems_cpc_msg
*msg
;
743 size_t size
= CPC_HEADER_SIZE
+ CPC_MSG_HEADER_LEN
744 + sizeof(struct cpc_can_msg
);
746 if (can_dropped_invalid_skb(netdev
, skb
))
749 /* create a URB, and a buffer for it, and copy the data to the URB */
750 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
752 netdev_err(netdev
, "No memory left for URBs\n");
756 buf
= usb_alloc_coherent(dev
->udev
, size
, GFP_ATOMIC
, &urb
->transfer_dma
);
758 netdev_err(netdev
, "No memory left for USB buffer\n");
763 msg
= (struct ems_cpc_msg
*)&buf
[CPC_HEADER_SIZE
];
765 msg
->msg
.can_msg
.id
= cpu_to_le32(cf
->can_id
& CAN_ERR_MASK
);
766 msg
->msg
.can_msg
.length
= cf
->can_dlc
;
768 if (cf
->can_id
& CAN_RTR_FLAG
) {
769 msg
->type
= cf
->can_id
& CAN_EFF_FLAG
?
770 CPC_CMD_TYPE_EXT_RTR_FRAME
: CPC_CMD_TYPE_RTR_FRAME
;
772 msg
->length
= CPC_CAN_MSG_MIN_SIZE
;
774 msg
->type
= cf
->can_id
& CAN_EFF_FLAG
?
775 CPC_CMD_TYPE_EXT_CAN_FRAME
: CPC_CMD_TYPE_CAN_FRAME
;
777 for (i
= 0; i
< cf
->can_dlc
; i
++)
778 msg
->msg
.can_msg
.msg
[i
] = cf
->data
[i
];
780 msg
->length
= CPC_CAN_MSG_MIN_SIZE
+ cf
->can_dlc
;
783 for (i
= 0; i
< MAX_TX_URBS
; i
++) {
784 if (dev
->tx_contexts
[i
].echo_index
== MAX_TX_URBS
) {
785 context
= &dev
->tx_contexts
[i
];
791 * May never happen! When this happens we'd more URBs in flight as
792 * allowed (MAX_TX_URBS).
795 usb_free_coherent(dev
->udev
, size
, buf
, urb
->transfer_dma
);
798 netdev_warn(netdev
, "couldn't find free context\n");
800 return NETDEV_TX_BUSY
;
804 context
->echo_index
= i
;
805 context
->dlc
= cf
->can_dlc
;
807 usb_fill_bulk_urb(urb
, dev
->udev
, usb_sndbulkpipe(dev
->udev
, 2), buf
,
808 size
, ems_usb_write_bulk_callback
, context
);
809 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
810 usb_anchor_urb(urb
, &dev
->tx_submitted
);
812 can_put_echo_skb(skb
, netdev
, context
->echo_index
);
814 atomic_inc(&dev
->active_tx_urbs
);
816 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
818 can_free_echo_skb(netdev
, context
->echo_index
);
820 usb_unanchor_urb(urb
);
821 usb_free_coherent(dev
->udev
, size
, buf
, urb
->transfer_dma
);
824 atomic_dec(&dev
->active_tx_urbs
);
826 if (err
== -ENODEV
) {
827 netif_device_detach(netdev
);
829 netdev_warn(netdev
, "failed tx_urb %d\n", err
);
834 netdev
->trans_start
= jiffies
;
836 /* Slow down tx path */
837 if (atomic_read(&dev
->active_tx_urbs
) >= MAX_TX_URBS
||
838 dev
->free_slots
< 5) {
839 netif_stop_queue(netdev
);
844 * Release our reference to this URB, the USB core will eventually free
858 static int ems_usb_close(struct net_device
*netdev
)
860 struct ems_usb
*dev
= netdev_priv(netdev
);
863 unlink_all_urbs(dev
);
865 netif_stop_queue(netdev
);
867 /* Set CAN controller to reset mode */
868 if (ems_usb_write_mode(dev
, SJA1000_MOD_RM
))
869 netdev_warn(netdev
, "couldn't stop device");
871 close_candev(netdev
);
876 static const struct net_device_ops ems_usb_netdev_ops
= {
877 .ndo_open
= ems_usb_open
,
878 .ndo_stop
= ems_usb_close
,
879 .ndo_start_xmit
= ems_usb_start_xmit
,
880 .ndo_change_mtu
= can_change_mtu
,
883 static const struct can_bittiming_const ems_usb_bittiming_const
= {
895 static int ems_usb_set_mode(struct net_device
*netdev
, enum can_mode mode
)
897 struct ems_usb
*dev
= netdev_priv(netdev
);
901 if (ems_usb_write_mode(dev
, SJA1000_MOD_NORMAL
))
902 netdev_warn(netdev
, "couldn't start device");
904 if (netif_queue_stopped(netdev
))
905 netif_wake_queue(netdev
);
915 static int ems_usb_set_bittiming(struct net_device
*netdev
)
917 struct ems_usb
*dev
= netdev_priv(netdev
);
918 struct can_bittiming
*bt
= &dev
->can
.bittiming
;
921 btr0
= ((bt
->brp
- 1) & 0x3f) | (((bt
->sjw
- 1) & 0x3) << 6);
922 btr1
= ((bt
->prop_seg
+ bt
->phase_seg1
- 1) & 0xf) |
923 (((bt
->phase_seg2
- 1) & 0x7) << 4);
924 if (dev
->can
.ctrlmode
& CAN_CTRLMODE_3_SAMPLES
)
927 netdev_info(netdev
, "setting BTR0=0x%02x BTR1=0x%02x\n", btr0
, btr1
);
929 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.btr0
= btr0
;
930 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.btr1
= btr1
;
932 return ems_usb_command_msg(dev
, &dev
->active_params
);
935 static void init_params_sja1000(struct ems_cpc_msg
*msg
)
937 struct cpc_sja1000_params
*sja1000
=
938 &msg
->msg
.can_params
.cc_params
.sja1000
;
940 msg
->type
= CPC_CMD_TYPE_CAN_PARAMS
;
941 msg
->length
= sizeof(struct cpc_can_params
);
944 msg
->msg
.can_params
.cc_type
= CPC_CC_TYPE_SJA1000
;
946 /* Acceptance filter open */
947 sja1000
->acc_code0
= 0x00;
948 sja1000
->acc_code1
= 0x00;
949 sja1000
->acc_code2
= 0x00;
950 sja1000
->acc_code3
= 0x00;
952 /* Acceptance filter open */
953 sja1000
->acc_mask0
= 0xFF;
954 sja1000
->acc_mask1
= 0xFF;
955 sja1000
->acc_mask2
= 0xFF;
956 sja1000
->acc_mask3
= 0xFF;
961 sja1000
->outp_contr
= SJA1000_DEFAULT_OUTPUT_CONTROL
;
962 sja1000
->mode
= SJA1000_MOD_RM
;
966 * probe function for new CPC-USB devices
968 static int ems_usb_probe(struct usb_interface
*intf
,
969 const struct usb_device_id
*id
)
971 struct net_device
*netdev
;
973 int i
, err
= -ENOMEM
;
975 netdev
= alloc_candev(sizeof(struct ems_usb
), MAX_TX_URBS
);
977 dev_err(&intf
->dev
, "ems_usb: Couldn't alloc candev\n");
981 dev
= netdev_priv(netdev
);
983 dev
->udev
= interface_to_usbdev(intf
);
984 dev
->netdev
= netdev
;
986 dev
->can
.state
= CAN_STATE_STOPPED
;
987 dev
->can
.clock
.freq
= EMS_USB_ARM7_CLOCK
;
988 dev
->can
.bittiming_const
= &ems_usb_bittiming_const
;
989 dev
->can
.do_set_bittiming
= ems_usb_set_bittiming
;
990 dev
->can
.do_set_mode
= ems_usb_set_mode
;
991 dev
->can
.ctrlmode_supported
= CAN_CTRLMODE_3_SAMPLES
;
993 netdev
->netdev_ops
= &ems_usb_netdev_ops
;
995 netdev
->flags
|= IFF_ECHO
; /* we support local echo */
997 init_usb_anchor(&dev
->rx_submitted
);
999 init_usb_anchor(&dev
->tx_submitted
);
1000 atomic_set(&dev
->active_tx_urbs
, 0);
1002 for (i
= 0; i
< MAX_TX_URBS
; i
++)
1003 dev
->tx_contexts
[i
].echo_index
= MAX_TX_URBS
;
1005 dev
->intr_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1006 if (!dev
->intr_urb
) {
1007 dev_err(&intf
->dev
, "Couldn't alloc intr URB\n");
1008 goto cleanup_candev
;
1011 dev
->intr_in_buffer
= kzalloc(INTR_IN_BUFFER_SIZE
, GFP_KERNEL
);
1012 if (!dev
->intr_in_buffer
)
1013 goto cleanup_intr_urb
;
1015 dev
->tx_msg_buffer
= kzalloc(CPC_HEADER_SIZE
+
1016 sizeof(struct ems_cpc_msg
), GFP_KERNEL
);
1017 if (!dev
->tx_msg_buffer
)
1018 goto cleanup_intr_in_buffer
;
1020 usb_set_intfdata(intf
, dev
);
1022 SET_NETDEV_DEV(netdev
, &intf
->dev
);
1024 init_params_sja1000(&dev
->active_params
);
1026 err
= ems_usb_command_msg(dev
, &dev
->active_params
);
1028 netdev_err(netdev
, "couldn't initialize controller: %d\n", err
);
1029 goto cleanup_tx_msg_buffer
;
1032 err
= register_candev(netdev
);
1034 netdev_err(netdev
, "couldn't register CAN device: %d\n", err
);
1035 goto cleanup_tx_msg_buffer
;
1040 cleanup_tx_msg_buffer
:
1041 kfree(dev
->tx_msg_buffer
);
1043 cleanup_intr_in_buffer
:
1044 kfree(dev
->intr_in_buffer
);
1047 usb_free_urb(dev
->intr_urb
);
1050 free_candev(netdev
);
1056 * called by the usb core when the device is removed from the system
1058 static void ems_usb_disconnect(struct usb_interface
*intf
)
1060 struct ems_usb
*dev
= usb_get_intfdata(intf
);
1062 usb_set_intfdata(intf
, NULL
);
1065 unregister_netdev(dev
->netdev
);
1066 free_candev(dev
->netdev
);
1068 unlink_all_urbs(dev
);
1070 usb_free_urb(dev
->intr_urb
);
1072 kfree(dev
->intr_in_buffer
);
1076 /* usb specific object needed to register this driver with the usb subsystem */
1077 static struct usb_driver ems_usb_driver
= {
1079 .probe
= ems_usb_probe
,
1080 .disconnect
= ems_usb_disconnect
,
1081 .id_table
= ems_usb_table
,
1084 module_usb_driver(ems_usb_driver
);