flexcan.c 41.5 KB
Newer Older
1 2 3 4 5
/*
 * flexcan.c - FLEXCAN CAN controller driver
 *
 * Copyright (c) 2005-2006 Varma Electronics Oy
 * Copyright (c) 2009 Sascha Hauer, Pengutronix
6 7
 * Copyright (c) 2010-2017 Pengutronix, Marc Kleine-Budde <kernel@pengutronix.de>
 * Copyright (c) 2014 David Jander, Protonic Holland
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * Based on code originally by Andrey Volkov <avolkov@varma-el.com>
 *
 * LICENCE:
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation version 2.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

#include <linux/netdevice.h>
#include <linux/can.h>
#include <linux/can/dev.h>
#include <linux/can/error.h>
27
#include <linux/can/led.h>
28
#include <linux/can/rx-offload.h>
29 30 31 32 33
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/module.h>
34
#include <linux/of.h>
35
#include <linux/of_device.h>
36
#include <linux/platform_device.h>
37
#include <linux/regulator/consumer.h>
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

#define DRV_NAME			"flexcan"

/* 8 for RX fifo and 2 error handling */
#define FLEXCAN_NAPI_WEIGHT		(8 + 2)

/* FLEXCAN module configuration register (CANMCR) bits */
#define FLEXCAN_MCR_MDIS		BIT(31)
#define FLEXCAN_MCR_FRZ			BIT(30)
#define FLEXCAN_MCR_FEN			BIT(29)
#define FLEXCAN_MCR_HALT		BIT(28)
#define FLEXCAN_MCR_NOT_RDY		BIT(27)
#define FLEXCAN_MCR_WAK_MSK		BIT(26)
#define FLEXCAN_MCR_SOFTRST		BIT(25)
#define FLEXCAN_MCR_FRZ_ACK		BIT(24)
#define FLEXCAN_MCR_SUPV		BIT(23)
#define FLEXCAN_MCR_SLF_WAK		BIT(22)
#define FLEXCAN_MCR_WRN_EN		BIT(21)
#define FLEXCAN_MCR_LPM_ACK		BIT(20)
#define FLEXCAN_MCR_WAK_SRC		BIT(19)
#define FLEXCAN_MCR_DOZE		BIT(18)
#define FLEXCAN_MCR_SRX_DIS		BIT(17)
60
#define FLEXCAN_MCR_IRMQ		BIT(16)
61 62
#define FLEXCAN_MCR_LPRIO_EN		BIT(13)
#define FLEXCAN_MCR_AEN			BIT(12)
63
/* MCR_MAXMB: maximum used MBs is MAXMB + 1 */
64
#define FLEXCAN_MCR_MAXMB(x)		((x) & 0x7f)
65 66 67 68
#define FLEXCAN_MCR_IDAM_A		(0x0 << 8)
#define FLEXCAN_MCR_IDAM_B		(0x1 << 8)
#define FLEXCAN_MCR_IDAM_C		(0x2 << 8)
#define FLEXCAN_MCR_IDAM_D		(0x3 << 8)
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93

/* FLEXCAN control register (CANCTRL) bits */
#define FLEXCAN_CTRL_PRESDIV(x)		(((x) & 0xff) << 24)
#define FLEXCAN_CTRL_RJW(x)		(((x) & 0x03) << 22)
#define FLEXCAN_CTRL_PSEG1(x)		(((x) & 0x07) << 19)
#define FLEXCAN_CTRL_PSEG2(x)		(((x) & 0x07) << 16)
#define FLEXCAN_CTRL_BOFF_MSK		BIT(15)
#define FLEXCAN_CTRL_ERR_MSK		BIT(14)
#define FLEXCAN_CTRL_CLK_SRC		BIT(13)
#define FLEXCAN_CTRL_LPB		BIT(12)
#define FLEXCAN_CTRL_TWRN_MSK		BIT(11)
#define FLEXCAN_CTRL_RWRN_MSK		BIT(10)
#define FLEXCAN_CTRL_SMP		BIT(7)
#define FLEXCAN_CTRL_BOFF_REC		BIT(6)
#define FLEXCAN_CTRL_TSYN		BIT(5)
#define FLEXCAN_CTRL_LBUF		BIT(4)
#define FLEXCAN_CTRL_LOM		BIT(3)
#define FLEXCAN_CTRL_PROPSEG(x)		((x) & 0x07)
#define FLEXCAN_CTRL_ERR_BUS		(FLEXCAN_CTRL_ERR_MSK)
#define FLEXCAN_CTRL_ERR_STATE \
	(FLEXCAN_CTRL_TWRN_MSK | FLEXCAN_CTRL_RWRN_MSK | \
	 FLEXCAN_CTRL_BOFF_MSK)
#define FLEXCAN_CTRL_ERR_ALL \
	(FLEXCAN_CTRL_ERR_BUS | FLEXCAN_CTRL_ERR_STATE)

94
/* FLEXCAN control register 2 (CTRL2) bits */
95 96 97 98 99 100 101
#define FLEXCAN_CTRL2_ECRWRE		BIT(29)
#define FLEXCAN_CTRL2_WRMFRZ		BIT(28)
#define FLEXCAN_CTRL2_RFFN(x)		(((x) & 0x0f) << 24)
#define FLEXCAN_CTRL2_TASD(x)		(((x) & 0x1f) << 19)
#define FLEXCAN_CTRL2_MRP		BIT(18)
#define FLEXCAN_CTRL2_RRS		BIT(17)
#define FLEXCAN_CTRL2_EACEN		BIT(16)
102 103 104 105 106 107 108 109 110 111 112 113 114

/* FLEXCAN memory error control register (MECR) bits */
#define FLEXCAN_MECR_ECRWRDIS		BIT(31)
#define FLEXCAN_MECR_HANCEI_MSK		BIT(19)
#define FLEXCAN_MECR_FANCEI_MSK		BIT(18)
#define FLEXCAN_MECR_CEI_MSK		BIT(16)
#define FLEXCAN_MECR_HAERRIE		BIT(15)
#define FLEXCAN_MECR_FAERRIE		BIT(14)
#define FLEXCAN_MECR_EXTERRIE		BIT(13)
#define FLEXCAN_MECR_RERRDIS		BIT(9)
#define FLEXCAN_MECR_ECCDIS		BIT(8)
#define FLEXCAN_MECR_NCEFAFRZ		BIT(7)

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
/* FLEXCAN error and status register (ESR) bits */
#define FLEXCAN_ESR_TWRN_INT		BIT(17)
#define FLEXCAN_ESR_RWRN_INT		BIT(16)
#define FLEXCAN_ESR_BIT1_ERR		BIT(15)
#define FLEXCAN_ESR_BIT0_ERR		BIT(14)
#define FLEXCAN_ESR_ACK_ERR		BIT(13)
#define FLEXCAN_ESR_CRC_ERR		BIT(12)
#define FLEXCAN_ESR_FRM_ERR		BIT(11)
#define FLEXCAN_ESR_STF_ERR		BIT(10)
#define FLEXCAN_ESR_TX_WRN		BIT(9)
#define FLEXCAN_ESR_RX_WRN		BIT(8)
#define FLEXCAN_ESR_IDLE		BIT(7)
#define FLEXCAN_ESR_TXRX		BIT(6)
#define FLEXCAN_EST_FLT_CONF_SHIFT	(4)
#define FLEXCAN_ESR_FLT_CONF_MASK	(0x3 << FLEXCAN_EST_FLT_CONF_SHIFT)
#define FLEXCAN_ESR_FLT_CONF_ACTIVE	(0x0 << FLEXCAN_EST_FLT_CONF_SHIFT)
#define FLEXCAN_ESR_FLT_CONF_PASSIVE	(0x1 << FLEXCAN_EST_FLT_CONF_SHIFT)
#define FLEXCAN_ESR_BOFF_INT		BIT(2)
#define FLEXCAN_ESR_ERR_INT		BIT(1)
#define FLEXCAN_ESR_WAK_INT		BIT(0)
#define FLEXCAN_ESR_ERR_BUS \
	(FLEXCAN_ESR_BIT1_ERR | FLEXCAN_ESR_BIT0_ERR | \
	 FLEXCAN_ESR_ACK_ERR | FLEXCAN_ESR_CRC_ERR | \
	 FLEXCAN_ESR_FRM_ERR | FLEXCAN_ESR_STF_ERR)
