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
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/of_device.h>
38 #include <linux/platform_device.h>
39 #include <linux/pinctrl/consumer.h>
41 #define DRV_NAME "flexcan"
43 /* 8 for RX fifo and 2 error handling */
44 #define FLEXCAN_NAPI_WEIGHT (8 + 2)
46 /* FLEXCAN module configuration register (CANMCR) bits */
47 #define FLEXCAN_MCR_MDIS BIT(31)
48 #define FLEXCAN_MCR_FRZ BIT(30)
49 #define FLEXCAN_MCR_FEN BIT(29)
50 #define FLEXCAN_MCR_HALT BIT(28)
51 #define FLEXCAN_MCR_NOT_RDY BIT(27)
52 #define FLEXCAN_MCR_WAK_MSK BIT(26)
53 #define FLEXCAN_MCR_SOFTRST BIT(25)
54 #define FLEXCAN_MCR_FRZ_ACK BIT(24)
55 #define FLEXCAN_MCR_SUPV BIT(23)
56 #define FLEXCAN_MCR_SLF_WAK BIT(22)
57 #define FLEXCAN_MCR_WRN_EN BIT(21)
58 #define FLEXCAN_MCR_LPM_ACK BIT(20)
59 #define FLEXCAN_MCR_WAK_SRC BIT(19)
60 #define FLEXCAN_MCR_DOZE BIT(18)
61 #define FLEXCAN_MCR_SRX_DIS BIT(17)
62 #define FLEXCAN_MCR_BCC BIT(16)
63 #define FLEXCAN_MCR_LPRIO_EN BIT(13)
64 #define FLEXCAN_MCR_AEN BIT(12)
65 #define FLEXCAN_MCR_MAXMB(x) ((x) & 0xf)
66 #define FLEXCAN_MCR_IDAM_A (0 << 8)
67 #define FLEXCAN_MCR_IDAM_B (1 << 8)
68 #define FLEXCAN_MCR_IDAM_C (2 << 8)
69 #define FLEXCAN_MCR_IDAM_D (3 << 8)
71 /* FLEXCAN control register (CANCTRL) bits */
72 #define FLEXCAN_CTRL_PRESDIV(x) (((x) & 0xff) << 24)
73 #define FLEXCAN_CTRL_RJW(x) (((x) & 0x03) << 22)
74 #define FLEXCAN_CTRL_PSEG1(x) (((x) & 0x07) << 19)
75 #define FLEXCAN_CTRL_PSEG2(x) (((x) & 0x07) << 16)
76 #define FLEXCAN_CTRL_BOFF_MSK BIT(15)
77 #define FLEXCAN_CTRL_ERR_MSK BIT(14)
78 #define FLEXCAN_CTRL_CLK_SRC BIT(13)
79 #define FLEXCAN_CTRL_LPB BIT(12)
80 #define FLEXCAN_CTRL_TWRN_MSK BIT(11)
81 #define FLEXCAN_CTRL_RWRN_MSK BIT(10)
82 #define FLEXCAN_CTRL_SMP BIT(7)
83 #define FLEXCAN_CTRL_BOFF_REC BIT(6)
84 #define FLEXCAN_CTRL_TSYN BIT(5)
85 #define FLEXCAN_CTRL_LBUF BIT(4)
86 #define FLEXCAN_CTRL_LOM BIT(3)
87 #define FLEXCAN_CTRL_PROPSEG(x) ((x) & 0x07)
88 #define FLEXCAN_CTRL_ERR_BUS (FLEXCAN_CTRL_ERR_MSK)
89 #define FLEXCAN_CTRL_ERR_STATE \
90 (FLEXCAN_CTRL_TWRN_MSK | FLEXCAN_CTRL_RWRN_MSK | \
91 FLEXCAN_CTRL_BOFF_MSK)
92 #define FLEXCAN_CTRL_ERR_ALL \
93 (FLEXCAN_CTRL_ERR_BUS | FLEXCAN_CTRL_ERR_STATE)
95 /* FLEXCAN error and status register (ESR) bits */
96 #define FLEXCAN_ESR_TWRN_INT BIT(17)
97 #define FLEXCAN_ESR_RWRN_INT BIT(16)
98 #define FLEXCAN_ESR_BIT1_ERR BIT(15)
99 #define FLEXCAN_ESR_BIT0_ERR BIT(14)
100 #define FLEXCAN_ESR_ACK_ERR BIT(13)
101 #define FLEXCAN_ESR_CRC_ERR BIT(12)
102 #define FLEXCAN_ESR_FRM_ERR BIT(11)
103 #define FLEXCAN_ESR_STF_ERR BIT(10)
104 #define FLEXCAN_ESR_TX_WRN BIT(9)
105 #define FLEXCAN_ESR_RX_WRN BIT(8)
106 #define FLEXCAN_ESR_IDLE BIT(7)
107 #define FLEXCAN_ESR_TXRX BIT(6)
108 #define FLEXCAN_EST_FLT_CONF_SHIFT (4)
109 #define FLEXCAN_ESR_FLT_CONF_MASK (0x3 << FLEXCAN_EST_FLT_CONF_SHIFT)
110 #define FLEXCAN_ESR_FLT_CONF_ACTIVE (0x0 << FLEXCAN_EST_FLT_CONF_SHIFT)
111 #define FLEXCAN_ESR_FLT_CONF_PASSIVE (0x1 << FLEXCAN_EST_FLT_CONF_SHIFT)
112 #define FLEXCAN_ESR_BOFF_INT BIT(2)
113 #define FLEXCAN_ESR_ERR_INT BIT(1)
114 #define FLEXCAN_ESR_WAK_INT BIT(0)
115 #define FLEXCAN_ESR_ERR_BUS \
116 (FLEXCAN_ESR_BIT1_ERR | FLEXCAN_ESR_BIT0_ERR | \
117 FLEXCAN_ESR_ACK_ERR | FLEXCAN_ESR_CRC_ERR | \
118 FLEXCAN_ESR_FRM_ERR | FLEXCAN_ESR_STF_ERR)
119 #define FLEXCAN_ESR_ERR_STATE \
120 (FLEXCAN_ESR_TWRN_INT | FLEXCAN_ESR_RWRN_INT | FLEXCAN_ESR_BOFF_INT)
121 #define FLEXCAN_ESR_ERR_ALL \
122 (FLEXCAN_ESR_ERR_BUS | FLEXCAN_ESR_ERR_STATE)
123 #define FLEXCAN_ESR_ALL_INT \
124 (FLEXCAN_ESR_TWRN_INT | FLEXCAN_ESR_RWRN_INT | \
125 FLEXCAN_ESR_BOFF_INT | FLEXCAN_ESR_ERR_INT)
127 /* FLEXCAN interrupt flag register (IFLAG) bits */
128 #define FLEXCAN_TX_BUF_ID 8
129 #define FLEXCAN_IFLAG_BUF(x) BIT(x)
130 #define FLEXCAN_IFLAG_RX_FIFO_OVERFLOW BIT(7)
131 #define FLEXCAN_IFLAG_RX_FIFO_WARN BIT(6)
132 #define FLEXCAN_IFLAG_RX_FIFO_AVAILABLE BIT(5)
133 #define FLEXCAN_IFLAG_DEFAULT \
134 (FLEXCAN_IFLAG_RX_FIFO_OVERFLOW | FLEXCAN_IFLAG_RX_FIFO_AVAILABLE | \
135 FLEXCAN_IFLAG_BUF(FLEXCAN_TX_BUF_ID))
137 /* FLEXCAN message buffers */
138 #define FLEXCAN_MB_CNT_CODE(x) (((x) & 0xf) << 24)
139 #define FLEXCAN_MB_CNT_SRR BIT(22)
140 #define FLEXCAN_MB_CNT_IDE BIT(21)
141 #define FLEXCAN_MB_CNT_RTR BIT(20)
142 #define FLEXCAN_MB_CNT_LENGTH(x) (((x) & 0xf) << 16)
143 #define FLEXCAN_MB_CNT_TIMESTAMP(x) ((x) & 0xffff)
145 #define FLEXCAN_MB_CODE_MASK (0xf0ffffff)
148 * FLEXCAN hardware feature flags
150 * Below is some version info we got:
151 * SOC Version IP-Version Glitch- [TR]WRN_INT
153 * MX25 FlexCAN2 03.00.00.00 no no
154 * MX28 FlexCAN2 03.00.04.00 yes yes
155 * MX35 FlexCAN2 03.00.00.00 no no
156 * MX53 FlexCAN2 03.00.00.00 yes no
157 * MX6s FlexCAN3 10.00.12.00 yes yes
159 * Some SOCs do not have the RX_WARN & TX_WARN interrupt line connected.
161 #define FLEXCAN_HAS_V10_FEATURES BIT(1) /* For core version >= 10 */
162 #define FLEXCAN_HAS_BROKEN_ERR_STATE BIT(2) /* [TR]WRN_INT not connected */
164 /* Structure of the message buffer */
171 /* Structure of the hardware registers */
172 struct flexcan_regs {
175 u32 timer; /* 0x08 */
176 u32 _reserved1; /* 0x0c */
177 u32 rxgmask; /* 0x10 */
178 u32 rx14mask; /* 0x14 */
179 u32 rx15mask; /* 0x18 */
182 u32 imask2; /* 0x24 */
183 u32 imask1; /* 0x28 */
184 u32 iflag2; /* 0x2c */
185 u32 iflag1; /* 0x30 */
188 u32 imeur; /* 0x3c */
191 u32 rxfgmask; /* 0x48 */
192 u32 rxfir; /* 0x4c */
194 struct flexcan_mb cantxfg[64];
197 struct flexcan_devtype_data {
198 u32 features; /* hardware controller features */
201 struct flexcan_priv {
203 struct net_device *dev;
204 struct napi_struct napi;
208 u32 reg_ctrl_default;
212 struct flexcan_platform_data *pdata;
213 const struct flexcan_devtype_data *devtype_data;
216 static struct flexcan_devtype_data fsl_p1010_devtype_data = {
217 .features = FLEXCAN_HAS_BROKEN_ERR_STATE,
219 static struct flexcan_devtype_data fsl_imx28_devtype_data;
220 static struct flexcan_devtype_data fsl_imx6q_devtype_data = {
221 .features = FLEXCAN_HAS_V10_FEATURES,
224 static const struct can_bittiming_const flexcan_bittiming_const = {
237 * Abstract off the read/write for arm versus ppc.
239 #if defined(__BIG_ENDIAN)
240 static inline u32 flexcan_read(void __iomem *addr)
242 return in_be32(addr);
245 static inline void flexcan_write(u32 val, void __iomem *addr)
250 static inline u32 flexcan_read(void __iomem *addr)
255 static inline void flexcan_write(u32 val, void __iomem *addr)
262 * Swtich transceiver on or off
264 static void flexcan_transceiver_switch(const struct flexcan_priv *priv, int on)
266 if (priv->pdata && priv->pdata->transceiver_switch)
267 priv->pdata->transceiver_switch(on);
270 static inline int flexcan_has_and_handle_berr(const struct flexcan_priv *priv,
273 return (priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING) &&
274 (reg_esr & FLEXCAN_ESR_ERR_BUS);
277 static inline void flexcan_chip_enable(struct flexcan_priv *priv)
279 struct flexcan_regs __iomem *regs = priv->base;
282 reg = flexcan_read(®s->mcr);
283 reg &= ~FLEXCAN_MCR_MDIS;
284 flexcan_write(reg, ®s->mcr);
289 static inline void flexcan_chip_disable(struct flexcan_priv *priv)
291 struct flexcan_regs __iomem *regs = priv->base;
294 reg = flexcan_read(®s->mcr);
295 reg |= FLEXCAN_MCR_MDIS;
296 flexcan_write(reg, ®s->mcr);
299 static int flexcan_get_berr_counter(const struct net_device *dev,
300 struct can_berr_counter *bec)
302 const struct flexcan_priv *priv = netdev_priv(dev);
303 struct flexcan_regs __iomem *regs = priv->base;
304 u32 reg = flexcan_read(®s->ecr);
306 bec->txerr = (reg >> 0) & 0xff;
307 bec->rxerr = (reg >> 8) & 0xff;
312 static int flexcan_start_xmit(struct sk_buff *skb, struct net_device *dev)
314 const struct flexcan_priv *priv = netdev_priv(dev);
315 struct flexcan_regs __iomem *regs = priv->base;
316 struct can_frame *cf = (struct can_frame *)skb->data;
318 u32 ctrl = FLEXCAN_MB_CNT_CODE(0xc) | (cf->can_dlc << 16);
320 if (can_dropped_invalid_skb(dev, skb))
323 netif_stop_queue(dev);
325 if (cf->can_id & CAN_EFF_FLAG) {
326 can_id = cf->can_id & CAN_EFF_MASK;
327 ctrl |= FLEXCAN_MB_CNT_IDE | FLEXCAN_MB_CNT_SRR;
329 can_id = (cf->can_id & CAN_SFF_MASK) << 18;
332 if (cf->can_id & CAN_RTR_FLAG)
333 ctrl |= FLEXCAN_MB_CNT_RTR;
335 if (cf->can_dlc > 0) {
336 u32 data = be32_to_cpup((__be32 *)&cf->data[0]);
337 flexcan_write(data, ®s->cantxfg[FLEXCAN_TX_BUF_ID].data[0]);
339 if (cf->can_dlc > 3) {
340 u32 data = be32_to_cpup((__be32 *)&cf->data[4]);
341 flexcan_write(data, ®s->cantxfg[FLEXCAN_TX_BUF_ID].data[1]);
344 can_put_echo_skb(skb, dev, 0);
346 flexcan_write(can_id, ®s->cantxfg[FLEXCAN_TX_BUF_ID].can_id);
347 flexcan_write(ctrl, ®s->cantxfg[FLEXCAN_TX_BUF_ID].can_ctrl);
352 static void do_bus_err(struct net_device *dev,
353 struct can_frame *cf, u32 reg_esr)
355 struct flexcan_priv *priv = netdev_priv(dev);
356 int rx_errors = 0, tx_errors = 0;
358 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
360 if (reg_esr & FLEXCAN_ESR_BIT1_ERR) {
361 netdev_dbg(dev, "BIT1_ERR irq\n");
362 cf->data[2] |= CAN_ERR_PROT_BIT1;
365 if (reg_esr & FLEXCAN_ESR_BIT0_ERR) {
366 netdev_dbg(dev, "BIT0_ERR irq\n");
367 cf->data[2] |= CAN_ERR_PROT_BIT0;
370 if (reg_esr & FLEXCAN_ESR_ACK_ERR) {
371 netdev_dbg(dev, "ACK_ERR irq\n");
372 cf->can_id |= CAN_ERR_ACK;
373 cf->data[3] |= CAN_ERR_PROT_LOC_ACK;
376 if (reg_esr & FLEXCAN_ESR_CRC_ERR) {
377 netdev_dbg(dev, "CRC_ERR irq\n");
378 cf->data[2] |= CAN_ERR_PROT_BIT;
379 cf->data[3] |= CAN_ERR_PROT_LOC_CRC_SEQ;
382 if (reg_esr & FLEXCAN_ESR_FRM_ERR) {
383 netdev_dbg(dev, "FRM_ERR irq\n");
384 cf->data[2] |= CAN_ERR_PROT_FORM;
387 if (reg_esr & FLEXCAN_ESR_STF_ERR) {
388 netdev_dbg(dev, "STF_ERR irq\n");
389 cf->data[2] |= CAN_ERR_PROT_STUFF;
393 priv->can.can_stats.bus_error++;
395 dev->stats.rx_errors++;
397 dev->stats.tx_errors++;
400 static int flexcan_poll_bus_err(struct net_device *dev, u32 reg_esr)
403 struct can_frame *cf;
405 skb = alloc_can_err_skb(dev, &cf);
409 do_bus_err(dev, cf, reg_esr);
410 netif_receive_skb(skb);
412 dev->stats.rx_packets++;
413 dev->stats.rx_bytes += cf->can_dlc;
418 static void do_state(struct net_device *dev,
419 struct can_frame *cf, enum can_state new_state)
421 struct flexcan_priv *priv = netdev_priv(dev);
422 struct can_berr_counter bec;
424 flexcan_get_berr_counter(dev, &bec);
426 switch (priv->can.state) {
427 case CAN_STATE_ERROR_ACTIVE:
430 * to : ERROR_WARNING, ERROR_PASSIVE, BUS_OFF
431 * => : there was a warning int
433 if (new_state >= CAN_STATE_ERROR_WARNING &&
434 new_state <= CAN_STATE_BUS_OFF) {
435 netdev_dbg(dev, "Error Warning IRQ\n");
436 priv->can.can_stats.error_warning++;
438 cf->can_id |= CAN_ERR_CRTL;
439 cf->data[1] = (bec.txerr > bec.rxerr) ?
440 CAN_ERR_CRTL_TX_WARNING :
441 CAN_ERR_CRTL_RX_WARNING;
443 case CAN_STATE_ERROR_WARNING: /* fallthrough */
445 * from: ERROR_ACTIVE, ERROR_WARNING
446 * to : ERROR_PASSIVE, BUS_OFF
447 * => : error passive int
449 if (new_state >= CAN_STATE_ERROR_PASSIVE &&
450 new_state <= CAN_STATE_BUS_OFF) {
451 netdev_dbg(dev, "Error Passive IRQ\n");
452 priv->can.can_stats.error_passive++;
454 cf->can_id |= CAN_ERR_CRTL;
455 cf->data[1] = (bec.txerr > bec.rxerr) ?
456 CAN_ERR_CRTL_TX_PASSIVE :
457 CAN_ERR_CRTL_RX_PASSIVE;
460 case CAN_STATE_BUS_OFF:
461 netdev_err(dev, "BUG! "
462 "hardware recovered automatically from BUS_OFF\n");
468 /* process state changes depending on the new state */
470 case CAN_STATE_ERROR_ACTIVE:
471 netdev_dbg(dev, "Error Active\n");
472 cf->can_id |= CAN_ERR_PROT;
473 cf->data[2] = CAN_ERR_PROT_ACTIVE;
475 case CAN_STATE_BUS_OFF:
476 cf->can_id |= CAN_ERR_BUSOFF;
484 static int flexcan_poll_state(struct net_device *dev, u32 reg_esr)
486 struct flexcan_priv *priv = netdev_priv(dev);
488 struct can_frame *cf;
489 enum can_state new_state;
492 flt = reg_esr & FLEXCAN_ESR_FLT_CONF_MASK;
493 if (likely(flt == FLEXCAN_ESR_FLT_CONF_ACTIVE)) {
494 if (likely(!(reg_esr & (FLEXCAN_ESR_TX_WRN |
495 FLEXCAN_ESR_RX_WRN))))
496 new_state = CAN_STATE_ERROR_ACTIVE;
498 new_state = CAN_STATE_ERROR_WARNING;
499 } else if (unlikely(flt == FLEXCAN_ESR_FLT_CONF_PASSIVE))
500 new_state = CAN_STATE_ERROR_PASSIVE;
502 new_state = CAN_STATE_BUS_OFF;
504 /* state hasn't changed */
505 if (likely(new_state == priv->can.state))
508 skb = alloc_can_err_skb(dev, &cf);
512 do_state(dev, cf, new_state);
513 priv->can.state = new_state;
514 netif_receive_skb(skb);
516 dev->stats.rx_packets++;
517 dev->stats.rx_bytes += cf->can_dlc;
522 static void flexcan_read_fifo(const struct net_device *dev,
523 struct can_frame *cf)
525 const struct flexcan_priv *priv = netdev_priv(dev);
526 struct flexcan_regs __iomem *regs = priv->base;
527 struct flexcan_mb __iomem *mb = ®s->cantxfg[0];
528 u32 reg_ctrl, reg_id;
530 reg_ctrl = flexcan_read(&mb->can_ctrl);
531 reg_id = flexcan_read(&mb->can_id);
532 if (reg_ctrl & FLEXCAN_MB_CNT_IDE)
533 cf->can_id = ((reg_id >> 0) & CAN_EFF_MASK) | CAN_EFF_FLAG;
535 cf->can_id = (reg_id >> 18) & CAN_SFF_MASK;
537 if (reg_ctrl & FLEXCAN_MB_CNT_RTR)
538 cf->can_id |= CAN_RTR_FLAG;
539 cf->can_dlc = get_can_dlc((reg_ctrl >> 16) & 0xf);
541 *(__be32 *)(cf->data + 0) = cpu_to_be32(flexcan_read(&mb->data[0]));
542 *(__be32 *)(cf->data + 4) = cpu_to_be32(flexcan_read(&mb->data[1]));
545 flexcan_write(FLEXCAN_IFLAG_RX_FIFO_AVAILABLE, ®s->iflag1);
546 flexcan_read(®s->timer);
549 static int flexcan_read_frame(struct net_device *dev)
551 struct net_device_stats *stats = &dev->stats;
552 struct can_frame *cf;
555 skb = alloc_can_skb(dev, &cf);
556 if (unlikely(!skb)) {
561 flexcan_read_fifo(dev, cf);
562 netif_receive_skb(skb);
565 stats->rx_bytes += cf->can_dlc;
570 static int flexcan_poll(struct napi_struct *napi, int quota)
572 struct net_device *dev = napi->dev;
573 const struct flexcan_priv *priv = netdev_priv(dev);
574 struct flexcan_regs __iomem *regs = priv->base;
575 u32 reg_iflag1, reg_esr;
579 * The error bits are cleared on read,
580 * use saved value from irq handler.
582 reg_esr = flexcan_read(®s->esr) | priv->reg_esr;
584 /* handle state changes */
585 work_done += flexcan_poll_state(dev, reg_esr);
588 reg_iflag1 = flexcan_read(®s->iflag1);
589 while (reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_AVAILABLE &&
591 work_done += flexcan_read_frame(dev);
592 reg_iflag1 = flexcan_read(®s->iflag1);
595 /* report bus errors */
596 if (flexcan_has_and_handle_berr(priv, reg_esr) && work_done < quota)
597 work_done += flexcan_poll_bus_err(dev, reg_esr);
599 if (work_done < quota) {
602 flexcan_write(FLEXCAN_IFLAG_DEFAULT, ®s->imask1);
603 flexcan_write(priv->reg_ctrl_default, ®s->ctrl);
609 static irqreturn_t flexcan_irq(int irq, void *dev_id)
611 struct net_device *dev = dev_id;
612 struct net_device_stats *stats = &dev->stats;
613 struct flexcan_priv *priv = netdev_priv(dev);
614 struct flexcan_regs __iomem *regs = priv->base;
615 u32 reg_iflag1, reg_esr;
617 reg_iflag1 = flexcan_read(®s->iflag1);
618 reg_esr = flexcan_read(®s->esr);
619 /* ACK all bus error and state change IRQ sources */
620 if (reg_esr & FLEXCAN_ESR_ALL_INT)
621 flexcan_write(reg_esr & FLEXCAN_ESR_ALL_INT, ®s->esr);
624 * schedule NAPI in case of:
627 * - bus error IRQ and bus error reporting is activated
629 if ((reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_AVAILABLE) ||
630 (reg_esr & FLEXCAN_ESR_ERR_STATE) ||
631 flexcan_has_and_handle_berr(priv, reg_esr)) {
633 * The error bits are cleared on read,
634 * save them for later use.
636 priv->reg_esr = reg_esr & FLEXCAN_ESR_ERR_BUS;
637 flexcan_write(FLEXCAN_IFLAG_DEFAULT &
638 ~FLEXCAN_IFLAG_RX_FIFO_AVAILABLE, ®s->imask1);
639 flexcan_write(priv->reg_ctrl_default & ~FLEXCAN_CTRL_ERR_ALL,
641 napi_schedule(&priv->napi);
645 if (reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_OVERFLOW) {
646 flexcan_write(FLEXCAN_IFLAG_RX_FIFO_OVERFLOW, ®s->iflag1);
647 dev->stats.rx_over_errors++;
648 dev->stats.rx_errors++;
651 /* transmission complete interrupt */
652 if (reg_iflag1 & (1 << FLEXCAN_TX_BUF_ID)) {
653 stats->tx_bytes += can_get_echo_skb(dev, 0);
655 flexcan_write((1 << FLEXCAN_TX_BUF_ID), ®s->iflag1);
656 netif_wake_queue(dev);
662 static void flexcan_set_bittiming(struct net_device *dev)
664 const struct flexcan_priv *priv = netdev_priv(dev);
665 const struct can_bittiming *bt = &priv->can.bittiming;
666 struct flexcan_regs __iomem *regs = priv->base;
669 reg = flexcan_read(®s->ctrl);
670 reg &= ~(FLEXCAN_CTRL_PRESDIV(0xff) |
671 FLEXCAN_CTRL_RJW(0x3) |
672 FLEXCAN_CTRL_PSEG1(0x7) |
673 FLEXCAN_CTRL_PSEG2(0x7) |
674 FLEXCAN_CTRL_PROPSEG(0x7) |
679 reg |= FLEXCAN_CTRL_PRESDIV(bt->brp - 1) |
680 FLEXCAN_CTRL_PSEG1(bt->phase_seg1 - 1) |
681 FLEXCAN_CTRL_PSEG2(bt->phase_seg2 - 1) |
682 FLEXCAN_CTRL_RJW(bt->sjw - 1) |
683 FLEXCAN_CTRL_PROPSEG(bt->prop_seg - 1);
685 if (priv->can.ctrlmode & CAN_CTRLMODE_LOOPBACK)
686 reg |= FLEXCAN_CTRL_LPB;
687 if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)
688 reg |= FLEXCAN_CTRL_LOM;
689 if (priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES)
690 reg |= FLEXCAN_CTRL_SMP;
692 netdev_info(dev, "writing ctrl=0x%08x\n", reg);
693 flexcan_write(reg, ®s->ctrl);
695 /* print chip status */
696 netdev_dbg(dev, "%s: mcr=0x%08x ctrl=0x%08x\n", __func__,
697 flexcan_read(®s->mcr), flexcan_read(®s->ctrl));
703 * this functions is entered with clocks enabled
706 static int flexcan_chip_start(struct net_device *dev)
708 struct flexcan_priv *priv = netdev_priv(dev);
709 struct flexcan_regs __iomem *regs = priv->base;
712 u32 reg_mcr, reg_ctrl;
715 flexcan_chip_enable(priv);
718 flexcan_write(FLEXCAN_MCR_SOFTRST, ®s->mcr);
721 reg_mcr = flexcan_read(®s->mcr);
722 if (reg_mcr & FLEXCAN_MCR_SOFTRST) {
723 netdev_err(dev, "Failed to softreset can module (mcr=0x%08x)\n",
729 flexcan_set_bittiming(dev);
737 * only supervisor access
743 reg_mcr = flexcan_read(®s->mcr);
744 reg_mcr |= FLEXCAN_MCR_FRZ | FLEXCAN_MCR_FEN | FLEXCAN_MCR_HALT |
745 FLEXCAN_MCR_SUPV | FLEXCAN_MCR_WRN_EN |
746 FLEXCAN_MCR_IDAM_C | FLEXCAN_MCR_SRX_DIS;
747 netdev_dbg(dev, "%s: writing mcr=0x%08x", __func__, reg_mcr);
748 flexcan_write(reg_mcr, ®s->mcr);
753 * disable timer sync feature
755 * disable auto busoff recovery
756 * transmit lowest buffer first
758 * enable tx and rx warning interrupt
759 * enable bus off interrupt
760 * (== FLEXCAN_CTRL_ERR_STATE)
762 reg_ctrl = flexcan_read(®s->ctrl);
763 reg_ctrl &= ~FLEXCAN_CTRL_TSYN;
764 reg_ctrl |= FLEXCAN_CTRL_BOFF_REC | FLEXCAN_CTRL_LBUF |
765 FLEXCAN_CTRL_ERR_STATE;
767 * enable the "error interrupt" (FLEXCAN_CTRL_ERR_MSK),
768 * on most Flexcan cores, too. Otherwise we don't get
769 * any error warning or passive interrupts.
771 if (priv->devtype_data->features & FLEXCAN_HAS_BROKEN_ERR_STATE ||
772 priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING)
773 reg_ctrl |= FLEXCAN_CTRL_ERR_MSK;
775 /* save for later use */
776 priv->reg_ctrl_default = reg_ctrl;
777 netdev_dbg(dev, "%s: writing ctrl=0x%08x", __func__, reg_ctrl);
778 flexcan_write(reg_ctrl, ®s->ctrl);
780 for (i = 0; i < ARRAY_SIZE(regs->cantxfg); i++) {
781 flexcan_write(0, ®s->cantxfg[i].can_ctrl);
782 flexcan_write(0, ®s->cantxfg[i].can_id);
783 flexcan_write(0, ®s->cantxfg[i].data[0]);
784 flexcan_write(0, ®s->cantxfg[i].data[1]);
786 /* put MB into rx queue */
787 flexcan_write(FLEXCAN_MB_CNT_CODE(0x4),
788 ®s->cantxfg[i].can_ctrl);
791 /* acceptance mask/acceptance code (accept everything) */
792 flexcan_write(0x0, ®s->rxgmask);
793 flexcan_write(0x0, ®s->rx14mask);
794 flexcan_write(0x0, ®s->rx15mask);
796 if (priv->devtype_data->features & FLEXCAN_HAS_V10_FEATURES)
797 flexcan_write(0x0, ®s->rxfgmask);
799 flexcan_transceiver_switch(priv, 1);
801 /* synchronize with the can bus */
802 reg_mcr = flexcan_read(®s->mcr);
803 reg_mcr &= ~FLEXCAN_MCR_HALT;
804 flexcan_write(reg_mcr, ®s->mcr);
806 priv->can.state = CAN_STATE_ERROR_ACTIVE;
808 /* enable FIFO interrupts */
809 flexcan_write(FLEXCAN_IFLAG_DEFAULT, ®s->imask1);
811 /* print chip status */
812 netdev_dbg(dev, "%s: reading mcr=0x%08x ctrl=0x%08x\n", __func__,
813 flexcan_read(®s->mcr), flexcan_read(®s->ctrl));
818 flexcan_chip_disable(priv);
825 * this functions is entered with clocks enabled
828 static void flexcan_chip_stop(struct net_device *dev)
830 struct flexcan_priv *priv = netdev_priv(dev);
831 struct flexcan_regs __iomem *regs = priv->base;
834 /* Disable all interrupts */
835 flexcan_write(0, ®s->imask1);
837 /* Disable + halt module */
838 reg = flexcan_read(®s->mcr);
839 reg |= FLEXCAN_MCR_MDIS | FLEXCAN_MCR_HALT;
840 flexcan_write(reg, ®s->mcr);
842 flexcan_transceiver_switch(priv, 0);
843 priv->can.state = CAN_STATE_STOPPED;
848 static int flexcan_open(struct net_device *dev)
850 struct flexcan_priv *priv = netdev_priv(dev);
853 clk_prepare_enable(priv->clk_ipg);
854 clk_prepare_enable(priv->clk_per);
856 err = open_candev(dev);
860 err = request_irq(dev->irq, flexcan_irq, IRQF_SHARED, dev->name, dev);
864 /* start chip and queuing */
865 err = flexcan_chip_start(dev);
868 napi_enable(&priv->napi);
869 netif_start_queue(dev);
876 clk_disable_unprepare(priv->clk_per);
877 clk_disable_unprepare(priv->clk_ipg);
882 static int flexcan_close(struct net_device *dev)
884 struct flexcan_priv *priv = netdev_priv(dev);
886 netif_stop_queue(dev);
887 napi_disable(&priv->napi);
888 flexcan_chip_stop(dev);
890 free_irq(dev->irq, dev);
891 clk_disable_unprepare(priv->clk_per);
892 clk_disable_unprepare(priv->clk_ipg);
899 static int flexcan_set_mode(struct net_device *dev, enum can_mode mode)
905 err = flexcan_chip_start(dev);
909 netif_wake_queue(dev);
919 static const struct net_device_ops flexcan_netdev_ops = {
920 .ndo_open = flexcan_open,
921 .ndo_stop = flexcan_close,
922 .ndo_start_xmit = flexcan_start_xmit,
925 static int register_flexcandev(struct net_device *dev)
927 struct flexcan_priv *priv = netdev_priv(dev);
928 struct flexcan_regs __iomem *regs = priv->base;
931 clk_prepare_enable(priv->clk_ipg);
932 clk_prepare_enable(priv->clk_per);
934 /* select "bus clock", chip must be disabled */
935 flexcan_chip_disable(priv);
936 reg = flexcan_read(®s->ctrl);
937 reg |= FLEXCAN_CTRL_CLK_SRC;
938 flexcan_write(reg, ®s->ctrl);
940 flexcan_chip_enable(priv);
942 /* set freeze, halt and activate FIFO, restrict register access */
943 reg = flexcan_read(®s->mcr);
944 reg |= FLEXCAN_MCR_FRZ | FLEXCAN_MCR_HALT |
945 FLEXCAN_MCR_FEN | FLEXCAN_MCR_SUPV;
946 flexcan_write(reg, ®s->mcr);
949 * Currently we only support newer versions of this core
950 * featuring a RX FIFO. Older cores found on some Coldfire
951 * derivates are not yet supported.
953 reg = flexcan_read(®s->mcr);
954 if (!(reg & FLEXCAN_MCR_FEN)) {
955 netdev_err(dev, "Could not enable RX FIFO, unsupported core\n");
960 err = register_candev(dev);
963 /* disable core and turn off clocks */
964 flexcan_chip_disable(priv);
965 clk_disable_unprepare(priv->clk_per);
966 clk_disable_unprepare(priv->clk_ipg);
971 static void unregister_flexcandev(struct net_device *dev)
973 unregister_candev(dev);
976 static const struct of_device_id flexcan_of_match[] = {
977 { .compatible = "fsl,p1010-flexcan", .data = &fsl_p1010_devtype_data, },
978 { .compatible = "fsl,imx28-flexcan", .data = &fsl_imx28_devtype_data, },
979 { .compatible = "fsl,imx6q-flexcan", .data = &fsl_imx6q_devtype_data, },
982 MODULE_DEVICE_TABLE(of, flexcan_of_match);
984 static const struct platform_device_id flexcan_id_table[] = {
985 { .name = "flexcan", .driver_data = (kernel_ulong_t)&fsl_p1010_devtype_data, },
988 MODULE_DEVICE_TABLE(platform, flexcan_id_table);
990 static int flexcan_probe(struct platform_device *pdev)
992 const struct of_device_id *of_id;
993 const struct flexcan_devtype_data *devtype_data;
994 struct net_device *dev;
995 struct flexcan_priv *priv;
996 struct resource *mem;
997 struct clk *clk_ipg = NULL, *clk_per = NULL;
998 struct pinctrl *pinctrl;
1000 resource_size_t mem_size;
1004 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1005 if (IS_ERR(pinctrl))
1006 return PTR_ERR(pinctrl);
1008 if (pdev->dev.of_node)
1009 of_property_read_u32(pdev->dev.of_node,
1010 "clock-frequency", &clock_freq);
1013 clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1014 if (IS_ERR(clk_ipg)) {
1015 dev_err(&pdev->dev, "no ipg clock defined\n");
1016 err = PTR_ERR(clk_ipg);
1019 clock_freq = clk_get_rate(clk_ipg);
1021 clk_per = devm_clk_get(&pdev->dev, "per");
1022 if (IS_ERR(clk_per)) {
1023 dev_err(&pdev->dev, "no per clock defined\n");
1024 err = PTR_ERR(clk_per);
1029 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1030 irq = platform_get_irq(pdev, 0);
1031 if (!mem || irq <= 0) {
1036 mem_size = resource_size(mem);
1037 if (!request_mem_region(mem->start, mem_size, pdev->name)) {
1042 base = ioremap(mem->start, mem_size);
1048 dev = alloc_candev(sizeof(struct flexcan_priv), 1);
1054 of_id = of_match_device(flexcan_of_match, &pdev->dev);
1056 devtype_data = of_id->data;
1057 } else if (pdev->id_entry->driver_data) {
1058 devtype_data = (struct flexcan_devtype_data *)
1059 pdev->id_entry->driver_data;
1062 goto failed_devtype;
1065 dev->netdev_ops = &flexcan_netdev_ops;
1067 dev->flags |= IFF_ECHO;
1069 priv = netdev_priv(dev);
1070 priv->can.clock.freq = clock_freq;
1071 priv->can.bittiming_const = &flexcan_bittiming_const;
1072 priv->can.do_set_mode = flexcan_set_mode;
1073 priv->can.do_get_berr_counter = flexcan_get_berr_counter;
1074 priv->can.ctrlmode_supported = CAN_CTRLMODE_LOOPBACK |
1075 CAN_CTRLMODE_LISTENONLY | CAN_CTRLMODE_3_SAMPLES |
1076 CAN_CTRLMODE_BERR_REPORTING;
1079 priv->clk_ipg = clk_ipg;
1080 priv->clk_per = clk_per;
1081 priv->pdata = pdev->dev.platform_data;
1082 priv->devtype_data = devtype_data;
1084 netif_napi_add(dev, &priv->napi, flexcan_poll, FLEXCAN_NAPI_WEIGHT);
1086 dev_set_drvdata(&pdev->dev, dev);
1087 SET_NETDEV_DEV(dev, &pdev->dev);
1089 err = register_flexcandev(dev);
1091 dev_err(&pdev->dev, "registering netdev failed\n");
1092 goto failed_register;
1095 dev_info(&pdev->dev, "device registered (reg_base=%p, irq=%d)\n",
1096 priv->base, dev->irq);
1106 release_mem_region(mem->start, mem_size);
1112 static int flexcan_remove(struct platform_device *pdev)
1114 struct net_device *dev = platform_get_drvdata(pdev);
1115 struct flexcan_priv *priv = netdev_priv(dev);
1116 struct resource *mem;
1118 unregister_flexcandev(dev);
1119 platform_set_drvdata(pdev, NULL);
1120 iounmap(priv->base);
1122 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1123 release_mem_region(mem->start, resource_size(mem));
1131 static int flexcan_suspend(struct platform_device *pdev, pm_message_t state)
1133 struct net_device *dev = platform_get_drvdata(pdev);
1134 struct flexcan_priv *priv = netdev_priv(dev);
1136 flexcan_chip_disable(priv);
1138 if (netif_running(dev)) {
1139 netif_stop_queue(dev);
1140 netif_device_detach(dev);
1142 priv->can.state = CAN_STATE_SLEEPING;
1147 static int flexcan_resume(struct platform_device *pdev)
1149 struct net_device *dev = platform_get_drvdata(pdev);
1150 struct flexcan_priv *priv = netdev_priv(dev);
1152 priv->can.state = CAN_STATE_ERROR_ACTIVE;
1153 if (netif_running(dev)) {
1154 netif_device_attach(dev);
1155 netif_start_queue(dev);
1157 flexcan_chip_enable(priv);
1162 #define flexcan_suspend NULL
1163 #define flexcan_resume NULL
1166 static struct platform_driver flexcan_driver = {
1169 .owner = THIS_MODULE,
1170 .of_match_table = flexcan_of_match,
1172 .probe = flexcan_probe,
1173 .remove = flexcan_remove,
1174 .suspend = flexcan_suspend,
1175 .resume = flexcan_resume,
1176 .id_table = flexcan_id_table,
1179 module_platform_driver(flexcan_driver);
1183 MODULE_LICENSE("GPL v2");
1184 MODULE_DESCRIPTION("CAN port driver for flexcan based chip");