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/init.h>
20 #include <linux/signal.h>
21 #include <linux/slab.h>
22 #include <linux/module.h>
23 #include <linux/netdevice.h>
24 #include <linux/usb.h>
26 #include <linux/can.h>
27 #include <linux/can/dev.h>
28 #include <linux/can/error.h>
30 MODULE_AUTHOR("Sebastian Haas <haas@ems-wuensche.com>");
31 MODULE_DESCRIPTION("CAN driver for EMS Dr. Thomas Wuensche CAN/USB interfaces");
32 MODULE_LICENSE("GPL v2");
34 /* Control-Values for CPC_Control() Command Subject Selection */
35 #define CONTR_CAN_MESSAGE 0x04
36 #define CONTR_CAN_STATE 0x0C
37 #define CONTR_BUS_ERROR 0x1C
39 /* Control Command Actions */
40 #define CONTR_CONT_OFF 0
41 #define CONTR_CONT_ON 1
44 /* Messages from CPC to PC */
45 #define CPC_MSG_TYPE_CAN_FRAME 1 /* CAN data frame */
46 #define CPC_MSG_TYPE_RTR_FRAME 8 /* CAN remote frame */
47 #define CPC_MSG_TYPE_CAN_PARAMS 12 /* Actual CAN parameters */
48 #define CPC_MSG_TYPE_CAN_STATE 14 /* CAN state message */
49 #define CPC_MSG_TYPE_EXT_CAN_FRAME 16 /* Extended CAN data frame */
50 #define CPC_MSG_TYPE_EXT_RTR_FRAME 17 /* Extended remote frame */
51 #define CPC_MSG_TYPE_CONTROL 19 /* change interface behavior */
52 #define CPC_MSG_TYPE_CONFIRM 20 /* command processed confirmation */
53 #define CPC_MSG_TYPE_OVERRUN 21 /* overrun events */
54 #define CPC_MSG_TYPE_CAN_FRAME_ERROR 23 /* detected bus errors */
55 #define CPC_MSG_TYPE_ERR_COUNTER 25 /* RX/TX error counter */
57 /* Messages from the PC to the CPC interface */
58 #define CPC_CMD_TYPE_CAN_FRAME 1 /* CAN data frame */
59 #define CPC_CMD_TYPE_CONTROL 3 /* control of interface behavior */
60 #define CPC_CMD_TYPE_CAN_PARAMS 6 /* set CAN parameters */
61 #define CPC_CMD_TYPE_RTR_FRAME 13 /* CAN remote frame */
62 #define CPC_CMD_TYPE_CAN_STATE 14 /* CAN state message */
63 #define CPC_CMD_TYPE_EXT_CAN_FRAME 15 /* Extended CAN data frame */
64 #define CPC_CMD_TYPE_EXT_RTR_FRAME 16 /* Extended CAN remote frame */
65 #define CPC_CMD_TYPE_CAN_EXIT 200 /* exit the CAN */
67 #define CPC_CMD_TYPE_INQ_ERR_COUNTER 25 /* request the CAN error counters */
68 #define CPC_CMD_TYPE_CLEAR_MSG_QUEUE 8 /* clear CPC_MSG queue */
69 #define CPC_CMD_TYPE_CLEAR_CMD_QUEUE 28 /* clear CPC_CMD queue */
71 #define CPC_CC_TYPE_SJA1000 2 /* Philips basic CAN controller */
73 #define CPC_CAN_ECODE_ERRFRAME 0x01 /* Ecode type */
76 #define CPC_OVR_EVENT_CAN 0x01
77 #define CPC_OVR_EVENT_CANSTATE 0x02
78 #define CPC_OVR_EVENT_BUSERROR 0x04
81 * If the CAN controller lost a message we indicate it with the highest bit
82 * set in the count field.
84 #define CPC_OVR_HW 0x80
86 /* Size of the "struct ems_cpc_msg" without the union */
87 #define CPC_MSG_HEADER_LEN 11
88 #define CPC_CAN_MSG_MIN_SIZE 5
90 /* Define these values to match your devices */
91 #define USB_CPCUSB_VENDOR_ID 0x12D6
93 #define USB_CPCUSB_ARM7_PRODUCT_ID 0x0444
95 /* Mode register NXP LPC2119/SJA1000 CAN Controller */
96 #define SJA1000_MOD_NORMAL 0x00
97 #define SJA1000_MOD_RM 0x01
99 /* ECC register NXP LPC2119/SJA1000 CAN Controller */
100 #define SJA1000_ECC_SEG 0x1F
101 #define SJA1000_ECC_DIR 0x20
102 #define SJA1000_ECC_ERR 0x06
103 #define SJA1000_ECC_BIT 0x00
104 #define SJA1000_ECC_FORM 0x40
105 #define SJA1000_ECC_STUFF 0x80
106 #define SJA1000_ECC_MASK 0xc0
108 /* Status register content */
109 #define SJA1000_SR_BS 0x80
110 #define SJA1000_SR_ES 0x40
112 #define SJA1000_DEFAULT_OUTPUT_CONTROL 0xDA
115 * The device actually uses a 16MHz clock to generate the CAN clock
116 * but it expects SJA1000 bit settings based on 8MHz (is internally
119 #define EMS_USB_ARM7_CLOCK 8000000
121 #define CPC_TX_QUEUE_TRIGGER_LOW 25
122 #define CPC_TX_QUEUE_TRIGGER_HIGH 35
125 * CAN-Message representation in a CPC_MSG. Message object type is
126 * CPC_MSG_TYPE_CAN_FRAME or CPC_MSG_TYPE_RTR_FRAME or
127 * CPC_MSG_TYPE_EXT_CAN_FRAME or CPC_MSG_TYPE_EXT_RTR_FRAME.
135 /* Representation of the CAN parameters for the SJA1000 controller */
136 struct cpc_sja1000_params
{
151 /* CAN params message representation */
152 struct cpc_can_params
{
155 /* Will support M16C CAN controller in the future */
157 struct cpc_sja1000_params sja1000
;
161 /* Structure for confirmed message handling */
163 u8 error
; /* error code */
166 /* Structure for overrun conditions */
172 /* SJA1000 CAN errors (compatible to NXP LPC2119) */
173 struct cpc_sja1000_can_error
{
179 /* structure for CAN error conditions */
180 struct cpc_can_error
{
186 /* Other controllers may also provide error code capture regs */
188 struct cpc_sja1000_can_error sja1000
;
194 * Structure containing RX/TX error counter. This structure is used to request
195 * the values of the CAN controllers TX and RX error counter.
197 struct cpc_can_err_counter
{
202 /* Main message type used between library and application */
203 struct __packed ems_cpc_msg
{
204 u8 type
; /* type of message */
205 u8 length
; /* length of data within union 'msg' */
206 u8 msgid
; /* confirmation handle */
207 u32 ts_sec
; /* timestamp in seconds */
208 u32 ts_nsec
; /* timestamp in nano seconds */
212 struct cpc_can_msg can_msg
;
213 struct cpc_can_params can_params
;
214 struct cpc_confirm confirmation
;
215 struct cpc_overrun overrun
;
216 struct cpc_can_error error
;
217 struct cpc_can_err_counter err_counter
;
223 * Table of devices that work with this driver
224 * NOTE: This driver supports only CPC-USB/ARM7 (LPC2119) yet.
226 static struct usb_device_id ems_usb_table
[] = {
227 {USB_DEVICE(USB_CPCUSB_VENDOR_ID
, USB_CPCUSB_ARM7_PRODUCT_ID
)},
228 {} /* Terminating entry */
231 MODULE_DEVICE_TABLE(usb
, ems_usb_table
);
233 #define RX_BUFFER_SIZE 64
234 #define CPC_HEADER_SIZE 4
235 #define INTR_IN_BUFFER_SIZE 4
237 #define MAX_RX_URBS 10
238 #define MAX_TX_URBS 10
242 struct ems_tx_urb_context
{
250 struct can_priv can
; /* must be the first member */
252 struct sk_buff
*echo_skb
[MAX_TX_URBS
];
254 struct usb_device
*udev
;
255 struct net_device
*netdev
;
257 atomic_t active_tx_urbs
;
258 struct usb_anchor tx_submitted
;
259 struct ems_tx_urb_context tx_contexts
[MAX_TX_URBS
];
261 struct usb_anchor rx_submitted
;
263 struct urb
*intr_urb
;
268 unsigned int free_slots
; /* remember number of available slots */
270 struct ems_cpc_msg active_params
; /* active controller parameters */
273 static void ems_usb_read_interrupt_callback(struct urb
*urb
)
275 struct ems_usb
*dev
= urb
->context
;
276 struct net_device
*netdev
= dev
->netdev
;
279 if (!netif_device_present(netdev
))
282 switch (urb
->status
) {
284 dev
->free_slots
= dev
->intr_in_buffer
[1];
285 if(dev
->free_slots
> CPC_TX_QUEUE_TRIGGER_HIGH
){
286 if (netif_queue_stopped(netdev
)){
287 netif_wake_queue(netdev
);
292 case -ECONNRESET
: /* unlink */
298 netdev_info(netdev
, "Rx interrupt aborted %d\n", urb
->status
);
302 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
305 netif_device_detach(netdev
);
307 netdev_err(netdev
, "failed resubmitting intr urb: %d\n", err
);
310 static void ems_usb_rx_can_msg(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
312 struct can_frame
*cf
;
315 struct net_device_stats
*stats
= &dev
->netdev
->stats
;
317 skb
= alloc_can_skb(dev
->netdev
, &cf
);
321 cf
->can_id
= le32_to_cpu(msg
->msg
.can_msg
.id
);
322 cf
->can_dlc
= get_can_dlc(msg
->msg
.can_msg
.length
& 0xF);
324 if (msg
->type
== CPC_MSG_TYPE_EXT_CAN_FRAME
||
325 msg
->type
== CPC_MSG_TYPE_EXT_RTR_FRAME
)
326 cf
->can_id
|= CAN_EFF_FLAG
;
328 if (msg
->type
== CPC_MSG_TYPE_RTR_FRAME
||
329 msg
->type
== CPC_MSG_TYPE_EXT_RTR_FRAME
) {
330 cf
->can_id
|= CAN_RTR_FLAG
;
332 for (i
= 0; i
< cf
->can_dlc
; i
++)
333 cf
->data
[i
] = msg
->msg
.can_msg
.msg
[i
];
339 stats
->rx_bytes
+= cf
->can_dlc
;
342 static void ems_usb_rx_err(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
344 struct can_frame
*cf
;
346 struct net_device_stats
*stats
= &dev
->netdev
->stats
;
348 skb
= alloc_can_err_skb(dev
->netdev
, &cf
);
352 if (msg
->type
== CPC_MSG_TYPE_CAN_STATE
) {
353 u8 state
= msg
->msg
.can_state
;
355 if (state
& SJA1000_SR_BS
) {
356 dev
->can
.state
= CAN_STATE_BUS_OFF
;
357 cf
->can_id
|= CAN_ERR_BUSOFF
;
359 can_bus_off(dev
->netdev
);
360 } else if (state
& SJA1000_SR_ES
) {
361 dev
->can
.state
= CAN_STATE_ERROR_WARNING
;
362 dev
->can
.can_stats
.error_warning
++;
364 dev
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
365 dev
->can
.can_stats
.error_passive
++;
367 } else if (msg
->type
== CPC_MSG_TYPE_CAN_FRAME_ERROR
) {
368 u8 ecc
= msg
->msg
.error
.cc
.regs
.sja1000
.ecc
;
369 u8 txerr
= msg
->msg
.error
.cc
.regs
.sja1000
.txerr
;
370 u8 rxerr
= msg
->msg
.error
.cc
.regs
.sja1000
.rxerr
;
372 /* bus error interrupt */
373 dev
->can
.can_stats
.bus_error
++;
376 cf
->can_id
|= CAN_ERR_PROT
| CAN_ERR_BUSERROR
;
378 switch (ecc
& SJA1000_ECC_MASK
) {
379 case SJA1000_ECC_BIT
:
380 cf
->data
[2] |= CAN_ERR_PROT_BIT
;
382 case SJA1000_ECC_FORM
:
383 cf
->data
[2] |= CAN_ERR_PROT_FORM
;
385 case SJA1000_ECC_STUFF
:
386 cf
->data
[2] |= CAN_ERR_PROT_STUFF
;
389 cf
->data
[2] |= CAN_ERR_PROT_UNSPEC
;
390 cf
->data
[3] = ecc
& SJA1000_ECC_SEG
;
394 /* Error occurred during transmission? */
395 if ((ecc
& SJA1000_ECC_DIR
) == 0)
396 cf
->data
[2] |= CAN_ERR_PROT_TX
;
398 if (dev
->can
.state
== CAN_STATE_ERROR_WARNING
||
399 dev
->can
.state
== CAN_STATE_ERROR_PASSIVE
) {
400 cf
->data
[1] = (txerr
> rxerr
) ?
401 CAN_ERR_CRTL_TX_PASSIVE
: CAN_ERR_CRTL_RX_PASSIVE
;
403 } else if (msg
->type
== CPC_MSG_TYPE_OVERRUN
) {
404 cf
->can_id
|= CAN_ERR_CRTL
;
405 cf
->data
[1] = CAN_ERR_CRTL_RX_OVERFLOW
;
407 stats
->rx_over_errors
++;
414 stats
->rx_bytes
+= cf
->can_dlc
;
418 * callback for bulk IN urb
420 static void ems_usb_read_bulk_callback(struct urb
*urb
)
422 struct ems_usb
*dev
= urb
->context
;
423 struct net_device
*netdev
;
426 netdev
= dev
->netdev
;
428 if (!netif_device_present(netdev
))
431 switch (urb
->status
) {
432 case 0: /* success */
439 netdev_info(netdev
, "Rx URB aborted (%d)\n", urb
->status
);
443 if (urb
->actual_length
> CPC_HEADER_SIZE
) {
444 struct ems_cpc_msg
*msg
;
445 u8
*ibuf
= urb
->transfer_buffer
;
446 u8 msg_count
, again
, start
;
448 msg_count
= ibuf
[0] & ~0x80;
449 again
= ibuf
[0] & 0x80;
451 start
= CPC_HEADER_SIZE
;
454 msg
= (struct ems_cpc_msg
*)&ibuf
[start
];
457 case CPC_MSG_TYPE_CAN_STATE
:
458 /* Process CAN state changes */
459 ems_usb_rx_err(dev
, msg
);
462 case CPC_MSG_TYPE_CAN_FRAME
:
463 case CPC_MSG_TYPE_EXT_CAN_FRAME
:
464 case CPC_MSG_TYPE_RTR_FRAME
:
465 case CPC_MSG_TYPE_EXT_RTR_FRAME
:
466 ems_usb_rx_can_msg(dev
, msg
);
469 case CPC_MSG_TYPE_CAN_FRAME_ERROR
:
470 /* Process errorframe */
471 ems_usb_rx_err(dev
, msg
);
474 case CPC_MSG_TYPE_OVERRUN
:
475 /* Message lost while receiving */
476 ems_usb_rx_err(dev
, msg
);
480 start
+= CPC_MSG_HEADER_LEN
+ msg
->length
;
483 if (start
> urb
->transfer_buffer_length
) {
484 netdev_err(netdev
, "format error\n");
491 usb_fill_bulk_urb(urb
, dev
->udev
, usb_rcvbulkpipe(dev
->udev
, 2),
492 urb
->transfer_buffer
, RX_BUFFER_SIZE
,
493 ems_usb_read_bulk_callback
, dev
);
495 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
497 if (retval
== -ENODEV
)
498 netif_device_detach(netdev
);
501 "failed resubmitting read bulk urb: %d\n", retval
);
505 * callback for bulk IN urb
507 static void ems_usb_write_bulk_callback(struct urb
*urb
)
509 struct ems_tx_urb_context
*context
= urb
->context
;
511 struct net_device
*netdev
;
516 netdev
= dev
->netdev
;
518 /* free up our allocated buffer */
519 usb_free_coherent(urb
->dev
, urb
->transfer_buffer_length
,
520 urb
->transfer_buffer
, urb
->transfer_dma
);
522 atomic_dec(&dev
->active_tx_urbs
);
524 if (!netif_device_present(netdev
))
528 netdev_info(netdev
, "Tx URB aborted (%d)\n", urb
->status
);
530 netdev
->trans_start
= jiffies
;
532 /* transmission complete interrupt */
533 netdev
->stats
.tx_packets
++;
534 netdev
->stats
.tx_bytes
+= context
->dlc
;
536 can_get_echo_skb(netdev
, context
->echo_index
);
538 /* Release context */
539 context
->echo_index
= MAX_TX_URBS
;
544 * Send the given CPC command synchronously
546 static int ems_usb_command_msg(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
551 memcpy(&dev
->tx_msg_buffer
[CPC_HEADER_SIZE
], msg
,
552 msg
->length
+ CPC_MSG_HEADER_LEN
);
555 memset(&dev
->tx_msg_buffer
[0], 0, CPC_HEADER_SIZE
);
557 return usb_bulk_msg(dev
->udev
, usb_sndbulkpipe(dev
->udev
, 2),
558 &dev
->tx_msg_buffer
[0],
559 msg
->length
+ CPC_MSG_HEADER_LEN
+ CPC_HEADER_SIZE
,
560 &actual_length
, 1000);
564 * Change CAN controllers' mode register
566 static int ems_usb_write_mode(struct ems_usb
*dev
, u8 mode
)
568 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.mode
= mode
;
570 return ems_usb_command_msg(dev
, &dev
->active_params
);
574 * Send a CPC_Control command to change behaviour when interface receives a CAN
575 * message, bus error or CAN state changed notifications.
577 static int ems_usb_control_cmd(struct ems_usb
*dev
, u8 val
)
579 struct ems_cpc_msg cmd
;
581 cmd
.type
= CPC_CMD_TYPE_CONTROL
;
582 cmd
.length
= CPC_MSG_HEADER_LEN
+ 1;
586 cmd
.msg
.generic
[0] = val
;
588 return ems_usb_command_msg(dev
, &cmd
);
594 static int ems_usb_start(struct ems_usb
*dev
)
596 struct net_device
*netdev
= dev
->netdev
;
599 dev
->intr_in_buffer
[0] = 0;
600 dev
->free_slots
= 50; /* initial size */
602 for (i
= 0; i
< MAX_RX_URBS
; i
++) {
603 struct urb
*urb
= NULL
;
606 /* create a URB, and a buffer for it */
607 urb
= usb_alloc_urb(0, GFP_KERNEL
);
609 netdev_err(netdev
, "No memory left for URBs\n");
614 buf
= usb_alloc_coherent(dev
->udev
, RX_BUFFER_SIZE
, GFP_KERNEL
,
617 netdev_err(netdev
, "No memory left for USB buffer\n");
623 usb_fill_bulk_urb(urb
, dev
->udev
, usb_rcvbulkpipe(dev
->udev
, 2),
625 ems_usb_read_bulk_callback
, dev
);
626 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
627 usb_anchor_urb(urb
, &dev
->rx_submitted
);
629 err
= usb_submit_urb(urb
, GFP_KERNEL
);
631 usb_unanchor_urb(urb
);
632 usb_free_coherent(dev
->udev
, RX_BUFFER_SIZE
, buf
,
637 /* Drop reference, USB core will take care of freeing it */
641 /* Did we submit any URBs */
643 netdev_warn(netdev
, "couldn't setup read URBs\n");
647 /* Warn if we've couldn't transmit all the URBs */
649 netdev_warn(netdev
, "rx performance may be slow\n");
651 /* Setup and start interrupt URB */
652 usb_fill_int_urb(dev
->intr_urb
, dev
->udev
,
653 usb_rcvintpipe(dev
->udev
, 1),
656 ems_usb_read_interrupt_callback
, dev
, 1);
658 err
= usb_submit_urb(dev
->intr_urb
, GFP_KERNEL
);
660 netdev_warn(netdev
, "intr URB submit failed: %d\n", err
);
665 /* CPC-USB will transfer received message to host */
666 err
= ems_usb_control_cmd(dev
, CONTR_CAN_MESSAGE
| CONTR_CONT_ON
);
670 /* CPC-USB will transfer CAN state changes to host */
671 err
= ems_usb_control_cmd(dev
, CONTR_CAN_STATE
| CONTR_CONT_ON
);
675 /* CPC-USB will transfer bus errors to host */
676 err
= ems_usb_control_cmd(dev
, CONTR_BUS_ERROR
| CONTR_CONT_ON
);
680 err
= ems_usb_write_mode(dev
, SJA1000_MOD_NORMAL
);
684 dev
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
689 netdev_warn(netdev
, "couldn't submit control: %d\n", err
);
694 static void unlink_all_urbs(struct ems_usb
*dev
)
698 usb_unlink_urb(dev
->intr_urb
);
700 usb_kill_anchored_urbs(&dev
->rx_submitted
);
702 usb_kill_anchored_urbs(&dev
->tx_submitted
);
703 atomic_set(&dev
->active_tx_urbs
, 0);
705 for (i
= 0; i
< MAX_TX_URBS
; i
++)
706 dev
->tx_contexts
[i
].echo_index
= MAX_TX_URBS
;
709 static int ems_usb_open(struct net_device
*netdev
)
711 struct ems_usb
*dev
= netdev_priv(netdev
);
714 err
= ems_usb_write_mode(dev
, SJA1000_MOD_RM
);
719 err
= open_candev(netdev
);
723 /* finally start device */
724 err
= ems_usb_start(dev
);
727 netif_device_detach(dev
->netdev
);
729 netdev_warn(netdev
, "couldn't start device: %d\n", err
);
731 close_candev(netdev
);
737 netif_start_queue(netdev
);
742 static netdev_tx_t
ems_usb_start_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
744 struct ems_usb
*dev
= netdev_priv(netdev
);
745 struct ems_tx_urb_context
*context
= NULL
;
746 struct net_device_stats
*stats
= &netdev
->stats
;
747 struct can_frame
*cf
= (struct can_frame
*)skb
->data
;
748 struct ems_cpc_msg
*msg
;
752 size_t size
= CPC_HEADER_SIZE
+ CPC_MSG_HEADER_LEN
753 + sizeof(struct cpc_can_msg
);
755 if (can_dropped_invalid_skb(netdev
, skb
))
758 /* create a URB, and a buffer for it, and copy the data to the URB */
759 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
761 netdev_err(netdev
, "No memory left for URBs\n");
765 buf
= usb_alloc_coherent(dev
->udev
, size
, GFP_ATOMIC
, &urb
->transfer_dma
);
767 netdev_err(netdev
, "No memory left for USB buffer\n");
772 msg
= (struct ems_cpc_msg
*)&buf
[CPC_HEADER_SIZE
];
774 msg
->msg
.can_msg
.id
= cf
->can_id
& CAN_ERR_MASK
;
775 msg
->msg
.can_msg
.length
= cf
->can_dlc
;
777 if (cf
->can_id
& CAN_RTR_FLAG
) {
778 msg
->type
= cf
->can_id
& CAN_EFF_FLAG
?
779 CPC_CMD_TYPE_EXT_RTR_FRAME
: CPC_CMD_TYPE_RTR_FRAME
;
781 msg
->length
= CPC_CAN_MSG_MIN_SIZE
;
783 msg
->type
= cf
->can_id
& CAN_EFF_FLAG
?
784 CPC_CMD_TYPE_EXT_CAN_FRAME
: CPC_CMD_TYPE_CAN_FRAME
;
786 for (i
= 0; i
< cf
->can_dlc
; i
++)
787 msg
->msg
.can_msg
.msg
[i
] = cf
->data
[i
];
789 msg
->length
= CPC_CAN_MSG_MIN_SIZE
+ cf
->can_dlc
;
792 /* Respect byte order */
793 msg
->msg
.can_msg
.id
= cpu_to_le32(msg
->msg
.can_msg
.id
);
795 for (i
= 0; i
< MAX_TX_URBS
; i
++) {
796 if (dev
->tx_contexts
[i
].echo_index
== MAX_TX_URBS
) {
797 context
= &dev
->tx_contexts
[i
];
803 * May never happen! When this happens we'd more URBs in flight as
804 * allowed (MAX_TX_URBS).
807 usb_unanchor_urb(urb
);
808 usb_free_coherent(dev
->udev
, size
, buf
, urb
->transfer_dma
);
810 netdev_warn(netdev
, "couldn't find free context\n");
812 return NETDEV_TX_BUSY
;
816 context
->echo_index
= i
;
817 context
->dlc
= cf
->can_dlc
;
819 usb_fill_bulk_urb(urb
, dev
->udev
, usb_sndbulkpipe(dev
->udev
, 2), buf
,
820 size
, ems_usb_write_bulk_callback
, context
);
821 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
822 usb_anchor_urb(urb
, &dev
->tx_submitted
);
824 can_put_echo_skb(skb
, netdev
, context
->echo_index
);
826 atomic_inc(&dev
->active_tx_urbs
);
828 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
830 can_free_echo_skb(netdev
, context
->echo_index
);
832 usb_unanchor_urb(urb
);
833 usb_free_coherent(dev
->udev
, size
, buf
, urb
->transfer_dma
);
836 atomic_dec(&dev
->active_tx_urbs
);
838 if (err
== -ENODEV
) {
839 netif_device_detach(netdev
);
841 netdev_warn(netdev
, "failed tx_urb %d\n", err
);
846 netdev
->trans_start
= jiffies
;
848 /* Slow down tx path */
849 if (atomic_read(&dev
->active_tx_urbs
) >= MAX_TX_URBS
||
850 dev
->free_slots
< CPC_TX_QUEUE_TRIGGER_LOW
) {
851 netif_stop_queue(netdev
);
856 * Release our reference to this URB, the USB core will eventually free
870 static int ems_usb_close(struct net_device
*netdev
)
872 struct ems_usb
*dev
= netdev_priv(netdev
);
875 unlink_all_urbs(dev
);
877 netif_stop_queue(netdev
);
879 /* Set CAN controller to reset mode */
880 if (ems_usb_write_mode(dev
, SJA1000_MOD_RM
))
881 netdev_warn(netdev
, "couldn't stop device");
883 close_candev(netdev
);
888 static const struct net_device_ops ems_usb_netdev_ops
= {
889 .ndo_open
= ems_usb_open
,
890 .ndo_stop
= ems_usb_close
,
891 .ndo_start_xmit
= ems_usb_start_xmit
,
894 static const struct can_bittiming_const ems_usb_bittiming_const
= {
906 static int ems_usb_set_mode(struct net_device
*netdev
, enum can_mode mode
)
908 struct ems_usb
*dev
= netdev_priv(netdev
);
912 if (ems_usb_write_mode(dev
, SJA1000_MOD_NORMAL
))
913 netdev_warn(netdev
, "couldn't start device");
915 if (netif_queue_stopped(netdev
))
916 netif_wake_queue(netdev
);
926 static int ems_usb_set_bittiming(struct net_device
*netdev
)
928 struct ems_usb
*dev
= netdev_priv(netdev
);
929 struct can_bittiming
*bt
= &dev
->can
.bittiming
;
932 btr0
= ((bt
->brp
- 1) & 0x3f) | (((bt
->sjw
- 1) & 0x3) << 6);
933 btr1
= ((bt
->prop_seg
+ bt
->phase_seg1
- 1) & 0xf) |
934 (((bt
->phase_seg2
- 1) & 0x7) << 4);
935 if (dev
->can
.ctrlmode
& CAN_CTRLMODE_3_SAMPLES
)
938 netdev_info(netdev
, "setting BTR0=0x%02x BTR1=0x%02x\n", btr0
, btr1
);
940 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.btr0
= btr0
;
941 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.btr1
= btr1
;
943 return ems_usb_command_msg(dev
, &dev
->active_params
);
946 static void init_params_sja1000(struct ems_cpc_msg
*msg
)
948 struct cpc_sja1000_params
*sja1000
=
949 &msg
->msg
.can_params
.cc_params
.sja1000
;
951 msg
->type
= CPC_CMD_TYPE_CAN_PARAMS
;
952 msg
->length
= sizeof(struct cpc_can_params
);
955 msg
->msg
.can_params
.cc_type
= CPC_CC_TYPE_SJA1000
;
957 /* Acceptance filter open */
958 sja1000
->acc_code0
= 0x00;
959 sja1000
->acc_code1
= 0x00;
960 sja1000
->acc_code2
= 0x00;
961 sja1000
->acc_code3
= 0x00;
963 /* Acceptance filter open */
964 sja1000
->acc_mask0
= 0xFF;
965 sja1000
->acc_mask1
= 0xFF;
966 sja1000
->acc_mask2
= 0xFF;
967 sja1000
->acc_mask3
= 0xFF;
972 sja1000
->outp_contr
= SJA1000_DEFAULT_OUTPUT_CONTROL
;
973 sja1000
->mode
= SJA1000_MOD_RM
;
977 * probe function for new CPC-USB devices
979 static int ems_usb_probe(struct usb_interface
*intf
,
980 const struct usb_device_id
*id
)
982 struct net_device
*netdev
;
984 int i
, err
= -ENOMEM
;
986 netdev
= alloc_candev(sizeof(struct ems_usb
), MAX_TX_URBS
);
988 dev_err(&intf
->dev
, "ems_usb: Couldn't alloc candev\n");
992 dev
= netdev_priv(netdev
);
994 dev
->udev
= interface_to_usbdev(intf
);
995 dev
->netdev
= netdev
;
997 dev
->can
.state
= CAN_STATE_STOPPED
;
998 dev
->can
.clock
.freq
= EMS_USB_ARM7_CLOCK
;
999 dev
->can
.bittiming_const
= &ems_usb_bittiming_const
;
1000 dev
->can
.do_set_bittiming
= ems_usb_set_bittiming
;
1001 dev
->can
.do_set_mode
= ems_usb_set_mode
;
1002 dev
->can
.ctrlmode_supported
= CAN_CTRLMODE_3_SAMPLES
;
1004 netdev
->netdev_ops
= &ems_usb_netdev_ops
;
1006 netdev
->flags
|= IFF_ECHO
; /* we support local echo */
1008 init_usb_anchor(&dev
->rx_submitted
);
1010 init_usb_anchor(&dev
->tx_submitted
);
1011 atomic_set(&dev
->active_tx_urbs
, 0);
1013 for (i
= 0; i
< MAX_TX_URBS
; i
++)
1014 dev
->tx_contexts
[i
].echo_index
= MAX_TX_URBS
;
1016 dev
->intr_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1017 if (!dev
->intr_urb
) {
1018 dev_err(&intf
->dev
, "Couldn't alloc intr URB\n");
1019 goto cleanup_candev
;
1022 dev
->intr_in_buffer
= kzalloc(INTR_IN_BUFFER_SIZE
, GFP_KERNEL
);
1023 if (!dev
->intr_in_buffer
)
1024 goto cleanup_intr_urb
;
1026 dev
->tx_msg_buffer
= kzalloc(CPC_HEADER_SIZE
+
1027 sizeof(struct ems_cpc_msg
), GFP_KERNEL
);
1028 if (!dev
->tx_msg_buffer
)
1029 goto cleanup_intr_in_buffer
;
1031 usb_set_intfdata(intf
, dev
);
1033 SET_NETDEV_DEV(netdev
, &intf
->dev
);
1035 init_params_sja1000(&dev
->active_params
);
1037 err
= ems_usb_command_msg(dev
, &dev
->active_params
);
1039 netdev_err(netdev
, "couldn't initialize controller: %d\n", err
);
1040 goto cleanup_tx_msg_buffer
;
1043 err
= register_candev(netdev
);
1045 netdev_err(netdev
, "couldn't register CAN device: %d\n", err
);
1046 goto cleanup_tx_msg_buffer
;
1051 cleanup_tx_msg_buffer
:
1052 kfree(dev
->tx_msg_buffer
);
1054 cleanup_intr_in_buffer
:
1055 kfree(dev
->intr_in_buffer
);
1058 usb_free_urb(dev
->intr_urb
);
1061 free_candev(netdev
);
1067 * called by the usb core when the device is removed from the system
1069 static void ems_usb_disconnect(struct usb_interface
*intf
)
1071 struct ems_usb
*dev
= usb_get_intfdata(intf
);
1073 usb_set_intfdata(intf
, NULL
);
1076 unregister_netdev(dev
->netdev
);
1077 free_candev(dev
->netdev
);
1079 unlink_all_urbs(dev
);
1081 usb_free_urb(dev
->intr_urb
);
1083 kfree(dev
->intr_in_buffer
);
1087 /* usb specific object needed to register this driver with the usb subsystem */
1088 static struct usb_driver ems_usb_driver
= {
1090 .probe
= ems_usb_probe
,
1091 .disconnect
= ems_usb_disconnect
,
1092 .id_table
= ems_usb_table
,
1095 module_usb_driver(ems_usb_driver
);