#define FLEXCAN_ESR_ERR_STATE \
	(FLEXCAN_ESR_TWRN_INT | FLEXCAN_ESR_RWRN_INT | FLEXCAN_ESR_BOFF_INT)
#define FLEXCAN_ESR_ERR_ALL \
	(FLEXCAN_ESR_ERR_BUS | FLEXCAN_ESR_ERR_STATE)
143 144 145
#define FLEXCAN_ESR_ALL_INT \
	(FLEXCAN_ESR_TWRN_INT | FLEXCAN_ESR_RWRN_INT | \
	 FLEXCAN_ESR_BOFF_INT | FLEXCAN_ESR_ERR_INT)
146 147

/* FLEXCAN interrupt flag register (IFLAG) bits */
148
/* Errata ERR005829 step7: Reserve first valid MB */
149 150
#define FLEXCAN_TX_MB_RESERVED_OFF_FIFO	8
#define FLEXCAN_TX_MB_OFF_FIFO		9
151 152 153 154
#define FLEXCAN_TX_MB_RESERVED_OFF_TIMESTAMP	0
#define FLEXCAN_TX_MB_OFF_TIMESTAMP		1
#define FLEXCAN_RX_MB_OFF_TIMESTAMP_FIRST	(FLEXCAN_TX_MB_OFF_TIMESTAMP + 1)
#define FLEXCAN_RX_MB_OFF_TIMESTAMP_LAST	63
155
#define FLEXCAN_IFLAG_MB(x)		BIT(x)
156 157 158 159 160
#define FLEXCAN_IFLAG_RX_FIFO_OVERFLOW	BIT(7)
#define FLEXCAN_IFLAG_RX_FIFO_WARN	BIT(6)
#define FLEXCAN_IFLAG_RX_FIFO_AVAILABLE	BIT(5)

/* FLEXCAN message buffers */
161 162
#define FLEXCAN_MB_CODE_MASK		(0xf << 24)
#define FLEXCAN_MB_CODE_RX_BUSY_BIT	(0x1 << 24)
163 164 165
#define FLEXCAN_MB_CODE_RX_INACTIVE	(0x0 << 24)
#define FLEXCAN_MB_CODE_RX_EMPTY	(0x4 << 24)
#define FLEXCAN_MB_CODE_RX_FULL		(0x2 << 24)
166
#define FLEXCAN_MB_CODE_RX_OVERRUN	(0x6 << 24)
167 168 169 170 171 172 173
#define FLEXCAN_MB_CODE_RX_RANSWER	(0xa << 24)

#define FLEXCAN_MB_CODE_TX_INACTIVE	(0x8 << 24)
#define FLEXCAN_MB_CODE_TX_ABORT	(0x9 << 24)
#define FLEXCAN_MB_CODE_TX_DATA		(0xc << 24)
#define FLEXCAN_MB_CODE_TX_TANSWER	(0xe << 24)

174 175 176 177 178 179
#define FLEXCAN_MB_CNT_SRR		BIT(22)
#define FLEXCAN_MB_CNT_IDE		BIT(21)
#define FLEXCAN_MB_CNT_RTR		BIT(20)
#define FLEXCAN_MB_CNT_LENGTH(x)	(((x) & 0xf) << 16)
#define FLEXCAN_MB_CNT_TIMESTAMP(x)	((x) & 0xffff)

180
#define FLEXCAN_TIMEOUT_US		(50)
181

182
/* FLEXCAN hardware feature flags
183 184
 *
 * Below is some version info we got:
185 186
 *    SOC   Version   IP-Version  Glitch- [TR]WRN_INT IRQ Err Memory err RTR re-
 *                                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 191
 *   MX53  FlexCAN2  03.00.00.00    yes        no        no       no        no
 *   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
194 195 196
 *
 * 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 */
204

205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
/* Structure of the message buffer */
struct flexcan_mb {
	u32 can_ctrl;
	u32 can_id;
	u32 data[2];
};

/* Structure of the hardware registers */
struct flexcan_regs {
	u32 mcr;		/* 0x00 */
	u32 ctrl;		/* 0x04 */
	u32 timer;		/* 0x08 */
	u32 _reserved1;		/* 0x0c */
	u32 rxgmask;		/* 0x10 */
	u32 rx14mask;		/* 0x14 */
	u32 rx15mask;		/* 0x18 */
	u32 ecr;		/* 0x1c */
	u32 esr;		/* 0x20 */
	u32 imask2;		/* 0x24 */
	u32 imask1;		/* 0x28 */
	u32 iflag2;		/* 0x2c */
	u32 iflag1;		/* 0x30 */
227 228 229 230
	union {			/* 0x34 */
		u32 gfwr_mx28;	/* MX28, MX53 */
		u32 ctrl2;	/* MX6, VF610 */
	};
231 232 233 234 235 236
	u32 esr2;		/* 0x38 */
	u32 imeur;		/* 0x3c */
	u32 lrfr;		/* 0x40 */
	u32 crcr;		/* 0x44 */
	u32 rxfgmask;		/* 0x48 */
	u32 rxfir;		/* 0x4c */
237
	u32 _reserved3[12];	/* 0x50 */
238
	struct flexcan_mb mb[64];	/* 0x80 */
239 240 241 242 243 244 245
	/* FIFO-mode:
	 *			MB
	 * 0x080...0x08f	0	RX message buffer
	 * 0x090...0x0df	1-5	reserverd
	 * 0x0e0...0x0ff	6-7	8 entry ID table
	 *				(mx25, mx28, mx35, mx53)
	 * 0x0e0...0x2df	6-7..37	8..128 entry ID table
246
	 *				size conf'ed via ctrl2::RFFN
247 248
	 *				(mx6, vf610)
	 */
249 250 251 252 253
	u32 _reserved4[256];	/* 0x480 */
	u32 rximr[64];		/* 0x880 */
	u32 _reserved5[24];	/* 0x980 */
	u32 gfwr_mx6;		/* 0x9e0 - MX6 */
	u32 _reserved6[63];	/* 0x9e4 */
254 255 256 257 258 259 260 261
	u32 mecr;		/* 0xae0 */
	u32 erriar;		/* 0xae4 */
	u32 erridpr;		/* 0xae8 */
	u32 errippr;		/* 0xaec */
	u32 rerrar;		/* 0xaf0 */
	u32 rerrdr;		/* 0xaf4 */
	u32 rerrsynr;		/* 0xaf8 */
	u32 errsr;		/* 0xafc */
262 263
};

264
struct flexcan_devtype_data {
265
	u32 quirks;		/* quirks needed for different IP cores */
266 267
};

268 269
struct flexcan_priv {
	struct can_priv can;
270
	struct can_rx_offload offload;
271

272
	struct flexcan_regs __iomem *regs;
273 274 275
	struct flexcan_mb __iomem *tx_mb;
	struct flexcan_mb __iomem *tx_mb_reserved;
	u8 tx_mb_idx;
276
	u32 reg_ctrl_default;
277
	u32 reg_imask1_default;
278
	u32 reg_imask2_default;
279

280 281
	struct clk *clk_ipg;
	struct clk *clk_per;
282
	const struct flexcan_devtype_data *devtype_data;
283
	struct regulator *reg_xceiver;
284 285 286 287

	/* Read and Write APIs */
	u32 (*read)(void __iomem *addr);
	void (*write)(u32 val, void __iomem *addr);
288 289
};

290
static const struct flexcan_devtype_data fsl_p1010_devtype_data = {
291 292 293 294 295 296
	.quirks = FLEXCAN_QUIRK_BROKEN_WERR_STATE |
		FLEXCAN_QUIRK_BROKEN_PERR_STATE |
		FLEXCAN_QUIRK_DEFAULT_BIG_ENDIAN,
};

