2 * flexcan.c - FLEXCAN CAN controller driver
4 * Copyright (c) 2005-2006 Varma Electronics Oy
5 * Copyright (c) 2009 Sascha Hauer, Pengutronix
6 * Copyright (c) 2010 Marc Kleine-Budde, Pengutronix
8 * Based on code originally by Andrey Volkov <avolkov@varma-el.com>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation version 2.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
22 #include <linux/netdevice.h>
23 #include <linux/can.h>
24 #include <linux/can/dev.h>
25 #include <linux/can/error.h>
26 #include <linux/can/platform/flexcan.h>
27 #include <linux/clk.h>
28 #include <linux/delay.h>
29 #include <linux/if_arp.h>
30 #include <linux/if_ether.h>
31 #include <linux/interrupt.h>
33 #include <linux/kernel.h>
34 #include <linux/list.h>
35 #include <linux/module.h>
37 #include <linux/platform_device.h>
39 #define DRV_NAME "flexcan"
41 /* 8 for RX fifo and 2 error handling */
42 #define FLEXCAN_NAPI_WEIGHT (8 + 2)
44 /* FLEXCAN module configuration register (CANMCR) bits */
45 #define FLEXCAN_MCR_MDIS BIT(31)
46 #define FLEXCAN_MCR_FRZ BIT(30)
47 #define FLEXCAN_MCR_FEN BIT(29)
48 #define FLEXCAN_MCR_HALT BIT(28)
49 #define FLEXCAN_MCR_NOT_RDY BIT(27)
50 #define FLEXCAN_MCR_WAK_MSK BIT(26)
51 #define FLEXCAN_MCR_SOFTRST BIT(25)
52 #define FLEXCAN_MCR_FRZ_ACK BIT(24)
53 #define FLEXCAN_MCR_SUPV BIT(23)
54 #define FLEXCAN_MCR_SLF_WAK BIT(22)
55 #define FLEXCAN_MCR_WRN_EN BIT(21)
56 #define FLEXCAN_MCR_LPM_ACK BIT(20)
57 #define FLEXCAN_MCR_WAK_SRC BIT(19)
58 #define FLEXCAN_MCR_DOZE BIT(18)
59 #define FLEXCAN_MCR_SRX_DIS BIT(17)
60 #define FLEXCAN_MCR_BCC BIT(16)
61 #define FLEXCAN_MCR_LPRIO_EN BIT(13)
62 #define FLEXCAN_MCR_AEN BIT(12)
63 #define FLEXCAN_MCR_MAXMB(x) ((x) & 0x1f)
64 #define FLEXCAN_MCR_IDAM_A (0 << 8)
65 #define FLEXCAN_MCR_IDAM_B (1 << 8)
66 #define FLEXCAN_MCR_IDAM_C (2 << 8)
67 #define FLEXCAN_MCR_IDAM_D (3 << 8)
69 /* FLEXCAN control register (CANCTRL) bits */
70 #define FLEXCAN_CTRL_PRESDIV(x) (((x) & 0xff) << 24)
71 #define FLEXCAN_CTRL_RJW(x) (((x) & 0x03) << 22)
72 #define FLEXCAN_CTRL_PSEG1(x) (((x) & 0x07) << 19)
73 #define FLEXCAN_CTRL_PSEG2(x) (((x) & 0x07) << 16)
74 #define FLEXCAN_CTRL_BOFF_MSK BIT(15)
75 #define FLEXCAN_CTRL_ERR_MSK BIT(14)
76 #define FLEXCAN_CTRL_CLK_SRC BIT(13)
77 #define FLEXCAN_CTRL_LPB BIT(12)
78 #define FLEXCAN_CTRL_TWRN_MSK BIT(11)
79 #define FLEXCAN_CTRL_RWRN_MSK BIT(10)
80 #define FLEXCAN_CTRL_SMP BIT(7)
81 #define FLEXCAN_CTRL_BOFF_REC BIT(6)
82 #define FLEXCAN_CTRL_TSYN BIT(5)
83 #define FLEXCAN_CTRL_LBUF BIT(4)
84 #define FLEXCAN_CTRL_LOM BIT(3)
85 #define FLEXCAN_CTRL_PROPSEG(x) ((x) & 0x07)
86 #define FLEXCAN_CTRL_ERR_BUS (FLEXCAN_CTRL_ERR_MSK)
87 #define FLEXCAN_CTRL_ERR_STATE \
88 (FLEXCAN_CTRL_TWRN_MSK | FLEXCAN_CTRL_RWRN_MSK | \
89 FLEXCAN_CTRL_BOFF_MSK)
90 #define FLEXCAN_CTRL_ERR_ALL \
91 (FLEXCAN_CTRL_ERR_BUS | FLEXCAN_CTRL_ERR_STATE)
93 /* FLEXCAN error and status register (ESR) bits */
94 #define FLEXCAN_ESR_TWRN_INT BIT(17)
95 #define FLEXCAN_ESR_RWRN_INT BIT(16)
96 #define FLEXCAN_ESR_BIT1_ERR BIT(15)
97 #define FLEXCAN_ESR_BIT0_ERR BIT(14)
98 #define FLEXCAN_ESR_ACK_ERR BIT(13)
99 #define FLEXCAN_ESR_CRC_ERR BIT(12)
100 #define FLEXCAN_ESR_FRM_ERR BIT(11)
101 #define FLEXCAN_ESR_STF_ERR BIT(10)
102 #define FLEXCAN_ESR_TX_WRN BIT(9)
103 #define FLEXCAN_ESR_RX_WRN BIT(8)
104 #define FLEXCAN_ESR_IDLE BIT(7)
105 #define FLEXCAN_ESR_TXRX BIT(6)
106 #define FLEXCAN_EST_FLT_CONF_SHIFT (4)
107 #define FLEXCAN_ESR_FLT_CONF_MASK (0x3 << FLEXCAN_EST_FLT_CONF_SHIFT)
108 #define FLEXCAN_ESR_FLT_CONF_ACTIVE (0x0 << FLEXCAN_EST_FLT_CONF_SHIFT)
109 #define FLEXCAN_ESR_FLT_CONF_PASSIVE (0x1 << FLEXCAN_EST_FLT_CONF_SHIFT)
110 #define FLEXCAN_ESR_BOFF_INT BIT(2)
111 #define FLEXCAN_ESR_ERR_INT BIT(1)
112 #define FLEXCAN_ESR_WAK_INT BIT(0)
113 #define FLEXCAN_ESR_ERR_BUS \
114 (FLEXCAN_ESR_BIT1_ERR | FLEXCAN_ESR_BIT0_ERR | \
115 FLEXCAN_ESR_ACK_ERR | FLEXCAN_ESR_CRC_ERR | \
116 FLEXCAN_ESR_FRM_ERR | FLEXCAN_ESR_STF_ERR)
117 #define FLEXCAN_ESR_ERR_STATE \
118 (FLEXCAN_ESR_TWRN_INT | FLEXCAN_ESR_RWRN_INT | FLEXCAN_ESR_BOFF_INT)
119 #define FLEXCAN_ESR_ERR_ALL \
120 (FLEXCAN_ESR_ERR_BUS | FLEXCAN_ESR_ERR_STATE)
121 #define FLEXCAN_ESR_ALL_INT \
122 (FLEXCAN_ESR_TWRN_INT | FLEXCAN_ESR_RWRN_INT | \
123 FLEXCAN_ESR_BOFF_INT | FLEXCAN_ESR_ERR_INT)
125 /* FLEXCAN interrupt flag register (IFLAG) bits */
126 #define FLEXCAN_TX_BUF_ID 8
127 #define FLEXCAN_IFLAG_BUF(x) BIT(x)
128 #define FLEXCAN_IFLAG_RX_FIFO_OVERFLOW BIT(7)
129 #define FLEXCAN_IFLAG_RX_FIFO_WARN BIT(6)
130 #define FLEXCAN_IFLAG_RX_FIFO_AVAILABLE BIT(5)
131 #define FLEXCAN_IFLAG_DEFAULT \
132 (FLEXCAN_IFLAG_RX_FIFO_OVERFLOW | FLEXCAN_IFLAG_RX_FIFO_AVAILABLE | \
133 FLEXCAN_IFLAG_BUF(FLEXCAN_TX_BUF_ID))
135 /* FLEXCAN message buffers */
136 #define FLEXCAN_MB_CNT_CODE(x) (((x) & 0xf) << 24)
137 #define FLEXCAN_MB_CNT_SRR BIT(22)
138 #define FLEXCAN_MB_CNT_IDE BIT(21)
139 #define FLEXCAN_MB_CNT_RTR BIT(20)
140 #define FLEXCAN_MB_CNT_LENGTH(x) (((x) & 0xf) << 16)
141 #define FLEXCAN_MB_CNT_TIMESTAMP(x) ((x) & 0xffff)
143 #define FLEXCAN_MB_CODE_MASK (0xf0ffffff)
145 /* Structure of the message buffer */
152 /* Structure of the hardware registers */
153 struct flexcan_regs
{
156 u32 timer
; /* 0x08 */
157 u32 _reserved1
; /* 0x0c */
158 u32 rxgmask
; /* 0x10 */
159 u32 rx14mask
; /* 0x14 */
160 u32 rx15mask
; /* 0x18 */
163 u32 imask2
; /* 0x24 */
164 u32 imask1
; /* 0x28 */
165 u32 iflag2
; /* 0x2c */
166 u32 iflag1
; /* 0x30 */
168 struct flexcan_mb cantxfg
[64];
171 struct flexcan_priv
{
173 struct net_device
*dev
;
174 struct napi_struct napi
;
178 u32 reg_ctrl_default
;
181 struct flexcan_platform_data
*pdata
;
184 static struct can_bittiming_const flexcan_bittiming_const
= {
197 * Abstract off the read/write for arm versus ppc.
199 #if defined(__BIG_ENDIAN)
200 static inline u32
flexcan_read(void __iomem
*addr
)
202 return in_be32(addr
);
205 static inline void flexcan_write(u32 val
, void __iomem
*addr
)
210 static inline u32
flexcan_read(void __iomem
*addr
)
215 static inline void flexcan_write(u32 val
, void __iomem
*addr
)
222 * Swtich transceiver on or off
224 static void flexcan_transceiver_switch(const struct flexcan_priv
*priv
, int on
)
226 if (priv
->pdata
&& priv
->pdata
->transceiver_switch
)
227 priv
->pdata
->transceiver_switch(on
);
230 static inline int flexcan_has_and_handle_berr(const struct flexcan_priv
*priv
,
233 return (priv
->can
.ctrlmode
& CAN_CTRLMODE_BERR_REPORTING
) &&
234 (reg_esr
& FLEXCAN_ESR_ERR_BUS
);
237 static inline void flexcan_chip_enable(struct flexcan_priv
*priv
)
239 struct flexcan_regs __iomem
*regs
= priv
->base
;
242 reg
= flexcan_read(®s
->mcr
);
243 reg
&= ~FLEXCAN_MCR_MDIS
;
244 flexcan_write(reg
, ®s
->mcr
);
249 static inline void flexcan_chip_disable(struct flexcan_priv
*priv
)
251 struct flexcan_regs __iomem
*regs
= priv
->base
;
254 reg
= flexcan_read(®s
->mcr
);
255 reg
|= FLEXCAN_MCR_MDIS
;
256 flexcan_write(reg
, ®s
->mcr
);
259 static int flexcan_get_berr_counter(const struct net_device
*dev
,
260 struct can_berr_counter
*bec
)
262 const struct flexcan_priv
*priv
= netdev_priv(dev
);
263 struct flexcan_regs __iomem
*regs
= priv
->base
;
264 u32 reg
= flexcan_read(®s
->ecr
);
266 bec
->txerr
= (reg
>> 0) & 0xff;
267 bec
->rxerr
= (reg
>> 8) & 0xff;
272 static int flexcan_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
274 const struct flexcan_priv
*priv
= netdev_priv(dev
);
275 struct flexcan_regs __iomem
*regs
= priv
->base
;
276 struct can_frame
*cf
= (struct can_frame
*)skb
->data
;
278 u32 ctrl
= FLEXCAN_MB_CNT_CODE(0xc) | (cf
->can_dlc
<< 16);
280 if (can_dropped_invalid_skb(dev
, skb
))
283 netif_stop_queue(dev
);
285 if (cf
->can_id
& CAN_EFF_FLAG
) {
286 can_id
= cf
->can_id
& CAN_EFF_MASK
;
287 ctrl
|= FLEXCAN_MB_CNT_IDE
| FLEXCAN_MB_CNT_SRR
;
289 can_id
= (cf
->can_id
& CAN_SFF_MASK
) << 18;
292 if (cf
->can_id
& CAN_RTR_FLAG
)
293 ctrl
|= FLEXCAN_MB_CNT_RTR
;
295 if (cf
->can_dlc
> 0) {
296 u32 data
= be32_to_cpup((__be32
*)&cf
->data
[0]);
297 flexcan_write(data
, ®s
->cantxfg
[FLEXCAN_TX_BUF_ID
].data
[0]);
299 if (cf
->can_dlc
> 3) {
300 u32 data
= be32_to_cpup((__be32
*)&cf
->data
[4]);
301 flexcan_write(data
, ®s
->cantxfg
[FLEXCAN_TX_BUF_ID
].data
[1]);
304 can_put_echo_skb(skb
, dev
, 0);
306 flexcan_write(can_id
, ®s
->cantxfg
[FLEXCAN_TX_BUF_ID
].can_id
);
307 flexcan_write(ctrl
, ®s
->cantxfg
[FLEXCAN_TX_BUF_ID
].can_ctrl
);
312 static void do_bus_err(struct net_device
*dev
,
313 struct can_frame
*cf
, u32 reg_esr
)
315 struct flexcan_priv
*priv
= netdev_priv(dev
);
316 int rx_errors
= 0, tx_errors
= 0;
318 cf
->can_id
|= CAN_ERR_PROT
| CAN_ERR_BUSERROR
;
320 if (reg_esr
& FLEXCAN_ESR_BIT1_ERR
) {
321 netdev_dbg(dev
, "BIT1_ERR irq\n");
322 cf
->data
[2] |= CAN_ERR_PROT_BIT1
;
325 if (reg_esr
& FLEXCAN_ESR_BIT0_ERR
) {
326 netdev_dbg(dev
, "BIT0_ERR irq\n");
327 cf
->data
[2] |= CAN_ERR_PROT_BIT0
;
330 if (reg_esr
& FLEXCAN_ESR_ACK_ERR
) {
331 netdev_dbg(dev
, "ACK_ERR irq\n");
332 cf
->can_id
|= CAN_ERR_ACK
;
333 cf
->data
[3] |= CAN_ERR_PROT_LOC_ACK
;
336 if (reg_esr
& FLEXCAN_ESR_CRC_ERR
) {
337 netdev_dbg(dev
, "CRC_ERR irq\n");
338 cf
->data
[2] |= CAN_ERR_PROT_BIT
;
339 cf
->data
[3] |= CAN_ERR_PROT_LOC_CRC_SEQ
;
342 if (reg_esr
& FLEXCAN_ESR_FRM_ERR
) {
343 netdev_dbg(dev
, "FRM_ERR irq\n");
344 cf
->data
[2] |= CAN_ERR_PROT_FORM
;
347 if (reg_esr
& FLEXCAN_ESR_STF_ERR
) {
348 netdev_dbg(dev
, "STF_ERR irq\n");
349 cf
->data
[2] |= CAN_ERR_PROT_STUFF
;
353 priv
->can
.can_stats
.bus_error
++;
355 dev
->stats
.rx_errors
++;
357 dev
->stats
.tx_errors
++;
360 static int flexcan_poll_bus_err(struct net_device
*dev
, u32 reg_esr
)
363 struct can_frame
*cf
;
365 skb
= alloc_can_err_skb(dev
, &cf
);
369 do_bus_err(dev
, cf
, reg_esr
);
370 netif_receive_skb(skb
);
372 dev
->stats
.rx_packets
++;
373 dev
->stats
.rx_bytes
+= cf
->can_dlc
;
378 static void do_state(struct net_device
*dev
,
379 struct can_frame
*cf
, enum can_state new_state
)
381 struct flexcan_priv
*priv
= netdev_priv(dev
);
382 struct can_berr_counter bec
;
384 flexcan_get_berr_counter(dev
, &bec
);
386 switch (priv
->can
.state
) {
387 case CAN_STATE_ERROR_ACTIVE
:
390 * to : ERROR_WARNING, ERROR_PASSIVE, BUS_OFF
391 * => : there was a warning int
393 if (new_state
>= CAN_STATE_ERROR_WARNING
&&
394 new_state
<= CAN_STATE_BUS_OFF
) {
395 netdev_dbg(dev
, "Error Warning IRQ\n");
396 priv
->can
.can_stats
.error_warning
++;
398 cf
->can_id
|= CAN_ERR_CRTL
;
399 cf
->data
[1] = (bec
.txerr
> bec
.rxerr
) ?
400 CAN_ERR_CRTL_TX_WARNING
:
401 CAN_ERR_CRTL_RX_WARNING
;
403 case CAN_STATE_ERROR_WARNING
: /* fallthrough */
405 * from: ERROR_ACTIVE, ERROR_WARNING
406 * to : ERROR_PASSIVE, BUS_OFF
407 * => : error passive int
409 if (new_state
>= CAN_STATE_ERROR_PASSIVE
&&
410 new_state
<= CAN_STATE_BUS_OFF
) {
411 netdev_dbg(dev
, "Error Passive IRQ\n");
412 priv
->can
.can_stats
.error_passive
++;
414 cf
->can_id
|= CAN_ERR_CRTL
;
415 cf
->data
[1] = (bec
.txerr
> bec
.rxerr
) ?
416 CAN_ERR_CRTL_TX_PASSIVE
:
417 CAN_ERR_CRTL_RX_PASSIVE
;
420 case CAN_STATE_BUS_OFF
:
421 netdev_err(dev
, "BUG! "
422 "hardware recovered automatically from BUS_OFF\n");
428 /* process state changes depending on the new state */
430 case CAN_STATE_ERROR_ACTIVE
:
431 netdev_dbg(dev
, "Error Active\n");
432 cf
->can_id
|= CAN_ERR_PROT
;
433 cf
->data
[2] = CAN_ERR_PROT_ACTIVE
;
435 case CAN_STATE_BUS_OFF
:
436 cf
->can_id
|= CAN_ERR_BUSOFF
;
444 static int flexcan_poll_state(struct net_device
*dev
, u32 reg_esr
)
446 struct flexcan_priv
*priv
= netdev_priv(dev
);
448 struct can_frame
*cf
;
449 enum can_state new_state
;
452 flt
= reg_esr
& FLEXCAN_ESR_FLT_CONF_MASK
;
453 if (likely(flt
== FLEXCAN_ESR_FLT_CONF_ACTIVE
)) {
454 if (likely(!(reg_esr
& (FLEXCAN_ESR_TX_WRN
|
455 FLEXCAN_ESR_RX_WRN
))))
456 new_state
= CAN_STATE_ERROR_ACTIVE
;
458 new_state
= CAN_STATE_ERROR_WARNING
;
459 } else if (unlikely(flt
== FLEXCAN_ESR_FLT_CONF_PASSIVE
))
460 new_state
= CAN_STATE_ERROR_PASSIVE
;
462 new_state
= CAN_STATE_BUS_OFF
;
464 /* state hasn't changed */
465 if (likely(new_state
== priv
->can
.state
))
468 skb
= alloc_can_err_skb(dev
, &cf
);
472 do_state(dev
, cf
, new_state
);
473 priv
->can
.state
= new_state
;
474 netif_receive_skb(skb
);
476 dev
->stats
.rx_packets
++;
477 dev
->stats
.rx_bytes
+= cf
->can_dlc
;
482 static void flexcan_read_fifo(const struct net_device
*dev
,
483 struct can_frame
*cf
)
485 const struct flexcan_priv
*priv
= netdev_priv(dev
);
486 struct flexcan_regs __iomem
*regs
= priv
->base
;
487 struct flexcan_mb __iomem
*mb
= ®s
->cantxfg
[0];
488 u32 reg_ctrl
, reg_id
;
490 reg_ctrl
= flexcan_read(&mb
->can_ctrl
);
491 reg_id
= flexcan_read(&mb
->can_id
);
492 if (reg_ctrl
& FLEXCAN_MB_CNT_IDE
)
493 cf
->can_id
= ((reg_id
>> 0) & CAN_EFF_MASK
) | CAN_EFF_FLAG
;
495 cf
->can_id
= (reg_id
>> 18) & CAN_SFF_MASK
;
497 if (reg_ctrl
& FLEXCAN_MB_CNT_RTR
)
498 cf
->can_id
|= CAN_RTR_FLAG
;
499 cf
->can_dlc
= get_can_dlc((reg_ctrl
>> 16) & 0xf);
501 *(__be32
*)(cf
->data
+ 0) = cpu_to_be32(flexcan_read(&mb
->data
[0]));
502 *(__be32
*)(cf
->data
+ 4) = cpu_to_be32(flexcan_read(&mb
->data
[1]));
505 flexcan_write(FLEXCAN_IFLAG_RX_FIFO_AVAILABLE
, ®s
->iflag1
);
506 flexcan_read(®s
->timer
);
509 static int flexcan_read_frame(struct net_device
*dev
)
511 struct net_device_stats
*stats
= &dev
->stats
;
512 struct can_frame
*cf
;
515 skb
= alloc_can_skb(dev
, &cf
);
516 if (unlikely(!skb
)) {
521 flexcan_read_fifo(dev
, cf
);
522 netif_receive_skb(skb
);
525 stats
->rx_bytes
+= cf
->can_dlc
;
530 static int flexcan_poll(struct napi_struct
*napi
, int quota
)
532 struct net_device
*dev
= napi
->dev
;
533 const struct flexcan_priv
*priv
= netdev_priv(dev
);
534 struct flexcan_regs __iomem
*regs
= priv
->base
;
535 u32 reg_iflag1
, reg_esr
;
539 * The error bits are cleared on read,
540 * use saved value from irq handler.
542 reg_esr
= flexcan_read(®s
->esr
) | priv
->reg_esr
;
544 /* handle state changes */
545 work_done
+= flexcan_poll_state(dev
, reg_esr
);
548 reg_iflag1
= flexcan_read(®s
->iflag1
);
549 while (reg_iflag1
& FLEXCAN_IFLAG_RX_FIFO_AVAILABLE
&&
551 work_done
+= flexcan_read_frame(dev
);
552 reg_iflag1
= flexcan_read(®s
->iflag1
);
555 /* report bus errors */
556 if (flexcan_has_and_handle_berr(priv
, reg_esr
) && work_done
< quota
)
557 work_done
+= flexcan_poll_bus_err(dev
, reg_esr
);
559 if (work_done
< quota
) {
562 flexcan_write(FLEXCAN_IFLAG_DEFAULT
, ®s
->imask1
);
563 flexcan_write(priv
->reg_ctrl_default
, ®s
->ctrl
);
569 static irqreturn_t
flexcan_irq(int irq
, void *dev_id
)
571 struct net_device
*dev
= dev_id
;
572 struct net_device_stats
*stats
= &dev
->stats
;
573 struct flexcan_priv
*priv
= netdev_priv(dev
);
574 struct flexcan_regs __iomem
*regs
= priv
->base
;
575 u32 reg_iflag1
, reg_esr
;
577 reg_iflag1
= flexcan_read(®s
->iflag1
);
578 reg_esr
= flexcan_read(®s
->esr
);
579 /* ACK all bus error and state change IRQ sources */
580 if (reg_esr
& FLEXCAN_ESR_ALL_INT
)
581 flexcan_write(reg_esr
& FLEXCAN_ESR_ALL_INT
, ®s
->esr
);
584 * schedule NAPI in case of:
587 * - bus error IRQ and bus error reporting is activated
589 if ((reg_iflag1
& FLEXCAN_IFLAG_RX_FIFO_AVAILABLE
) ||
590 (reg_esr
& FLEXCAN_ESR_ERR_STATE
) ||
591 flexcan_has_and_handle_berr(priv
, reg_esr
)) {
593 * The error bits are cleared on read,
594 * save them for later use.
596 priv
->reg_esr
= reg_esr
& FLEXCAN_ESR_ERR_BUS
;
597 flexcan_write(FLEXCAN_IFLAG_DEFAULT
&
598 ~FLEXCAN_IFLAG_RX_FIFO_AVAILABLE
, ®s
->imask1
);
599 flexcan_write(priv
->reg_ctrl_default
& ~FLEXCAN_CTRL_ERR_ALL
,
601 napi_schedule(&priv
->napi
);
605 if (reg_iflag1
& FLEXCAN_IFLAG_RX_FIFO_OVERFLOW
) {
606 flexcan_write(FLEXCAN_IFLAG_RX_FIFO_OVERFLOW
, ®s
->iflag1
);
607 dev
->stats
.rx_over_errors
++;
608 dev
->stats
.rx_errors
++;
611 /* transmission complete interrupt */
612 if (reg_iflag1
& (1 << FLEXCAN_TX_BUF_ID
)) {
613 stats
->tx_bytes
+= can_get_echo_skb(dev
, 0);
615 flexcan_write((1 << FLEXCAN_TX_BUF_ID
), ®s
->iflag1
);
616 netif_wake_queue(dev
);
622 static void flexcan_set_bittiming(struct net_device
*dev
)
624 const struct flexcan_priv
*priv
= netdev_priv(dev
);
625 const struct can_bittiming
*bt
= &priv
->can
.bittiming
;
626 struct flexcan_regs __iomem
*regs
= priv
->base
;
629 reg
= flexcan_read(®s
->ctrl
);
630 reg
&= ~(FLEXCAN_CTRL_PRESDIV(0xff) |
631 FLEXCAN_CTRL_RJW(0x3) |
632 FLEXCAN_CTRL_PSEG1(0x7) |
633 FLEXCAN_CTRL_PSEG2(0x7) |
634 FLEXCAN_CTRL_PROPSEG(0x7) |
639 reg
|= FLEXCAN_CTRL_PRESDIV(bt
->brp
- 1) |
640 FLEXCAN_CTRL_PSEG1(bt
->phase_seg1
- 1) |
641 FLEXCAN_CTRL_PSEG2(bt
->phase_seg2
- 1) |
642 FLEXCAN_CTRL_RJW(bt
->sjw
- 1) |
643 FLEXCAN_CTRL_PROPSEG(bt
->prop_seg
- 1);
645 if (priv
->can
.ctrlmode
& CAN_CTRLMODE_LOOPBACK
)
646 reg
|= FLEXCAN_CTRL_LPB
;
647 if (priv
->can
.ctrlmode
& CAN_CTRLMODE_LISTENONLY
)
648 reg
|= FLEXCAN_CTRL_LOM
;
649 if (priv
->can
.ctrlmode
& CAN_CTRLMODE_3_SAMPLES
)
650 reg
|= FLEXCAN_CTRL_SMP
;
652 netdev_info(dev
, "writing ctrl=0x%08x\n", reg
);
653 flexcan_write(reg
, ®s
->ctrl
);
655 /* print chip status */
656 netdev_dbg(dev
, "%s: mcr=0x%08x ctrl=0x%08x\n", __func__
,
657 flexcan_read(®s
->mcr
), flexcan_read(®s
->ctrl
));
663 * this functions is entered with clocks enabled
666 static int flexcan_chip_start(struct net_device
*dev
)
668 struct flexcan_priv
*priv
= netdev_priv(dev
);
669 struct flexcan_regs __iomem
*regs
= priv
->base
;
671 u32 reg_mcr
, reg_ctrl
;
674 flexcan_chip_enable(priv
);
677 flexcan_write(FLEXCAN_MCR_SOFTRST
, ®s
->mcr
);
680 reg_mcr
= flexcan_read(®s
->mcr
);
681 if (reg_mcr
& FLEXCAN_MCR_SOFTRST
) {
682 netdev_err(dev
, "Failed to softreset can module (mcr=0x%08x)\n",
688 flexcan_set_bittiming(dev
);
696 * only supervisor access
702 reg_mcr
= flexcan_read(®s
->mcr
);
703 reg_mcr
&= ~FLEXCAN_MCR_MAXMB(0xff);
704 reg_mcr
|= FLEXCAN_MCR_FRZ
| FLEXCAN_MCR_FEN
| FLEXCAN_MCR_HALT
|
705 FLEXCAN_MCR_SUPV
| FLEXCAN_MCR_WRN_EN
|
706 FLEXCAN_MCR_IDAM_C
| FLEXCAN_MCR_SRX_DIS
|
707 FLEXCAN_MCR_MAXMB(FLEXCAN_TX_BUF_ID
);
708 netdev_dbg(dev
, "%s: writing mcr=0x%08x", __func__
, reg_mcr
);
709 flexcan_write(reg_mcr
, ®s
->mcr
);
714 * disable timer sync feature
716 * disable auto busoff recovery
717 * transmit lowest buffer first
719 * enable tx and rx warning interrupt
720 * enable bus off interrupt
721 * (== FLEXCAN_CTRL_ERR_STATE)
723 * _note_: we enable the "error interrupt"
724 * (FLEXCAN_CTRL_ERR_MSK), too. Otherwise we don't get any
725 * warning or bus passive interrupts.
727 reg_ctrl
= flexcan_read(®s
->ctrl
);
728 reg_ctrl
&= ~FLEXCAN_CTRL_TSYN
;
729 reg_ctrl
|= FLEXCAN_CTRL_BOFF_REC
| FLEXCAN_CTRL_LBUF
|
730 FLEXCAN_CTRL_ERR_STATE
| FLEXCAN_CTRL_ERR_MSK
;
732 /* save for later use */
733 priv
->reg_ctrl_default
= reg_ctrl
;
734 netdev_dbg(dev
, "%s: writing ctrl=0x%08x", __func__
, reg_ctrl
);
735 flexcan_write(reg_ctrl
, ®s
->ctrl
);
737 /* Abort any pending TX, mark Mailbox as INACTIVE */
738 flexcan_write(FLEXCAN_MB_CNT_CODE(0x4),
739 ®s
->cantxfg
[FLEXCAN_TX_BUF_ID
].can_ctrl
);
741 /* acceptance mask/acceptance code (accept everything) */
742 flexcan_write(0x0, ®s
->rxgmask
);
743 flexcan_write(0x0, ®s
->rx14mask
);
744 flexcan_write(0x0, ®s
->rx15mask
);
746 flexcan_transceiver_switch(priv
, 1);
748 /* synchronize with the can bus */
749 reg_mcr
= flexcan_read(®s
->mcr
);
750 reg_mcr
&= ~FLEXCAN_MCR_HALT
;
751 flexcan_write(reg_mcr
, ®s
->mcr
);
753 priv
->can
.state
= CAN_STATE_ERROR_ACTIVE
;
755 /* enable FIFO interrupts */
756 flexcan_write(FLEXCAN_IFLAG_DEFAULT
, ®s
->imask1
);
758 /* print chip status */
759 netdev_dbg(dev
, "%s: reading mcr=0x%08x ctrl=0x%08x\n", __func__
,
760 flexcan_read(®s
->mcr
), flexcan_read(®s
->ctrl
));
765 flexcan_chip_disable(priv
);
772 * this functions is entered with clocks enabled
775 static void flexcan_chip_stop(struct net_device
*dev
)
777 struct flexcan_priv
*priv
= netdev_priv(dev
);
778 struct flexcan_regs __iomem
*regs
= priv
->base
;
781 /* Disable all interrupts */
782 flexcan_write(0, ®s
->imask1
);
784 /* Disable + halt module */
785 reg
= flexcan_read(®s
->mcr
);
786 reg
|= FLEXCAN_MCR_MDIS
| FLEXCAN_MCR_HALT
;
787 flexcan_write(reg
, ®s
->mcr
);
789 flexcan_transceiver_switch(priv
, 0);
790 priv
->can
.state
= CAN_STATE_STOPPED
;
795 static int flexcan_open(struct net_device
*dev
)
797 struct flexcan_priv
*priv
= netdev_priv(dev
);
800 clk_prepare_enable(priv
->clk
);
802 err
= open_candev(dev
);
806 err
= request_irq(dev
->irq
, flexcan_irq
, IRQF_SHARED
, dev
->name
, dev
);
810 /* start chip and queuing */
811 err
= flexcan_chip_start(dev
);
814 napi_enable(&priv
->napi
);
815 netif_start_queue(dev
);
820 free_irq(dev
->irq
, dev
);
824 clk_disable_unprepare(priv
->clk
);
829 static int flexcan_close(struct net_device
*dev
)
831 struct flexcan_priv
*priv
= netdev_priv(dev
);
833 netif_stop_queue(dev
);
834 napi_disable(&priv
->napi
);
835 flexcan_chip_stop(dev
);
837 free_irq(dev
->irq
, dev
);
838 clk_disable_unprepare(priv
->clk
);
845 static int flexcan_set_mode(struct net_device
*dev
, enum can_mode mode
)
851 err
= flexcan_chip_start(dev
);
855 netif_wake_queue(dev
);
865 static const struct net_device_ops flexcan_netdev_ops
= {
866 .ndo_open
= flexcan_open
,
867 .ndo_stop
= flexcan_close
,
868 .ndo_start_xmit
= flexcan_start_xmit
,
871 static int __devinit
register_flexcandev(struct net_device
*dev
)
873 struct flexcan_priv
*priv
= netdev_priv(dev
);
874 struct flexcan_regs __iomem
*regs
= priv
->base
;
877 clk_prepare_enable(priv
->clk
);
879 /* select "bus clock", chip must be disabled */
880 flexcan_chip_disable(priv
);
881 reg
= flexcan_read(®s
->ctrl
);
882 reg
|= FLEXCAN_CTRL_CLK_SRC
;
883 flexcan_write(reg
, ®s
->ctrl
);
885 flexcan_chip_enable(priv
);
887 /* set freeze, halt and activate FIFO, restrict register access */
888 reg
= flexcan_read(®s
->mcr
);
889 reg
|= FLEXCAN_MCR_FRZ
| FLEXCAN_MCR_HALT
|
890 FLEXCAN_MCR_FEN
| FLEXCAN_MCR_SUPV
;
891 flexcan_write(reg
, ®s
->mcr
);
894 * Currently we only support newer versions of this core
895 * featuring a RX FIFO. Older cores found on some Coldfire
896 * derivates are not yet supported.
898 reg
= flexcan_read(®s
->mcr
);
899 if (!(reg
& FLEXCAN_MCR_FEN
)) {
900 netdev_err(dev
, "Could not enable RX FIFO, unsupported core\n");
905 err
= register_candev(dev
);
908 /* disable core and turn off clocks */
909 flexcan_chip_disable(priv
);
910 clk_disable_unprepare(priv
->clk
);
915 static void __devexit
unregister_flexcandev(struct net_device
*dev
)
917 unregister_candev(dev
);
920 static int __devinit
flexcan_probe(struct platform_device
*pdev
)
922 struct net_device
*dev
;
923 struct flexcan_priv
*priv
;
924 struct resource
*mem
;
925 struct clk
*clk
= NULL
;
927 resource_size_t mem_size
;
931 if (pdev
->dev
.of_node
) {
932 const __be32
*clock_freq_p
;
934 clock_freq_p
= of_get_property(pdev
->dev
.of_node
,
935 "clock-frequency", NULL
);
937 clock_freq
= be32_to_cpup(clock_freq_p
);
941 clk
= clk_get(&pdev
->dev
, NULL
);
943 dev_err(&pdev
->dev
, "no clock defined\n");
947 clock_freq
= clk_get_rate(clk
);
950 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
951 irq
= platform_get_irq(pdev
, 0);
952 if (!mem
|| irq
<= 0) {
957 mem_size
= resource_size(mem
);
958 if (!request_mem_region(mem
->start
, mem_size
, pdev
->name
)) {
963 base
= ioremap(mem
->start
, mem_size
);
969 dev
= alloc_candev(sizeof(struct flexcan_priv
), 1);
975 dev
->netdev_ops
= &flexcan_netdev_ops
;
977 dev
->flags
|= IFF_ECHO
;
979 priv
= netdev_priv(dev
);
980 priv
->can
.clock
.freq
= clock_freq
;
981 priv
->can
.bittiming_const
= &flexcan_bittiming_const
;
982 priv
->can
.do_set_mode
= flexcan_set_mode
;
983 priv
->can
.do_get_berr_counter
= flexcan_get_berr_counter
;
984 priv
->can
.ctrlmode_supported
= CAN_CTRLMODE_LOOPBACK
|
985 CAN_CTRLMODE_LISTENONLY
| CAN_CTRLMODE_3_SAMPLES
|
986 CAN_CTRLMODE_BERR_REPORTING
;
990 priv
->pdata
= pdev
->dev
.platform_data
;
992 netif_napi_add(dev
, &priv
->napi
, flexcan_poll
, FLEXCAN_NAPI_WEIGHT
);
994 dev_set_drvdata(&pdev
->dev
, dev
);
995 SET_NETDEV_DEV(dev
, &pdev
->dev
);
997 err
= register_flexcandev(dev
);
999 dev_err(&pdev
->dev
, "registering netdev failed\n");
1000 goto failed_register
;
1003 dev_info(&pdev
->dev
, "device registered (reg_base=%p, irq=%d)\n",
1004 priv
->base
, dev
->irq
);
1013 release_mem_region(mem
->start
, mem_size
);
1021 static int __devexit
flexcan_remove(struct platform_device
*pdev
)
1023 struct net_device
*dev
= platform_get_drvdata(pdev
);
1024 struct flexcan_priv
*priv
= netdev_priv(dev
);
1025 struct resource
*mem
;
1027 unregister_flexcandev(dev
);
1028 platform_set_drvdata(pdev
, NULL
);
1029 iounmap(priv
->base
);
1031 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1032 release_mem_region(mem
->start
, resource_size(mem
));
1042 static struct of_device_id flexcan_of_match
[] = {
1044 .compatible
= "fsl,p1010-flexcan",
1049 static struct platform_driver flexcan_driver
= {
1052 .owner
= THIS_MODULE
,
1053 .of_match_table
= flexcan_of_match
,
1055 .probe
= flexcan_probe
,
1056 .remove
= __devexit_p(flexcan_remove
),
1059 module_platform_driver(flexcan_driver
);
1061 MODULE_AUTHOR("Sascha Hauer <kernel@pengutronix.de>, "
1062 "Marc Kleine-Budde <kernel@pengutronix.de>");
1063 MODULE_LICENSE("GPL v2");
1064 MODULE_DESCRIPTION("CAN port driver for flexcan based chip");