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
122 * CAN-Message representation in a CPC_MSG. Message object type is
123 * CPC_MSG_TYPE_CAN_FRAME or CPC_MSG_TYPE_RTR_FRAME or
124 * CPC_MSG_TYPE_EXT_CAN_FRAME or CPC_MSG_TYPE_EXT_RTR_FRAME.
132 /* Representation of the CAN parameters for the SJA1000 controller */
133 struct cpc_sja1000_params
{
148 /* CAN params message representation */
149 struct cpc_can_params
{
152 /* Will support M16C CAN controller in the future */
154 struct cpc_sja1000_params sja1000
;
158 /* Structure for confirmed message handling */
160 u8 error
; /* error code */
163 /* Structure for overrun conditions */
169 /* SJA1000 CAN errors (compatible to NXP LPC2119) */
170 struct cpc_sja1000_can_error
{
176 /* structure for CAN error conditions */
177 struct cpc_can_error
{
183 /* Other controllers may also provide error code capture regs */
185 struct cpc_sja1000_can_error sja1000
;
191 * Structure containing RX/TX error counter. This structure is used to request
192 * the values of the CAN controllers TX and RX error counter.
194 struct cpc_can_err_counter
{
199 /* Main message type used between library and application */
200 struct __packed ems_cpc_msg
{
201 u8 type
; /* type of message */
202 u8 length
; /* length of data within union 'msg' */
203 u8 msgid
; /* confirmation handle */
204 u32 ts_sec
; /* timestamp in seconds */
205 u32 ts_nsec
; /* timestamp in nano seconds */
209 struct cpc_can_msg can_msg
;
210 struct cpc_can_params can_params
;
211 struct cpc_confirm confirmation
;
212 struct cpc_overrun overrun
;
213 struct cpc_can_error error
;
214 struct cpc_can_err_counter err_counter
;
220 * Table of devices that work with this driver
221 * NOTE: This driver supports only CPC-USB/ARM7 (LPC2119) yet.
223 static struct usb_device_id ems_usb_table
[] = {
224 {USB_DEVICE(USB_CPCUSB_VENDOR_ID
, USB_CPCUSB_ARM7_PRODUCT_ID
)},
225 {} /* Terminating entry */
228 MODULE_DEVICE_TABLE(usb
, ems_usb_table
);
230 #define RX_BUFFER_SIZE 64
231 #define CPC_HEADER_SIZE 4
232 #define INTR_IN_BUFFER_SIZE 4
234 #define MAX_RX_URBS 10
235 #define MAX_TX_URBS 10
239 struct ems_tx_urb_context
{
247 struct can_priv can
; /* must be the first member */
250 struct sk_buff
*echo_skb
[MAX_TX_URBS
];
252 struct usb_device
*udev
;
253 struct net_device
*netdev
;
255 atomic_t active_tx_urbs
;
256 struct usb_anchor tx_submitted
;
257 struct ems_tx_urb_context tx_contexts
[MAX_TX_URBS
];
259 struct usb_anchor rx_submitted
;
261 struct urb
*intr_urb
;
266 unsigned int free_slots
; /* remember number of available slots */
268 struct ems_cpc_msg active_params
; /* active controller parameters */
271 static void ems_usb_read_interrupt_callback(struct urb
*urb
)
273 struct ems_usb
*dev
= urb
->context
;
274 struct net_device
*netdev
= dev
->netdev
;
277 if (!netif_device_present(netdev
))
280 switch (urb
->status
) {
282 dev
->free_slots
= dev
->intr_in_buffer
[1];
285 case -ECONNRESET
: /* unlink */
291 dev_info(netdev
->dev
.parent
, "Rx interrupt aborted %d\n",
296 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
299 netif_device_detach(netdev
);
301 dev_err(netdev
->dev
.parent
,
302 "failed resubmitting intr urb: %d\n", err
);
305 static void ems_usb_rx_can_msg(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
307 struct can_frame
*cf
;
310 struct net_device_stats
*stats
= &dev
->netdev
->stats
;
312 skb
= alloc_can_skb(dev
->netdev
, &cf
);
316 cf
->can_id
= le32_to_cpu(msg
->msg
.can_msg
.id
);
317 cf
->can_dlc
= get_can_dlc(msg
->msg
.can_msg
.length
& 0xF);
319 if (msg
->type
== CPC_MSG_TYPE_EXT_CAN_FRAME
||
320 msg
->type
== CPC_MSG_TYPE_EXT_RTR_FRAME
)
321 cf
->can_id
|= CAN_EFF_FLAG
;
323 if (msg
->type
== CPC_MSG_TYPE_RTR_FRAME
||
324 msg
->type
== CPC_MSG_TYPE_EXT_RTR_FRAME
) {
325 cf
->can_id
|= CAN_RTR_FLAG
;
327 for (i
= 0; i
< cf
->can_dlc
; i
++)
328 cf
->data
[i
] = msg
->msg
.can_msg
.msg
[i
];
334 stats
->rx_bytes
+= cf
->can_dlc
;
337 static void ems_usb_rx_err(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
339 struct can_frame
*cf
;
341 struct net_device_stats
*stats
= &dev
->netdev
->stats
;
343 skb
= alloc_can_err_skb(dev
->netdev
, &cf
);
347 if (msg
->type
== CPC_MSG_TYPE_CAN_STATE
) {
348 u8 state
= msg
->msg
.can_state
;
350 if (state
& SJA1000_SR_BS
) {
351 dev
->can
.state
= CAN_STATE_BUS_OFF
;
352 cf
->can_id
|= CAN_ERR_BUSOFF
;
354 can_bus_off(dev
->netdev
);
355 } else if (state
& SJA1000_SR_ES
) {
356 dev
->can
.state
= CAN_STATE_ERROR_WARNING
;
357 dev
->can
.can_stats
.error_warning
++;
359 dev
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
360 dev
->can
.can_stats
.error_passive
++;
362 } else if (msg
->type
== CPC_MSG_TYPE_CAN_FRAME_ERROR
) {
363 u8 ecc
= msg
->msg
.error
.cc
.regs
.sja1000
.ecc
;
364 u8 txerr
= msg
->msg
.error
.cc
.regs
.sja1000
.txerr
;
365 u8 rxerr
= msg
->msg
.error
.cc
.regs
.sja1000
.rxerr
;
367 /* bus error interrupt */
368 dev
->can
.can_stats
.bus_error
++;
371 cf
->can_id
|= CAN_ERR_PROT
| CAN_ERR_BUSERROR
;
373 switch (ecc
& SJA1000_ECC_MASK
) {
374 case SJA1000_ECC_BIT
:
375 cf
->data
[2] |= CAN_ERR_PROT_BIT
;
377 case SJA1000_ECC_FORM
:
378 cf
->data
[2] |= CAN_ERR_PROT_FORM
;
380 case SJA1000_ECC_STUFF
:
381 cf
->data
[2] |= CAN_ERR_PROT_STUFF
;
384 cf
->data
[2] |= CAN_ERR_PROT_UNSPEC
;
385 cf
->data
[3] = ecc
& SJA1000_ECC_SEG
;
389 /* Error occurred during transmission? */
390 if ((ecc
& SJA1000_ECC_DIR
) == 0)
391 cf
->data
[2] |= CAN_ERR_PROT_TX
;
393 if (dev
->can
.state
== CAN_STATE_ERROR_WARNING
||
394 dev
->can
.state
== CAN_STATE_ERROR_PASSIVE
) {
395 cf
->data
[1] = (txerr
> rxerr
) ?
396 CAN_ERR_CRTL_TX_PASSIVE
: CAN_ERR_CRTL_RX_PASSIVE
;
398 } else if (msg
->type
== CPC_MSG_TYPE_OVERRUN
) {
399 cf
->can_id
|= CAN_ERR_CRTL
;
400 cf
->data
[1] = CAN_ERR_CRTL_RX_OVERFLOW
;
402 stats
->rx_over_errors
++;
409 stats
->rx_bytes
+= cf
->can_dlc
;
413 * callback for bulk IN urb
415 static void ems_usb_read_bulk_callback(struct urb
*urb
)
417 struct ems_usb
*dev
= urb
->context
;
418 struct net_device
*netdev
;
421 netdev
= dev
->netdev
;
423 if (!netif_device_present(netdev
))
426 switch (urb
->status
) {
427 case 0: /* success */
434 dev_info(netdev
->dev
.parent
, "Rx URB aborted (%d)\n",
439 if (urb
->actual_length
> CPC_HEADER_SIZE
) {
440 struct ems_cpc_msg
*msg
;
441 u8
*ibuf
= urb
->transfer_buffer
;
442 u8 msg_count
, again
, start
;
444 msg_count
= ibuf
[0] & ~0x80;
445 again
= ibuf
[0] & 0x80;
447 start
= CPC_HEADER_SIZE
;
450 msg
= (struct ems_cpc_msg
*)&ibuf
[start
];
453 case CPC_MSG_TYPE_CAN_STATE
:
454 /* Process CAN state changes */
455 ems_usb_rx_err(dev
, msg
);
458 case CPC_MSG_TYPE_CAN_FRAME
:
459 case CPC_MSG_TYPE_EXT_CAN_FRAME
:
460 case CPC_MSG_TYPE_RTR_FRAME
:
461 case CPC_MSG_TYPE_EXT_RTR_FRAME
:
462 ems_usb_rx_can_msg(dev
, msg
);
465 case CPC_MSG_TYPE_CAN_FRAME_ERROR
:
466 /* Process errorframe */
467 ems_usb_rx_err(dev
, msg
);
470 case CPC_MSG_TYPE_OVERRUN
:
471 /* Message lost while receiving */
472 ems_usb_rx_err(dev
, msg
);
476 start
+= CPC_MSG_HEADER_LEN
+ msg
->length
;
479 if (start
> urb
->transfer_buffer_length
) {
480 dev_err(netdev
->dev
.parent
, "format error\n");
487 usb_fill_bulk_urb(urb
, dev
->udev
, usb_rcvbulkpipe(dev
->udev
, 2),
488 urb
->transfer_buffer
, RX_BUFFER_SIZE
,
489 ems_usb_read_bulk_callback
, dev
);
491 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
493 if (retval
== -ENODEV
)
494 netif_device_detach(netdev
);
496 dev_err(netdev
->dev
.parent
,
497 "failed resubmitting read bulk urb: %d\n", retval
);
501 * callback for bulk IN urb
503 static void ems_usb_write_bulk_callback(struct urb
*urb
)
505 struct ems_tx_urb_context
*context
= urb
->context
;
507 struct net_device
*netdev
;
512 netdev
= dev
->netdev
;
514 /* free up our allocated buffer */
515 usb_free_coherent(urb
->dev
, urb
->transfer_buffer_length
,
516 urb
->transfer_buffer
, urb
->transfer_dma
);
518 atomic_dec(&dev
->active_tx_urbs
);
520 if (!netif_device_present(netdev
))
524 dev_info(netdev
->dev
.parent
, "Tx URB aborted (%d)\n",
527 netdev
->trans_start
= jiffies
;
529 /* transmission complete interrupt */
530 netdev
->stats
.tx_packets
++;
531 netdev
->stats
.tx_bytes
+= context
->dlc
;
533 can_get_echo_skb(netdev
, context
->echo_index
);
535 /* Release context */
536 context
->echo_index
= MAX_TX_URBS
;
538 if (netif_queue_stopped(netdev
))
539 netif_wake_queue(netdev
);
543 * Send the given CPC command synchronously
545 static int ems_usb_command_msg(struct ems_usb
*dev
, struct ems_cpc_msg
*msg
)
550 memcpy(&dev
->tx_msg_buffer
[CPC_HEADER_SIZE
], msg
,
551 msg
->length
+ CPC_MSG_HEADER_LEN
);
554 memset(&dev
->tx_msg_buffer
[0], 0, CPC_HEADER_SIZE
);
556 return usb_bulk_msg(dev
->udev
, usb_sndbulkpipe(dev
->udev
, 2),
557 &dev
->tx_msg_buffer
[0],
558 msg
->length
+ CPC_MSG_HEADER_LEN
+ CPC_HEADER_SIZE
,
559 &actual_length
, 1000);
563 * Change CAN controllers' mode register
565 static int ems_usb_write_mode(struct ems_usb
*dev
, u8 mode
)
567 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.mode
= mode
;
569 return ems_usb_command_msg(dev
, &dev
->active_params
);
573 * Send a CPC_Control command to change behaviour when interface receives a CAN
574 * message, bus error or CAN state changed notifications.
576 static int ems_usb_control_cmd(struct ems_usb
*dev
, u8 val
)
578 struct ems_cpc_msg cmd
;
580 cmd
.type
= CPC_CMD_TYPE_CONTROL
;
581 cmd
.length
= CPC_MSG_HEADER_LEN
+ 1;
585 cmd
.msg
.generic
[0] = val
;
587 return ems_usb_command_msg(dev
, &cmd
);
593 static int ems_usb_start(struct ems_usb
*dev
)
595 struct net_device
*netdev
= dev
->netdev
;
598 dev
->intr_in_buffer
[0] = 0;
599 dev
->free_slots
= 15; /* initial size */
601 for (i
= 0; i
< MAX_RX_URBS
; i
++) {
602 struct urb
*urb
= NULL
;
605 /* create a URB, and a buffer for it */
606 urb
= usb_alloc_urb(0, GFP_KERNEL
);
608 dev_err(netdev
->dev
.parent
,
609 "No memory left for URBs\n");
613 buf
= usb_alloc_coherent(dev
->udev
, RX_BUFFER_SIZE
, GFP_KERNEL
,
616 dev_err(netdev
->dev
.parent
,
617 "No memory left for USB buffer\n");
622 usb_fill_bulk_urb(urb
, dev
->udev
, usb_rcvbulkpipe(dev
->udev
, 2),
624 ems_usb_read_bulk_callback
, dev
);
625 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
626 usb_anchor_urb(urb
, &dev
->rx_submitted
);
628 err
= usb_submit_urb(urb
, GFP_KERNEL
);
631 netif_device_detach(dev
->netdev
);
633 usb_unanchor_urb(urb
);
634 usb_free_coherent(dev
->udev
, RX_BUFFER_SIZE
, buf
,
639 /* Drop reference, USB core will take care of freeing it */
643 /* Did we submit any URBs */
645 dev_warn(netdev
->dev
.parent
, "couldn't setup read URBs\n");
649 /* Warn if we've couldn't transmit all the URBs */
651 dev_warn(netdev
->dev
.parent
, "rx performance may be slow\n");
653 /* Setup and start interrupt URB */
654 usb_fill_int_urb(dev
->intr_urb
, dev
->udev
,
655 usb_rcvintpipe(dev
->udev
, 1),
658 ems_usb_read_interrupt_callback
, dev
, 1);
660 err
= usb_submit_urb(dev
->intr_urb
, GFP_KERNEL
);
663 netif_device_detach(dev
->netdev
);
665 dev_warn(netdev
->dev
.parent
, "intr URB submit failed: %d\n",
671 /* CPC-USB will transfer received message to host */
672 err
= ems_usb_control_cmd(dev
, CONTR_CAN_MESSAGE
| CONTR_CONT_ON
);
676 /* CPC-USB will transfer CAN state changes to host */
677 err
= ems_usb_control_cmd(dev
, CONTR_CAN_STATE
| CONTR_CONT_ON
);
681 /* CPC-USB will transfer bus errors to host */
682 err
= ems_usb_control_cmd(dev
, CONTR_BUS_ERROR
| CONTR_CONT_ON
);
686 err
= ems_usb_write_mode(dev
, SJA1000_MOD_NORMAL
);
690 dev
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
696 netif_device_detach(dev
->netdev
);
698 dev_warn(netdev
->dev
.parent
, "couldn't submit control: %d\n", err
);
703 static void unlink_all_urbs(struct ems_usb
*dev
)
707 usb_unlink_urb(dev
->intr_urb
);
709 usb_kill_anchored_urbs(&dev
->rx_submitted
);
711 usb_kill_anchored_urbs(&dev
->tx_submitted
);
712 atomic_set(&dev
->active_tx_urbs
, 0);
714 for (i
= 0; i
< MAX_TX_URBS
; i
++)
715 dev
->tx_contexts
[i
].echo_index
= MAX_TX_URBS
;
718 static int ems_usb_open(struct net_device
*netdev
)
720 struct ems_usb
*dev
= netdev_priv(netdev
);
723 err
= ems_usb_write_mode(dev
, SJA1000_MOD_RM
);
728 err
= open_candev(netdev
);
732 /* finally start device */
733 err
= ems_usb_start(dev
);
736 netif_device_detach(dev
->netdev
);
738 dev_warn(netdev
->dev
.parent
, "couldn't start device: %d\n",
741 close_candev(netdev
);
746 dev
->open_time
= jiffies
;
748 netif_start_queue(netdev
);
753 static netdev_tx_t
ems_usb_start_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
755 struct ems_usb
*dev
= netdev_priv(netdev
);
756 struct ems_tx_urb_context
*context
= NULL
;
757 struct net_device_stats
*stats
= &netdev
->stats
;
758 struct can_frame
*cf
= (struct can_frame
*)skb
->data
;
759 struct ems_cpc_msg
*msg
;
763 size_t size
= CPC_HEADER_SIZE
+ CPC_MSG_HEADER_LEN
764 + sizeof(struct cpc_can_msg
);
766 if (can_dropped_invalid_skb(netdev
, skb
))
769 /* create a URB, and a buffer for it, and copy the data to the URB */
770 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
772 dev_err(netdev
->dev
.parent
, "No memory left for URBs\n");
776 buf
= usb_alloc_coherent(dev
->udev
, size
, GFP_ATOMIC
, &urb
->transfer_dma
);
778 dev_err(netdev
->dev
.parent
, "No memory left for USB buffer\n");
783 msg
= (struct ems_cpc_msg
*)&buf
[CPC_HEADER_SIZE
];
785 msg
->msg
.can_msg
.id
= cf
->can_id
& CAN_ERR_MASK
;
786 msg
->msg
.can_msg
.length
= cf
->can_dlc
;
788 if (cf
->can_id
& CAN_RTR_FLAG
) {
789 msg
->type
= cf
->can_id
& CAN_EFF_FLAG
?
790 CPC_CMD_TYPE_EXT_RTR_FRAME
: CPC_CMD_TYPE_RTR_FRAME
;
792 msg
->length
= CPC_CAN_MSG_MIN_SIZE
;
794 msg
->type
= cf
->can_id
& CAN_EFF_FLAG
?
795 CPC_CMD_TYPE_EXT_CAN_FRAME
: CPC_CMD_TYPE_CAN_FRAME
;
797 for (i
= 0; i
< cf
->can_dlc
; i
++)
798 msg
->msg
.can_msg
.msg
[i
] = cf
->data
[i
];
800 msg
->length
= CPC_CAN_MSG_MIN_SIZE
+ cf
->can_dlc
;
803 /* Respect byte order */
804 msg
->msg
.can_msg
.id
= cpu_to_le32(msg
->msg
.can_msg
.id
);
806 for (i
= 0; i
< MAX_TX_URBS
; i
++) {
807 if (dev
->tx_contexts
[i
].echo_index
== MAX_TX_URBS
) {
808 context
= &dev
->tx_contexts
[i
];
814 * May never happen! When this happens we'd more URBs in flight as
815 * allowed (MAX_TX_URBS).
818 usb_unanchor_urb(urb
);
819 usb_free_coherent(dev
->udev
, size
, buf
, urb
->transfer_dma
);
821 dev_warn(netdev
->dev
.parent
, "couldn't find free context\n");
823 return NETDEV_TX_BUSY
;
827 context
->echo_index
= i
;
828 context
->dlc
= cf
->can_dlc
;
830 usb_fill_bulk_urb(urb
, dev
->udev
, usb_sndbulkpipe(dev
->udev
, 2), buf
,
831 size
, ems_usb_write_bulk_callback
, context
);
832 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
833 usb_anchor_urb(urb
, &dev
->tx_submitted
);
835 can_put_echo_skb(skb
, netdev
, context
->echo_index
);
837 atomic_inc(&dev
->active_tx_urbs
);
839 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
841 can_free_echo_skb(netdev
, context
->echo_index
);
843 usb_unanchor_urb(urb
);
844 usb_free_coherent(dev
->udev
, size
, buf
, urb
->transfer_dma
);
847 atomic_dec(&dev
->active_tx_urbs
);
849 if (err
== -ENODEV
) {
850 netif_device_detach(netdev
);
852 dev_warn(netdev
->dev
.parent
, "failed tx_urb %d\n", err
);
857 netdev
->trans_start
= jiffies
;
859 /* Slow down tx path */
860 if (atomic_read(&dev
->active_tx_urbs
) >= MAX_TX_URBS
||
861 dev
->free_slots
< 5) {
862 netif_stop_queue(netdev
);
867 * Release our reference to this URB, the USB core will eventually free
881 static int ems_usb_close(struct net_device
*netdev
)
883 struct ems_usb
*dev
= netdev_priv(netdev
);
886 unlink_all_urbs(dev
);
888 netif_stop_queue(netdev
);
890 /* Set CAN controller to reset mode */
891 if (ems_usb_write_mode(dev
, SJA1000_MOD_RM
))
892 dev_warn(netdev
->dev
.parent
, "couldn't stop device");
894 close_candev(netdev
);
901 static const struct net_device_ops ems_usb_netdev_ops
= {
902 .ndo_open
= ems_usb_open
,
903 .ndo_stop
= ems_usb_close
,
904 .ndo_start_xmit
= ems_usb_start_xmit
,
907 static struct can_bittiming_const ems_usb_bittiming_const
= {
919 static int ems_usb_set_mode(struct net_device
*netdev
, enum can_mode mode
)
921 struct ems_usb
*dev
= netdev_priv(netdev
);
928 if (ems_usb_write_mode(dev
, SJA1000_MOD_NORMAL
))
929 dev_warn(netdev
->dev
.parent
, "couldn't start device");
931 if (netif_queue_stopped(netdev
))
932 netif_wake_queue(netdev
);
942 static int ems_usb_set_bittiming(struct net_device
*netdev
)
944 struct ems_usb
*dev
= netdev_priv(netdev
);
945 struct can_bittiming
*bt
= &dev
->can
.bittiming
;
948 btr0
= ((bt
->brp
- 1) & 0x3f) | (((bt
->sjw
- 1) & 0x3) << 6);
949 btr1
= ((bt
->prop_seg
+ bt
->phase_seg1
- 1) & 0xf) |
950 (((bt
->phase_seg2
- 1) & 0x7) << 4);
951 if (dev
->can
.ctrlmode
& CAN_CTRLMODE_3_SAMPLES
)
954 dev_info(netdev
->dev
.parent
, "setting BTR0=0x%02x BTR1=0x%02x\n",
957 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.btr0
= btr0
;
958 dev
->active_params
.msg
.can_params
.cc_params
.sja1000
.btr1
= btr1
;
960 return ems_usb_command_msg(dev
, &dev
->active_params
);
963 static void init_params_sja1000(struct ems_cpc_msg
*msg
)
965 struct cpc_sja1000_params
*sja1000
=
966 &msg
->msg
.can_params
.cc_params
.sja1000
;
968 msg
->type
= CPC_CMD_TYPE_CAN_PARAMS
;
969 msg
->length
= sizeof(struct cpc_can_params
);
972 msg
->msg
.can_params
.cc_type
= CPC_CC_TYPE_SJA1000
;
974 /* Acceptance filter open */
975 sja1000
->acc_code0
= 0x00;
976 sja1000
->acc_code1
= 0x00;
977 sja1000
->acc_code2
= 0x00;
978 sja1000
->acc_code3
= 0x00;
980 /* Acceptance filter open */
981 sja1000
->acc_mask0
= 0xFF;
982 sja1000
->acc_mask1
= 0xFF;
983 sja1000
->acc_mask2
= 0xFF;
984 sja1000
->acc_mask3
= 0xFF;
989 sja1000
->outp_contr
= SJA1000_DEFAULT_OUTPUT_CONTROL
;
990 sja1000
->mode
= SJA1000_MOD_RM
;
994 * probe function for new CPC-USB devices
996 static int ems_usb_probe(struct usb_interface
*intf
,
997 const struct usb_device_id
*id
)
999 struct net_device
*netdev
;
1000 struct ems_usb
*dev
;
1001 int i
, err
= -ENOMEM
;
1003 netdev
= alloc_candev(sizeof(struct ems_usb
), MAX_TX_URBS
);
1005 dev_err(&intf
->dev
, "ems_usb: Couldn't alloc candev\n");
1009 dev
= netdev_priv(netdev
);
1011 dev
->udev
= interface_to_usbdev(intf
);
1012 dev
->netdev
= netdev
;
1014 dev
->can
.state
= CAN_STATE_STOPPED
;
1015 dev
->can
.clock
.freq
= EMS_USB_ARM7_CLOCK
;
1016 dev
->can
.bittiming_const
= &ems_usb_bittiming_const
;
1017 dev
->can
.do_set_bittiming
= ems_usb_set_bittiming
;
1018 dev
->can
.do_set_mode
= ems_usb_set_mode
;
1019 dev
->can
.ctrlmode_supported
= CAN_CTRLMODE_3_SAMPLES
;
1021 netdev
->netdev_ops
= &ems_usb_netdev_ops
;
1023 netdev
->flags
|= IFF_ECHO
; /* we support local echo */
1025 init_usb_anchor(&dev
->rx_submitted
);
1027 init_usb_anchor(&dev
->tx_submitted
);
1028 atomic_set(&dev
->active_tx_urbs
, 0);
1030 for (i
= 0; i
< MAX_TX_URBS
; i
++)
1031 dev
->tx_contexts
[i
].echo_index
= MAX_TX_URBS
;
1033 dev
->intr_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1034 if (!dev
->intr_urb
) {
1035 dev_err(&intf
->dev
, "Couldn't alloc intr URB\n");
1036 goto cleanup_candev
;
1039 dev
->intr_in_buffer
= kzalloc(INTR_IN_BUFFER_SIZE
, GFP_KERNEL
);
1040 if (!dev
->intr_in_buffer
) {
1041 dev_err(&intf
->dev
, "Couldn't alloc Intr buffer\n");
1042 goto cleanup_intr_urb
;
1045 dev
->tx_msg_buffer
= kzalloc(CPC_HEADER_SIZE
+
1046 sizeof(struct ems_cpc_msg
), GFP_KERNEL
);
1047 if (!dev
->tx_msg_buffer
) {
1048 dev_err(&intf
->dev
, "Couldn't alloc Tx buffer\n");
1049 goto cleanup_intr_in_buffer
;
1052 usb_set_intfdata(intf
, dev
);
1054 SET_NETDEV_DEV(netdev
, &intf
->dev
);
1056 init_params_sja1000(&dev
->active_params
);
1058 err
= ems_usb_command_msg(dev
, &dev
->active_params
);
1060 dev_err(netdev
->dev
.parent
,
1061 "couldn't initialize controller: %d\n", err
);
1062 goto cleanup_tx_msg_buffer
;
1065 err
= register_candev(netdev
);
1067 dev_err(netdev
->dev
.parent
,
1068 "couldn't register CAN device: %d\n", err
);
1069 goto cleanup_tx_msg_buffer
;
1074 cleanup_tx_msg_buffer
:
1075 kfree(dev
->tx_msg_buffer
);
1077 cleanup_intr_in_buffer
:
1078 kfree(dev
->intr_in_buffer
);
1081 usb_free_urb(dev
->intr_urb
);
1084 free_candev(netdev
);
1090 * called by the usb core when the device is removed from the system
1092 static void ems_usb_disconnect(struct usb_interface
*intf
)
1094 struct ems_usb
*dev
= usb_get_intfdata(intf
);
1096 usb_set_intfdata(intf
, NULL
);
1099 unregister_netdev(dev
->netdev
);
1100 free_candev(dev
->netdev
);
1102 unlink_all_urbs(dev
);
1104 usb_free_urb(dev
->intr_urb
);
1106 kfree(dev
->intr_in_buffer
);
1110 /* usb specific object needed to register this driver with the usb subsystem */
1111 static struct usb_driver ems_usb_driver
= {
1113 .probe
= ems_usb_probe
,
1114 .disconnect
= ems_usb_disconnect
,
1115 .id_table
= ems_usb_table
,
1118 static int __init
ems_usb_init(void)
1122 printk(KERN_INFO
"CPC-USB kernel driver loaded\n");
1124 /* register this driver with the USB subsystem */
1125 err
= usb_register(&ems_usb_driver
);
1128 err("usb_register failed. Error number %d\n", err
);
1135 static void __exit
ems_usb_exit(void)
1137 /* deregister this driver with the USB subsystem */
1138 usb_deregister(&ems_usb_driver
);
1141 module_init(ems_usb_init
);
1142 module_exit(ems_usb_exit
);