static const struct flexcan_devtype_data fsl_imx25_devtype_data = {
297 298
	.quirks = FLEXCAN_QUIRK_BROKEN_WERR_STATE |
		FLEXCAN_QUIRK_BROKEN_PERR_STATE,
299
};
300

301 302 303
static const struct flexcan_devtype_data fsl_imx28_devtype_data = {
	.quirks = FLEXCAN_QUIRK_BROKEN_PERR_STATE,
};
304

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,
308
};
309

310
static const struct flexcan_devtype_data fsl_vf610_devtype_data = {
311
	.quirks = FLEXCAN_QUIRK_DISABLE_RXFG | FLEXCAN_QUIRK_ENABLE_EACEN_RRS |
312 313
		FLEXCAN_QUIRK_DISABLE_MECR | FLEXCAN_QUIRK_USE_OFF_TIMESTAMP |
		FLEXCAN_QUIRK_BROKEN_PERR_STATE,
314
};
315

316 317 318 319 320 321
static const struct flexcan_devtype_data fsl_ls1021a_r2_devtype_data = {
	.quirks = FLEXCAN_QUIRK_DISABLE_RXFG | FLEXCAN_QUIRK_ENABLE_EACEN_RRS |
		FLEXCAN_QUIRK_DISABLE_MECR | FLEXCAN_QUIRK_BROKEN_PERR_STATE |
		FLEXCAN_QUIRK_USE_OFF_TIMESTAMP,
};

322
static const struct can_bittiming_const flexcan_bittiming_const = {
323 324 325 326 327 328 329 330 331 332 333
	.name = DRV_NAME,
	.tseg1_min = 4,
	.tseg1_max = 16,
	.tseg2_min = 2,
	.tseg2_max = 8,
	.sjw_max = 4,
	.brp_min = 1,
	.brp_max = 256,
	.brp_inc = 1,
};

334 335 336 337 338 339 340 341 342 343 344 345
/* FlexCAN module is essentially modelled as a little-endian IP in most
 * SoCs, i.e the registers as well as the message buffer areas are
 * implemented in a little-endian fashion.
 *
 * However there are some SoCs (e.g. LS1021A) which implement the FlexCAN
 * module in a big-endian fashion (i.e the registers as well as the
 * message buffer areas are implemented in a big-endian way).
 *
 * In addition, the FlexCAN module can be found on SoCs having ARM or
 * PPC cores. So, we need to abstract off the register read/write
 * functions, ensuring that these cater to all the combinations of module
 * endianness and underlying CPU endianness.
346
 */
347
static inline u32 flexcan_read_be(void __iomem *addr)
348
{
349
	return ioread32be(addr);
350 351
}

352
static inline void flexcan_write_be(u32 val, void __iomem *addr)
353
{
354
	iowrite32be(val, addr);
355
}
356 357

static inline u32 flexcan_read_le(void __iomem *addr)
358
{
359
	return ioread32(addr);
360 361
}

362
static inline void flexcan_write_le(u32 val, void __iomem *addr)
363
{
364
	iowrite32(val, addr);
365 366
}

367 368 369 370 371
static inline void flexcan_error_irq_enable(const struct flexcan_priv *priv)
{
	struct flexcan_regs __iomem *regs = priv->regs;
	u32 reg_ctrl = (priv->reg_ctrl_default | FLEXCAN_CTRL_ERR_MSK);

372
	priv->write(reg_ctrl, &regs->ctrl);
373 374 375 376 377 378 379
}

static inline void flexcan_error_irq_disable(const struct flexcan_priv *priv)
{
	struct flexcan_regs __iomem *regs = priv->regs;
	u32 reg_ctrl = (priv->reg_ctrl_default & ~FLEXCAN_CTRL_ERR_MSK);

380
	priv->write(reg_ctrl, &regs->ctrl);
381 382
}

383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
static inline int flexcan_transceiver_enable(const struct flexcan_priv *priv)
{
	if (!priv->reg_xceiver)
		return 0;

	return regulator_enable(priv->reg_xceiver);
}

static inline int flexcan_transceiver_disable(const struct flexcan_priv *priv)
{
	if (!priv->reg_xceiver)
		return 0;

	return regulator_disable(priv->reg_xceiver);
}

399
static int flexcan_chip_enable(struct flexcan_priv *priv)
400
{
401
	struct flexcan_regs __iomem *regs = priv->regs;
402
	unsigned int timeout = FLEXCAN_TIMEOUT_US / 10;
403 404
	u32 reg;

405
	reg = priv->read(&regs->mcr);
406
	reg &= ~FLEXCAN_MCR_MDIS;
407
	priv->write(reg, &regs->mcr);
408

409
	while (timeout-- && (priv->read(&regs->mcr) & FLEXCAN_MCR_LPM_ACK))
410
		udelay(10);
411

412
	if (priv->read(&regs->mcr) & FLEXCAN_MCR_LPM_ACK)
413 414 415
		return -ETIMEDOUT;

	return 0;
416 417
}

418
static int flexcan_chip_disable(struct flexcan_priv *priv)
419
{
420
	struct flexcan_regs __iomem *regs = priv->regs;
421
	unsigned int timeout = FLEXCAN_TIMEOUT_US / 10;
422 423
	u32 reg;

424
	reg = priv->read(&regs->mcr);
425
	reg |= FLEXCAN_MCR_MDIS;
426
	priv->write(reg, &regs->mcr);
427

428
	while (timeout-- && !(priv->read(&regs->mcr) & FLEXCAN_MCR_LPM_ACK))
429
		udelay(10);
430

431
	if (!(priv->read(&regs->mcr) & FLEXCAN_MCR_LPM_ACK))
432 433 434
		return -ETIMEDOUT;

	return 0;
435 436
}

437 438
static int flexcan_chip_freeze(struct flexcan_priv *priv)
{
439
	struct flexcan_regs __iomem *regs = priv->regs;
440 441 442
	unsigned int timeout = 1000 * 1000 * 10 / priv->can.bittiming.bitrate;
	u32 reg;

443
	reg = priv->read(&regs->mcr);
444
	reg |= FLEXCAN_MCR_HALT;
445
	priv->write(reg, &regs->mcr);
446

447
	while (timeout-- && !(priv->read(&regs->mcr) & FLEXCAN_MCR_FRZ_ACK))
448
		udelay(100);
449

450
	if (!(priv->read(&regs->mcr) & FLEXCAN_MCR_FRZ_ACK))
451 452 453 454 455 456 457
		return -ETIMEDOUT;

	return 0;
}

static int flexcan_chip_unfreeze(struct flexcan_priv *priv)
{
458
	struct flexcan_regs __iomem *regs = priv->regs;
459 460 461
	unsigned int timeout = FLEXCAN_TIMEOUT_US / 10;
	u32 reg;

462
	reg = priv->read(&regs->mcr);
463
	reg &= ~FLEXCAN_MCR_HALT;
464
	priv->write(reg, &regs->mcr);
465

466
	while (timeout-- && (priv->read(&regs->mcr) & FLEXCAN_MCR_FRZ_ACK))
467
		udelay(10);
468

469
	if (priv->read(&regs->mcr) & FLEXCAN_MCR_FRZ_ACK)
470 471 472 473 474
		return -ETIMEDOUT;

	return 0;
}

475 476
static int flexcan_chip_softreset(struct flexcan_priv *priv)
{
477
	struct flexcan_regs __iomem *regs = priv->regs;
478 479
	unsigned int timeout = FLEXCAN_TIMEOUT_US / 10;

480 481
	priv->write(FLEXCAN_MCR_SOFTRST, &regs->mcr);
	while (timeout-- && (priv->read(&regs->mcr) & FLEXCAN_MCR_SOFTRST))
482
		udelay(10);
483

484
	if (priv->read(&regs->mcr) & FLEXCAN_MCR_SOFTRST)
485 486 487 488 489
		return -ETIMEDOUT;

	return 0;
}

