2 * flexcan.c - FLEXCAN CAN controller driver
4 * Copyright (c) 2005-2006 Varma Electronics Oy
5 * Copyright (c) 2009 Sascha Hauer, Pengutronix
7 * Copyright (c) 2014 David Jander, Protonic Holland
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation version 2.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
23 #include <linux/netdevice.h>
24 #include <linux/can.h>
25 #include <linux/can/dev.h>
26 #include <linux/can/error.h>
27 #include <linux/can/led.h>
28 #include <linux/can/rx-offload.h>
29 #include <linux/clk.h>
30 #include <linux/delay.h>
31 #include <linux/interrupt.h>
33 #include <linux/module.h>
35 #include <linux/of_device.h>
36 #include <linux/platform_device.h>
37 #include <linux/regulator/consumer.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_IRMQ BIT(16)
61 #define FLEXCAN_MCR_LPRIO_EN BIT(13)
62 #define FLEXCAN_MCR_AEN BIT(12)
63 /* MCR_MAXMB: maximum used MBs is MAXMB + 1 */
64 #define FLEXCAN_MCR_MAXMB(x) ((x) & 0x7f)
65 #define FLEXCAN_MCR_IDAM_A (0x0 << 8)
66 #define FLEXCAN_MCR_IDAM_B (0x1 << 8)
67 #define FLEXCAN_MCR_IDAM_C (0x2 << 8)
68 #define FLEXCAN_MCR_IDAM_D (0x3 << 8)
70 /* FLEXCAN control register (CANCTRL) bits */
71 #define FLEXCAN_CTRL_PRESDIV(x) (((x) & 0xff) << 24)
72 #define FLEXCAN_CTRL_RJW(x) (((x) & 0x03) << 22)
73 #define FLEXCAN_CTRL_PSEG1(x) (((x) & 0x07) << 19)
74 #define FLEXCAN_CTRL_PSEG2(x) (((x) & 0x07) << 16)
75 #define FLEXCAN_CTRL_BOFF_MSK BIT(15)
76 #define FLEXCAN_CTRL_ERR_MSK BIT(14)
77 #define FLEXCAN_CTRL_CLK_SRC BIT(13)
78 #define FLEXCAN_CTRL_LPB BIT(12)
79 #define FLEXCAN_CTRL_TWRN_MSK BIT(11)
80 #define FLEXCAN_CTRL_RWRN_MSK BIT(10)
81 #define FLEXCAN_CTRL_SMP BIT(7)
82 #define FLEXCAN_CTRL_BOFF_REC BIT(6)
83 #define FLEXCAN_CTRL_TSYN BIT(5)
84 #define FLEXCAN_CTRL_LBUF BIT(4)
85 #define FLEXCAN_CTRL_LOM BIT(3)
86 #define FLEXCAN_CTRL_PROPSEG(x) ((x) & 0x07)
87 #define FLEXCAN_CTRL_ERR_BUS (FLEXCAN_CTRL_ERR_MSK)
88 #define FLEXCAN_CTRL_ERR_STATE \
89 (FLEXCAN_CTRL_TWRN_MSK | FLEXCAN_CTRL_RWRN_MSK | \
90 FLEXCAN_CTRL_BOFF_MSK)
91 #define FLEXCAN_CTRL_ERR_ALL \
92 (FLEXCAN_CTRL_ERR_BUS | FLEXCAN_CTRL_ERR_STATE)
94 /* FLEXCAN control register 2 (CTRL2) bits */
95 #define FLEXCAN_CTRL2_ECRWRE BIT(29)
96 #define FLEXCAN_CTRL2_WRMFRZ BIT(28)
97 #define FLEXCAN_CTRL2_RFFN(x) (((x) & 0x0f) << 24)
98 #define FLEXCAN_CTRL2_TASD(x) (((x) & 0x1f) << 19)
99 #define FLEXCAN_CTRL2_MRP BIT(18)
100 #define FLEXCAN_CTRL2_RRS BIT(17)
101 #define FLEXCAN_CTRL2_EACEN BIT(16)
103 /* FLEXCAN memory error control register (MECR) bits */
104 #define FLEXCAN_MECR_ECRWRDIS BIT(31)
105 #define FLEXCAN_MECR_HANCEI_MSK BIT(19)
106 #define FLEXCAN_MECR_FANCEI_MSK BIT(18)
107 #define FLEXCAN_MECR_CEI_MSK BIT(16)
108 #define FLEXCAN_MECR_HAERRIE BIT(15)
109 #define FLEXCAN_MECR_FAERRIE BIT(14)
110 #define FLEXCAN_MECR_EXTERRIE BIT(13)
111 #define FLEXCAN_MECR_RERRDIS BIT(9)
112 #define FLEXCAN_MECR_ECCDIS BIT(8)
113 #define FLEXCAN_MECR_NCEFAFRZ BIT(7)
115 /* FLEXCAN error and status register (ESR) bits */
116 #define FLEXCAN_ESR_TWRN_INT BIT(17)
117 #define FLEXCAN_ESR_RWRN_INT BIT(16)
118 #define FLEXCAN_ESR_BIT1_ERR BIT(15)
119 #define FLEXCAN_ESR_BIT0_ERR BIT(14)
120 #define FLEXCAN_ESR_ACK_ERR BIT(13)
121 #define FLEXCAN_ESR_CRC_ERR BIT(12)
122 #define FLEXCAN_ESR_FRM_ERR BIT(11)
123 #define FLEXCAN_ESR_STF_ERR BIT(10)
124 #define FLEXCAN_ESR_TX_WRN BIT(9)
125 #define FLEXCAN_ESR_RX_WRN BIT(8)
126 #define FLEXCAN_ESR_IDLE BIT(7)
127 #define FLEXCAN_ESR_TXRX BIT(6)
128 #define FLEXCAN_EST_FLT_CONF_SHIFT (4)
129 #define FLEXCAN_ESR_FLT_CONF_MASK (0x3 << FLEXCAN_EST_FLT_CONF_SHIFT)
130 #define FLEXCAN_ESR_FLT_CONF_ACTIVE (0x0 << FLEXCAN_EST_FLT_CONF_SHIFT)
131 #define FLEXCAN_ESR_FLT_CONF_PASSIVE (0x1 << FLEXCAN_EST_FLT_CONF_SHIFT)
132 #define FLEXCAN_ESR_BOFF_INT BIT(2)
133 #define FLEXCAN_ESR_ERR_INT BIT(1)
134 #define FLEXCAN_ESR_WAK_INT BIT(0)
135 #define FLEXCAN_ESR_ERR_BUS \
136 (FLEXCAN_ESR_BIT1_ERR | FLEXCAN_ESR_BIT0_ERR | \
137 FLEXCAN_ESR_ACK_ERR | FLEXCAN_ESR_CRC_ERR | \
138 FLEXCAN_ESR_FRM_ERR | FLEXCAN_ESR_STF_ERR)
139 #define FLEXCAN_ESR_ERR_STATE \
140 (FLEXCAN_ESR_TWRN_INT | FLEXCAN_ESR_RWRN_INT | FLEXCAN_ESR_BOFF_INT)
141 #define FLEXCAN_ESR_ERR_ALL \
142 (FLEXCAN_ESR_ERR_BUS | FLEXCAN_ESR_ERR_STATE)
143 #define FLEXCAN_ESR_ALL_INT \
144 (FLEXCAN_ESR_TWRN_INT | FLEXCAN_ESR_RWRN_INT | \
145 FLEXCAN_ESR_BOFF_INT | FLEXCAN_ESR_ERR_INT)
147 /* FLEXCAN interrupt flag register (IFLAG) bits */
148 /* Errata ERR005829 step7: Reserve first valid MB */
149 #define FLEXCAN_TX_MB_RESERVED_OFF_FIFO 8
150 #define FLEXCAN_TX_MB_OFF_FIFO 9
151 #define FLEXCAN_TX_MB_RESERVED_OFF_TIMESTAMP 0
152 #define FLEXCAN_TX_MB_OFF_TIMESTAMP 1
153 #define FLEXCAN_RX_MB_OFF_TIMESTAMP_FIRST (FLEXCAN_TX_MB_OFF_TIMESTAMP + 1)
154 #define FLEXCAN_RX_MB_OFF_TIMESTAMP_LAST 63
155 #define FLEXCAN_IFLAG_MB(x) BIT(x)
156 #define FLEXCAN_IFLAG_RX_FIFO_OVERFLOW BIT(7)
157 #define FLEXCAN_IFLAG_RX_FIFO_WARN BIT(6)
158 #define FLEXCAN_IFLAG_RX_FIFO_AVAILABLE BIT(5)
160 /* FLEXCAN message buffers */
161 #define FLEXCAN_MB_CODE_MASK (0xf << 24)
162 #define FLEXCAN_MB_CODE_RX_BUSY_BIT (0x1 << 24)
163 #define FLEXCAN_MB_CODE_RX_INACTIVE (0x0 << 24)
164 #define FLEXCAN_MB_CODE_RX_EMPTY (0x4 << 24)
165 #define FLEXCAN_MB_CODE_RX_FULL (0x2 << 24)
166 #define FLEXCAN_MB_CODE_RX_OVERRUN (0x6 << 24)
167 #define FLEXCAN_MB_CODE_RX_RANSWER (0xa << 24)
169 #define FLEXCAN_MB_CODE_TX_INACTIVE (0x8 << 24)
170 #define FLEXCAN_MB_CODE_TX_ABORT (0x9 << 24)
171 #define FLEXCAN_MB_CODE_TX_DATA (0xc << 24)
172 #define FLEXCAN_MB_CODE_TX_TANSWER (0xe << 24)
174 #define FLEXCAN_MB_CNT_SRR BIT(22)
175 #define FLEXCAN_MB_CNT_IDE BIT(21)
176 #define FLEXCAN_MB_CNT_RTR BIT(20)
177 #define FLEXCAN_MB_CNT_LENGTH(x) (((x) & 0xf) << 16)
178 #define FLEXCAN_MB_CNT_TIMESTAMP(x) ((x) & 0xffff)
180 #define FLEXCAN_TIMEOUT_US (50)
182 /* FLEXCAN hardware feature flags
184 * Below is some version info we got:
185 * SOC Version IP-Version Glitch- [TR]WRN_INT IRQ Err Memory err RTR re-
186 * Filter? connected? Passive detection ception in MB
187 * MX25 FlexCAN2 03.00.00.00 no no no no no
188 * MX28 FlexCAN2 03.00.04.00 yes yes no no no
189 * MX35 FlexCAN2 03.00.00.00 no no no no no
190 * MX53 FlexCAN2 03.00.00.00 yes no no no no
191 * MX6s FlexCAN3 10.00.12.00 yes yes no no yes
192 * VF610 FlexCAN3 ? no yes no yes yes?
193 * LS1021A FlexCAN2 03.00.04.00 no yes no no yes
195 * Some SOCs do not have the RX_WARN & TX_WARN interrupt line connected.
197 #define FLEXCAN_QUIRK_BROKEN_WERR_STATE BIT(1) /* [TR]WRN_INT not connected */
198 #define FLEXCAN_QUIRK_DISABLE_RXFG BIT(2) /* Disable RX FIFO Global mask */
199 #define FLEXCAN_QUIRK_ENABLE_EACEN_RRS BIT(3) /* Enable EACEN and RRS bit in ctrl2 */
200 #define FLEXCAN_QUIRK_DISABLE_MECR BIT(4) /* Disable Memory error detection */
201 #define FLEXCAN_QUIRK_USE_OFF_TIMESTAMP BIT(5) /* Use timestamp based offloading */
202 #define FLEXCAN_QUIRK_BROKEN_PERR_STATE BIT(6) /* No interrupt for error passive */
203 #define FLEXCAN_QUIRK_DEFAULT_BIG_ENDIAN BIT(7) /* default to BE register access */
205 /* Structure of the message buffer */
212 /* Structure of the hardware registers */
213 struct flexcan_regs {
216 u32 timer; /* 0x08 */
217 u32 _reserved1; /* 0x0c */
218 u32 rxgmask; /* 0x10 */
219 u32 rx14mask; /* 0x14 */
220 u32 rx15mask; /* 0x18 */
223 u32 imask2; /* 0x24 */
224 u32 imask1; /* 0x28 */
225 u32 iflag2; /* 0x2c */
226 u32 iflag1; /* 0x30 */
228 u32 gfwr_mx28; /* MX28, MX53 */
229 u32 ctrl2; /* MX6, VF610 */
232 u32 imeur; /* 0x3c */
235 u32 rxfgmask; /* 0x48 */
236 u32 rxfir; /* 0x4c */
237 u32 _reserved3[12]; /* 0x50 */
238 struct flexcan_mb mb[64]; /* 0x80 */
241 * 0x080...0x08f 0 RX message buffer
242 * 0x090...0x0df 1-5 reserverd
243 * 0x0e0...0x0ff 6-7 8 entry ID table
244 * (mx25, mx28, mx35, mx53)
245 * 0x0e0...0x2df 6-7..37 8..128 entry ID table
246 * size conf'ed via ctrl2::RFFN
249 u32 _reserved4[256]; /* 0x480 */
250 u32 rximr[64]; /* 0x880 */
251 u32 _reserved5[24]; /* 0x980 */
252 u32 gfwr_mx6; /* 0x9e0 - MX6 */
253 u32 _reserved6[63]; /* 0x9e4 */
254 u32 mecr; /* 0xae0 */
255 u32 erriar; /* 0xae4 */
256 u32 erridpr; /* 0xae8 */
257 u32 errippr; /* 0xaec */
258 u32 rerrar; /* 0xaf0 */
259 u32 rerrdr; /* 0xaf4 */
260 u32 rerrsynr; /* 0xaf8 */
261 u32 errsr; /* 0xafc */
264 struct flexcan_devtype_data {
265 u32 quirks; /* quirks needed for different IP cores */
268 struct flexcan_priv {
270 struct can_rx_offload offload;
272 struct flexcan_regs __iomem *regs;
273 struct flexcan_mb __iomem *tx_mb;
274 struct flexcan_mb __iomem *tx_mb_reserved;
276 u32 reg_ctrl_default;
277 u32 reg_imask1_default;
278 u32 reg_imask2_default;
282 const struct flexcan_devtype_data *devtype_data;
283 struct regulator *reg_xceiver;
285 /* Read and Write APIs */
286 u32 (*read)(void __iomem *addr);
287 void (*write)(u32 val, void __iomem *addr);
290 static const struct flexcan_devtype_data fsl_p1010_devtype_data = {
291 .quirks = FLEXCAN_QUIRK_BROKEN_WERR_STATE |
292 FLEXCAN_QUIRK_BROKEN_PERR_STATE |
293 FLEXCAN_QUIRK_DEFAULT_BIG_ENDIAN,
296 static const struct flexcan_devtype_data fsl_imx25_devtype_data = {
297 .quirks = FLEXCAN_QUIRK_BROKEN_WERR_STATE |
298 FLEXCAN_QUIRK_BROKEN_PERR_STATE,
301 static const struct flexcan_devtype_data fsl_imx28_devtype_data = {
302 .quirks = FLEXCAN_QUIRK_BROKEN_PERR_STATE,
305 static const struct flexcan_devtype_data fsl_imx6q_devtype_data = {
306 .quirks = FLEXCAN_QUIRK_DISABLE_RXFG | FLEXCAN_QUIRK_ENABLE_EACEN_RRS |
307 FLEXCAN_QUIRK_USE_OFF_TIMESTAMP | FLEXCAN_QUIRK_BROKEN_PERR_STATE,
310 static const struct flexcan_devtype_data fsl_vf610_devtype_data = {
311 .quirks = FLEXCAN_QUIRK_DISABLE_RXFG | FLEXCAN_QUIRK_ENABLE_EACEN_RRS |
312 FLEXCAN_QUIRK_DISABLE_MECR | FLEXCAN_QUIRK_USE_OFF_TIMESTAMP |
313 FLEXCAN_QUIRK_BROKEN_PERR_STATE,
316 static const struct flexcan_devtype_data fsl_ls1021a_r2_devtype_data = {
317 .quirks = FLEXCAN_QUIRK_DISABLE_RXFG | FLEXCAN_QUIRK_ENABLE_EACEN_RRS |
318 FLEXCAN_QUIRK_DISABLE_MECR | FLEXCAN_QUIRK_BROKEN_PERR_STATE |
319 FLEXCAN_QUIRK_USE_OFF_TIMESTAMP,
322 static const struct can_bittiming_const flexcan_bittiming_const = {
334 /* FlexCAN module is essentially modelled as a little-endian IP in most
335 * SoCs, i.e the registers as well as the message buffer areas are
336 * implemented in a little-endian fashion.
338 * However there are some SoCs (e.g. LS1021A) which implement the FlexCAN
339 * module in a big-endian fashion (i.e the registers as well as the
340 * message buffer areas are implemented in a big-endian way).
342 * In addition, the FlexCAN module can be found on SoCs having ARM or
343 * PPC cores. So, we need to abstract off the register read/write
344 * functions, ensuring that these cater to all the combinations of module
345 * endianness and underlying CPU endianness.
347 static inline u32 flexcan_read_be(void __iomem *addr)
349 return ioread32be(addr);
352 static inline void flexcan_write_be(u32 val, void __iomem *addr)
354 iowrite32be(val, addr);
357 static inline u32 flexcan_read_le(void __iomem *addr)
359 return ioread32(addr);
362 static inline void flexcan_write_le(u32 val, void __iomem *addr)
364 iowrite32(val, addr);
367 static inline void flexcan_error_irq_enable(const struct flexcan_priv *priv)
369 struct flexcan_regs __iomem *regs = priv->regs;
370 u32 reg_ctrl = (priv->reg_ctrl_default | FLEXCAN_CTRL_ERR_MSK);
372 priv->write(reg_ctrl, ®s->ctrl);
375 static inline void flexcan_error_irq_disable(const struct flexcan_priv *priv)
377 struct flexcan_regs __iomem *regs = priv->regs;
378 u32 reg_ctrl = (priv->reg_ctrl_default & ~FLEXCAN_CTRL_ERR_MSK);
380 priv->write(reg_ctrl, ®s->ctrl);
383 static inline int flexcan_transceiver_enable(const struct flexcan_priv *priv)
385 if (!priv->reg_xceiver)
388 return regulator_enable(priv->reg_xceiver);
391 static inline int flexcan_transceiver_disable(const struct flexcan_priv *priv)
393 if (!priv->reg_xceiver)
396 return regulator_disable(priv->reg_xceiver);
399 static int flexcan_chip_enable(struct flexcan_priv *priv)
401 struct flexcan_regs __iomem *regs = priv->regs;
402 unsigned int timeout = FLEXCAN_TIMEOUT_US / 10;
405 reg = priv->read(®s->mcr);
406 reg &= ~FLEXCAN_MCR_MDIS;
407 priv->write(reg, ®s->mcr);
409 while (timeout-- && (priv->read(®s->mcr) & FLEXCAN_MCR_LPM_ACK))
412 if (priv->read(®s->mcr) & FLEXCAN_MCR_LPM_ACK)
418 static int flexcan_chip_disable(struct flexcan_priv *priv)
420 struct flexcan_regs __iomem *regs = priv->regs;
421 unsigned int timeout = FLEXCAN_TIMEOUT_US / 10;
424 reg = priv->read(®s->mcr);
425 reg |= FLEXCAN_MCR_MDIS;
426 priv->write(reg, ®s->mcr);
428 while (timeout-- && !(priv->read(®s->mcr) & FLEXCAN_MCR_LPM_ACK))
431 if (!(priv->read(®s->mcr) & FLEXCAN_MCR_LPM_ACK))
437 static int flexcan_chip_freeze(struct flexcan_priv *priv)
439 struct flexcan_regs __iomem *regs = priv->regs;
440 unsigned int timeout = 1000 * 1000 * 10 / priv->can.bittiming.bitrate;
443 reg = priv->read(®s->mcr);
444 reg |= FLEXCAN_MCR_HALT;
445 priv->write(reg, ®s->mcr);
447 while (timeout-- && !(priv->read(®s->mcr) & FLEXCAN_MCR_FRZ_ACK))
450 if (!(priv->read(®s->mcr) & FLEXCAN_MCR_FRZ_ACK))
456 static int flexcan_chip_unfreeze(struct flexcan_priv *priv)
458 struct flexcan_regs __iomem *regs = priv->regs;
459 unsigned int timeout = FLEXCAN_TIMEOUT_US / 10;
462 reg = priv->read(®s->mcr);
463 reg &= ~FLEXCAN_MCR_HALT;
464 priv->write(reg, ®s->mcr);
466 while (timeout-- && (priv->read(®s->mcr) & FLEXCAN_MCR_FRZ_ACK))
469 if (priv->read(®s->mcr) & FLEXCAN_MCR_FRZ_ACK)
475 static int flexcan_chip_softreset(struct flexcan_priv *priv)
477 struct flexcan_regs __iomem *regs = priv->regs;
478 unsigned int timeout = FLEXCAN_TIMEOUT_US / 10;
480 priv->write(FLEXCAN_MCR_SOFTRST, ®s->mcr);
481 while (timeout-- && (priv->read(®s->mcr) & FLEXCAN_MCR_SOFTRST))
484 if (priv->read(®s->mcr) & FLEXCAN_MCR_SOFTRST)
490 static int __flexcan_get_berr_counter(const struct net_device *dev,
491 struct can_berr_counter *bec)
493 const struct flexcan_priv *priv = netdev_priv(dev);
494 struct flexcan_regs __iomem *regs = priv->regs;
495 u32 reg = priv->read(®s->ecr);
497 bec->txerr = (reg >> 0) & 0xff;
498 bec->rxerr = (reg >> 8) & 0xff;
503 static int flexcan_get_berr_counter(const struct net_device *dev,
504 struct can_berr_counter *bec)
506 const struct flexcan_priv *priv = netdev_priv(dev);
509 err = clk_prepare_enable(priv->clk_ipg);
513 err = clk_prepare_enable(priv->clk_per);
515 goto out_disable_ipg;
517 err = __flexcan_get_berr_counter(dev, bec);
519 clk_disable_unprepare(priv->clk_per);
521 clk_disable_unprepare(priv->clk_ipg);
526 static int flexcan_start_xmit(struct sk_buff *skb, struct net_device *dev)
528 const struct flexcan_priv *priv = netdev_priv(dev);
529 struct can_frame *cf = (struct can_frame *)skb->data;
532 u32 ctrl = FLEXCAN_MB_CODE_TX_DATA | (cf->can_dlc << 16);
534 if (can_dropped_invalid_skb(dev, skb))
537 netif_stop_queue(dev);
539 if (cf->can_id & CAN_EFF_FLAG) {
540 can_id = cf->can_id & CAN_EFF_MASK;
541 ctrl |= FLEXCAN_MB_CNT_IDE | FLEXCAN_MB_CNT_SRR;
543 can_id = (cf->can_id & CAN_SFF_MASK) << 18;
546 if (cf->can_id & CAN_RTR_FLAG)
547 ctrl |= FLEXCAN_MB_CNT_RTR;
549 if (cf->can_dlc > 0) {
550 data = be32_to_cpup((__be32 *)&cf->data[0]);
551 priv->write(data, &priv->tx_mb->data[0]);
553 if (cf->can_dlc > 4) {
554 data = be32_to_cpup((__be32 *)&cf->data[4]);
555 priv->write(data, &priv->tx_mb->data[1]);
558 can_put_echo_skb(skb, dev, 0);
560 priv->write(can_id, &priv->tx_mb->can_id);
561 priv->write(ctrl, &priv->tx_mb->can_ctrl);
563 /* Errata ERR005829 step8:
564 * Write twice INACTIVE(0x8) code to first MB.
566 priv->write(FLEXCAN_MB_CODE_TX_INACTIVE,
567 &priv->tx_mb_reserved->can_ctrl);
568 priv->write(FLEXCAN_MB_CODE_TX_INACTIVE,
569 &priv->tx_mb_reserved->can_ctrl);
574 static void flexcan_irq_bus_err(struct net_device *dev, u32 reg_esr)
576 struct flexcan_priv *priv = netdev_priv(dev);
578 struct can_frame *cf;
579 bool rx_errors = false, tx_errors = false;
581 skb = alloc_can_err_skb(dev, &cf);
585 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
587 if (reg_esr & FLEXCAN_ESR_BIT1_ERR) {
588 netdev_dbg(dev, "BIT1_ERR irq\n");
589 cf->data[2] |= CAN_ERR_PROT_BIT1;
592 if (reg_esr & FLEXCAN_ESR_BIT0_ERR) {
593 netdev_dbg(dev, "BIT0_ERR irq\n");
594 cf->data[2] |= CAN_ERR_PROT_BIT0;
597 if (reg_esr & FLEXCAN_ESR_ACK_ERR) {
598 netdev_dbg(dev, "ACK_ERR irq\n");
599 cf->can_id |= CAN_ERR_ACK;
600 cf->data[3] = CAN_ERR_PROT_LOC_ACK;
603 if (reg_esr & FLEXCAN_ESR_CRC_ERR) {
604 netdev_dbg(dev, "CRC_ERR irq\n");
605 cf->data[2] |= CAN_ERR_PROT_BIT;
606 cf->data[3] = CAN_ERR_PROT_LOC_CRC_SEQ;
609 if (reg_esr & FLEXCAN_ESR_FRM_ERR) {
610 netdev_dbg(dev, "FRM_ERR irq\n");
611 cf->data[2] |= CAN_ERR_PROT_FORM;
614 if (reg_esr & FLEXCAN_ESR_STF_ERR) {
615 netdev_dbg(dev, "STF_ERR irq\n");
616 cf->data[2] |= CAN_ERR_PROT_STUFF;
620 priv->can.can_stats.bus_error++;
622 dev->stats.rx_errors++;
624 dev->stats.tx_errors++;
626 can_rx_offload_irq_queue_err_skb(&priv->offload, skb);
629 static void flexcan_irq_state(struct net_device *dev, u32 reg_esr)
631 struct flexcan_priv *priv = netdev_priv(dev);
633 struct can_frame *cf;
634 enum can_state new_state, rx_state, tx_state;
636 struct can_berr_counter bec;
638 flt = reg_esr & FLEXCAN_ESR_FLT_CONF_MASK;
639 if (likely(flt == FLEXCAN_ESR_FLT_CONF_ACTIVE)) {
640 tx_state = unlikely(reg_esr & FLEXCAN_ESR_TX_WRN) ?
641 CAN_STATE_ERROR_WARNING : CAN_STATE_ERROR_ACTIVE;
642 rx_state = unlikely(reg_esr & FLEXCAN_ESR_RX_WRN) ?
643 CAN_STATE_ERROR_WARNING : CAN_STATE_ERROR_ACTIVE;
644 new_state = max(tx_state, rx_state);
646 __flexcan_get_berr_counter(dev, &bec);
647 new_state = flt == FLEXCAN_ESR_FLT_CONF_PASSIVE ?
648 CAN_STATE_ERROR_PASSIVE : CAN_STATE_BUS_OFF;
649 rx_state = bec.rxerr >= bec.txerr ? new_state : 0;
650 tx_state = bec.rxerr <= bec.txerr ? new_state : 0;
653 /* state hasn't changed */
654 if (likely(new_state == priv->can.state))
657 skb = alloc_can_err_skb(dev, &cf);
661 can_change_state(dev, cf, tx_state, rx_state);
663 if (unlikely(new_state == CAN_STATE_BUS_OFF))
666 can_rx_offload_irq_queue_err_skb(&priv->offload, skb);
669 static inline struct flexcan_priv *rx_offload_to_priv(struct can_rx_offload *offload)
671 return container_of(offload, struct flexcan_priv, offload);
674 static unsigned int flexcan_mailbox_read(struct can_rx_offload *offload,
675 struct can_frame *cf,
676 u32 *timestamp, unsigned int n)
678 struct flexcan_priv *priv = rx_offload_to_priv(offload);
679 struct flexcan_regs __iomem *regs = priv->regs;
680 struct flexcan_mb __iomem *mb = ®s->mb[n];
681 u32 reg_ctrl, reg_id, reg_iflag1;
683 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
687 reg_ctrl = priv->read(&mb->can_ctrl);
688 } while (reg_ctrl & FLEXCAN_MB_CODE_RX_BUSY_BIT);
690 /* is this MB empty? */
691 code = reg_ctrl & FLEXCAN_MB_CODE_MASK;
692 if ((code != FLEXCAN_MB_CODE_RX_FULL) &&
693 (code != FLEXCAN_MB_CODE_RX_OVERRUN))
696 if (code == FLEXCAN_MB_CODE_RX_OVERRUN) {
697 /* This MB was overrun, we lost data */
698 offload->dev->stats.rx_over_errors++;
699 offload->dev->stats.rx_errors++;
702 reg_iflag1 = priv->read(®s->iflag1);
703 if (!(reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_AVAILABLE))
706 reg_ctrl = priv->read(&mb->can_ctrl);
709 /* increase timstamp to full 32 bit */
710 *timestamp = reg_ctrl << 16;
712 reg_id = priv->read(&mb->can_id);
713 if (reg_ctrl & FLEXCAN_MB_CNT_IDE)
714 cf->can_id = ((reg_id >> 0) & CAN_EFF_MASK) | CAN_EFF_FLAG;
716 cf->can_id = (reg_id >> 18) & CAN_SFF_MASK;
718 if (reg_ctrl & FLEXCAN_MB_CNT_RTR)
719 cf->can_id |= CAN_RTR_FLAG;
720 cf->can_dlc = get_can_dlc((reg_ctrl >> 16) & 0xf);
722 *(__be32 *)(cf->data + 0) = cpu_to_be32(priv->read(&mb->data[0]));
723 *(__be32 *)(cf->data + 4) = cpu_to_be32(priv->read(&mb->data[1]));
726 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
729 priv->write(BIT(n), ®s->iflag1);
731 priv->write(BIT(n - 32), ®s->iflag2);
733 priv->write(FLEXCAN_IFLAG_RX_FIFO_AVAILABLE, ®s->iflag1);
734 priv->read(®s->timer);
741 static inline u64 flexcan_read_reg_iflag_rx(struct flexcan_priv *priv)
743 struct flexcan_regs __iomem *regs = priv->regs;
746 iflag2 = priv->read(®s->iflag2) & priv->reg_imask2_default;
747 iflag1 = priv->read(®s->iflag1) & priv->reg_imask1_default &
748 ~FLEXCAN_IFLAG_MB(priv->tx_mb_idx);
750 return (u64)iflag2 << 32 | iflag1;
753 static irqreturn_t flexcan_irq(int irq, void *dev_id)
755 struct net_device *dev = dev_id;
756 struct net_device_stats *stats = &dev->stats;
757 struct flexcan_priv *priv = netdev_priv(dev);
758 struct flexcan_regs __iomem *regs = priv->regs;
759 irqreturn_t handled = IRQ_NONE;
760 u32 reg_iflag1, reg_esr;
761 enum can_state last_state = priv->can.state;
763 reg_iflag1 = priv->read(®s->iflag1);
765 /* reception interrupt */
766 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
770 while ((reg_iflag = flexcan_read_reg_iflag_rx(priv))) {
771 handled = IRQ_HANDLED;
772 ret = can_rx_offload_irq_offload_timestamp(&priv->offload,
778 if (reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_AVAILABLE) {
779 handled = IRQ_HANDLED;
780 can_rx_offload_irq_offload_fifo(&priv->offload);
783 /* FIFO overflow interrupt */
784 if (reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_OVERFLOW) {
785 handled = IRQ_HANDLED;
786 priv->write(FLEXCAN_IFLAG_RX_FIFO_OVERFLOW,
788 dev->stats.rx_over_errors++;
789 dev->stats.rx_errors++;
793 /* transmission complete interrupt */
794 if (reg_iflag1 & FLEXCAN_IFLAG_MB(priv->tx_mb_idx)) {
795 handled = IRQ_HANDLED;
796 stats->tx_bytes += can_get_echo_skb(dev, 0);
798 can_led_event(dev, CAN_LED_EVENT_TX);
800 /* after sending a RTR frame MB is in RX mode */
801 priv->write(FLEXCAN_MB_CODE_TX_INACTIVE,
802 &priv->tx_mb->can_ctrl);
803 priv->write(FLEXCAN_IFLAG_MB(priv->tx_mb_idx), ®s->iflag1);
804 netif_wake_queue(dev);
807 reg_esr = priv->read(®s->esr);
809 /* ACK all bus error and state change IRQ sources */
810 if (reg_esr & FLEXCAN_ESR_ALL_INT) {
811 handled = IRQ_HANDLED;
812 priv->write(reg_esr & FLEXCAN_ESR_ALL_INT, ®s->esr);
815 /* state change interrupt or broken error state quirk fix is enabled */
816 if ((reg_esr & FLEXCAN_ESR_ERR_STATE) ||
817 (priv->devtype_data->quirks & (FLEXCAN_QUIRK_BROKEN_WERR_STATE |
818 FLEXCAN_QUIRK_BROKEN_PERR_STATE)))
819 flexcan_irq_state(dev, reg_esr);
821 /* bus error IRQ - handle if bus error reporting is activated */
822 if ((reg_esr & FLEXCAN_ESR_ERR_BUS) &&
823 (priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING))
824 flexcan_irq_bus_err(dev, reg_esr);
826 /* availability of error interrupt among state transitions in case
827 * bus error reporting is de-activated and
828 * FLEXCAN_QUIRK_BROKEN_PERR_STATE is enabled:
829 * +--------------------------------------------------------------+
830 * | +----------------------------------------------+ [stopped / |
832 * +-+-> active <-> warning <-> passive -> bus off -+
833 * ___________^^^^^^^^^^^^_______________________________
834 * disabled(1) enabled disabled
836 * (1): enabled if FLEXCAN_QUIRK_BROKEN_WERR_STATE is enabled
838 if ((last_state != priv->can.state) &&
839 (priv->devtype_data->quirks & FLEXCAN_QUIRK_BROKEN_PERR_STATE) &&
840 !(priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING)) {
841 switch (priv->can.state) {
842 case CAN_STATE_ERROR_ACTIVE:
843 if (priv->devtype_data->quirks &
844 FLEXCAN_QUIRK_BROKEN_WERR_STATE)
845 flexcan_error_irq_enable(priv);
847 flexcan_error_irq_disable(priv);
850 case CAN_STATE_ERROR_WARNING:
851 flexcan_error_irq_enable(priv);
854 case CAN_STATE_ERROR_PASSIVE:
855 case CAN_STATE_BUS_OFF:
856 flexcan_error_irq_disable(priv);
867 static void flexcan_set_bittiming(struct net_device *dev)
869 const struct flexcan_priv *priv = netdev_priv(dev);
870 const struct can_bittiming *bt = &priv->can.bittiming;
871 struct flexcan_regs __iomem *regs = priv->regs;
874 reg = priv->read(®s->ctrl);
875 reg &= ~(FLEXCAN_CTRL_PRESDIV(0xff) |
876 FLEXCAN_CTRL_RJW(0x3) |
877 FLEXCAN_CTRL_PSEG1(0x7) |
878 FLEXCAN_CTRL_PSEG2(0x7) |
879 FLEXCAN_CTRL_PROPSEG(0x7) |
884 reg |= FLEXCAN_CTRL_PRESDIV(bt->brp - 1) |
885 FLEXCAN_CTRL_PSEG1(bt->phase_seg1 - 1) |
886 FLEXCAN_CTRL_PSEG2(bt->phase_seg2 - 1) |
887 FLEXCAN_CTRL_RJW(bt->sjw - 1) |
888 FLEXCAN_CTRL_PROPSEG(bt->prop_seg - 1);
890 if (priv->can.ctrlmode & CAN_CTRLMODE_LOOPBACK)
891 reg |= FLEXCAN_CTRL_LPB;
892 if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)
893 reg |= FLEXCAN_CTRL_LOM;
894 if (priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES)
895 reg |= FLEXCAN_CTRL_SMP;
897 netdev_dbg(dev, "writing ctrl=0x%08x\n", reg);
898 priv->write(reg, ®s->ctrl);
900 /* print chip status */
901 netdev_dbg(dev, "%s: mcr=0x%08x ctrl=0x%08x\n", __func__,
902 priv->read(®s->mcr), priv->read(®s->ctrl));
905 /* flexcan_chip_start
907 * this functions is entered with clocks enabled
910 static int flexcan_chip_start(struct net_device *dev)
912 struct flexcan_priv *priv = netdev_priv(dev);
913 struct flexcan_regs __iomem *regs = priv->regs;
914 u32 reg_mcr, reg_ctrl, reg_ctrl2, reg_mecr;
918 err = flexcan_chip_enable(priv);
923 err = flexcan_chip_softreset(priv);
925 goto out_chip_disable;
927 flexcan_set_bittiming(dev);
934 * only supervisor access
937 * enable individual RX masking
939 * set max mailbox number
941 reg_mcr = priv->read(®s->mcr);
942 reg_mcr &= ~FLEXCAN_MCR_MAXMB(0xff);
943 reg_mcr |= FLEXCAN_MCR_FRZ | FLEXCAN_MCR_HALT | FLEXCAN_MCR_SUPV |
944 FLEXCAN_MCR_WRN_EN | FLEXCAN_MCR_SRX_DIS | FLEXCAN_MCR_IRMQ |
947 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
948 reg_mcr &= ~FLEXCAN_MCR_FEN;
949 reg_mcr |= FLEXCAN_MCR_MAXMB(priv->offload.mb_last);
951 reg_mcr |= FLEXCAN_MCR_FEN |
952 FLEXCAN_MCR_MAXMB(priv->tx_mb_idx);
954 netdev_dbg(dev, "%s: writing mcr=0x%08x", __func__, reg_mcr);
955 priv->write(reg_mcr, ®s->mcr);
959 * disable timer sync feature
961 * disable auto busoff recovery
962 * transmit lowest buffer first
964 * enable tx and rx warning interrupt
965 * enable bus off interrupt
966 * (== FLEXCAN_CTRL_ERR_STATE)
968 reg_ctrl = priv->read(®s->ctrl);
969 reg_ctrl &= ~FLEXCAN_CTRL_TSYN;
970 reg_ctrl |= FLEXCAN_CTRL_BOFF_REC | FLEXCAN_CTRL_LBUF |
971 FLEXCAN_CTRL_ERR_STATE;
973 /* enable the "error interrupt" (FLEXCAN_CTRL_ERR_MSK),
974 * on most Flexcan cores, too. Otherwise we don't get
975 * any error warning or passive interrupts.
977 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_BROKEN_WERR_STATE ||
978 priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING)
979 reg_ctrl |= FLEXCAN_CTRL_ERR_MSK;
981 reg_ctrl &= ~FLEXCAN_CTRL_ERR_MSK;
983 /* save for later use */
984 priv->reg_ctrl_default = reg_ctrl;
985 /* leave interrupts disabled for now */
986 reg_ctrl &= ~FLEXCAN_CTRL_ERR_ALL;
987 netdev_dbg(dev, "%s: writing ctrl=0x%08x", __func__, reg_ctrl);
988 priv->write(reg_ctrl, ®s->ctrl);
990 if ((priv->devtype_data->quirks & FLEXCAN_QUIRK_ENABLE_EACEN_RRS)) {
991 reg_ctrl2 = priv->read(®s->ctrl2);
992 reg_ctrl2 |= FLEXCAN_CTRL2_EACEN | FLEXCAN_CTRL2_RRS;
993 priv->write(reg_ctrl2, ®s->ctrl2);
996 /* clear and invalidate all mailboxes first */
997 for (i = priv->tx_mb_idx; i < ARRAY_SIZE(regs->mb); i++) {
998 priv->write(FLEXCAN_MB_CODE_RX_INACTIVE,
999 ®s->mb[i].can_ctrl);
1002 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
1003 for (i = priv->offload.mb_first; i <= priv->offload.mb_last; i++)
1004 priv->write(FLEXCAN_MB_CODE_RX_EMPTY,
1005 ®s->mb[i].can_ctrl);
1008 /* Errata ERR005829: mark first TX mailbox as INACTIVE */
1009 priv->write(FLEXCAN_MB_CODE_TX_INACTIVE,
1010 &priv->tx_mb_reserved->can_ctrl);
1012 /* mark TX mailbox as INACTIVE */
1013 priv->write(FLEXCAN_MB_CODE_TX_INACTIVE,
1014 &priv->tx_mb->can_ctrl);
1016 /* acceptance mask/acceptance code (accept everything) */
1017 priv->write(0x0, ®s->rxgmask);
1018 priv->write(0x0, ®s->rx14mask);
1019 priv->write(0x0, ®s->rx15mask);
1021 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_DISABLE_RXFG)
1022 priv->write(0x0, ®s->rxfgmask);
1024 /* clear acceptance filters */
1025 for (i = 0; i < ARRAY_SIZE(regs->mb); i++)
1026 priv->write(0, ®s->rximr[i]);
1028 /* On Vybrid, disable memory error detection interrupts
1030 * This also works around errata e5295 which generates
1031 * false positive memory errors and put the device in
1034 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_DISABLE_MECR) {
1035 /* Follow the protocol as described in "Detection
1036 * and Correction of Memory Errors" to write to
1039 reg_ctrl2 = priv->read(®s->ctrl2);
1040 reg_ctrl2 |= FLEXCAN_CTRL2_ECRWRE;
1041 priv->write(reg_ctrl2, ®s->ctrl2);
1043 reg_mecr = priv->read(®s->mecr);
1044 reg_mecr &= ~FLEXCAN_MECR_ECRWRDIS;
1045 priv->write(reg_mecr, ®s->mecr);
1046 reg_mecr &= ~(FLEXCAN_MECR_NCEFAFRZ | FLEXCAN_MECR_HANCEI_MSK |
1047 FLEXCAN_MECR_FANCEI_MSK);
1048 priv->write(reg_mecr, ®s->mecr);
1051 err = flexcan_transceiver_enable(priv);
1053 goto out_chip_disable;
1055 /* synchronize with the can bus */
1056 err = flexcan_chip_unfreeze(priv);
1058 goto out_transceiver_disable;
1060 priv->can.state = CAN_STATE_ERROR_ACTIVE;
1062 /* enable interrupts atomically */
1063 disable_irq(dev->irq);
1064 priv->write(priv->reg_ctrl_default, ®s->ctrl);
1065 priv->write(priv->reg_imask1_default, ®s->imask1);
1066 priv->write(priv->reg_imask2_default, ®s->imask2);
1067 enable_irq(dev->irq);
1069 /* print chip status */
1070 netdev_dbg(dev, "%s: reading mcr=0x%08x ctrl=0x%08x\n", __func__,
1071 priv->read(®s->mcr), priv->read(®s->ctrl));
1075 out_transceiver_disable:
1076 flexcan_transceiver_disable(priv);
1078 flexcan_chip_disable(priv);
1082 /* flexcan_chip_stop
1084 * this functions is entered with clocks enabled
1086 static void flexcan_chip_stop(struct net_device *dev)
1088 struct flexcan_priv *priv = netdev_priv(dev);
1089 struct flexcan_regs __iomem *regs = priv->regs;
1091 /* freeze + disable module */
1092 flexcan_chip_freeze(priv);
1093 flexcan_chip_disable(priv);
1095 /* Disable all interrupts */
1096 priv->write(0, ®s->imask2);
1097 priv->write(0, ®s->imask1);
1098 priv->write(priv->reg_ctrl_default & ~FLEXCAN_CTRL_ERR_ALL,
1101 flexcan_transceiver_disable(priv);
1102 priv->can.state = CAN_STATE_STOPPED;
1105 static int flexcan_open(struct net_device *dev)
1107 struct flexcan_priv *priv = netdev_priv(dev);
1110 err = clk_prepare_enable(priv->clk_ipg);
1114 err = clk_prepare_enable(priv->clk_per);
1116 goto out_disable_ipg;
1118 err = open_candev(dev);
1120 goto out_disable_per;
1122 err = request_irq(dev->irq, flexcan_irq, IRQF_SHARED, dev->name, dev);
1126 /* start chip and queuing */
1127 err = flexcan_chip_start(dev);
1131 can_led_event(dev, CAN_LED_EVENT_OPEN);
1133 can_rx_offload_enable(&priv->offload);
1134 netif_start_queue(dev);
1139 free_irq(dev->irq, dev);
1143 clk_disable_unprepare(priv->clk_per);
1145 clk_disable_unprepare(priv->clk_ipg);
1150 static int flexcan_close(struct net_device *dev)
1152 struct flexcan_priv *priv = netdev_priv(dev);
1154 netif_stop_queue(dev);
1155 can_rx_offload_disable(&priv->offload);
1156 flexcan_chip_stop(dev);
1158 free_irq(dev->irq, dev);
1159 clk_disable_unprepare(priv->clk_per);
1160 clk_disable_unprepare(priv->clk_ipg);
1164 can_led_event(dev, CAN_LED_EVENT_STOP);
1169 static int flexcan_set_mode(struct net_device *dev, enum can_mode mode)
1174 case CAN_MODE_START:
1175 err = flexcan_chip_start(dev);
1179 netif_wake_queue(dev);
1189 static const struct net_device_ops flexcan_netdev_ops = {
1190 .ndo_open = flexcan_open,
1191 .ndo_stop = flexcan_close,
1192 .ndo_start_xmit = flexcan_start_xmit,
1193 .ndo_change_mtu = can_change_mtu,
1196 static int register_flexcandev(struct net_device *dev)
1198 struct flexcan_priv *priv = netdev_priv(dev);
1199 struct flexcan_regs __iomem *regs = priv->regs;
1202 err = clk_prepare_enable(priv->clk_ipg);
1206 err = clk_prepare_enable(priv->clk_per);
1208 goto out_disable_ipg;
1210 /* select "bus clock", chip must be disabled */
1211 err = flexcan_chip_disable(priv);
1213 goto out_disable_per;
1214 reg = priv->read(®s->ctrl);
1215 reg |= FLEXCAN_CTRL_CLK_SRC;
1216 priv->write(reg, ®s->ctrl);
1218 err = flexcan_chip_enable(priv);
1220 goto out_chip_disable;
1222 /* set freeze, halt and activate FIFO, restrict register access */
1223 reg = priv->read(®s->mcr);
1224 reg |= FLEXCAN_MCR_FRZ | FLEXCAN_MCR_HALT |
1225 FLEXCAN_MCR_FEN | FLEXCAN_MCR_SUPV;
1226 priv->write(reg, ®s->mcr);
1228 /* Currently we only support newer versions of this core
1229 * featuring a RX hardware FIFO (although this driver doesn't
1230 * make use of it on some cores). Older cores, found on some
1231 * Coldfire derivates are not tested.
1233 reg = priv->read(®s->mcr);
1234 if (!(reg & FLEXCAN_MCR_FEN)) {
1235 netdev_err(dev, "Could not enable RX FIFO, unsupported core\n");
1237 goto out_chip_disable;
1240 err = register_candev(dev);
1242 /* disable core and turn off clocks */
1244 flexcan_chip_disable(priv);
1246 clk_disable_unprepare(priv->clk_per);
1248 clk_disable_unprepare(priv->clk_ipg);
1253 static void unregister_flexcandev(struct net_device *dev)
1255 unregister_candev(dev);
1258 static const struct of_device_id flexcan_of_match[] = {
1259 { .compatible = "fsl,imx6q-flexcan", .data = &fsl_imx6q_devtype_data, },
1260 { .compatible = "fsl,imx28-flexcan", .data = &fsl_imx28_devtype_data, },
1261 { .compatible = "fsl,imx53-flexcan", .data = &fsl_imx25_devtype_data, },
1262 { .compatible = "fsl,imx35-flexcan", .data = &fsl_imx25_devtype_data, },
1263 { .compatible = "fsl,imx25-flexcan", .data = &fsl_imx25_devtype_data, },
1264 { .compatible = "fsl,p1010-flexcan", .data = &fsl_p1010_devtype_data, },
1265 { .compatible = "fsl,vf610-flexcan", .data = &fsl_vf610_devtype_data, },
1266 { .compatible = "fsl,ls1021ar2-flexcan", .data = &fsl_ls1021a_r2_devtype_data, },
1269 MODULE_DEVICE_TABLE(of, flexcan_of_match);
1271 static const struct platform_device_id flexcan_id_table[] = {
1272 { .name = "flexcan", .driver_data = (kernel_ulong_t)&fsl_p1010_devtype_data, },
1275 MODULE_DEVICE_TABLE(platform, flexcan_id_table);
1277 static int flexcan_probe(struct platform_device *pdev)
1279 const struct of_device_id *of_id;
1280 const struct flexcan_devtype_data *devtype_data;
1281 struct net_device *dev;
1282 struct flexcan_priv *priv;
1283 struct regulator *reg_xceiver;
1284 struct resource *mem;
1285 struct clk *clk_ipg = NULL, *clk_per = NULL;
1286 struct flexcan_regs __iomem *regs;
1290 reg_xceiver = devm_regulator_get(&pdev->dev, "xceiver");
1291 if (PTR_ERR(reg_xceiver) == -EPROBE_DEFER)
1292 return -EPROBE_DEFER;
1293 else if (IS_ERR(reg_xceiver))
1296 if (pdev->dev.of_node)
1297 of_property_read_u32(pdev->dev.of_node,
1298 "clock-frequency", &clock_freq);
1301 clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1302 if (IS_ERR(clk_ipg)) {
1303 dev_err(&pdev->dev, "no ipg clock defined\n");
1304 return PTR_ERR(clk_ipg);
1307 clk_per = devm_clk_get(&pdev->dev, "per");
1308 if (IS_ERR(clk_per)) {
1309 dev_err(&pdev->dev, "no per clock defined\n");
1310 return PTR_ERR(clk_per);
1312 clock_freq = clk_get_rate(clk_per);
1315 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1316 irq = platform_get_irq(pdev, 0);
1320 regs = devm_ioremap_resource(&pdev->dev, mem);
1322 return PTR_ERR(regs);
1324 of_id = of_match_device(flexcan_of_match, &pdev->dev);
1326 devtype_data = of_id->data;
1327 } else if (platform_get_device_id(pdev)->driver_data) {
1328 devtype_data = (struct flexcan_devtype_data *)
1329 platform_get_device_id(pdev)->driver_data;
1334 dev = alloc_candev(sizeof(struct flexcan_priv), 1);
1338 platform_set_drvdata(pdev, dev);
1339 SET_NETDEV_DEV(dev, &pdev->dev);
1341 dev->netdev_ops = &flexcan_netdev_ops;
1343 dev->flags |= IFF_ECHO;
1345 priv = netdev_priv(dev);
1347 if (of_property_read_bool(pdev->dev.of_node, "big-endian") ||
1348 devtype_data->quirks & FLEXCAN_QUIRK_DEFAULT_BIG_ENDIAN) {
1349 priv->read = flexcan_read_be;
1350 priv->write = flexcan_write_be;
1352 priv->read = flexcan_read_le;
1353 priv->write = flexcan_write_le;
1356 priv->can.clock.freq = clock_freq;
1357 priv->can.bittiming_const = &flexcan_bittiming_const;
1358 priv->can.do_set_mode = flexcan_set_mode;
1359 priv->can.do_get_berr_counter = flexcan_get_berr_counter;
1360 priv->can.ctrlmode_supported = CAN_CTRLMODE_LOOPBACK |
1361 CAN_CTRLMODE_LISTENONLY | CAN_CTRLMODE_3_SAMPLES |
1362 CAN_CTRLMODE_BERR_REPORTING;
1364 priv->clk_ipg = clk_ipg;
1365 priv->clk_per = clk_per;
1366 priv->devtype_data = devtype_data;
1367 priv->reg_xceiver = reg_xceiver;
1369 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
1370 priv->tx_mb_idx = FLEXCAN_TX_MB_OFF_TIMESTAMP;
1371 priv->tx_mb_reserved = ®s->mb[FLEXCAN_TX_MB_RESERVED_OFF_TIMESTAMP];
1373 priv->tx_mb_idx = FLEXCAN_TX_MB_OFF_FIFO;
1374 priv->tx_mb_reserved = ®s->mb[FLEXCAN_TX_MB_RESERVED_OFF_FIFO];
1376 priv->tx_mb = ®s->mb[priv->tx_mb_idx];
1378 priv->reg_imask1_default = FLEXCAN_IFLAG_MB(priv->tx_mb_idx);
1379 priv->reg_imask2_default = 0;
1381 priv->offload.mailbox_read = flexcan_mailbox_read;
1383 if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
1386 priv->offload.mb_first = FLEXCAN_RX_MB_OFF_TIMESTAMP_FIRST;
1387 priv->offload.mb_last = FLEXCAN_RX_MB_OFF_TIMESTAMP_LAST;
1389 imask = GENMASK_ULL(priv->offload.mb_last, priv->offload.mb_first);
1390 priv->reg_imask1_default |= imask;
1391 priv->reg_imask2_default |= imask >> 32;
1393 err = can_rx_offload_add_timestamp(dev, &priv->offload);
1395 priv->reg_imask1_default |= FLEXCAN_IFLAG_RX_FIFO_OVERFLOW |
1396 FLEXCAN_IFLAG_RX_FIFO_AVAILABLE;
1397 err = can_rx_offload_add_fifo(dev, &priv->offload, FLEXCAN_NAPI_WEIGHT);
1400 goto failed_offload;
1402 err = register_flexcandev(dev);
1404 dev_err(&pdev->dev, "registering netdev failed\n");
1405 goto failed_register;
1408 devm_can_led_init(dev);
1410 dev_info(&pdev->dev, "device registered (reg_base=%p, irq=%d)\n",
1411 priv->regs, dev->irq);
1421 static int flexcan_remove(struct platform_device *pdev)
1423 struct net_device *dev = platform_get_drvdata(pdev);
1424 struct flexcan_priv *priv = netdev_priv(dev);
1426 unregister_flexcandev(dev);
1427 can_rx_offload_del(&priv->offload);
1433 static int __maybe_unused flexcan_suspend(struct device *device)
1435 struct net_device *dev = dev_get_drvdata(device);
1436 struct flexcan_priv *priv = netdev_priv(dev);
1439 if (netif_running(dev)) {
1440 err = flexcan_chip_disable(priv);
1443 netif_stop_queue(dev);
1444 netif_device_detach(dev);
1446 priv->can.state = CAN_STATE_SLEEPING;
1451 static int __maybe_unused flexcan_resume(struct device *device)
1453 struct net_device *dev = dev_get_drvdata(device);
1454 struct flexcan_priv *priv = netdev_priv(dev);
1457 priv->can.state = CAN_STATE_ERROR_ACTIVE;
1458 if (netif_running(dev)) {
1459 netif_device_attach(dev);
1460 netif_start_queue(dev);
1461 err = flexcan_chip_enable(priv);
1468 static SIMPLE_DEV_PM_OPS(flexcan_pm_ops, flexcan_suspend, flexcan_resume);
1470 static struct platform_driver flexcan_driver = {
1473 .pm = &flexcan_pm_ops,
1474 .of_match_table = flexcan_of_match,
1476 .probe = flexcan_probe,
1477 .remove = flexcan_remove,
1478 .id_table = flexcan_id_table,
1481 module_platform_driver(flexcan_driver);
1485 MODULE_LICENSE("GPL v2");
1486 MODULE_DESCRIPTION("CAN port driver for flexcan based chip");