blob: 9df2007b5e56b50e7a5f19368533239c80c78253 [file] [log] [blame]
Thomas Gleixnerdd2878a2019-05-28 09:57:25 -07001// SPDX-License-Identifier: GPL-2.0-only
David S. Miller99c4a632009-09-25 12:14:43 -07002/*
3 * at91_can.c - CAN network driver for AT91 SoC CAN controller
4 *
Hans J. Koch3e9ebd32010-10-29 12:33:57 +00005 * (C) 2007 by Hans J. Koch <hjk@hansjkoch.de>
Marc Kleine-Budde0909c1e2011-01-06 09:58:42 +01006 * (C) 2008, 2009, 2010, 2011 by Marc Kleine-Budde <kernel@pengutronix.de>
David S. Miller99c4a632009-09-25 12:14:43 -07007 */
8
9#include <linux/clk.h>
10#include <linux/errno.h>
11#include <linux/if_arp.h>
David S. Miller99c4a632009-09-25 12:14:43 -070012#include <linux/interrupt.h>
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/netdevice.h>
Ludovic Desroches3078cde72013-03-11 18:26:03 +010016#include <linux/of.h>
David S. Miller99c4a632009-09-25 12:14:43 -070017#include <linux/platform_device.h>
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +010018#include <linux/rtnetlink.h>
David S. Miller99c4a632009-09-25 12:14:43 -070019#include <linux/skbuff.h>
20#include <linux/spinlock.h>
21#include <linux/string.h>
22#include <linux/types.h>
23
David S. Miller99c4a632009-09-25 12:14:43 -070024#include <linux/can/dev.h>
25#include <linux/can/error.h>
Fabio Baltieri4723f2b2012-12-18 18:50:59 +010026#include <linux/can/led.h>
David S. Miller99c4a632009-09-25 12:14:43 -070027
Marc Kleine-Buddeb0499942011-05-03 16:37:16 +020028#define AT91_MB_MASK(i) ((1 << (i)) - 1)
David S. Miller99c4a632009-09-25 12:14:43 -070029
30/* Common registers */
31enum at91_reg {
32 AT91_MR = 0x000,
33 AT91_IER = 0x004,
34 AT91_IDR = 0x008,
35 AT91_IMR = 0x00C,
36 AT91_SR = 0x010,
37 AT91_BR = 0x014,
38 AT91_TIM = 0x018,
39 AT91_TIMESTP = 0x01C,
40 AT91_ECR = 0x020,
41 AT91_TCR = 0x024,
42 AT91_ACR = 0x028,
43};
44
45/* Mailbox registers (0 <= i <= 15) */
46#define AT91_MMR(i) (enum at91_reg)(0x200 + ((i) * 0x20))
47#define AT91_MAM(i) (enum at91_reg)(0x204 + ((i) * 0x20))
48#define AT91_MID(i) (enum at91_reg)(0x208 + ((i) * 0x20))
49#define AT91_MFID(i) (enum at91_reg)(0x20C + ((i) * 0x20))
50#define AT91_MSR(i) (enum at91_reg)(0x210 + ((i) * 0x20))
51#define AT91_MDL(i) (enum at91_reg)(0x214 + ((i) * 0x20))
52#define AT91_MDH(i) (enum at91_reg)(0x218 + ((i) * 0x20))
53#define AT91_MCR(i) (enum at91_reg)(0x21C + ((i) * 0x20))
54
55/* Register bits */
56#define AT91_MR_CANEN BIT(0)
57#define AT91_MR_LPM BIT(1)
58#define AT91_MR_ABM BIT(2)
59#define AT91_MR_OVL BIT(3)
60#define AT91_MR_TEOF BIT(4)
61#define AT91_MR_TTM BIT(5)
62#define AT91_MR_TIMFRZ BIT(6)
63#define AT91_MR_DRPT BIT(7)
64
65#define AT91_SR_RBSY BIT(29)
66
67#define AT91_MMR_PRIO_SHIFT (16)
68
69#define AT91_MID_MIDE BIT(29)
70
71#define AT91_MSR_MRTR BIT(20)
72#define AT91_MSR_MABT BIT(22)
73#define AT91_MSR_MRDY BIT(23)
74#define AT91_MSR_MMI BIT(24)
75
76#define AT91_MCR_MRTR BIT(20)
77#define AT91_MCR_MTCR BIT(23)
78
79/* Mailbox Modes */
80enum at91_mb_mode {
81 AT91_MB_MODE_DISABLED = 0,
82 AT91_MB_MODE_RX = 1,
83 AT91_MB_MODE_RX_OVRWR = 2,
84 AT91_MB_MODE_TX = 3,
85 AT91_MB_MODE_CONSUMER = 4,
86 AT91_MB_MODE_PRODUCER = 5,
87};
88
89/* Interrupt mask bits */
David S. Miller99c4a632009-09-25 12:14:43 -070090#define AT91_IRQ_ERRA (1 << 16)
91#define AT91_IRQ_WARN (1 << 17)
92#define AT91_IRQ_ERRP (1 << 18)
93#define AT91_IRQ_BOFF (1 << 19)
94#define AT91_IRQ_SLEEP (1 << 20)
95#define AT91_IRQ_WAKEUP (1 << 21)
96#define AT91_IRQ_TOVF (1 << 22)
97#define AT91_IRQ_TSTP (1 << 23)
98#define AT91_IRQ_CERR (1 << 24)
99#define AT91_IRQ_SERR (1 << 25)
100#define AT91_IRQ_AERR (1 << 26)
101#define AT91_IRQ_FERR (1 << 27)
102#define AT91_IRQ_BERR (1 << 28)
103
104#define AT91_IRQ_ERR_ALL (0x1fff0000)
105#define AT91_IRQ_ERR_FRAME (AT91_IRQ_CERR | AT91_IRQ_SERR | \
106 AT91_IRQ_AERR | AT91_IRQ_FERR | AT91_IRQ_BERR)
107#define AT91_IRQ_ERR_LINE (AT91_IRQ_ERRA | AT91_IRQ_WARN | \
108 AT91_IRQ_ERRP | AT91_IRQ_BOFF)
109
110#define AT91_IRQ_ALL (0x1fffffff)
111
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200112enum at91_devtype {
113 AT91_DEVTYPE_SAM9263,
Marc Kleine-Budde6388b392011-04-17 00:08:45 +0200114 AT91_DEVTYPE_SAM9X5,
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200115};
116
117struct at91_devtype_data {
118 unsigned int rx_first;
119 unsigned int rx_split;
120 unsigned int rx_last;
121 unsigned int tx_shift;
122 enum at91_devtype type;
123};
124
David S. Miller99c4a632009-09-25 12:14:43 -0700125struct at91_priv {
Marc Kleine-Budde44d85662011-01-30 22:14:49 +0100126 struct can_priv can; /* must be the first member! */
Marc Kleine-Budde44d85662011-01-30 22:14:49 +0100127 struct napi_struct napi;
David S. Miller99c4a632009-09-25 12:14:43 -0700128
Marc Kleine-Budde44d85662011-01-30 22:14:49 +0100129 void __iomem *reg_base;
David S. Miller99c4a632009-09-25 12:14:43 -0700130
Marc Kleine-Budde44d85662011-01-30 22:14:49 +0100131 u32 reg_sr;
132 unsigned int tx_next;
133 unsigned int tx_echo;
134 unsigned int rx_next;
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200135 struct at91_devtype_data devtype_data;
David S. Miller99c4a632009-09-25 12:14:43 -0700136
Marc Kleine-Budde44d85662011-01-30 22:14:49 +0100137 struct clk *clk;
138 struct at91_can_data *pdata;
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +0100139
Marc Kleine-Budde44d85662011-01-30 22:14:49 +0100140 canid_t mb0_id;
David S. Miller99c4a632009-09-25 12:14:43 -0700141};
142
Ludovic Desroches3078cde72013-03-11 18:26:03 +0100143static const struct at91_devtype_data at91_at91sam9263_data = {
144 .rx_first = 1,
145 .rx_split = 8,
146 .rx_last = 11,
147 .tx_shift = 2,
148 .type = AT91_DEVTYPE_SAM9263,
149};
150
151static const struct at91_devtype_data at91_at91sam9x5_data = {
152 .rx_first = 0,
153 .rx_split = 4,
154 .rx_last = 5,
155 .tx_shift = 1,
156 .type = AT91_DEVTYPE_SAM9X5,
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200157};
158
Marc Kleine-Budde194b9a42012-07-16 12:58:31 +0200159static const struct can_bittiming_const at91_bittiming_const = {
Marc Kleine-Budde00389b02010-10-21 01:01:22 +0000160 .name = KBUILD_MODNAME,
David S. Miller99c4a632009-09-25 12:14:43 -0700161 .tseg1_min = 4,
162 .tseg1_max = 16,
163 .tseg2_min = 2,
164 .tseg2_max = 8,
165 .sjw_max = 4,
166 .brp_min = 2,
167 .brp_max = 128,
168 .brp_inc = 1,
169};
170
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200171#define AT91_IS(_model) \
172static inline int at91_is_sam##_model(const struct at91_priv *priv) \
173{ \
174 return priv->devtype_data.type == AT91_DEVTYPE_SAM##_model; \
175}
176
177AT91_IS(9263);
Marc Kleine-Budde6388b392011-04-17 00:08:45 +0200178AT91_IS(9X5);
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200179
180static inline unsigned int get_mb_rx_first(const struct at91_priv *priv)
181{
182 return priv->devtype_data.rx_first;
183}
184
185static inline unsigned int get_mb_rx_last(const struct at91_priv *priv)
186{
187 return priv->devtype_data.rx_last;
188}
189
190static inline unsigned int get_mb_rx_split(const struct at91_priv *priv)
191{
192 return priv->devtype_data.rx_split;
193}
194
195static inline unsigned int get_mb_rx_num(const struct at91_priv *priv)
196{
197 return get_mb_rx_last(priv) - get_mb_rx_first(priv) + 1;
198}
199
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200200static inline unsigned int get_mb_rx_low_last(const struct at91_priv *priv)
201{
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200202 return get_mb_rx_split(priv) - 1;
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200203}
204
205static inline unsigned int get_mb_rx_low_mask(const struct at91_priv *priv)
206{
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200207 return AT91_MB_MASK(get_mb_rx_split(priv)) &
208 ~AT91_MB_MASK(get_mb_rx_first(priv));
209}
210
211static inline unsigned int get_mb_tx_shift(const struct at91_priv *priv)
212{
213 return priv->devtype_data.tx_shift;
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200214}
215
216static inline unsigned int get_mb_tx_num(const struct at91_priv *priv)
217{
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200218 return 1 << get_mb_tx_shift(priv);
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200219}
220
221static inline unsigned int get_mb_tx_first(const struct at91_priv *priv)
222{
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200223 return get_mb_rx_last(priv) + 1;
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200224}
225
226static inline unsigned int get_mb_tx_last(const struct at91_priv *priv)
227{
228 return get_mb_tx_first(priv) + get_mb_tx_num(priv) - 1;
229}
230
231static inline unsigned int get_next_prio_shift(const struct at91_priv *priv)
232{
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200233 return get_mb_tx_shift(priv);
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200234}
235
236static inline unsigned int get_next_prio_mask(const struct at91_priv *priv)
237{
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200238 return 0xf << get_mb_tx_shift(priv);
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200239}
240
241static inline unsigned int get_next_mb_mask(const struct at91_priv *priv)
242{
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200243 return AT91_MB_MASK(get_mb_tx_shift(priv));
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200244}
245
246static inline unsigned int get_next_mask(const struct at91_priv *priv)
247{
248 return get_next_mb_mask(priv) | get_next_prio_mask(priv);
249}
250
251static inline unsigned int get_irq_mb_rx(const struct at91_priv *priv)
252{
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200253 return AT91_MB_MASK(get_mb_rx_last(priv) + 1) &
254 ~AT91_MB_MASK(get_mb_rx_first(priv));
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200255}
256
257static inline unsigned int get_irq_mb_tx(const struct at91_priv *priv)
258{
259 return AT91_MB_MASK(get_mb_tx_last(priv) + 1) &
260 ~AT91_MB_MASK(get_mb_tx_first(priv));
261}
262
Marc Kleine-Budde9c2e0a62011-05-03 17:47:55 +0200263static inline unsigned int get_tx_next_mb(const struct at91_priv *priv)
David S. Miller99c4a632009-09-25 12:14:43 -0700264{
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200265 return (priv->tx_next & get_next_mb_mask(priv)) + get_mb_tx_first(priv);
David S. Miller99c4a632009-09-25 12:14:43 -0700266}
267
Marc Kleine-Budde9c2e0a62011-05-03 17:47:55 +0200268static inline unsigned int get_tx_next_prio(const struct at91_priv *priv)
David S. Miller99c4a632009-09-25 12:14:43 -0700269{
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200270 return (priv->tx_next >> get_next_prio_shift(priv)) & 0xf;
David S. Miller99c4a632009-09-25 12:14:43 -0700271}
272
Marc Kleine-Budde9c2e0a62011-05-03 17:47:55 +0200273static inline unsigned int get_tx_echo_mb(const struct at91_priv *priv)
David S. Miller99c4a632009-09-25 12:14:43 -0700274{
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200275 return (priv->tx_echo & get_next_mb_mask(priv)) + get_mb_tx_first(priv);
David S. Miller99c4a632009-09-25 12:14:43 -0700276}
277
278static inline u32 at91_read(const struct at91_priv *priv, enum at91_reg reg)
279{
Ben Dooksaf9bfbd2015-03-18 15:53:10 +0000280 return readl_relaxed(priv->reg_base + reg);
David S. Miller99c4a632009-09-25 12:14:43 -0700281}
282
283static inline void at91_write(const struct at91_priv *priv, enum at91_reg reg,
284 u32 value)
285{
Ben Dooksaf9bfbd2015-03-18 15:53:10 +0000286 writel_relaxed(value, priv->reg_base + reg);
David S. Miller99c4a632009-09-25 12:14:43 -0700287}
288
289static inline void set_mb_mode_prio(const struct at91_priv *priv,
290 unsigned int mb, enum at91_mb_mode mode, int prio)
291{
292 at91_write(priv, AT91_MMR(mb), (mode << 24) | (prio << 16));
293}
294
295static inline void set_mb_mode(const struct at91_priv *priv, unsigned int mb,
296 enum at91_mb_mode mode)
297{
298 set_mb_mode_prio(priv, mb, mode, 0);
299}
300
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +0100301static inline u32 at91_can_id_to_reg_mid(canid_t can_id)
302{
303 u32 reg_mid;
304
305 if (can_id & CAN_EFF_FLAG)
306 reg_mid = (can_id & CAN_EFF_MASK) | AT91_MID_MIDE;
307 else
308 reg_mid = (can_id & CAN_SFF_MASK) << 18;
309
310 return reg_mid;
311}
312
David S. Miller99c4a632009-09-25 12:14:43 -0700313static void at91_setup_mailboxes(struct net_device *dev)
314{
315 struct at91_priv *priv = netdev_priv(dev);
316 unsigned int i;
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +0100317 u32 reg_mid;
David S. Miller99c4a632009-09-25 12:14:43 -0700318
319 /*
Marc Kleine-Budde9e0a2d12011-01-09 22:46:25 +0100320 * Due to a chip bug (errata 50.2.6.3 & 50.3.5.3) the first
321 * mailbox is disabled. The next 11 mailboxes are used as a
322 * reception FIFO. The last mailbox is configured with
323 * overwrite option. The overwrite flag indicates a FIFO
324 * overflow.
David S. Miller99c4a632009-09-25 12:14:43 -0700325 */
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +0100326 reg_mid = at91_can_id_to_reg_mid(priv->mb0_id);
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200327 for (i = 0; i < get_mb_rx_first(priv); i++) {
Marc Kleine-Budde9e0a2d12011-01-09 22:46:25 +0100328 set_mb_mode(priv, i, AT91_MB_MODE_DISABLED);
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +0100329 at91_write(priv, AT91_MID(i), reg_mid);
330 at91_write(priv, AT91_MCR(i), 0x0); /* clear dlc */
331 }
332
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200333 for (i = get_mb_rx_first(priv); i < get_mb_rx_last(priv); i++)
David S. Miller99c4a632009-09-25 12:14:43 -0700334 set_mb_mode(priv, i, AT91_MB_MODE_RX);
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200335 set_mb_mode(priv, get_mb_rx_last(priv), AT91_MB_MODE_RX_OVRWR);
David S. Miller99c4a632009-09-25 12:14:43 -0700336
Marc Kleine-Budde8a0e0a42010-10-21 01:01:14 +0000337 /* reset acceptance mask and id register */
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200338 for (i = get_mb_rx_first(priv); i <= get_mb_rx_last(priv); i++) {
Marc Kleine-Budde44d85662011-01-30 22:14:49 +0100339 at91_write(priv, AT91_MAM(i), 0x0);
Marc Kleine-Budde8a0e0a42010-10-21 01:01:14 +0000340 at91_write(priv, AT91_MID(i), AT91_MID_MIDE);
341 }
342
David S. Miller99c4a632009-09-25 12:14:43 -0700343 /* The last 4 mailboxes are used for transmitting. */
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200344 for (i = get_mb_tx_first(priv); i <= get_mb_tx_last(priv); i++)
David S. Miller99c4a632009-09-25 12:14:43 -0700345 set_mb_mode_prio(priv, i, AT91_MB_MODE_TX, 0);
346
347 /* Reset tx and rx helper pointers */
Marc Kleine-Budde0909c1e2011-01-06 09:58:42 +0100348 priv->tx_next = priv->tx_echo = 0;
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200349 priv->rx_next = get_mb_rx_first(priv);
David S. Miller99c4a632009-09-25 12:14:43 -0700350}
351
352static int at91_set_bittiming(struct net_device *dev)
353{
354 const struct at91_priv *priv = netdev_priv(dev);
355 const struct can_bittiming *bt = &priv->can.bittiming;
356 u32 reg_br;
357
Marc Kleine-Buddedbe91322010-10-21 01:01:13 +0000358 reg_br = ((priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES) ? 1 << 24 : 0) |
359 ((bt->brp - 1) << 16) | ((bt->sjw - 1) << 12) |
David S. Miller99c4a632009-09-25 12:14:43 -0700360 ((bt->prop_seg - 1) << 8) | ((bt->phase_seg1 - 1) << 4) |
361 ((bt->phase_seg2 - 1) << 0);
362
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000363 netdev_info(dev, "writing AT91_BR: 0x%08x\n", reg_br);
David S. Miller99c4a632009-09-25 12:14:43 -0700364
365 at91_write(priv, AT91_BR, reg_br);
366
367 return 0;
368}
369
Marc Kleine-Budde33a6f292010-10-21 01:01:18 +0000370static int at91_get_berr_counter(const struct net_device *dev,
371 struct can_berr_counter *bec)
372{
373 const struct at91_priv *priv = netdev_priv(dev);
374 u32 reg_ecr = at91_read(priv, AT91_ECR);
375
376 bec->rxerr = reg_ecr & 0xff;
377 bec->txerr = reg_ecr >> 16;
378
379 return 0;
380}
381
David S. Miller99c4a632009-09-25 12:14:43 -0700382static void at91_chip_start(struct net_device *dev)
383{
384 struct at91_priv *priv = netdev_priv(dev);
385 u32 reg_mr, reg_ier;
386
387 /* disable interrupts */
388 at91_write(priv, AT91_IDR, AT91_IRQ_ALL);
389
390 /* disable chip */
391 reg_mr = at91_read(priv, AT91_MR);
392 at91_write(priv, AT91_MR, reg_mr & ~AT91_MR_CANEN);
393
Marc Kleine-Buddeb156fd02010-10-21 01:01:19 +0000394 at91_set_bittiming(dev);
David S. Miller99c4a632009-09-25 12:14:43 -0700395 at91_setup_mailboxes(dev);
David S. Miller99c4a632009-09-25 12:14:43 -0700396
397 /* enable chip */
Yoann DI RUZZA17a50ee2014-02-11 09:46:59 +0100398 if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)
399 reg_mr = AT91_MR_CANEN | AT91_MR_ABM;
400 else
401 reg_mr = AT91_MR_CANEN;
402 at91_write(priv, AT91_MR, reg_mr);
David S. Miller99c4a632009-09-25 12:14:43 -0700403
404 priv->can.state = CAN_STATE_ERROR_ACTIVE;
405
406 /* Enable interrupts */
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200407 reg_ier = get_irq_mb_rx(priv) | AT91_IRQ_ERRP | AT91_IRQ_ERR_FRAME;
David S. Miller99c4a632009-09-25 12:14:43 -0700408 at91_write(priv, AT91_IDR, AT91_IRQ_ALL);
409 at91_write(priv, AT91_IER, reg_ier);
410}
411
412static void at91_chip_stop(struct net_device *dev, enum can_state state)
413{
414 struct at91_priv *priv = netdev_priv(dev);
415 u32 reg_mr;
416
417 /* disable interrupts */
418 at91_write(priv, AT91_IDR, AT91_IRQ_ALL);
419
420 reg_mr = at91_read(priv, AT91_MR);
421 at91_write(priv, AT91_MR, reg_mr & ~AT91_MR_CANEN);
422
David S. Miller99c4a632009-09-25 12:14:43 -0700423 priv->can.state = state;
424}
425
426/*
427 * theory of operation:
428 *
429 * According to the datasheet priority 0 is the highest priority, 15
430 * is the lowest. If two mailboxes have the same priority level the
431 * message of the mailbox with the lowest number is sent first.
432 *
433 * We use the first TX mailbox (AT91_MB_TX_FIRST) with prio 0, then
434 * the next mailbox with prio 0, and so on, until all mailboxes are
435 * used. Then we start from the beginning with mailbox
436 * AT91_MB_TX_FIRST, but with prio 1, mailbox AT91_MB_TX_FIRST + 1
437 * prio 1. When we reach the last mailbox with prio 15, we have to
438 * stop sending, waiting for all messages to be delivered, then start
439 * again with mailbox AT91_MB_TX_FIRST prio 0.
440 *
441 * We use the priv->tx_next as counter for the next transmission
442 * mailbox, but without the offset AT91_MB_TX_FIRST. The lower bits
443 * encode the mailbox number, the upper 4 bits the mailbox priority:
444 *
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200445 * priv->tx_next = (prio << get_next_prio_shift(priv)) |
446 * (mb - get_mb_tx_first(priv));
David S. Miller99c4a632009-09-25 12:14:43 -0700447 *
448 */
449static netdev_tx_t at91_start_xmit(struct sk_buff *skb, struct net_device *dev)
450{
451 struct at91_priv *priv = netdev_priv(dev);
452 struct net_device_stats *stats = &dev->stats;
453 struct can_frame *cf = (struct can_frame *)skb->data;
454 unsigned int mb, prio;
455 u32 reg_mid, reg_mcr;
456
Oliver Hartkopp3ccd4c62010-01-12 02:00:46 -0800457 if (can_dropped_invalid_skb(dev, skb))
458 return NETDEV_TX_OK;
459
David S. Miller99c4a632009-09-25 12:14:43 -0700460 mb = get_tx_next_mb(priv);
461 prio = get_tx_next_prio(priv);
462
463 if (unlikely(!(at91_read(priv, AT91_MSR(mb)) & AT91_MSR_MRDY))) {
464 netif_stop_queue(dev);
465
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000466 netdev_err(dev, "BUG! TX buffer full when queue awake!\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700467 return NETDEV_TX_BUSY;
468 }
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +0100469 reg_mid = at91_can_id_to_reg_mid(cf->can_id);
David S. Miller99c4a632009-09-25 12:14:43 -0700470 reg_mcr = ((cf->can_id & CAN_RTR_FLAG) ? AT91_MCR_MRTR : 0) |
471 (cf->can_dlc << 16) | AT91_MCR_MTCR;
472
473 /* disable MB while writing ID (see datasheet) */
474 set_mb_mode(priv, mb, AT91_MB_MODE_DISABLED);
475 at91_write(priv, AT91_MID(mb), reg_mid);
476 set_mb_mode_prio(priv, mb, AT91_MB_MODE_TX, prio);
477
478 at91_write(priv, AT91_MDL(mb), *(u32 *)(cf->data + 0));
479 at91_write(priv, AT91_MDH(mb), *(u32 *)(cf->data + 4));
480
481 /* This triggers transmission */
482 at91_write(priv, AT91_MCR(mb), reg_mcr);
483
484 stats->tx_bytes += cf->can_dlc;
David S. Miller99c4a632009-09-25 12:14:43 -0700485
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300486 /* _NOTE_: subtract AT91_MB_TX_FIRST offset from mb! */
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200487 can_put_echo_skb(skb, dev, mb - get_mb_tx_first(priv));
David S. Miller99c4a632009-09-25 12:14:43 -0700488
489 /*
490 * we have to stop the queue and deliver all messages in case
491 * of a prio+mb counter wrap around. This is the case if
492 * tx_next buffer prio and mailbox equals 0.
493 *
494 * also stop the queue if next buffer is still in use
495 * (== not ready)
496 */
497 priv->tx_next++;
498 if (!(at91_read(priv, AT91_MSR(get_tx_next_mb(priv))) &
499 AT91_MSR_MRDY) ||
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200500 (priv->tx_next & get_next_mask(priv)) == 0)
David S. Miller99c4a632009-09-25 12:14:43 -0700501 netif_stop_queue(dev);
502
503 /* Enable interrupt for this mailbox */
504 at91_write(priv, AT91_IER, 1 << mb);
505
506 return NETDEV_TX_OK;
507}
508
509/**
510 * at91_activate_rx_low - activate lower rx mailboxes
511 * @priv: a91 context
512 *
513 * Reenables the lower mailboxes for reception of new CAN messages
514 */
515static inline void at91_activate_rx_low(const struct at91_priv *priv)
516{
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200517 u32 mask = get_mb_rx_low_mask(priv);
David S. Miller99c4a632009-09-25 12:14:43 -0700518 at91_write(priv, AT91_TCR, mask);
519}
520
521/**
522 * at91_activate_rx_mb - reactive single rx mailbox
523 * @priv: a91 context
524 * @mb: mailbox to reactivate
525 *
526 * Reenables given mailbox for reception of new CAN messages
527 */
528static inline void at91_activate_rx_mb(const struct at91_priv *priv,
529 unsigned int mb)
530{
531 u32 mask = 1 << mb;
532 at91_write(priv, AT91_TCR, mask);
533}
534
535/**
536 * at91_rx_overflow_err - send error frame due to rx overflow
537 * @dev: net device
538 */
539static void at91_rx_overflow_err(struct net_device *dev)
540{
541 struct net_device_stats *stats = &dev->stats;
542 struct sk_buff *skb;
543 struct can_frame *cf;
544
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000545 netdev_dbg(dev, "RX buffer overflow\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700546 stats->rx_over_errors++;
547 stats->rx_errors++;
548
549 skb = alloc_can_err_skb(dev, &cf);
550 if (unlikely(!skb))
551 return;
552
553 cf->can_id |= CAN_ERR_CRTL;
554 cf->data[1] = CAN_ERR_CRTL_RX_OVERFLOW;
David S. Miller99c4a632009-09-25 12:14:43 -0700555
556 stats->rx_packets++;
557 stats->rx_bytes += cf->can_dlc;
Marc Kleine-Budde6ae36732015-07-11 21:03:07 +0200558 netif_receive_skb(skb);
David S. Miller99c4a632009-09-25 12:14:43 -0700559}
560
561/**
562 * at91_read_mb - read CAN msg from mailbox (lowlevel impl)
563 * @dev: net device
564 * @mb: mailbox number to read from
565 * @cf: can frame where to store message
566 *
567 * Reads a CAN message from the given mailbox and stores data into
568 * given can frame. "mb" and "cf" must be valid.
569 */
570static void at91_read_mb(struct net_device *dev, unsigned int mb,
571 struct can_frame *cf)
572{
573 const struct at91_priv *priv = netdev_priv(dev);
574 u32 reg_msr, reg_mid;
575
576 reg_mid = at91_read(priv, AT91_MID(mb));
577 if (reg_mid & AT91_MID_MIDE)
578 cf->can_id = ((reg_mid >> 0) & CAN_EFF_MASK) | CAN_EFF_FLAG;
579 else
580 cf->can_id = (reg_mid >> 18) & CAN_SFF_MASK;
581
582 reg_msr = at91_read(priv, AT91_MSR(mb));
Oliver Hartkoppc7cd6062009-12-12 04:13:21 +0000583 cf->can_dlc = get_can_dlc((reg_msr >> 16) & 0xf);
David S. Miller99c4a632009-09-25 12:14:43 -0700584
Marc Kleine-Buddee14ee402010-10-21 18:39:26 +0200585 if (reg_msr & AT91_MSR_MRTR)
586 cf->can_id |= CAN_RTR_FLAG;
587 else {
588 *(u32 *)(cf->data + 0) = at91_read(priv, AT91_MDL(mb));
589 *(u32 *)(cf->data + 4) = at91_read(priv, AT91_MDH(mb));
590 }
David S. Miller99c4a632009-09-25 12:14:43 -0700591
Marc Kleine-Budde8a0e0a42010-10-21 01:01:14 +0000592 /* allow RX of extended frames */
593 at91_write(priv, AT91_MID(mb), AT91_MID_MIDE);
594
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200595 if (unlikely(mb == get_mb_rx_last(priv) && reg_msr & AT91_MSR_MMI))
David S. Miller99c4a632009-09-25 12:14:43 -0700596 at91_rx_overflow_err(dev);
597}
598
599/**
600 * at91_read_msg - read CAN message from mailbox
601 * @dev: net device
602 * @mb: mail box to read from
603 *
604 * Reads a CAN message from given mailbox, and put into linux network
605 * RX queue, does all housekeeping chores (stats, ...)
606 */
607static void at91_read_msg(struct net_device *dev, unsigned int mb)
608{
609 struct net_device_stats *stats = &dev->stats;
610 struct can_frame *cf;
611 struct sk_buff *skb;
612
613 skb = alloc_can_skb(dev, &cf);
614 if (unlikely(!skb)) {
615 stats->rx_dropped++;
616 return;
617 }
618
619 at91_read_mb(dev, mb, cf);
David S. Miller99c4a632009-09-25 12:14:43 -0700620
621 stats->rx_packets++;
622 stats->rx_bytes += cf->can_dlc;
Marc Kleine-Budde6ae36732015-07-11 21:03:07 +0200623 netif_receive_skb(skb);
Fabio Baltieri4723f2b2012-12-18 18:50:59 +0100624
625 can_led_event(dev, CAN_LED_EVENT_RX);
David S. Miller99c4a632009-09-25 12:14:43 -0700626}
627
628/**
629 * at91_poll_rx - read multiple CAN messages from mailboxes
630 * @dev: net device
631 * @quota: max number of pkgs we're allowed to receive
632 *
633 * Theory of Operation:
634 *
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200635 * About 3/4 of the mailboxes (get_mb_rx_first()...get_mb_rx_last())
636 * on the chip are reserved for RX. We split them into 2 groups. The
637 * lower group ranges from get_mb_rx_first() to get_mb_rx_low_last().
David S. Miller99c4a632009-09-25 12:14:43 -0700638 *
639 * Like it or not, but the chip always saves a received CAN message
640 * into the first free mailbox it finds (starting with the
641 * lowest). This makes it very difficult to read the messages in the
642 * right order from the chip. This is how we work around that problem:
643 *
Marc Kleine-Budde9e0a2d12011-01-09 22:46:25 +0100644 * The first message goes into mb nr. 1 and issues an interrupt. All
David S. Miller99c4a632009-09-25 12:14:43 -0700645 * rx ints are disabled in the interrupt handler and a napi poll is
646 * scheduled. We read the mailbox, but do _not_ reenable the mb (to
647 * receive another message).
648 *
649 * lower mbxs upper
Marc Kleine-Budde9e0a2d12011-01-09 22:46:25 +0100650 * ____^______ __^__
651 * / \ / \
David S. Miller99c4a632009-09-25 12:14:43 -0700652 * +-+-+-+-+-+-+-+-++-+-+-+-+
Marc Kleine-Budde9e0a2d12011-01-09 22:46:25 +0100653 * | |x|x|x|x|x|x|x|| | | | |
David S. Miller99c4a632009-09-25 12:14:43 -0700654 * +-+-+-+-+-+-+-+-++-+-+-+-+
655 * 0 0 0 0 0 0 0 0 0 0 1 1 \ mail
656 * 0 1 2 3 4 5 6 7 8 9 0 1 / box
Marc Kleine-Budde9e0a2d12011-01-09 22:46:25 +0100657 * ^
658 * |
659 * \
660 * unused, due to chip bug
David S. Miller99c4a632009-09-25 12:14:43 -0700661 *
662 * The variable priv->rx_next points to the next mailbox to read a
663 * message from. As long we're in the lower mailboxes we just read the
664 * mailbox but not reenable it.
665 *
666 * With completion of the last of the lower mailboxes, we reenable the
667 * whole first group, but continue to look for filled mailboxes in the
668 * upper mailboxes. Imagine the second group like overflow mailboxes,
669 * which takes CAN messages if the lower goup is full. While in the
670 * upper group we reenable the mailbox right after reading it. Giving
671 * the chip more room to store messages.
672 *
673 * After finishing we look again in the lower group if we've still
674 * quota.
675 *
676 */
677static int at91_poll_rx(struct net_device *dev, int quota)
678{
679 struct at91_priv *priv = netdev_priv(dev);
680 u32 reg_sr = at91_read(priv, AT91_SR);
681 const unsigned long *addr = (unsigned long *)&reg_sr;
682 unsigned int mb;
683 int received = 0;
684
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200685 if (priv->rx_next > get_mb_rx_low_last(priv) &&
686 reg_sr & get_mb_rx_low_mask(priv))
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000687 netdev_info(dev,
688 "order of incoming frames cannot be guaranteed\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700689
690 again:
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200691 for (mb = find_next_bit(addr, get_mb_tx_first(priv), priv->rx_next);
692 mb < get_mb_tx_first(priv) && quota > 0;
David S. Miller99c4a632009-09-25 12:14:43 -0700693 reg_sr = at91_read(priv, AT91_SR),
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200694 mb = find_next_bit(addr, get_mb_tx_first(priv), ++priv->rx_next)) {
David S. Miller99c4a632009-09-25 12:14:43 -0700695 at91_read_msg(dev, mb);
696
697 /* reactivate mailboxes */
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200698 if (mb == get_mb_rx_low_last(priv))
David S. Miller99c4a632009-09-25 12:14:43 -0700699 /* all lower mailboxed, if just finished it */
700 at91_activate_rx_low(priv);
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200701 else if (mb > get_mb_rx_low_last(priv))
David S. Miller99c4a632009-09-25 12:14:43 -0700702 /* only the mailbox we read */
703 at91_activate_rx_mb(priv, mb);
704
705 received++;
706 quota--;
707 }
708
709 /* upper group completed, look again in lower */
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200710 if (priv->rx_next > get_mb_rx_low_last(priv) &&
Wolfgang Grandegger43200a42016-06-13 15:44:19 +0200711 mb > get_mb_rx_last(priv)) {
Marc Kleine-Budded3d47262011-05-03 17:41:09 +0200712 priv->rx_next = get_mb_rx_first(priv);
Wolfgang Grandegger43200a42016-06-13 15:44:19 +0200713 if (quota > 0)
714 goto again;
David S. Miller99c4a632009-09-25 12:14:43 -0700715 }
716
717 return received;
718}
719
720static void at91_poll_err_frame(struct net_device *dev,
721 struct can_frame *cf, u32 reg_sr)
722{
723 struct at91_priv *priv = netdev_priv(dev);
724
725 /* CRC error */
726 if (reg_sr & AT91_IRQ_CERR) {
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000727 netdev_dbg(dev, "CERR irq\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700728 dev->stats.rx_errors++;
729 priv->can.can_stats.bus_error++;
730 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
731 }
732
733 /* Stuffing Error */
734 if (reg_sr & AT91_IRQ_SERR) {
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000735 netdev_dbg(dev, "SERR irq\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700736 dev->stats.rx_errors++;
737 priv->can.can_stats.bus_error++;
738 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
739 cf->data[2] |= CAN_ERR_PROT_STUFF;
740 }
741
742 /* Acknowledgement Error */
743 if (reg_sr & AT91_IRQ_AERR) {
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000744 netdev_dbg(dev, "AERR irq\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700745 dev->stats.tx_errors++;
746 cf->can_id |= CAN_ERR_ACK;
747 }
748
749 /* Form error */
750 if (reg_sr & AT91_IRQ_FERR) {
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000751 netdev_dbg(dev, "FERR irq\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700752 dev->stats.rx_errors++;
753 priv->can.can_stats.bus_error++;
754 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
755 cf->data[2] |= CAN_ERR_PROT_FORM;
756 }
757
758 /* Bit Error */
759 if (reg_sr & AT91_IRQ_BERR) {
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000760 netdev_dbg(dev, "BERR irq\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700761 dev->stats.tx_errors++;
762 priv->can.can_stats.bus_error++;
763 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
764 cf->data[2] |= CAN_ERR_PROT_BIT;
765 }
766}
767
768static int at91_poll_err(struct net_device *dev, int quota, u32 reg_sr)
769{
770 struct sk_buff *skb;
771 struct can_frame *cf;
772
773 if (quota == 0)
774 return 0;
775
776 skb = alloc_can_err_skb(dev, &cf);
777 if (unlikely(!skb))
778 return 0;
779
780 at91_poll_err_frame(dev, cf, reg_sr);
David S. Miller99c4a632009-09-25 12:14:43 -0700781
David S. Miller99c4a632009-09-25 12:14:43 -0700782 dev->stats.rx_packets++;
783 dev->stats.rx_bytes += cf->can_dlc;
Marc Kleine-Budde6ae36732015-07-11 21:03:07 +0200784 netif_receive_skb(skb);
David S. Miller99c4a632009-09-25 12:14:43 -0700785
786 return 1;
787}
788
789static int at91_poll(struct napi_struct *napi, int quota)
790{
791 struct net_device *dev = napi->dev;
792 const struct at91_priv *priv = netdev_priv(dev);
793 u32 reg_sr = at91_read(priv, AT91_SR);
794 int work_done = 0;
795
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200796 if (reg_sr & get_irq_mb_rx(priv))
David S. Miller99c4a632009-09-25 12:14:43 -0700797 work_done += at91_poll_rx(dev, quota - work_done);
798
799 /*
800 * The error bits are clear on read,
801 * so use saved value from irq handler.
802 */
803 reg_sr |= priv->reg_sr;
804 if (reg_sr & AT91_IRQ_ERR_FRAME)
805 work_done += at91_poll_err(dev, quota - work_done, reg_sr);
806
807 if (work_done < quota) {
808 /* enable IRQs for frame errors and all mailboxes >= rx_next */
809 u32 reg_ier = AT91_IRQ_ERR_FRAME;
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200810 reg_ier |= get_irq_mb_rx(priv) & ~AT91_MB_MASK(priv->rx_next);
David S. Miller99c4a632009-09-25 12:14:43 -0700811
Eric Dumazet6ad20162017-01-30 08:22:01 -0800812 napi_complete_done(napi, work_done);
David S. Miller99c4a632009-09-25 12:14:43 -0700813 at91_write(priv, AT91_IER, reg_ier);
814 }
815
816 return work_done;
817}
818
819/*
820 * theory of operation:
821 *
822 * priv->tx_echo holds the number of the oldest can_frame put for
823 * transmission into the hardware, but not yet ACKed by the CAN tx
824 * complete IRQ.
825 *
826 * We iterate from priv->tx_echo to priv->tx_next and check if the
827 * packet has been transmitted, echo it back to the CAN framework. If
828 * we discover a not yet transmitted package, stop looking for more.
829 *
830 */
831static void at91_irq_tx(struct net_device *dev, u32 reg_sr)
832{
833 struct at91_priv *priv = netdev_priv(dev);
834 u32 reg_msr;
835 unsigned int mb;
836
837 /* masking of reg_sr not needed, already done by at91_irq */
838
839 for (/* nix */; (priv->tx_next - priv->tx_echo) > 0; priv->tx_echo++) {
840 mb = get_tx_echo_mb(priv);
841
842 /* no event in mailbox? */
843 if (!(reg_sr & (1 << mb)))
844 break;
845
846 /* Disable irq for this TX mailbox */
847 at91_write(priv, AT91_IDR, 1 << mb);
848
849 /*
850 * only echo if mailbox signals us a transfer
851 * complete (MSR_MRDY). Otherwise it's a tansfer
852 * abort. "can_bus_off()" takes care about the skbs
853 * parked in the echo queue.
854 */
855 reg_msr = at91_read(priv, AT91_MSR(mb));
856 if (likely(reg_msr & AT91_MSR_MRDY &&
857 ~reg_msr & AT91_MSR_MABT)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300858 /* _NOTE_: subtract AT91_MB_TX_FIRST offset from mb! */
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200859 can_get_echo_skb(dev, mb - get_mb_tx_first(priv));
David S. Miller99c4a632009-09-25 12:14:43 -0700860 dev->stats.tx_packets++;
Fabio Baltieri4723f2b2012-12-18 18:50:59 +0100861 can_led_event(dev, CAN_LED_EVENT_TX);
David S. Miller99c4a632009-09-25 12:14:43 -0700862 }
863 }
864
865 /*
866 * restart queue if we don't have a wrap around but restart if
867 * we get a TX int for the last can frame directly before a
868 * wrap around.
869 */
Marc Kleine-Budde79008992011-05-03 17:31:40 +0200870 if ((priv->tx_next & get_next_mask(priv)) != 0 ||
871 (priv->tx_echo & get_next_mask(priv)) == 0)
David S. Miller99c4a632009-09-25 12:14:43 -0700872 netif_wake_queue(dev);
873}
874
875static void at91_irq_err_state(struct net_device *dev,
876 struct can_frame *cf, enum can_state new_state)
877{
878 struct at91_priv *priv = netdev_priv(dev);
Marc Kleine-Budde33a6f292010-10-21 01:01:18 +0000879 u32 reg_idr = 0, reg_ier = 0;
880 struct can_berr_counter bec;
David S. Miller99c4a632009-09-25 12:14:43 -0700881
Marc Kleine-Budde33a6f292010-10-21 01:01:18 +0000882 at91_get_berr_counter(dev, &bec);
David S. Miller99c4a632009-09-25 12:14:43 -0700883
884 switch (priv->can.state) {
885 case CAN_STATE_ERROR_ACTIVE:
886 /*
887 * from: ERROR_ACTIVE
888 * to : ERROR_WARNING, ERROR_PASSIVE, BUS_OFF
889 * => : there was a warning int
890 */
891 if (new_state >= CAN_STATE_ERROR_WARNING &&
892 new_state <= CAN_STATE_BUS_OFF) {
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000893 netdev_dbg(dev, "Error Warning IRQ\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700894 priv->can.can_stats.error_warning++;
895
896 cf->can_id |= CAN_ERR_CRTL;
Marc Kleine-Budde33a6f292010-10-21 01:01:18 +0000897 cf->data[1] = (bec.txerr > bec.rxerr) ?
David S. Miller99c4a632009-09-25 12:14:43 -0700898 CAN_ERR_CRTL_TX_WARNING :
899 CAN_ERR_CRTL_RX_WARNING;
900 }
Gustavo A. R. Silva5a8dadb2019-01-29 11:59:28 -0600901 /* fall through */
902 case CAN_STATE_ERROR_WARNING:
David S. Miller99c4a632009-09-25 12:14:43 -0700903 /*
904 * from: ERROR_ACTIVE, ERROR_WARNING
905 * to : ERROR_PASSIVE, BUS_OFF
906 * => : error passive int
907 */
908 if (new_state >= CAN_STATE_ERROR_PASSIVE &&
909 new_state <= CAN_STATE_BUS_OFF) {
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000910 netdev_dbg(dev, "Error Passive IRQ\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700911 priv->can.can_stats.error_passive++;
912
913 cf->can_id |= CAN_ERR_CRTL;
Marc Kleine-Budde33a6f292010-10-21 01:01:18 +0000914 cf->data[1] = (bec.txerr > bec.rxerr) ?
David S. Miller99c4a632009-09-25 12:14:43 -0700915 CAN_ERR_CRTL_TX_PASSIVE :
916 CAN_ERR_CRTL_RX_PASSIVE;
917 }
918 break;
919 case CAN_STATE_BUS_OFF:
920 /*
921 * from: BUS_OFF
922 * to : ERROR_ACTIVE, ERROR_WARNING, ERROR_PASSIVE
923 */
924 if (new_state <= CAN_STATE_ERROR_PASSIVE) {
925 cf->can_id |= CAN_ERR_RESTARTED;
926
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000927 netdev_dbg(dev, "restarted\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700928 priv->can.can_stats.restarts++;
929
930 netif_carrier_on(dev);
931 netif_wake_queue(dev);
932 }
933 break;
934 default:
935 break;
936 }
937
938
939 /* process state changes depending on the new state */
940 switch (new_state) {
941 case CAN_STATE_ERROR_ACTIVE:
942 /*
943 * actually we want to enable AT91_IRQ_WARN here, but
944 * it screws up the system under certain
945 * circumstances. so just enable AT91_IRQ_ERRP, thus
946 * the "fallthrough"
947 */
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000948 netdev_dbg(dev, "Error Active\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700949 cf->can_id |= CAN_ERR_PROT;
950 cf->data[2] = CAN_ERR_PROT_ACTIVE;
Gustavo A. R. Silva5a8dadb2019-01-29 11:59:28 -0600951 /* fall through */
952 case CAN_STATE_ERROR_WARNING:
David S. Miller99c4a632009-09-25 12:14:43 -0700953 reg_idr = AT91_IRQ_ERRA | AT91_IRQ_WARN | AT91_IRQ_BOFF;
954 reg_ier = AT91_IRQ_ERRP;
955 break;
956 case CAN_STATE_ERROR_PASSIVE:
957 reg_idr = AT91_IRQ_ERRA | AT91_IRQ_WARN | AT91_IRQ_ERRP;
958 reg_ier = AT91_IRQ_BOFF;
959 break;
960 case CAN_STATE_BUS_OFF:
961 reg_idr = AT91_IRQ_ERRA | AT91_IRQ_ERRP |
962 AT91_IRQ_WARN | AT91_IRQ_BOFF;
963 reg_ier = 0;
964
965 cf->can_id |= CAN_ERR_BUSOFF;
966
Marc Kleine-Budde882055c2010-10-21 01:01:21 +0000967 netdev_dbg(dev, "bus-off\n");
David S. Miller99c4a632009-09-25 12:14:43 -0700968 netif_carrier_off(dev);
969 priv->can.can_stats.bus_off++;
970
971 /* turn off chip, if restart is disabled */
972 if (!priv->can.restart_ms) {
973 at91_chip_stop(dev, CAN_STATE_BUS_OFF);
974 return;
975 }
976 break;
977 default:
978 break;
979 }
980
981 at91_write(priv, AT91_IDR, reg_idr);
982 at91_write(priv, AT91_IER, reg_ier);
983}
984
Marc Kleine-Budde6388b392011-04-17 00:08:45 +0200985static int at91_get_state_by_bec(const struct net_device *dev,
986 enum can_state *state)
987{
988 struct can_berr_counter bec;
989 int err;
990
991 err = at91_get_berr_counter(dev, &bec);
992 if (err)
993 return err;
994
995 if (bec.txerr < 96 && bec.rxerr < 96)
996 *state = CAN_STATE_ERROR_ACTIVE;
997 else if (bec.txerr < 128 && bec.rxerr < 128)
998 *state = CAN_STATE_ERROR_WARNING;
999 else if (bec.txerr < 256 && bec.rxerr < 256)
1000 *state = CAN_STATE_ERROR_PASSIVE;
1001 else
1002 *state = CAN_STATE_BUS_OFF;
1003
1004 return 0;
1005}
1006
1007
David S. Miller99c4a632009-09-25 12:14:43 -07001008static void at91_irq_err(struct net_device *dev)
1009{
1010 struct at91_priv *priv = netdev_priv(dev);
1011 struct sk_buff *skb;
1012 struct can_frame *cf;
1013 enum can_state new_state;
1014 u32 reg_sr;
Marc Kleine-Budde6388b392011-04-17 00:08:45 +02001015 int err;
David S. Miller99c4a632009-09-25 12:14:43 -07001016
Marc Kleine-Budde6388b392011-04-17 00:08:45 +02001017 if (at91_is_sam9263(priv)) {
1018 reg_sr = at91_read(priv, AT91_SR);
David S. Miller99c4a632009-09-25 12:14:43 -07001019
Marc Kleine-Budde6388b392011-04-17 00:08:45 +02001020 /* we need to look at the unmasked reg_sr */
1021 if (unlikely(reg_sr & AT91_IRQ_BOFF))
1022 new_state = CAN_STATE_BUS_OFF;
1023 else if (unlikely(reg_sr & AT91_IRQ_ERRP))
1024 new_state = CAN_STATE_ERROR_PASSIVE;
1025 else if (unlikely(reg_sr & AT91_IRQ_WARN))
1026 new_state = CAN_STATE_ERROR_WARNING;
1027 else if (likely(reg_sr & AT91_IRQ_ERRA))
1028 new_state = CAN_STATE_ERROR_ACTIVE;
1029 else {
1030 netdev_err(dev, "BUG! hardware in undefined state\n");
1031 return;
1032 }
1033 } else {
1034 err = at91_get_state_by_bec(dev, &new_state);
1035 if (err)
1036 return;
David S. Miller99c4a632009-09-25 12:14:43 -07001037 }
1038
1039 /* state hasn't changed */
1040 if (likely(new_state == priv->can.state))
1041 return;
1042
1043 skb = alloc_can_err_skb(dev, &cf);
1044 if (unlikely(!skb))
1045 return;
1046
1047 at91_irq_err_state(dev, cf, new_state);
David S. Miller99c4a632009-09-25 12:14:43 -07001048
David S. Miller99c4a632009-09-25 12:14:43 -07001049 dev->stats.rx_packets++;
1050 dev->stats.rx_bytes += cf->can_dlc;
Marc Kleine-Budde6ae36732015-07-11 21:03:07 +02001051 netif_rx(skb);
David S. Miller99c4a632009-09-25 12:14:43 -07001052
1053 priv->can.state = new_state;
1054}
1055
1056/*
1057 * interrupt handler
1058 */
1059static irqreturn_t at91_irq(int irq, void *dev_id)
1060{
1061 struct net_device *dev = dev_id;
1062 struct at91_priv *priv = netdev_priv(dev);
1063 irqreturn_t handled = IRQ_NONE;
1064 u32 reg_sr, reg_imr;
1065
1066 reg_sr = at91_read(priv, AT91_SR);
1067 reg_imr = at91_read(priv, AT91_IMR);
1068
1069 /* Ignore masked interrupts */
1070 reg_sr &= reg_imr;
1071 if (!reg_sr)
1072 goto exit;
1073
1074 handled = IRQ_HANDLED;
1075
1076 /* Receive or error interrupt? -> napi */
Marc Kleine-Budde79008992011-05-03 17:31:40 +02001077 if (reg_sr & (get_irq_mb_rx(priv) | AT91_IRQ_ERR_FRAME)) {
David S. Miller99c4a632009-09-25 12:14:43 -07001078 /*
1079 * The error bits are clear on read,
1080 * save for later use.
1081 */
1082 priv->reg_sr = reg_sr;
1083 at91_write(priv, AT91_IDR,
Marc Kleine-Budde79008992011-05-03 17:31:40 +02001084 get_irq_mb_rx(priv) | AT91_IRQ_ERR_FRAME);
David S. Miller99c4a632009-09-25 12:14:43 -07001085 napi_schedule(&priv->napi);
1086 }
1087
1088 /* Transmission complete interrupt */
Marc Kleine-Budde79008992011-05-03 17:31:40 +02001089 if (reg_sr & get_irq_mb_tx(priv))
David S. Miller99c4a632009-09-25 12:14:43 -07001090 at91_irq_tx(dev, reg_sr);
1091
1092 at91_irq_err(dev);
1093
1094 exit:
1095 return handled;
1096}
1097
1098static int at91_open(struct net_device *dev)
1099{
1100 struct at91_priv *priv = netdev_priv(dev);
1101 int err;
1102
David Duecke77980e2014-09-17 14:26:48 +02001103 err = clk_prepare_enable(priv->clk);
1104 if (err)
1105 return err;
David S. Miller99c4a632009-09-25 12:14:43 -07001106
1107 /* check or determine and set bittime */
1108 err = open_candev(dev);
1109 if (err)
1110 goto out;
1111
1112 /* register interrupt handler */
1113 if (request_irq(dev->irq, at91_irq, IRQF_SHARED,
1114 dev->name, dev)) {
1115 err = -EAGAIN;
1116 goto out_close;
1117 }
1118
Fabio Baltieri4723f2b2012-12-18 18:50:59 +01001119 can_led_event(dev, CAN_LED_EVENT_OPEN);
1120
David S. Miller99c4a632009-09-25 12:14:43 -07001121 /* start chip and queuing */
1122 at91_chip_start(dev);
1123 napi_enable(&priv->napi);
1124 netif_start_queue(dev);
1125
1126 return 0;
1127
1128 out_close:
1129 close_candev(dev);
1130 out:
David Duecke77980e2014-09-17 14:26:48 +02001131 clk_disable_unprepare(priv->clk);
David S. Miller99c4a632009-09-25 12:14:43 -07001132
1133 return err;
1134}
1135
1136/*
1137 * stop CAN bus activity
1138 */
1139static int at91_close(struct net_device *dev)
1140{
1141 struct at91_priv *priv = netdev_priv(dev);
1142
1143 netif_stop_queue(dev);
1144 napi_disable(&priv->napi);
1145 at91_chip_stop(dev, CAN_STATE_STOPPED);
1146
1147 free_irq(dev->irq, dev);
David Duecke77980e2014-09-17 14:26:48 +02001148 clk_disable_unprepare(priv->clk);
David S. Miller99c4a632009-09-25 12:14:43 -07001149
1150 close_candev(dev);
1151
Fabio Baltieri4723f2b2012-12-18 18:50:59 +01001152 can_led_event(dev, CAN_LED_EVENT_STOP);
1153
David S. Miller99c4a632009-09-25 12:14:43 -07001154 return 0;
1155}
1156
1157static int at91_set_mode(struct net_device *dev, enum can_mode mode)
1158{
1159 switch (mode) {
1160 case CAN_MODE_START:
1161 at91_chip_start(dev);
1162 netif_wake_queue(dev);
1163 break;
1164
1165 default:
1166 return -EOPNOTSUPP;
1167 }
1168
1169 return 0;
1170}
1171
1172static const struct net_device_ops at91_netdev_ops = {
1173 .ndo_open = at91_open,
1174 .ndo_stop = at91_close,
1175 .ndo_start_xmit = at91_start_xmit,
Oliver Hartkoppc971fa22014-03-07 09:23:41 +01001176 .ndo_change_mtu = can_change_mtu,
David S. Miller99c4a632009-09-25 12:14:43 -07001177};
1178
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +01001179static ssize_t at91_sysfs_show_mb0_id(struct device *dev,
1180 struct device_attribute *attr, char *buf)
1181{
1182 struct at91_priv *priv = netdev_priv(to_net_dev(dev));
1183
1184 if (priv->mb0_id & CAN_EFF_FLAG)
1185 return snprintf(buf, PAGE_SIZE, "0x%08x\n", priv->mb0_id);
1186 else
1187 return snprintf(buf, PAGE_SIZE, "0x%03x\n", priv->mb0_id);
1188}
1189
1190static ssize_t at91_sysfs_set_mb0_id(struct device *dev,
1191 struct device_attribute *attr, const char *buf, size_t count)
1192{
1193 struct net_device *ndev = to_net_dev(dev);
1194 struct at91_priv *priv = netdev_priv(ndev);
1195 unsigned long can_id;
1196 ssize_t ret;
1197 int err;
1198
1199 rtnl_lock();
1200
1201 if (ndev->flags & IFF_UP) {
1202 ret = -EBUSY;
1203 goto out;
1204 }
1205
Jingoo Han0672f0a2013-05-31 21:18:55 +00001206 err = kstrtoul(buf, 0, &can_id);
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +01001207 if (err) {
1208 ret = err;
1209 goto out;
1210 }
1211
1212 if (can_id & CAN_EFF_FLAG)
1213 can_id &= CAN_EFF_MASK | CAN_EFF_FLAG;
1214 else
1215 can_id &= CAN_SFF_MASK;
1216
1217 priv->mb0_id = can_id;
1218 ret = count;
1219
1220 out:
1221 rtnl_unlock();
1222 return ret;
1223}
1224
Joe Perchesd61e4032018-03-23 15:54:39 -07001225static DEVICE_ATTR(mb0_id, 0644, at91_sysfs_show_mb0_id, at91_sysfs_set_mb0_id);
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +01001226
1227static struct attribute *at91_sysfs_attrs[] = {
1228 &dev_attr_mb0_id.attr,
1229 NULL,
1230};
1231
Arvind Yadav7ec27962017-07-18 15:14:18 +05301232static const struct attribute_group at91_sysfs_attr_group = {
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +01001233 .attrs = at91_sysfs_attrs,
1234};
1235
Ludovic Desroches3078cde72013-03-11 18:26:03 +01001236#if defined(CONFIG_OF)
1237static const struct of_device_id at91_can_dt_ids[] = {
1238 {
1239 .compatible = "atmel,at91sam9x5-can",
1240 .data = &at91_at91sam9x5_data,
1241 }, {
1242 .compatible = "atmel,at91sam9263-can",
1243 .data = &at91_at91sam9263_data,
1244 }, {
1245 /* sentinel */
1246 }
1247};
1248MODULE_DEVICE_TABLE(of, at91_can_dt_ids);
Ludovic Desroches3078cde72013-03-11 18:26:03 +01001249#endif
1250
1251static const struct at91_devtype_data *at91_can_get_driver_data(struct platform_device *pdev)
1252{
1253 if (pdev->dev.of_node) {
1254 const struct of_device_id *match;
1255
1256 match = of_match_node(at91_can_dt_ids, pdev->dev.of_node);
1257 if (!match) {
1258 dev_err(&pdev->dev, "no matching node found in dtb\n");
1259 return NULL;
1260 }
1261 return (const struct at91_devtype_data *)match->data;
1262 }
1263 return (const struct at91_devtype_data *)
1264 platform_get_device_id(pdev)->driver_data;
1265}
1266
Bill Pemberton3c8ac0f2012-12-03 09:22:44 -05001267static int at91_can_probe(struct platform_device *pdev)
David S. Miller99c4a632009-09-25 12:14:43 -07001268{
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001269 const struct at91_devtype_data *devtype_data;
David S. Miller99c4a632009-09-25 12:14:43 -07001270 struct net_device *dev;
1271 struct at91_priv *priv;
1272 struct resource *res;
1273 struct clk *clk;
1274 void __iomem *addr;
1275 int err, irq;
1276
Ludovic Desroches3078cde72013-03-11 18:26:03 +01001277 devtype_data = at91_can_get_driver_data(pdev);
1278 if (!devtype_data) {
1279 dev_err(&pdev->dev, "no driver data\n");
1280 err = -ENODEV;
1281 goto exit;
1282 }
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001283
David S. Miller99c4a632009-09-25 12:14:43 -07001284 clk = clk_get(&pdev->dev, "can_clk");
1285 if (IS_ERR(clk)) {
1286 dev_err(&pdev->dev, "no clock defined\n");
1287 err = -ENODEV;
1288 goto exit;
1289 }
1290
1291 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1292 irq = platform_get_irq(pdev, 0);
Uwe Kleine-König4773a472009-12-18 20:31:56 -08001293 if (!res || irq <= 0) {
David S. Miller99c4a632009-09-25 12:14:43 -07001294 err = -ENODEV;
1295 goto exit_put;
1296 }
1297
1298 if (!request_mem_region(res->start,
1299 resource_size(res),
1300 pdev->name)) {
1301 err = -EBUSY;
1302 goto exit_put;
1303 }
1304
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +01001305 addr = ioremap(res->start, resource_size(res));
David S. Miller99c4a632009-09-25 12:14:43 -07001306 if (!addr) {
1307 err = -ENOMEM;
1308 goto exit_release;
1309 }
1310
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001311 dev = alloc_candev(sizeof(struct at91_priv),
1312 1 << devtype_data->tx_shift);
David S. Miller99c4a632009-09-25 12:14:43 -07001313 if (!dev) {
1314 err = -ENOMEM;
1315 goto exit_iounmap;
1316 }
1317
1318 dev->netdev_ops = &at91_netdev_ops;
1319 dev->irq = irq;
1320 dev->flags |= IFF_ECHO;
1321
1322 priv = netdev_priv(dev);
1323 priv->can.clock.freq = clk_get_rate(clk);
1324 priv->can.bittiming_const = &at91_bittiming_const;
David S. Miller99c4a632009-09-25 12:14:43 -07001325 priv->can.do_set_mode = at91_set_mode;
Marc Kleine-Budde33a6f292010-10-21 01:01:18 +00001326 priv->can.do_get_berr_counter = at91_get_berr_counter;
Yoann DI RUZZA17a50ee2014-02-11 09:46:59 +01001327 priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES |
1328 CAN_CTRLMODE_LISTENONLY;
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001329 priv->reg_base = addr;
1330 priv->devtype_data = *devtype_data;
David S. Miller99c4a632009-09-25 12:14:43 -07001331 priv->clk = clk;
Jingoo Han6cbdb912013-09-10 17:40:09 +09001332 priv->pdata = dev_get_platdata(&pdev->dev);
Marc Kleine-Budde3a5655a2011-01-10 20:44:22 +01001333 priv->mb0_id = 0x7ff;
David S. Miller99c4a632009-09-25 12:14:43 -07001334
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001335 netif_napi_add(dev, &priv->napi, at91_poll, get_mb_rx_num(priv));
David S. Miller99c4a632009-09-25 12:14:43 -07001336
Marc Kleine-Budde07a648e2011-06-01 00:20:17 +02001337 if (at91_is_sam9263(priv))
1338 dev->sysfs_groups[0] = &at91_sysfs_attr_group;
1339
Libo Chen40f7e0d2013-08-21 18:15:03 +08001340 platform_set_drvdata(pdev, dev);
David S. Miller99c4a632009-09-25 12:14:43 -07001341 SET_NETDEV_DEV(dev, &pdev->dev);
1342
1343 err = register_candev(dev);
1344 if (err) {
1345 dev_err(&pdev->dev, "registering netdev failed\n");
1346 goto exit_free;
1347 }
1348
Fabio Baltieri4723f2b2012-12-18 18:50:59 +01001349 devm_can_led_init(dev);
1350
David S. Miller99c4a632009-09-25 12:14:43 -07001351 dev_info(&pdev->dev, "device registered (reg_base=%p, irq=%d)\n",
1352 priv->reg_base, dev->irq);
1353
1354 return 0;
1355
1356 exit_free:
Marc Kleine-Budde759a6c72010-10-21 01:01:15 +00001357 free_candev(dev);
David S. Miller99c4a632009-09-25 12:14:43 -07001358 exit_iounmap:
1359 iounmap(addr);
1360 exit_release:
1361 release_mem_region(res->start, resource_size(res));
1362 exit_put:
1363 clk_put(clk);
1364 exit:
1365 return err;
1366}
1367
Bill Pemberton3c8ac0f2012-12-03 09:22:44 -05001368static int at91_can_remove(struct platform_device *pdev)
David S. Miller99c4a632009-09-25 12:14:43 -07001369{
1370 struct net_device *dev = platform_get_drvdata(pdev);
1371 struct at91_priv *priv = netdev_priv(dev);
1372 struct resource *res;
1373
1374 unregister_netdev(dev);
1375
David S. Miller99c4a632009-09-25 12:14:43 -07001376 iounmap(priv->reg_base);
1377
1378 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1379 release_mem_region(res->start, resource_size(res));
1380
1381 clk_put(priv->clk);
1382
Marc Kleine-Budde759a6c72010-10-21 01:01:15 +00001383 free_candev(dev);
1384
David S. Miller99c4a632009-09-25 12:14:43 -07001385 return 0;
1386}
1387
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001388static const struct platform_device_id at91_can_id_table[] = {
1389 {
Marc Kleine-Budde5abbeea2013-10-09 12:19:19 +02001390 .name = "at91sam9x5_can",
Ludovic Desroches3078cde72013-03-11 18:26:03 +01001391 .driver_data = (kernel_ulong_t)&at91_at91sam9x5_data,
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001392 }, {
Marc Kleine-Budde5abbeea2013-10-09 12:19:19 +02001393 .name = "at91_can",
Ludovic Desroches3078cde72013-03-11 18:26:03 +01001394 .driver_data = (kernel_ulong_t)&at91_at91sam9263_data,
Marc Kleine-Budde6388b392011-04-17 00:08:45 +02001395 }, {
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001396 /* sentinel */
1397 }
1398};
Marc Kleine-Budde09ca71c2012-10-12 09:44:51 +02001399MODULE_DEVICE_TABLE(platform, at91_can_id_table);
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001400
David S. Miller99c4a632009-09-25 12:14:43 -07001401static struct platform_driver at91_can_driver = {
Marc Kleine-Budde44d85662011-01-30 22:14:49 +01001402 .probe = at91_can_probe,
Bill Pemberton3c8ac0f2012-12-03 09:22:44 -05001403 .remove = at91_can_remove,
Marc Kleine-Budde44d85662011-01-30 22:14:49 +01001404 .driver = {
1405 .name = KBUILD_MODNAME,
Sachin Kamat1f3e4b02013-06-12 17:00:39 +05301406 .of_match_table = of_match_ptr(at91_can_dt_ids),
David S. Miller99c4a632009-09-25 12:14:43 -07001407 },
Marc Kleine-Budded3d47262011-05-03 17:41:09 +02001408 .id_table = at91_can_id_table,
David S. Miller99c4a632009-09-25 12:14:43 -07001409};
1410
Axel Lin871d3372011-11-27 15:42:31 +00001411module_platform_driver(at91_can_driver);
David S. Miller99c4a632009-09-25 12:14:43 -07001412
1413MODULE_AUTHOR("Marc Kleine-Budde <mkl@pengutronix.de>");
1414MODULE_LICENSE("GPL v2");
Marc Kleine-Budde00389b02010-10-21 01:01:22 +00001415MODULE_DESCRIPTION(KBUILD_MODNAME " CAN netdevice driver");