490 491
static int __flexcan_get_berr_counter(const struct net_device *dev,
				      struct can_berr_counter *bec)
492 493
{
	const struct flexcan_priv *priv = netdev_priv(dev);
494
	struct flexcan_regs __iomem *regs = priv->regs;
495
	u32 reg = priv->read(&regs->ecr);
496 497 498 499 500 501 502

	bec->txerr = (reg >> 0) & 0xff;
	bec->rxerr = (reg >> 8) & 0xff;

	return 0;
}

503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
static int flexcan_get_berr_counter(const struct net_device *dev,
				    struct can_berr_counter *bec)
{
	const struct flexcan_priv *priv = netdev_priv(dev);
	int err;

	err = clk_prepare_enable(priv->clk_ipg);
	if (err)
		return err;

	err = clk_prepare_enable(priv->clk_per);
	if (err)
		goto out_disable_ipg;

	err = __flexcan_get_berr_counter(dev, bec);

	clk_disable_unprepare(priv->clk_per);
 out_disable_ipg:
	clk_disable_unprepare(priv->clk_ipg);

	return err;
}

526
static netdev_tx_t flexcan_start_xmit(struct sk_buff *skb, struct net_device *dev)
527 528 529 530
{
	const struct flexcan_priv *priv = netdev_priv(dev);
	struct can_frame *cf = (struct can_frame *)skb->data;
	u32 can_id;
531
	u32 data;
532
	u32 ctrl = FLEXCAN_MB_CODE_TX_DATA | (cf->can_dlc << 16);
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549

	if (can_dropped_invalid_skb(dev, skb))
		return NETDEV_TX_OK;

	netif_stop_queue(dev);

	if (cf->can_id & CAN_EFF_FLAG) {
		can_id = cf->can_id & CAN_EFF_MASK;
		ctrl |= FLEXCAN_MB_CNT_IDE | FLEXCAN_MB_CNT_SRR;
	} else {
		can_id = (cf->can_id & CAN_SFF_MASK) << 18;
	}

	if (cf->can_id & CAN_RTR_FLAG)
		ctrl |= FLEXCAN_MB_CNT_RTR;

	if (cf->can_dlc > 0) {
550
		data = be32_to_cpup((__be32 *)&cf->data[0]);
551
		priv->write(data, &priv->tx_mb->data[0]);
552
	}
553
	if (cf->can_dlc > 4) {
554
		data = be32_to_cpup((__be32 *)&cf->data[4]);
555
		priv->write(data, &priv->tx_mb->data[1]);
556 557
	}

558 559
	can_put_echo_skb(skb, dev, 0);

560 561
	priv->write(can_id, &priv->tx_mb->can_id);
	priv->write(ctrl, &priv->tx_mb->can_ctrl);
562

563 564 565
	/* Errata ERR005829 step8:
	 * 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);
570

571 572 573
	return NETDEV_TX_OK;
}

574
static void flexcan_irq_bus_err(struct net_device *dev, u32 reg_esr)
575 576
{
	struct flexcan_priv *priv = netdev_priv(dev);
577 578
	struct sk_buff *skb;
	struct can_frame *cf;
579
	bool rx_errors = false, tx_errors = false;
580

581 582
	skb = alloc_can_err_skb(dev, &cf);
	if (unlikely(!skb))
583
		return;
584

585 586 587
	cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;

	if (reg_esr & FLEXCAN_ESR_BIT1_ERR) {
588
		netdev_dbg(dev, "BIT1_ERR irq\n");
589
		cf->data[2] |= CAN_ERR_PROT_BIT1;
590
		tx_errors = true;
591 592
	}
	if (reg_esr & FLEXCAN_ESR_BIT0_ERR) {
593
		netdev_dbg(dev, "BIT0_ERR irq\n");
594
		cf->data[2] |= CAN_ERR_PROT_BIT0;
595
		tx_errors = true;
596 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;
601
		tx_errors = true;
602 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;
607
		rx_errors = true;
608 609
	}
	if (reg_esr & FLEXCAN_ESR_FRM_ERR) {
610
		netdev_dbg(dev, "FRM_ERR irq\n");
611
		cf->data[2] |= CAN_ERR_PROT_FORM;
612
		rx_errors = true;
613 614
	}
	if (reg_esr & FLEXCAN_ESR_STF_ERR) {
615
		netdev_dbg(dev, "STF_ERR irq\n");
616
		cf->data[2] |= CAN_ERR_PROT_STUFF;
617
		rx_errors = true;
618 619 620 621 622 623 624 625
	}

	priv->can.can_stats.bus_error++;
	if (rx_errors)
		dev->stats.rx_errors++;
	if (tx_errors)
		dev->stats.tx_errors++;

626
	can_rx_offload_irq_queue_err_skb(&priv->offload, skb);
627 628
}

629
static void flexcan_irq_state(struct net_device *dev, u32 reg_esr)
630 631 632 633
{
	struct flexcan_priv *priv = netdev_priv(dev);
	struct sk_buff *skb;
	struct can_frame *cf;
634
	enum can_state new_state, rx_state, tx_state;
635
	int flt;
636
	struct can_berr_counter bec;
637 638 639

	flt = reg_esr & FLEXCAN_ESR_FLT_CONF_MASK;
	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);
645
	} else {
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 650 651
		rx_state = bec.rxerr >= bec.txerr ? new_state : 0;
		tx_state = bec.rxerr <= bec.txerr ? new_state : 0;
	}
652 653 654

	/* state hasn't changed */
	if (likely(new_state == priv->can.state))
655
		return;
656 657 658

	skb = alloc_can_err_skb(dev, &cf);
	if (unlikely(!skb))
659
		return;
660

661 662 663 664 665
	can_change_state(dev, cf, tx_state, rx_state);

	if (unlikely(new_state == CAN_STATE_BUS_OFF))
		can_bus_off(dev);

666 667
	can_rx_offload_irq_queue_err_skb(&priv->offload, skb);
}
668

669 670 671
static inline struct flexcan_priv *rx_offload_to_priv(struct can_rx_offload *offload)
{
	return container_of(offload, struct flexcan_priv, offload);
672 673
}

674 675 676
static unsigned int flexcan_mailbox_read(struct can_rx_offload *offload,
					 struct can_frame *cf,
					 u32 *timestamp, unsigned int n)
677
{
678
	struct flexcan_priv *priv = rx_offload_to_priv(offload);
679
	struct flexcan_regs __iomem *regs = priv->regs;
680 681 682
	struct flexcan_mb __iomem *mb = &regs->mb[n];
	u32 reg_ctrl, reg_id, reg_iflag1;

683 684 685 686
	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
		u32 code;

		do {
687
			reg_ctrl = priv->read(&mb->can_ctrl);
688 689 690 691 692 693 694 695 696 697 698 699 700 701
		} while (reg_ctrl & FLEXCAN_MB_CODE_RX_BUSY_BIT);

		/* is this MB empty? */
		code = reg_ctrl & FLEXCAN_MB_CODE_MASK;
		if ((code != FLEXCAN_MB_CODE_RX_FULL) &&
		    (code != FLEXCAN_MB_CODE_RX_OVERRUN))
			return 0;

		if (code == FLEXCAN_MB_CODE_RX_OVERRUN) {
			/* This MB was overrun, we lost data */
			offload->dev->stats.rx_over_errors++;
			offload->dev->stats.rx_errors++;
		}
	} else {
702
		reg_iflag1 = priv->read(&regs->iflag1);
703 704 705
		if (!(reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_AVAILABLE))
			return 0;

706
		reg_ctrl = priv->read(&mb->can_ctrl);
707
	}
708

709 710 711
	/* increase timstamp to full 32 bit */
	*timestamp = reg_ctrl << 16;

712
	reg_id = priv->read(&mb->can_id);
713 714 715 716 717 718 719 720 721
	if (reg_ctrl & FLEXCAN_MB_CNT_IDE)
		cf->can_id = ((reg_id >> 0) & CAN_EFF_MASK) | CAN_EFF_FLAG;
	else
		cf->can_id = (reg_id >> 18) & CAN_SFF_MASK;

	if (reg_ctrl & FLEXCAN_MB_CNT_RTR)
		cf->can_id |= CAN_RTR_FLAG;
	cf->can_dlc = get_can_dlc((reg_ctrl >> 16) & 0xf);

722 723
	*(__be32 *)(cf->data + 0) = cpu_to_be32(priv->read(&mb->data[0]));
	*(__be32 *)(cf->data + 4) = cpu_to_be32(priv->read(&mb->data[1]));
724 725

	/* mark as read */
726 727 728
	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
		/* Clear IRQ */
		if (n < 32)
729
			priv->write(BIT(n), &regs->iflag1);
730
		else
731
			priv->write(BIT(n - 32), &regs->iflag2);
732
	} else {
733 734
		priv->write(FLEXCAN_IFLAG_RX_FIFO_AVAILABLE, &regs->iflag1);
		priv->read(&regs->timer);
735
	}
736

737 738 739
	return 1;
}

740 741 742 743 744 745

static inline u64 flexcan_read_reg_iflag_rx(struct flexcan_priv *priv)
{
	struct flexcan_regs __iomem *regs = priv->regs;
	u32 iflag1, iflag2;

746 747
	iflag2 = priv->read(&regs->iflag2) & priv->reg_imask2_default;
	iflag1 = priv->read(&regs->iflag1) & priv->reg_imask1_default &
748 749 750 751 752
		~FLEXCAN_IFLAG_MB(priv->tx_mb_idx);

	return (u64)iflag2 << 32 | iflag1;
}

753 754 755 756 757
static irqreturn_t flexcan_irq(int irq, void *dev_id)
{
	struct net_device *dev = dev_id;
	struct net_device_stats *stats = &dev->stats;
	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;
762

763
	reg_iflag1 = priv->read(&regs->iflag1);
764

765
	/* reception interrupt */
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
		u64 reg_iflag;
		int ret;

		while ((reg_iflag = flexcan_read_reg_iflag_rx(priv))) {
			handled = IRQ_HANDLED;
			ret = can_rx_offload_irq_offload_timestamp(&priv->offload,
								   reg_iflag);
			if (!ret)
				break;
		}
	} else {
		if (reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_AVAILABLE) {
			handled = IRQ_HANDLED;
			can_rx_offload_irq_offload_fifo(&priv->offload);
		}
782

783 784 785
		/* FIFO overflow interrupt */
		if (reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_OVERFLOW) {
			handled = IRQ_HANDLED;
786 787
			priv->write(FLEXCAN_IFLAG_RX_FIFO_OVERFLOW,
				    &regs->iflag1);
788 789 790
			dev->stats.rx_over_errors++;
			dev->stats.rx_errors++;
		}
791 792 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);
797
		stats->tx_packets++;
798
		can_led_event(dev, CAN_LED_EVENT_TX);
799 800

		/* after sending a RTR frame MB is in RX mode */
801 802 803
		priv->write(FLEXCAN_MB_CODE_TX_INACTIVE,
			    &priv->tx_mb->can_ctrl);
		priv->write(FLEXCAN_IFLAG_MB(priv->tx_mb_idx), &regs->iflag1);
804 805 806
		netif_wake_queue(dev);
	}

807
	reg_esr = priv->read(&regs->esr);
808

809 810 811
	/* ACK all bus error and state change IRQ sources */
	if (reg_esr & FLEXCAN_ESR_ALL_INT) {
		handled = IRQ_HANDLED;
812
		priv->write(reg_esr & FLEXCAN_ESR_ALL_INT, &regs->esr);
813 814
	}

815 816
	/* state change interrupt or broken error state quirk fix is enabled */
	if ((reg_esr & FLEXCAN_ESR_ERR_STATE) ||
817 818
	    (priv->devtype_data->quirks & (FLEXCAN_QUIRK_BROKEN_WERR_STATE |
	                                   FLEXCAN_QUIRK_BROKEN_PERR_STATE)))
819 820 821 822 823 824 825
		flexcan_irq_state(dev, reg_esr);

	/* bus error IRQ - handle if bus error reporting is activated */
	if ((reg_esr & FLEXCAN_ESR_ERR_BUS) &&
	    (priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING))
		flexcan_irq_bus_err(dev, reg_esr);

826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
	/* availability of error interrupt among state transitions in case
	 * bus error reporting is de-activated and
	 * FLEXCAN_QUIRK_BROKEN_PERR_STATE is enabled:
	 *  +--------------------------------------------------------------+
	 *  | +----------------------------------------------+ [stopped /  |
	 *  | |                                              |  sleeping] -+
	 *  +-+-> active <-> warning <-> passive -> bus off -+
	 *        ___________^^^^^^^^^^^^_______________________________
	 *        disabled(1)  enabled             disabled
	 *
	 * (1): enabled if FLEXCAN_QUIRK_BROKEN_WERR_STATE is enabled
	 */
	if ((last_state != priv->can.state) &&
	    (priv->devtype_data->quirks & FLEXCAN_QUIRK_BROKEN_PERR_STATE) &&
	    !(priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING)) {
		switch (priv->can.state) {
		case CAN_STATE_ERROR_ACTIVE:
			if (priv->devtype_data->quirks &
			    FLEXCAN_QUIRK_BROKEN_WERR_STATE)
				flexcan_error_irq_enable(priv);
			else
				flexcan_error_irq_disable(priv);
			break;

		case CAN_STATE_ERROR_WARNING:
			flexcan_error_irq_enable(priv);
			break;

		case CAN_STATE_ERROR_PASSIVE:
		case CAN_STATE_BUS_OFF:
			flexcan_error_irq_disable(priv);
			break;

		default:
			break;
		}
	}

864
	return handled;
865 866 867 868 869 870
}

static void flexcan_set_bittiming(struct net_device *dev)
{
	const struct flexcan_priv *priv = netdev_priv(dev);
	const struct can_bittiming *bt = &priv->can.bittiming;
871
	struct flexcan_regs __iomem *regs = priv->regs;
872 873
	u32 reg;

874
	reg = priv->read(&regs->ctrl);
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
	reg &= ~(FLEXCAN_CTRL_PRESDIV(0xff) |
		 FLEXCAN_CTRL_RJW(0x3) |
		 FLEXCAN_CTRL_PSEG1(0x7) |
		 FLEXCAN_CTRL_PSEG2(0x7) |
		 FLEXCAN_CTRL_PROPSEG(0x7) |
		 FLEXCAN_CTRL_LPB |
		 FLEXCAN_CTRL_SMP |
		 FLEXCAN_CTRL_LOM);

	reg |= FLEXCAN_CTRL_PRESDIV(bt->brp - 1) |
		FLEXCAN_CTRL_PSEG1(bt->phase_seg1 - 1) |
		FLEXCAN_CTRL_PSEG2(bt->phase_seg2 - 1) |
		FLEXCAN_CTRL_RJW(bt->sjw - 1) |
		FLEXCAN_CTRL_PROPSEG(bt->prop_seg - 1);

	if (priv->can.ctrlmode & CAN_CTRLMODE_LOOPBACK)
		reg |= FLEXCAN_CTRL_LPB;
	if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)
		reg |= FLEXCAN_CTRL_LOM;
	if (priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES)
		reg |= FLEXCAN_CTRL_SMP;

897
	netdev_dbg(dev, "writing ctrl=0x%08x\n", reg);
898
	priv->write(reg, &regs->ctrl);
899 900

	/* print chip status */
901
	netdev_dbg(dev, "%s: mcr=0x%08x ctrl=0x%08x\n", __func__,
902
		   priv->read(&regs->mcr), priv->read(&regs->ctrl));
903 904
}

905
/* flexcan_chip_start
906 907 908 909 910 911 912
 *
 * this functions is entered with clocks enabled
 *
 */
static int flexcan_chip_start(struct net_device *dev)
{
	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;
915
	int err, i;
916 917

	/* enable module */
918 919 920
	err = flexcan_chip_enable(priv);
	if (err)
		return err;
921 922

	/* soft reset */
923 924
	err = flexcan_chip_softreset(priv);
	if (err)
925
		goto out_chip_disable;
926 927 928

	flexcan_set_bittiming(dev);

929
	/* MCR
930 931 932 933 934 935
	 *
	 * enable freeze
	 * enable fifo
	 * halt now
	 * only supervisor access
	 * enable warning int
936
	 * disable local echo
937
	 * enable individual RX masking
938 939
	 * choose format C
	 * set max mailbox number
940
	 */
941
	reg_mcr = priv->read(&regs->mcr);
942
	reg_mcr &= ~FLEXCAN_MCR_MAXMB(0xff);
943 944 945 946 947 948 949 950 951 952 953
	reg_mcr |= FLEXCAN_MCR_FRZ | FLEXCAN_MCR_HALT | FLEXCAN_MCR_SUPV |
		FLEXCAN_MCR_WRN_EN | FLEXCAN_MCR_SRX_DIS | FLEXCAN_MCR_IRMQ |
		FLEXCAN_MCR_IDAM_C;

	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
		reg_mcr &= ~FLEXCAN_MCR_FEN;
		reg_mcr |= FLEXCAN_MCR_MAXMB(priv->offload.mb_last);
	} else {
		reg_mcr |= FLEXCAN_MCR_FEN |
			FLEXCAN_MCR_MAXMB(priv->tx_mb_idx);
	}
954
	netdev_dbg(dev, "%s: writing mcr=0x%08x", __func__, reg_mcr);
955
	priv->write(reg_mcr, &regs->mcr);
956

957
	/* CTRL
958 959 960 961 962 963 964 965 966 967
	 *
	 * disable timer sync feature
	 *
	 * disable auto busoff recovery
	 * transmit lowest buffer first
	 *
	 * enable tx and rx warning interrupt
	 * enable bus off interrupt
	 * (== FLEXCAN_CTRL_ERR_STATE)
	 */
968
	reg_ctrl = priv->read(&regs->ctrl);
969 970
	reg_ctrl &= ~FLEXCAN_CTRL_TSYN;
	reg_ctrl |= FLEXCAN_CTRL_BOFF_REC | FLEXCAN_CTRL_LBUF |
971
		FLEXCAN_CTRL_ERR_STATE;
972 973

	/* enable the "error interrupt" (FLEXCAN_CTRL_ERR_MSK),
974 975 976
	 * on most Flexcan cores, too. Otherwise we don't get
	 * any error warning or passive interrupts.
	 */
977
	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_BROKEN_WERR_STATE ||
978 979
	    priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING)
		reg_ctrl |= FLEXCAN_CTRL_ERR_MSK;
980 981
	else
		reg_ctrl &= ~FLEXCAN_CTRL_ERR_MSK;
982 983 984

	/* save for later use */
	priv->reg_ctrl_default = reg_ctrl;
985 986
	/* leave interrupts disabled for now */
	reg_ctrl &= ~FLEXCAN_CTRL_ERR_ALL;
987
	netdev_dbg(dev, "%s: writing ctrl=0x%08x", __func__, reg_ctrl);
988
	priv->write(reg_ctrl, &regs->ctrl);
989

990
	if ((priv->devtype_data->quirks & FLEXCAN_QUIRK_ENABLE_EACEN_RRS)) {
991
		reg_ctrl2 = priv->read(&regs->ctrl2);
992
		reg_ctrl2 |= FLEXCAN_CTRL2_EACEN | FLEXCAN_CTRL2_RRS;
993
		priv->write(reg_ctrl2, &regs->ctrl2);
994 995
	}

996
	/* clear and invalidate all mailboxes first */
997
	for (i = priv->tx_mb_idx; i < ARRAY_SIZE(regs->mb); i++) {
998 999
		priv->write(FLEXCAN_MB_CODE_RX_INACTIVE,
			    &regs->mb[i].can_ctrl);
1000 1001
	}

1002 1003
	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
		for (i = priv->offload.mb_first; i <= priv->offload.mb_last; i++)
1004 1005
			priv->write(FLEXCAN_MB_CODE_RX_EMPTY,
				    &regs->mb[i].can_ctrl);
1006 1007
	}

1008
	/* Errata ERR005829: mark first TX mailbox as INACTIVE */
1009 1010
	priv->write(FLEXCAN_MB_CODE_TX_INACTIVE,
		    &priv->tx_mb_reserved->can_ctrl);
1011

1012
	/* mark TX mailbox as INACTIVE */
1013 1014
	priv->write(FLEXCAN_MB_CODE_TX_INACTIVE,
		    &priv->tx_mb->can_ctrl);
1015

1016
	/* acceptance mask/acceptance code (accept everything) */
1017 1018 1019
	priv->write(0x0, &regs->rxgmask);
	priv->write(0x0, &regs->rx14mask);
	priv->write(0x0, &regs->rx15mask);
1020

1021
	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_DISABLE_RXFG)
1022
		priv->write(0x0, &regs->rxfgmask);
1023

1024 1025
	/* clear acceptance filters */
	for (i = 0; i < ARRAY_SIZE(regs->mb); i++)
1026
		priv->write(0, &regs->rximr[i]);
1027

1028
	/* On Vybrid, disable memory error detection interrupts
1029 1030 1031 1032 1033
	 * and freeze mode.
	 * This also works around errata e5295 which generates
	 * false positive memory errors and put the device in
	 * freeze mode.
	 */
1034
	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_DISABLE_MECR) {
1035
		/* Follow the protocol as described in "Detection
1036 1037 1038
		 * and Correction of Memory Errors" to write to
		 * MECR register
		 */
1039
		reg_ctrl2 = priv->read(&regs->ctrl2);
1040
		reg_ctrl2 |= FLEXCAN_CTRL2_ECRWRE;
1041
		priv->write(reg_ctrl2, &regs->ctrl2);
1042

1043
		reg_mecr = priv->read(&regs->mecr);
1044
		reg_mecr &= ~FLEXCAN_MECR_ECRWRDIS;
1045
		priv->write(reg_mecr, &regs->mecr);
1046
		reg_mecr &= ~(FLEXCAN_MECR_NCEFAFRZ | FLEXCAN_MECR_HANCEI_MSK |
1047
			      FLEXCAN_MECR_FANCEI_MSK);
1048
		priv->write(reg_mecr, &regs->mecr);
1049 1050
	}

1051 1052
	err = flexcan_transceiver_enable(priv);
	if (err)
1053
		goto out_chip_disable;
1054 1055

	/* synchronize with the can bus */
1056 1057 1058
	err = flexcan_chip_unfreeze(priv);
	if (err)
		goto out_transceiver_disable;
1059 1060 1061

	priv->can.state = CAN_STATE_ERROR_ACTIVE;

1062 1063
	/* enable interrupts atomically */
	disable_irq(dev->irq);
1064 1065 1066
	priv->write(priv->reg_ctrl_default, &regs->ctrl);
	priv->write(priv->reg_imask1_default, &regs->imask1);
	priv->write(priv->reg_imask2_default, &regs->imask2);
1067
	enable_irq(dev->irq);
1068 1069

	/* print chip status */
1070
	netdev_dbg(dev, "%s: reading mcr=0x%08x ctrl=0x%08x\n", __func__,
1071
		   priv->read(&regs->mcr), priv->read(&regs->ctrl));
1072 1073 1074

	return 0;

1075 1076 1077
 out_transceiver_disable:
	flexcan_transceiver_disable(priv);
 out_chip_disable:
1078 1079 1080 1081
	flexcan_chip_disable(priv);
	return err;
}

1082
/* flexcan_chip_stop
1083 1084 1085 1086 1087 1088
 *
 * this functions is entered with clocks enabled
 */
static void flexcan_chip_stop(struct net_device *dev)
{
	struct flexcan_priv *priv = netdev_priv(dev);
1089
	struct flexcan_regs __iomem *regs = priv->regs;
1090

1091 1092 1093
	/* freeze + disable module */
	flexcan_chip_freeze(priv);
	flexcan_chip_disable(priv);
1094

1095
	/* Disable all interrupts */
1096 1097 1098 1099
	priv->write(0, &regs->imask2);
	priv->write(0, &regs->imask1);
	priv->write(priv->reg_ctrl_default & ~FLEXCAN_CTRL_ERR_ALL,
		    &regs->ctrl);
1100

1101
	flexcan_transceiver_disable(priv);
1102 1103 1104 1105 1106 1107 1108 1109
	priv->can.state = CAN_STATE_STOPPED;
}

static int flexcan_open(struct net_device *dev)
{
	struct flexcan_priv *priv = netdev_priv(dev);
	int err;

1110 1111 1112 1113 1114 1115 1116
	err = clk_prepare_enable(priv->clk_ipg);
	if (err)
		return err;

	err = clk_prepare_enable(priv->clk_per);
	if (err)
		goto out_disable_ipg;
1117 1118 1119

	err = open_candev(dev);
	if (err)
1120
		goto out_disable_per;
1121 1122 1123 1124 1125 1126 1127 1128

	err = request_irq(dev->irq, flexcan_irq, IRQF_SHARED, dev->name, dev);
	if (err)
		goto out_close;

	/* start chip and queuing */
	err = flexcan_chip_start(dev);
	if (err)
1129
		goto out_free_irq;
1130 1131 1132

	can_led_event(dev, CAN_LED_EVENT_OPEN);

1133
	can_rx_offload_enable(&priv->offload);
1134 1135 1136 1137
	netif_start_queue(dev);

	return 0;

1138 1139
 out_free_irq:
	free_irq(dev->irq, dev);
1140 1141
 out_close:
	close_candev(dev);
1142
 out_disable_per:
1143
	clk_disable_unprepare(priv->clk_per);
1144
 out_disable_ipg:
1145
	clk_disable_unprepare(priv->clk_ipg);
1146 1147 1148 1149 1150 1151 1152 1153 1154

	return err;
}

static int flexcan_close(struct net_device *dev)
{
	struct flexcan_priv *priv = netdev_priv(dev);

	netif_stop_queue(dev);
1155
	can_rx_offload_disable(&priv->offload);
1156 1157 1158
	flexcan_chip_stop(dev);

	free_irq(dev->irq, dev);
1159 1160
	clk_disable_unprepare(priv->clk_per);
	clk_disable_unprepare(priv->clk_ipg);
1161 1162 1163

	close_candev(dev);

1164 1165
	can_led_event(dev, CAN_LED_EVENT_STOP);

1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
	return 0;
}

static int flexcan_set_mode(struct net_device *dev, enum can_mode mode)
{
	int err;

	switch (mode) {
	case CAN_MODE_START:
		err = flexcan_chip_start(dev);
		if (err)
			return err;

		netif_wake_queue(dev);
		break;

	default:
		return -EOPNOTSUPP;
	}

	return 0;
}

static const struct net_device_ops flexcan_netdev_ops = {
	.ndo_open	= flexcan_open,
	.ndo_stop	= flexcan_close,
	.ndo_start_xmit	= flexcan_start_xmit,
1193
	.ndo_change_mtu = can_change_mtu,
1194 1195
};

B
Bill Pemberton 已提交
1196
static int register_flexcandev(struct net_device *dev)
1197 1198
{
	struct flexcan_priv *priv = netdev_priv(dev);
1199
	struct flexcan_regs __iomem *regs = priv->regs;
1200 1201
	u32 reg, err;

1202 1203 1204 1205 1206 1207 1208
	err = clk_prepare_enable(priv->clk_ipg);
	if (err)
		return err;

	err = clk_prepare_enable(priv->clk_per);
	if (err)
		goto out_disable_ipg;
1209 1210

	/* select "bus clock", chip must be disabled */
1211 1212 1213
	err = flexcan_chip_disable(priv);
	if (err)
		goto out_disable_per;
1214
	reg = priv->read(&regs->ctrl);
1215
	reg |= FLEXCAN_CTRL_CLK_SRC;
1216
	priv->write(reg, &regs->ctrl);
1217

1218 1219 1220
	err = flexcan_chip_enable(priv);
	if (err)
		goto out_chip_disable;
1221 1222

	/* set freeze, halt and activate FIFO, restrict register access */
1223
	reg = priv->read(&regs->mcr);
1224 1225
	reg |= FLEXCAN_MCR_FRZ | FLEXCAN_MCR_HALT |
		FLEXCAN_MCR_FEN | FLEXCAN_MCR_SUPV;
1226
	priv->write(reg, &regs->mcr);
1227

1228
	/* Currently we only support newer versions of this core
1229 1230 1231
	 * featuring a RX hardware FIFO (although this driver doesn't
	 * make use of it on some cores). Older cores, found on some
	 * Coldfire derivates are not tested.
1232
	 */
1233
	reg = priv->read(&regs->mcr);
1234
	if (!(reg & FLEXCAN_MCR_FEN)) {
1235
		netdev_err(dev, "Could not enable RX FIFO, unsupported core\n");
1236
		err = -ENODEV;
1237
		goto out_chip_disable;
1238 1239 1240 1241 1242
	}

	err = register_candev(dev);

	/* disable core and turn off clocks */
1243
 out_chip_disable:
1244
	flexcan_chip_disable(priv);
1245
 out_disable_per:
1246
	clk_disable_unprepare(priv->clk_per);
1247
 out_disable_ipg:
1248
	clk_disable_unprepare(priv->clk_ipg);
1249 1250 1251 1252

	return err;
}

B
Bill Pemberton 已提交
1253
static void unregister_flexcandev(struct net_device *dev)
1254 1255 1256 1257
{
	unregister_candev(dev);
}

1258 1259
static const struct of_device_id flexcan_of_match[] = {
	{ .compatible = "fsl,imx6q-flexcan", .data = &fsl_imx6q_devtype_data, },
1260
	{ .compatible = "fsl,imx28-flexcan", .data = &fsl_imx28_devtype_data, },
1261 1262 1263
	{ .compatible = "fsl,imx53-flexcan", .data = &fsl_imx25_devtype_data, },
	{ .compatible = "fsl,imx35-flexcan", .data = &fsl_imx25_devtype_data, },
	{ .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, },
1267 1268
	{ /* sentinel */ },
};
1269
MODULE_DEVICE_TABLE(of, flexcan_of_match);
1270 1271 1272 1273 1274

static const struct platform_device_id flexcan_id_table[] = {
	{ .name = "flexcan", .driver_data = (kernel_ulong_t)&fsl_p1010_devtype_data, },
	{ /* sentinel */ },
};
1275
MODULE_DEVICE_TABLE(platform, flexcan_id_table);
1276

B
Bill Pemberton 已提交
1277
static int flexcan_probe(struct platform_device *pdev)
1278
{
1279
	const struct of_device_id *of_id;
1280
	const struct flexcan_devtype_data *devtype_data;
1281 1282
	struct net_device *dev;
	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;
1287
	int err, irq;
1288 1289
	u32 clock_freq = 0;

1290 1291 1292 1293 1294 1295
	reg_xceiver = devm_regulator_get(&pdev->dev, "xceiver");
	if (PTR_ERR(reg_xceiver) == -EPROBE_DEFER)
		return -EPROBE_DEFER;
	else if (IS_ERR(reg_xceiver))
		reg_xceiver = NULL;

1296 1297
	if (pdev->dev.of_node)
		of_property_read_u32(pdev->dev.of_node,
1298
				     "clock-frequency", &clock_freq);
1299 1300

	if (!clock_freq) {
1301 1302 1303
		clk_ipg = devm_clk_get(&pdev->dev, "ipg");
		if (IS_ERR(clk_ipg)) {
			dev_err(&pdev->dev, "no ipg clock defined\n");
1304
			return PTR_ERR(clk_ipg);
1305 1306 1307 1308 1309
		}

		clk_per = devm_clk_get(&pdev->dev, "per");
		if (IS_ERR(clk_per)) {
			dev_err(&pdev->dev, "no per clock defined\n");
1310
			return PTR_ERR(clk_per);
1311
		}
1312
		clock_freq = clk_get_rate(clk_per);
1313 1314 1315 1316
	}

	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	irq = platform_get_irq(pdev, 0);
1317 1318
	if (irq <= 0)
		return -ENODEV;
1319

1320 1321 1322
	regs = devm_ioremap_resource(&pdev->dev, mem);
	if (IS_ERR(regs))
		return PTR_ERR(regs);
1323

1324 1325 1326
	of_id = of_match_device(flexcan_of_match, &pdev->dev);
	if (of_id) {
		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;
1330
	} else {
1331
		return -ENODEV;
1332 1333
	}

1334 1335 1336 1337
	dev = alloc_candev(sizeof(struct flexcan_priv), 1);
	if (!dev)
		return -ENOMEM;

1338 1339 1340
	platform_set_drvdata(pdev, dev);
	SET_NETDEV_DEV(dev, &pdev->dev);

1341 1342
	dev->netdev_ops = &flexcan_netdev_ops;
	dev->irq = irq;
1343
	dev->flags |= IFF_ECHO;
1344 1345

	priv = netdev_priv(dev);
1346

1347 1348
	if (of_property_read_bool(pdev->dev.of_node, "big-endian") ||
	    devtype_data->quirks & FLEXCAN_QUIRK_DEFAULT_BIG_ENDIAN) {
1349 1350 1351
		priv->read = flexcan_read_be;
		priv->write = flexcan_write_be;
	} else {
1352 1353
		priv->read = flexcan_read_le;
		priv->write = flexcan_write_le;
1354 1355
	}

1356
	priv->can.clock.freq = clock_freq;
1357 1358 1359 1360 1361 1362
	priv->can.bittiming_const = &flexcan_bittiming_const;
	priv->can.do_set_mode = flexcan_set_mode;
	priv->can.do_get_berr_counter = flexcan_get_berr_counter;
	priv->can.ctrlmode_supported = CAN_CTRLMODE_LOOPBACK |
		CAN_CTRLMODE_LISTENONLY	| CAN_CTRLMODE_3_SAMPLES |
		CAN_CTRLMODE_BERR_REPORTING;
1363
	priv->regs = regs;
1364 1365
	priv->clk_ipg = clk_ipg;
	priv->clk_per = clk_per;
1366
	priv->devtype_data = devtype_data;
1367
	priv->reg_xceiver = reg_xceiver;
1368

1369 1370 1371 1372 1373 1374 1375
	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
		priv->tx_mb_idx = FLEXCAN_TX_MB_OFF_TIMESTAMP;
		priv->tx_mb_reserved = &regs->mb[FLEXCAN_TX_MB_RESERVED_OFF_TIMESTAMP];
	} else {
		priv->tx_mb_idx = FLEXCAN_TX_MB_OFF_FIFO;
		priv->tx_mb_reserved = &regs->mb[FLEXCAN_TX_MB_RESERVED_OFF_FIFO];
	}
1376 1377
	priv->tx_mb = &regs->mb[priv->tx_mb_idx];

1378 1379
	priv->reg_imask1_default = FLEXCAN_IFLAG_MB(priv->tx_mb_idx);
	priv->reg_imask2_default = 0;
1380

1381
	priv->offload.mailbox_read = flexcan_mailbox_read;
1382

1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398
	if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
		u64 imask;

		priv->offload.mb_first = FLEXCAN_RX_MB_OFF_TIMESTAMP_FIRST;
		priv->offload.mb_last = FLEXCAN_RX_MB_OFF_TIMESTAMP_LAST;

		imask = GENMASK_ULL(priv->offload.mb_last, priv->offload.mb_first);
		priv->reg_imask1_default |= imask;
		priv->reg_imask2_default |= imask >> 32;

		err = can_rx_offload_add_timestamp(dev, &priv->offload);
	} else {
		priv->reg_imask1_default |= FLEXCAN_IFLAG_RX_FIFO_OVERFLOW |
			FLEXCAN_IFLAG_RX_FIFO_AVAILABLE;
		err = can_rx_offload_add_fifo(dev, &priv->offload, FLEXCAN_NAPI_WEIGHT);
	}
1399 1400
	if (err)
		goto failed_offload;
1401 1402 1403 1404 1405 1406 1407

	err = register_flexcandev(dev);
	if (err) {
		dev_err(&pdev->dev, "registering netdev failed\n");
		goto failed_register;
	}

1408 1409
	devm_can_led_init(dev);

1410
	dev_info(&pdev->dev, "device registered (reg_base=%p, irq=%d)\n",
1411
		 priv->regs, dev->irq);
1412 1413 1414

	return 0;

1415
 failed_offload:
1416 1417 1418 1419 1420
 failed_register:
	free_candev(dev);
	return err;
}

B
Bill Pemberton 已提交
1421
static int flexcan_remove(struct platform_device *pdev)
1422 1423
{
	struct net_device *dev = platform_get_drvdata(pdev);
1424
	struct flexcan_priv *priv = netdev_priv(dev);
1425 1426

	unregister_flexcandev(dev);
1427
	can_rx_offload_del(&priv->offload);
1428 1429
	free_candev(dev);

1430 1431 1432
	return 0;
}

1433
static int __maybe_unused flexcan_suspend(struct device *device)
E
Eric Bénard 已提交
1434
{
1435
	struct net_device *dev = dev_get_drvdata(device);
E
Eric Bénard 已提交
1436
	struct flexcan_priv *priv = netdev_priv(dev);
1437
	int err;
E
Eric Bénard 已提交
1438 1439

	if (netif_running(dev)) {
1440 1441 1442
		err = flexcan_chip_disable(priv);
		if (err)
			return err;
E
Eric Bénard 已提交
1443 1444 1445 1446 1447 1448 1449 1450
		netif_stop_queue(dev);
		netif_device_detach(dev);
	}
	priv->can.state = CAN_STATE_SLEEPING;

	return 0;
}

1451
static int __maybe_unused flexcan_resume(struct device *device)
E
Eric Bénard 已提交
1452
{
1453
	struct net_device *dev = dev_get_drvdata(device);
E
Eric Bénard 已提交
1454
	struct flexcan_priv *priv = netdev_priv(dev);
1455
	int err;
E
Eric Bénard 已提交
1456 1457 1458 1459 1460

	priv->can.state = CAN_STATE_ERROR_ACTIVE;
	if (netif_running(dev)) {
		netif_device_attach(dev);
		netif_start_queue(dev);
1461 1462 1463
		err = flexcan_chip_enable(priv);
		if (err)
			return err;
E
Eric Bénard 已提交
1464
	}
1465
	return 0;
E
Eric Bénard 已提交
1466
}
1467 1468

static SIMPLE_DEV_PM_OPS(flexcan_pm_ops, flexcan_suspend, flexcan_resume);
E
Eric Bénard 已提交
1469

1470
static struct platform_driver flexcan_driver = {
1471 1472
	.driver = {
		.name = DRV_NAME,
1473
		.pm = &flexcan_pm_ops,
1474 1475
		.of_match_table = flexcan_of_match,
	},
1476
	.probe = flexcan_probe,
B
Bill Pemberton 已提交
1477
	.remove = flexcan_remove,
1478
	.id_table = flexcan_id_table,
1479 1480
};

1481
module_platform_driver(flexcan_driver);
1482 1483 1484 1485 1486

MODULE_AUTHOR("Sascha Hauer <kernel@pengutronix.de>, "
	      "Marc Kleine-Budde <kernel@pengutronix.de>");
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("CAN port driver for flexcan based chip");