1 /*
2 * CAN bus driver for Bosch C_CAN controller
3 *
4 * Copyright (C) 2010 ST Microelectronics
5 * Bhupesh Sharma <bhupesh.sharma@st.com>
6 *
7 * Borrowed heavily from the C_CAN driver originally written by:
8 * Copyright (C) 2007
9 * - Sascha Hauer, Marc Kleine-Budde, Pengutronix <s.hauer@pengutronix.de>
10 * - Simon Kallweit, intefo AG <simon.kallweit@intefo.ch>
11 *
12 * TX and RX NAPI implementation has been borrowed from at91 CAN driver
13 * written by:
14 * Copyright
15 * (C) 2007 by Hans J. Koch <hjk@hansjkoch.de>
16 * (C) 2008, 2009 by Marc Kleine-Budde <kernel@pengutronix.de>
17 *
18 * Bosch C_CAN controller is compliant to CAN protocol version 2.0 part A and B.
19 * Bosch C_CAN user manual can be obtained from:
20 * http://www.semiconductors.bosch.de/media/en/pdf/ipmodules_1/c_can/
21 * users_manual_c_can.pdf
22 *
23 * This file is licensed under the terms of the GNU General Public
24 * License version 2. This program is licensed "as is" without any
25 * warranty of any kind, whether express or implied.
26 */
27
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/interrupt.h>
31 #include <linux/delay.h>
32 #include <linux/netdevice.h>
33 #include <linux/if_arp.h>
34 #include <linux/if_ether.h>
35 #include <linux/list.h>
36 #include <linux/io.h>
37 #include <linux/pm_runtime.h>
38 #include <linux/pinctrl/consumer.h>
39
40 #include <linux/can.h>
41 #include <linux/can/dev.h>
42 #include <linux/can/error.h>
43 #include <linux/can/led.h>
44
45 #include "c_can.h"
46
47 /* Number of interface registers */
48 #define IF_ENUM_REG_LEN 11
49 #define C_CAN_IFACE(reg, iface) (C_CAN_IF1_##reg + (iface) * IF_ENUM_REG_LEN)
50
51 /* control extension register D_CAN specific */
52 #define CONTROL_EX_PDR BIT(8)
53
54 /* control register */
55 #define CONTROL_SWR BIT(15)
56 #define CONTROL_TEST BIT(7)
57 #define CONTROL_CCE BIT(6)
58 #define CONTROL_DISABLE_AR BIT(5)
59 #define CONTROL_ENABLE_AR (0 << 5)
60 #define CONTROL_EIE BIT(3)
61 #define CONTROL_SIE BIT(2)
62 #define CONTROL_IE BIT(1)
63 #define CONTROL_INIT BIT(0)
64
65 #define CONTROL_IRQMSK (CONTROL_EIE | CONTROL_IE | CONTROL_SIE)
66
67 /* test register */
68 #define TEST_RX BIT(7)
69 #define TEST_TX1 BIT(6)
70 #define TEST_TX2 BIT(5)
71 #define TEST_LBACK BIT(4)
72 #define TEST_SILENT BIT(3)
73 #define TEST_BASIC BIT(2)
74
75 /* status register */
76 #define STATUS_PDA BIT(10)
77 #define STATUS_BOFF BIT(7)
78 #define STATUS_EWARN BIT(6)
79 #define STATUS_EPASS BIT(5)
80 #define STATUS_RXOK BIT(4)
81 #define STATUS_TXOK BIT(3)
82
83 /* error counter register */
84 #define ERR_CNT_TEC_MASK 0xff
85 #define ERR_CNT_TEC_SHIFT 0
86 #define ERR_CNT_REC_SHIFT 8
87 #define ERR_CNT_REC_MASK (0x7f << ERR_CNT_REC_SHIFT)
88 #define ERR_CNT_RP_SHIFT 15
89 #define ERR_CNT_RP_MASK (0x1 << ERR_CNT_RP_SHIFT)
90
91 /* bit-timing register */
92 #define BTR_BRP_MASK 0x3f
93 #define BTR_BRP_SHIFT 0
94 #define BTR_SJW_SHIFT 6
95 #define BTR_SJW_MASK (0x3 << BTR_SJW_SHIFT)
96 #define BTR_TSEG1_SHIFT 8
97 #define BTR_TSEG1_MASK (0xf << BTR_TSEG1_SHIFT)
98 #define BTR_TSEG2_SHIFT 12
99 #define BTR_TSEG2_MASK (0x7 << BTR_TSEG2_SHIFT)
100
101 /* interrupt register */
102 #define INT_STS_PENDING 0x8000
103
104 /* brp extension register */
105 #define BRP_EXT_BRPE_MASK 0x0f
106 #define BRP_EXT_BRPE_SHIFT 0
107
108 /* IFx command request */
109 #define IF_COMR_BUSY BIT(15)
110
111 /* IFx command mask */
112 #define IF_COMM_WR BIT(7)
113 #define IF_COMM_MASK BIT(6)
114 #define IF_COMM_ARB BIT(5)
115 #define IF_COMM_CONTROL BIT(4)
116 #define IF_COMM_CLR_INT_PND BIT(3)
117 #define IF_COMM_TXRQST BIT(2)
118 #define IF_COMM_CLR_NEWDAT IF_COMM_TXRQST
119 #define IF_COMM_DATAA BIT(1)
120 #define IF_COMM_DATAB BIT(0)
121
122 /* TX buffer setup */
123 #define IF_COMM_TX (IF_COMM_ARB | IF_COMM_CONTROL | \
124 IF_COMM_TXRQST | \
125 IF_COMM_DATAA | IF_COMM_DATAB)
126
127 /* For the low buffers we clear the interrupt bit, but keep newdat */
128 #define IF_COMM_RCV_LOW (IF_COMM_MASK | IF_COMM_ARB | \
129 IF_COMM_CONTROL | IF_COMM_CLR_INT_PND | \
130 IF_COMM_DATAA | IF_COMM_DATAB)
131
132 /* For the high buffers we clear the interrupt bit and newdat */
133 #define IF_COMM_RCV_HIGH (IF_COMM_RCV_LOW | IF_COMM_CLR_NEWDAT)
134
135 /* Receive setup of message objects */
136 #define IF_COMM_RCV_SETUP (IF_COMM_MASK | IF_COMM_ARB | IF_COMM_CONTROL)
137
138 /* Invalidation of message objects */
139 #define IF_COMM_INVAL (IF_COMM_ARB | IF_COMM_CONTROL)
140
141 /* IFx arbitration */
142 #define IF_ARB_MSGVAL BIT(31)
143 #define IF_ARB_MSGXTD BIT(30)
144 #define IF_ARB_TRANSMIT BIT(29)
145
146 /* IFx message control */
147 #define IF_MCONT_NEWDAT BIT(15)
148 #define IF_MCONT_MSGLST BIT(14)
149 #define IF_MCONT_INTPND BIT(13)
150 #define IF_MCONT_UMASK BIT(12)
151 #define IF_MCONT_TXIE BIT(11)
152 #define IF_MCONT_RXIE BIT(10)
153 #define IF_MCONT_RMTEN BIT(9)
154 #define IF_MCONT_TXRQST BIT(8)
155 #define IF_MCONT_EOB BIT(7)
156 #define IF_MCONT_DLC_MASK 0xf
157
158 #define IF_MCONT_RCV (IF_MCONT_RXIE | IF_MCONT_UMASK)
159 #define IF_MCONT_RCV_EOB (IF_MCONT_RCV | IF_MCONT_EOB)
160
161 #define IF_MCONT_TX (IF_MCONT_TXIE | IF_MCONT_EOB)
162
163 /* Use IF1 in NAPI path and IF2 in TX path */
164 #define IF_NAPI 0
165 #define IF_TX 1
166
167 /* minimum timeout for checking BUSY status */
168 #define MIN_TIMEOUT_VALUE 6
169
170 /* Wait for ~1 sec for INIT bit */
171 #define INIT_WAIT_MS 1000
172
173 /* c_can lec values */
174 enum c_can_lec_type {
175 LEC_NO_ERROR = 0,
176 LEC_STUFF_ERROR,
177 LEC_FORM_ERROR,
178 LEC_ACK_ERROR,
179 LEC_BIT1_ERROR,
180 LEC_BIT0_ERROR,
181 LEC_CRC_ERROR,
182 LEC_UNUSED,
183 LEC_MASK = LEC_UNUSED,
184 };
185
186 /* c_can error types:
187 * Bus errors (BUS_OFF, ERROR_WARNING, ERROR_PASSIVE) are supported
188 */
189 enum c_can_bus_error_types {
190 C_CAN_NO_ERROR = 0,
191 C_CAN_BUS_OFF,
192 C_CAN_ERROR_WARNING,
193 C_CAN_ERROR_PASSIVE,
194 };
195
196 static const struct can_bittiming_const c_can_bittiming_const = {
197 .name = KBUILD_MODNAME,
198 .tseg1_min = 2, /* Time segment 1 = prop_seg + phase_seg1 */
199 .tseg1_max = 16,
200 .tseg2_min = 1, /* Time segment 2 = phase_seg2 */
201 .tseg2_max = 8,
202 .sjw_max = 4,
203 .brp_min = 1,
204 .brp_max = 1024, /* 6-bit BRP field + 4-bit BRPE field*/
205 .brp_inc = 1,
206 };
207
c_can_pm_runtime_get_sync(const struct c_can_priv * priv)208 static inline void c_can_pm_runtime_get_sync(const struct c_can_priv *priv)
209 {
210 if (priv->device)
211 pm_runtime_get_sync(priv->device);
212 }
213
c_can_pm_runtime_put_sync(const struct c_can_priv * priv)214 static inline void c_can_pm_runtime_put_sync(const struct c_can_priv *priv)
215 {
216 if (priv->device)
217 pm_runtime_put_sync(priv->device);
218 }
219
c_can_reset_ram(const struct c_can_priv * priv,bool enable)220 static inline void c_can_reset_ram(const struct c_can_priv *priv, bool enable)
221 {
222 if (priv->raminit)
223 priv->raminit(priv, enable);
224 }
225
c_can_irq_control(struct c_can_priv * priv,bool enable)226 static void c_can_irq_control(struct c_can_priv *priv, bool enable)
227 {
228 u32 ctrl = priv->read_reg(priv, C_CAN_CTRL_REG) & ~CONTROL_IRQMSK;
229
230 if (enable)
231 ctrl |= CONTROL_IRQMSK;
232
233 priv->write_reg(priv, C_CAN_CTRL_REG, ctrl);
234 }
235
c_can_obj_update(struct net_device * dev,int iface,u32 cmd,u32 obj)236 static void c_can_obj_update(struct net_device *dev, int iface, u32 cmd, u32 obj)
237 {
238 struct c_can_priv *priv = netdev_priv(dev);
239 int cnt, reg = C_CAN_IFACE(COMREQ_REG, iface);
240
241 priv->write_reg32(priv, reg, (cmd << 16) | obj);
242
243 for (cnt = MIN_TIMEOUT_VALUE; cnt; cnt--) {
244 if (!(priv->read_reg(priv, reg) & IF_COMR_BUSY))
245 return;
246 udelay(1);
247 }
248 netdev_err(dev, "Updating object timed out\n");
249 }
250
c_can_object_get(struct net_device * dev,int iface,u32 obj,u32 cmd)251 static inline void c_can_object_get(struct net_device *dev, int iface,
252 u32 obj, u32 cmd)
253 {
254 c_can_obj_update(dev, iface, cmd, obj);
255 }
256
c_can_object_put(struct net_device * dev,int iface,u32 obj,u32 cmd)257 static inline void c_can_object_put(struct net_device *dev, int iface,
258 u32 obj, u32 cmd)
259 {
260 c_can_obj_update(dev, iface, cmd | IF_COMM_WR, obj);
261 }
262
263 /* Note: According to documentation clearing TXIE while MSGVAL is set
264 * is not allowed, but works nicely on C/DCAN. And that lowers the I/O
265 * load significantly.
266 */
c_can_inval_tx_object(struct net_device * dev,int iface,int obj)267 static void c_can_inval_tx_object(struct net_device *dev, int iface, int obj)
268 {
269 struct c_can_priv *priv = netdev_priv(dev);
270
271 priv->write_reg(priv, C_CAN_IFACE(MSGCTRL_REG, iface), 0);
272 c_can_object_put(dev, iface, obj, IF_COMM_INVAL);
273 }
274
c_can_inval_msg_object(struct net_device * dev,int iface,int obj)275 static void c_can_inval_msg_object(struct net_device *dev, int iface, int obj)
276 {
277 struct c_can_priv *priv = netdev_priv(dev);
278
279 priv->write_reg32(priv, C_CAN_IFACE(ARB1_REG, iface), 0);
280 c_can_inval_tx_object(dev, iface, obj);
281 }
282
c_can_setup_tx_object(struct net_device * dev,int iface,struct can_frame * frame,int idx)283 static void c_can_setup_tx_object(struct net_device *dev, int iface,
284 struct can_frame *frame, int idx)
285 {
286 struct c_can_priv *priv = netdev_priv(dev);
287 u16 ctrl = IF_MCONT_TX | frame->len;
288 bool rtr = frame->can_id & CAN_RTR_FLAG;
289 u32 arb = IF_ARB_MSGVAL;
290 int i;
291
292 if (frame->can_id & CAN_EFF_FLAG) {
293 arb |= frame->can_id & CAN_EFF_MASK;
294 arb |= IF_ARB_MSGXTD;
295 } else {
296 arb |= (frame->can_id & CAN_SFF_MASK) << 18;
297 }
298
299 if (!rtr)
300 arb |= IF_ARB_TRANSMIT;
301
302 /* If we change the DIR bit, we need to invalidate the buffer
303 * first, i.e. clear the MSGVAL flag in the arbiter.
304 */
305 if (rtr != (bool)test_bit(idx, &priv->tx_dir)) {
306 u32 obj = idx + priv->msg_obj_tx_first;
307
308 c_can_inval_msg_object(dev, iface, obj);
309 change_bit(idx, &priv->tx_dir);
310 }
311
312 priv->write_reg32(priv, C_CAN_IFACE(ARB1_REG, iface), arb);
313
314 priv->write_reg(priv, C_CAN_IFACE(MSGCTRL_REG, iface), ctrl);
315
316 if (priv->type == BOSCH_D_CAN) {
317 u32 data = 0, dreg = C_CAN_IFACE(DATA1_REG, iface);
318
319 for (i = 0; i < frame->len; i += 4, dreg += 2) {
320 data = (u32)frame->data[i];
321 data |= (u32)frame->data[i + 1] << 8;
322 data |= (u32)frame->data[i + 2] << 16;
323 data |= (u32)frame->data[i + 3] << 24;
324 priv->write_reg32(priv, dreg, data);
325 }
326 } else {
327 for (i = 0; i < frame->len; i += 2) {
328 priv->write_reg(priv,
329 C_CAN_IFACE(DATA1_REG, iface) + i / 2,
330 frame->data[i] |
331 (frame->data[i + 1] << 8));
332 }
333 }
334 }
335
c_can_handle_lost_msg_obj(struct net_device * dev,int iface,int objno,u32 ctrl)336 static int c_can_handle_lost_msg_obj(struct net_device *dev,
337 int iface, int objno, u32 ctrl)
338 {
339 struct net_device_stats *stats = &dev->stats;
340 struct c_can_priv *priv = netdev_priv(dev);
341 struct can_frame *frame;
342 struct sk_buff *skb;
343
344 ctrl &= ~(IF_MCONT_MSGLST | IF_MCONT_INTPND | IF_MCONT_NEWDAT);
345 priv->write_reg(priv, C_CAN_IFACE(MSGCTRL_REG, iface), ctrl);
346 c_can_object_put(dev, iface, objno, IF_COMM_CONTROL);
347
348 stats->rx_errors++;
349 stats->rx_over_errors++;
350
351 /* create an error msg */
352 skb = alloc_can_err_skb(dev, &frame);
353 if (unlikely(!skb))
354 return 0;
355
356 frame->can_id |= CAN_ERR_CRTL;
357 frame->data[1] = CAN_ERR_CRTL_RX_OVERFLOW;
358
359 netif_receive_skb(skb);
360 return 1;
361 }
362
c_can_read_msg_object(struct net_device * dev,int iface,u32 ctrl)363 static int c_can_read_msg_object(struct net_device *dev, int iface, u32 ctrl)
364 {
365 struct net_device_stats *stats = &dev->stats;
366 struct c_can_priv *priv = netdev_priv(dev);
367 struct can_frame *frame;
368 struct sk_buff *skb;
369 u32 arb, data;
370
371 skb = alloc_can_skb(dev, &frame);
372 if (!skb) {
373 stats->rx_dropped++;
374 return -ENOMEM;
375 }
376
377 frame->len = can_cc_dlc2len(ctrl & 0x0F);
378
379 arb = priv->read_reg32(priv, C_CAN_IFACE(ARB1_REG, iface));
380
381 if (arb & IF_ARB_MSGXTD)
382 frame->can_id = (arb & CAN_EFF_MASK) | CAN_EFF_FLAG;
383 else
384 frame->can_id = (arb >> 18) & CAN_SFF_MASK;
385
386 if (arb & IF_ARB_TRANSMIT) {
387 frame->can_id |= CAN_RTR_FLAG;
388 } else {
389 int i, dreg = C_CAN_IFACE(DATA1_REG, iface);
390
391 if (priv->type == BOSCH_D_CAN) {
392 for (i = 0; i < frame->len; i += 4, dreg += 2) {
393 data = priv->read_reg32(priv, dreg);
394 frame->data[i] = data;
395 frame->data[i + 1] = data >> 8;
396 frame->data[i + 2] = data >> 16;
397 frame->data[i + 3] = data >> 24;
398 }
399 } else {
400 for (i = 0; i < frame->len; i += 2, dreg++) {
401 data = priv->read_reg(priv, dreg);
402 frame->data[i] = data;
403 frame->data[i + 1] = data >> 8;
404 }
405 }
406 }
407
408 stats->rx_packets++;
409 stats->rx_bytes += frame->len;
410
411 netif_receive_skb(skb);
412 return 0;
413 }
414
c_can_setup_receive_object(struct net_device * dev,int iface,u32 obj,u32 mask,u32 id,u32 mcont)415 static void c_can_setup_receive_object(struct net_device *dev, int iface,
416 u32 obj, u32 mask, u32 id, u32 mcont)
417 {
418 struct c_can_priv *priv = netdev_priv(dev);
419
420 mask |= BIT(29);
421 priv->write_reg32(priv, C_CAN_IFACE(MASK1_REG, iface), mask);
422
423 id |= IF_ARB_MSGVAL;
424 priv->write_reg32(priv, C_CAN_IFACE(ARB1_REG, iface), id);
425
426 priv->write_reg(priv, C_CAN_IFACE(MSGCTRL_REG, iface), mcont);
427 c_can_object_put(dev, iface, obj, IF_COMM_RCV_SETUP);
428 }
429
c_can_tx_busy(const struct c_can_priv * priv,const struct c_can_tx_ring * tx_ring)430 static bool c_can_tx_busy(const struct c_can_priv *priv,
431 const struct c_can_tx_ring *tx_ring)
432 {
433 if (c_can_get_tx_free(priv, tx_ring) > 0)
434 return false;
435
436 netif_stop_queue(priv->dev);
437
438 /* Memory barrier before checking tx_free (head and tail) */
439 smp_mb();
440
441 if (c_can_get_tx_free(priv, tx_ring) == 0) {
442 netdev_dbg(priv->dev,
443 "Stopping tx-queue (tx_head=0x%08x, tx_tail=0x%08x, len=%d).\n",
444 tx_ring->head, tx_ring->tail,
445 tx_ring->head - tx_ring->tail);
446 return true;
447 }
448
449 netif_start_queue(priv->dev);
450 return false;
451 }
452
c_can_start_xmit(struct sk_buff * skb,struct net_device * dev)453 static netdev_tx_t c_can_start_xmit(struct sk_buff *skb,
454 struct net_device *dev)
455 {
456 struct can_frame *frame = (struct can_frame *)skb->data;
457 struct c_can_priv *priv = netdev_priv(dev);
458 struct c_can_tx_ring *tx_ring = &priv->tx;
459 u32 idx, obj, cmd = IF_COMM_TX;
460
461 if (can_dropped_invalid_skb(dev, skb))
462 return NETDEV_TX_OK;
463
464 if (c_can_tx_busy(priv, tx_ring))
465 return NETDEV_TX_BUSY;
466
467 idx = c_can_get_tx_head(tx_ring);
468 tx_ring->head++;
469 if (c_can_get_tx_free(priv, tx_ring) == 0)
470 netif_stop_queue(dev);
471
472 if (idx < c_can_get_tx_tail(tx_ring))
473 cmd &= ~IF_COMM_TXRQST; /* Cache the message */
474
475 /* Store the message in the interface so we can call
476 * can_put_echo_skb(). We must do this before we enable
477 * transmit as we might race against do_tx().
478 */
479 c_can_setup_tx_object(dev, IF_TX, frame, idx);
480 priv->dlc[idx] = frame->len;
481 can_put_echo_skb(skb, dev, idx, 0);
482 obj = idx + priv->msg_obj_tx_first;
483 c_can_object_put(dev, IF_TX, obj, cmd);
484
485 return NETDEV_TX_OK;
486 }
487
c_can_wait_for_ctrl_init(struct net_device * dev,struct c_can_priv * priv,u32 init)488 static int c_can_wait_for_ctrl_init(struct net_device *dev,
489 struct c_can_priv *priv, u32 init)
490 {
491 int retry = 0;
492
493 while (init != (priv->read_reg(priv, C_CAN_CTRL_REG) & CONTROL_INIT)) {
494 udelay(10);
495 if (retry++ > 1000) {
496 netdev_err(dev, "CCTRL: set CONTROL_INIT failed\n");
497 return -EIO;
498 }
499 }
500 return 0;
501 }
502
c_can_set_bittiming(struct net_device * dev)503 static int c_can_set_bittiming(struct net_device *dev)
504 {
505 unsigned int reg_btr, reg_brpe, ctrl_save;
506 u8 brp, brpe, sjw, tseg1, tseg2;
507 u32 ten_bit_brp;
508 struct c_can_priv *priv = netdev_priv(dev);
509 const struct can_bittiming *bt = &priv->can.bittiming;
510 int res;
511
512 /* c_can provides a 6-bit brp and 4-bit brpe fields */
513 ten_bit_brp = bt->brp - 1;
514 brp = ten_bit_brp & BTR_BRP_MASK;
515 brpe = ten_bit_brp >> 6;
516
517 sjw = bt->sjw - 1;
518 tseg1 = bt->prop_seg + bt->phase_seg1 - 1;
519 tseg2 = bt->phase_seg2 - 1;
520 reg_btr = brp | (sjw << BTR_SJW_SHIFT) | (tseg1 << BTR_TSEG1_SHIFT) |
521 (tseg2 << BTR_TSEG2_SHIFT);
522 reg_brpe = brpe & BRP_EXT_BRPE_MASK;
523
524 netdev_info(dev,
525 "setting BTR=%04x BRPE=%04x\n", reg_btr, reg_brpe);
526
527 ctrl_save = priv->read_reg(priv, C_CAN_CTRL_REG);
528 ctrl_save &= ~CONTROL_INIT;
529 priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_CCE | CONTROL_INIT);
530 res = c_can_wait_for_ctrl_init(dev, priv, CONTROL_INIT);
531 if (res)
532 return res;
533
534 priv->write_reg(priv, C_CAN_BTR_REG, reg_btr);
535 priv->write_reg(priv, C_CAN_BRPEXT_REG, reg_brpe);
536 priv->write_reg(priv, C_CAN_CTRL_REG, ctrl_save);
537
538 return c_can_wait_for_ctrl_init(dev, priv, 0);
539 }
540
541 /* Configure C_CAN message objects for Tx and Rx purposes:
542 * C_CAN provides a total of 32 message objects that can be configured
543 * either for Tx or Rx purposes. Here the first 16 message objects are used as
544 * a reception FIFO. The end of reception FIFO is signified by the EoB bit
545 * being SET. The remaining 16 message objects are kept aside for Tx purposes.
546 * See user guide document for further details on configuring message
547 * objects.
548 */
c_can_configure_msg_objects(struct net_device * dev)549 static void c_can_configure_msg_objects(struct net_device *dev)
550 {
551 struct c_can_priv *priv = netdev_priv(dev);
552 int i;
553
554 /* first invalidate all message objects */
555 for (i = priv->msg_obj_rx_first; i <= priv->msg_obj_num; i++)
556 c_can_inval_msg_object(dev, IF_NAPI, i);
557
558 /* setup receive message objects */
559 for (i = priv->msg_obj_rx_first; i < priv->msg_obj_rx_last; i++)
560 c_can_setup_receive_object(dev, IF_NAPI, i, 0, 0, IF_MCONT_RCV);
561
562 c_can_setup_receive_object(dev, IF_NAPI, priv->msg_obj_rx_last, 0, 0,
563 IF_MCONT_RCV_EOB);
564 }
565
c_can_software_reset(struct net_device * dev)566 static int c_can_software_reset(struct net_device *dev)
567 {
568 struct c_can_priv *priv = netdev_priv(dev);
569 int retry = 0;
570
571 if (priv->type != BOSCH_D_CAN)
572 return 0;
573
574 priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_SWR | CONTROL_INIT);
575 while (priv->read_reg(priv, C_CAN_CTRL_REG) & CONTROL_SWR) {
576 msleep(20);
577 if (retry++ > 100) {
578 netdev_err(dev, "CCTRL: software reset failed\n");
579 return -EIO;
580 }
581 }
582
583 return 0;
584 }
585
586 /* Configure C_CAN chip:
587 * - enable/disable auto-retransmission
588 * - set operating mode
589 * - configure message objects
590 */
c_can_chip_config(struct net_device * dev)591 static int c_can_chip_config(struct net_device *dev)
592 {
593 struct c_can_priv *priv = netdev_priv(dev);
594 struct c_can_tx_ring *tx_ring = &priv->tx;
595 int err;
596
597 err = c_can_software_reset(dev);
598 if (err)
599 return err;
600
601 /* enable automatic retransmission */
602 priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_ENABLE_AR);
603
604 if ((priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY) &&
605 (priv->can.ctrlmode & CAN_CTRLMODE_LOOPBACK)) {
606 /* loopback + silent mode : useful for hot self-test */
607 priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_TEST);
608 priv->write_reg(priv, C_CAN_TEST_REG, TEST_LBACK | TEST_SILENT);
609 } else if (priv->can.ctrlmode & CAN_CTRLMODE_LOOPBACK) {
610 /* loopback mode : useful for self-test function */
611 priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_TEST);
612 priv->write_reg(priv, C_CAN_TEST_REG, TEST_LBACK);
613 } else if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY) {
614 /* silent mode : bus-monitoring mode */
615 priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_TEST);
616 priv->write_reg(priv, C_CAN_TEST_REG, TEST_SILENT);
617 }
618
619 /* configure message objects */
620 c_can_configure_msg_objects(dev);
621
622 /* set a `lec` value so that we can check for updates later */
623 priv->write_reg(priv, C_CAN_STS_REG, LEC_UNUSED);
624
625 /* Clear all internal status */
626 tx_ring->head = 0;
627 tx_ring->tail = 0;
628 priv->tx_dir = 0;
629
630 /* set bittiming params */
631 return c_can_set_bittiming(dev);
632 }
633
c_can_start(struct net_device * dev)634 static int c_can_start(struct net_device *dev)
635 {
636 struct c_can_priv *priv = netdev_priv(dev);
637 int err;
638 struct pinctrl *p;
639
640 /* basic c_can configuration */
641 err = c_can_chip_config(dev);
642 if (err)
643 return err;
644
645 /* Setup the command for new messages */
646 priv->comm_rcv_high = priv->type != BOSCH_D_CAN ?
647 IF_COMM_RCV_LOW : IF_COMM_RCV_HIGH;
648
649 priv->can.state = CAN_STATE_ERROR_ACTIVE;
650
651 /* Attempt to use "active" if available else use "default" */
652 p = pinctrl_get_select(priv->device, "active");
653 if (!IS_ERR(p))
654 pinctrl_put(p);
655 else
656 pinctrl_pm_select_default_state(priv->device);
657
658 return 0;
659 }
660
c_can_stop(struct net_device * dev)661 static void c_can_stop(struct net_device *dev)
662 {
663 struct c_can_priv *priv = netdev_priv(dev);
664
665 c_can_irq_control(priv, false);
666
667 /* put ctrl to init on stop to end ongoing transmission */
668 priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_INIT);
669
670 /* deactivate pins */
671 pinctrl_pm_select_sleep_state(dev->dev.parent);
672 priv->can.state = CAN_STATE_STOPPED;
673 }
674
c_can_set_mode(struct net_device * dev,enum can_mode mode)675 static int c_can_set_mode(struct net_device *dev, enum can_mode mode)
676 {
677 struct c_can_priv *priv = netdev_priv(dev);
678 int err;
679
680 switch (mode) {
681 case CAN_MODE_START:
682 err = c_can_start(dev);
683 if (err)
684 return err;
685 netif_wake_queue(dev);
686 c_can_irq_control(priv, true);
687 break;
688 default:
689 return -EOPNOTSUPP;
690 }
691
692 return 0;
693 }
694
__c_can_get_berr_counter(const struct net_device * dev,struct can_berr_counter * bec)695 static int __c_can_get_berr_counter(const struct net_device *dev,
696 struct can_berr_counter *bec)
697 {
698 unsigned int reg_err_counter;
699 struct c_can_priv *priv = netdev_priv(dev);
700
701 reg_err_counter = priv->read_reg(priv, C_CAN_ERR_CNT_REG);
702 bec->rxerr = (reg_err_counter & ERR_CNT_REC_MASK) >>
703 ERR_CNT_REC_SHIFT;
704 bec->txerr = reg_err_counter & ERR_CNT_TEC_MASK;
705
706 return 0;
707 }
708
c_can_get_berr_counter(const struct net_device * dev,struct can_berr_counter * bec)709 static int c_can_get_berr_counter(const struct net_device *dev,
710 struct can_berr_counter *bec)
711 {
712 struct c_can_priv *priv = netdev_priv(dev);
713 int err;
714
715 c_can_pm_runtime_get_sync(priv);
716 err = __c_can_get_berr_counter(dev, bec);
717 c_can_pm_runtime_put_sync(priv);
718
719 return err;
720 }
721
c_can_do_tx(struct net_device * dev)722 static void c_can_do_tx(struct net_device *dev)
723 {
724 struct c_can_priv *priv = netdev_priv(dev);
725 struct c_can_tx_ring *tx_ring = &priv->tx;
726 struct net_device_stats *stats = &dev->stats;
727 u32 idx, obj, pkts = 0, bytes = 0, pend;
728 u8 tail;
729
730 if (priv->msg_obj_tx_last > 32)
731 pend = priv->read_reg32(priv, C_CAN_INTPND3_REG);
732 else
733 pend = priv->read_reg(priv, C_CAN_INTPND2_REG);
734
735 while ((idx = ffs(pend))) {
736 idx--;
737 pend &= ~BIT(idx);
738 obj = idx + priv->msg_obj_tx_first;
739
740 /* We use IF_NAPI interface instead of IF_TX because we
741 * are called from c_can_poll(), which runs inside
742 * NAPI. We are not transmitting.
743 */
744 c_can_inval_tx_object(dev, IF_NAPI, obj);
745 can_get_echo_skb(dev, idx, NULL);
746 bytes += priv->dlc[idx];
747 pkts++;
748 }
749
750 if (!pkts)
751 return;
752
753 tx_ring->tail += pkts;
754 if (c_can_get_tx_free(priv, tx_ring)) {
755 /* Make sure that anybody stopping the queue after
756 * this sees the new tx_ring->tail.
757 */
758 smp_mb();
759 netif_wake_queue(priv->dev);
760 }
761
762 stats->tx_bytes += bytes;
763 stats->tx_packets += pkts;
764 can_led_event(dev, CAN_LED_EVENT_TX);
765
766 tail = c_can_get_tx_tail(tx_ring);
767 if (priv->type == BOSCH_D_CAN && tail == 0) {
768 u8 head = c_can_get_tx_head(tx_ring);
769
770 /* Start transmission for all cached messages */
771 for (idx = tail; idx < head; idx++) {
772 obj = idx + priv->msg_obj_tx_first;
773 c_can_object_put(dev, IF_NAPI, obj, IF_COMM_TXRQST);
774 }
775 }
776 }
777
778 /* If we have a gap in the pending bits, that means we either
779 * raced with the hardware or failed to readout all upper
780 * objects in the last run due to quota limit.
781 */
c_can_adjust_pending(u32 pend,u32 rx_mask)782 static u32 c_can_adjust_pending(u32 pend, u32 rx_mask)
783 {
784 u32 weight, lasts;
785
786 if (pend == rx_mask)
787 return pend;
788
789 /* If the last set bit is larger than the number of pending
790 * bits we have a gap.
791 */
792 weight = hweight32(pend);
793 lasts = fls(pend);
794
795 /* If the bits are linear, nothing to do */
796 if (lasts == weight)
797 return pend;
798
799 /* Find the first set bit after the gap. We walk backwards
800 * from the last set bit.
801 */
802 for (lasts--; pend & BIT(lasts - 1); lasts--)
803 ;
804
805 return pend & ~GENMASK(lasts - 1, 0);
806 }
807
c_can_rx_object_get(struct net_device * dev,struct c_can_priv * priv,u32 obj)808 static inline void c_can_rx_object_get(struct net_device *dev,
809 struct c_can_priv *priv, u32 obj)
810 {
811 c_can_object_get(dev, IF_NAPI, obj, priv->comm_rcv_high);
812 }
813
c_can_rx_finalize(struct net_device * dev,struct c_can_priv * priv,u32 obj)814 static inline void c_can_rx_finalize(struct net_device *dev,
815 struct c_can_priv *priv, u32 obj)
816 {
817 if (priv->type != BOSCH_D_CAN)
818 c_can_object_get(dev, IF_NAPI, obj, IF_COMM_CLR_NEWDAT);
819 }
820
c_can_read_objects(struct net_device * dev,struct c_can_priv * priv,u32 pend,int quota)821 static int c_can_read_objects(struct net_device *dev, struct c_can_priv *priv,
822 u32 pend, int quota)
823 {
824 u32 pkts = 0, ctrl, obj;
825
826 while ((obj = ffs(pend)) && quota > 0) {
827 pend &= ~BIT(obj - 1);
828
829 c_can_rx_object_get(dev, priv, obj);
830 ctrl = priv->read_reg(priv, C_CAN_IFACE(MSGCTRL_REG, IF_NAPI));
831
832 if (ctrl & IF_MCONT_MSGLST) {
833 int n;
834
835 n = c_can_handle_lost_msg_obj(dev, IF_NAPI, obj, ctrl);
836
837 pkts += n;
838 quota -= n;
839 continue;
840 }
841
842 /* This really should not happen, but this covers some
843 * odd HW behaviour. Do not remove that unless you
844 * want to brick your machine.
845 */
846 if (!(ctrl & IF_MCONT_NEWDAT))
847 continue;
848
849 /* read the data from the message object */
850 c_can_read_msg_object(dev, IF_NAPI, ctrl);
851
852 c_can_rx_finalize(dev, priv, obj);
853
854 pkts++;
855 quota--;
856 }
857
858 return pkts;
859 }
860
c_can_get_pending(struct c_can_priv * priv)861 static inline u32 c_can_get_pending(struct c_can_priv *priv)
862 {
863 u32 pend;
864
865 if (priv->msg_obj_rx_last > 16)
866 pend = priv->read_reg32(priv, C_CAN_NEWDAT1_REG);
867 else
868 pend = priv->read_reg(priv, C_CAN_NEWDAT1_REG);
869
870 return pend;
871 }
872
873 /* theory of operation:
874 *
875 * c_can core saves a received CAN message into the first free message
876 * object it finds free (starting with the lowest). Bits NEWDAT and
877 * INTPND are set for this message object indicating that a new message
878 * has arrived.
879 *
880 * We clear the newdat bit right away.
881 *
882 * This can result in packet reordering when the readout is slow.
883 */
c_can_do_rx_poll(struct net_device * dev,int quota)884 static int c_can_do_rx_poll(struct net_device *dev, int quota)
885 {
886 struct c_can_priv *priv = netdev_priv(dev);
887 u32 pkts = 0, pend = 0, toread, n;
888
889 while (quota > 0) {
890 if (!pend) {
891 pend = c_can_get_pending(priv);
892 if (!pend)
893 break;
894 /* If the pending field has a gap, handle the
895 * bits above the gap first.
896 */
897 toread = c_can_adjust_pending(pend,
898 priv->msg_obj_rx_mask);
899 } else {
900 toread = pend;
901 }
902 /* Remove the bits from pend */
903 pend &= ~toread;
904 /* Read the objects */
905 n = c_can_read_objects(dev, priv, toread, quota);
906 pkts += n;
907 quota -= n;
908 }
909
910 if (pkts)
911 can_led_event(dev, CAN_LED_EVENT_RX);
912
913 return pkts;
914 }
915
c_can_handle_state_change(struct net_device * dev,enum c_can_bus_error_types error_type)916 static int c_can_handle_state_change(struct net_device *dev,
917 enum c_can_bus_error_types error_type)
918 {
919 unsigned int reg_err_counter;
920 unsigned int rx_err_passive;
921 struct c_can_priv *priv = netdev_priv(dev);
922 struct net_device_stats *stats = &dev->stats;
923 struct can_frame *cf;
924 struct sk_buff *skb;
925 struct can_berr_counter bec;
926
927 switch (error_type) {
928 case C_CAN_NO_ERROR:
929 priv->can.state = CAN_STATE_ERROR_ACTIVE;
930 break;
931 case C_CAN_ERROR_WARNING:
932 /* error warning state */
933 priv->can.can_stats.error_warning++;
934 priv->can.state = CAN_STATE_ERROR_WARNING;
935 break;
936 case C_CAN_ERROR_PASSIVE:
937 /* error passive state */
938 priv->can.can_stats.error_passive++;
939 priv->can.state = CAN_STATE_ERROR_PASSIVE;
940 break;
941 case C_CAN_BUS_OFF:
942 /* bus-off state */
943 priv->can.state = CAN_STATE_BUS_OFF;
944 priv->can.can_stats.bus_off++;
945 break;
946 default:
947 break;
948 }
949
950 /* propagate the error condition to the CAN stack */
951 skb = alloc_can_err_skb(dev, &cf);
952 if (unlikely(!skb))
953 return 0;
954
955 __c_can_get_berr_counter(dev, &bec);
956 reg_err_counter = priv->read_reg(priv, C_CAN_ERR_CNT_REG);
957 rx_err_passive = (reg_err_counter & ERR_CNT_RP_MASK) >>
958 ERR_CNT_RP_SHIFT;
959
960 switch (error_type) {
961 case C_CAN_NO_ERROR:
962 /* error warning state */
963 cf->can_id |= CAN_ERR_CRTL;
964 cf->data[1] = CAN_ERR_CRTL_ACTIVE;
965 cf->data[6] = bec.txerr;
966 cf->data[7] = bec.rxerr;
967 break;
968 case C_CAN_ERROR_WARNING:
969 /* error warning state */
970 cf->can_id |= CAN_ERR_CRTL;
971 cf->data[1] = (bec.txerr > bec.rxerr) ?
972 CAN_ERR_CRTL_TX_WARNING :
973 CAN_ERR_CRTL_RX_WARNING;
974 cf->data[6] = bec.txerr;
975 cf->data[7] = bec.rxerr;
976
977 break;
978 case C_CAN_ERROR_PASSIVE:
979 /* error passive state */
980 cf->can_id |= CAN_ERR_CRTL;
981 if (rx_err_passive)
982 cf->data[1] |= CAN_ERR_CRTL_RX_PASSIVE;
983 if (bec.txerr > 127)
984 cf->data[1] |= CAN_ERR_CRTL_TX_PASSIVE;
985
986 cf->data[6] = bec.txerr;
987 cf->data[7] = bec.rxerr;
988 break;
989 case C_CAN_BUS_OFF:
990 /* bus-off state */
991 cf->can_id |= CAN_ERR_BUSOFF;
992 can_bus_off(dev);
993 break;
994 default:
995 break;
996 }
997
998 stats->rx_packets++;
999 stats->rx_bytes += cf->len;
1000 netif_receive_skb(skb);
1001
1002 return 1;
1003 }
1004
c_can_handle_bus_err(struct net_device * dev,enum c_can_lec_type lec_type)1005 static int c_can_handle_bus_err(struct net_device *dev,
1006 enum c_can_lec_type lec_type)
1007 {
1008 struct c_can_priv *priv = netdev_priv(dev);
1009 struct net_device_stats *stats = &dev->stats;
1010 struct can_frame *cf;
1011 struct sk_buff *skb;
1012
1013 /* early exit if no lec update or no error.
1014 * no lec update means that no CAN bus event has been detected
1015 * since CPU wrote 0x7 value to status reg.
1016 */
1017 if (lec_type == LEC_UNUSED || lec_type == LEC_NO_ERROR)
1018 return 0;
1019
1020 if (!(priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING))
1021 return 0;
1022
1023 /* common for all type of bus errors */
1024 priv->can.can_stats.bus_error++;
1025 stats->rx_errors++;
1026
1027 /* propagate the error condition to the CAN stack */
1028 skb = alloc_can_err_skb(dev, &cf);
1029 if (unlikely(!skb))
1030 return 0;
1031
1032 /* check for 'last error code' which tells us the
1033 * type of the last error to occur on the CAN bus
1034 */
1035 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
1036
1037 switch (lec_type) {
1038 case LEC_STUFF_ERROR:
1039 netdev_dbg(dev, "stuff error\n");
1040 cf->data[2] |= CAN_ERR_PROT_STUFF;
1041 break;
1042 case LEC_FORM_ERROR:
1043 netdev_dbg(dev, "form error\n");
1044 cf->data[2] |= CAN_ERR_PROT_FORM;
1045 break;
1046 case LEC_ACK_ERROR:
1047 netdev_dbg(dev, "ack error\n");
1048 cf->data[3] = CAN_ERR_PROT_LOC_ACK;
1049 break;
1050 case LEC_BIT1_ERROR:
1051 netdev_dbg(dev, "bit1 error\n");
1052 cf->data[2] |= CAN_ERR_PROT_BIT1;
1053 break;
1054 case LEC_BIT0_ERROR:
1055 netdev_dbg(dev, "bit0 error\n");
1056 cf->data[2] |= CAN_ERR_PROT_BIT0;
1057 break;
1058 case LEC_CRC_ERROR:
1059 netdev_dbg(dev, "CRC error\n");
1060 cf->data[3] = CAN_ERR_PROT_LOC_CRC_SEQ;
1061 break;
1062 default:
1063 break;
1064 }
1065
1066 stats->rx_packets++;
1067 stats->rx_bytes += cf->len;
1068 netif_receive_skb(skb);
1069 return 1;
1070 }
1071
c_can_poll(struct napi_struct * napi,int quota)1072 static int c_can_poll(struct napi_struct *napi, int quota)
1073 {
1074 struct net_device *dev = napi->dev;
1075 struct c_can_priv *priv = netdev_priv(dev);
1076 u16 curr, last = priv->last_status;
1077 int work_done = 0;
1078
1079 /* Only read the status register if a status interrupt was pending */
1080 if (atomic_xchg(&priv->sie_pending, 0)) {
1081 priv->last_status = priv->read_reg(priv, C_CAN_STS_REG);
1082 curr = priv->last_status;
1083 /* Ack status on C_CAN. D_CAN is self clearing */
1084 if (priv->type != BOSCH_D_CAN)
1085 priv->write_reg(priv, C_CAN_STS_REG, LEC_UNUSED);
1086 } else {
1087 /* no change detected ... */
1088 curr = last;
1089 }
1090
1091 /* handle state changes */
1092 if ((curr & STATUS_EWARN) && (!(last & STATUS_EWARN))) {
1093 netdev_dbg(dev, "entered error warning state\n");
1094 work_done += c_can_handle_state_change(dev, C_CAN_ERROR_WARNING);
1095 }
1096
1097 if ((curr & STATUS_EPASS) && (!(last & STATUS_EPASS))) {
1098 netdev_dbg(dev, "entered error passive state\n");
1099 work_done += c_can_handle_state_change(dev, C_CAN_ERROR_PASSIVE);
1100 }
1101
1102 if ((curr & STATUS_BOFF) && (!(last & STATUS_BOFF))) {
1103 netdev_dbg(dev, "entered bus off state\n");
1104 work_done += c_can_handle_state_change(dev, C_CAN_BUS_OFF);
1105 goto end;
1106 }
1107
1108 /* handle bus recovery events */
1109 if ((!(curr & STATUS_BOFF)) && (last & STATUS_BOFF)) {
1110 netdev_dbg(dev, "left bus off state\n");
1111 work_done += c_can_handle_state_change(dev, C_CAN_ERROR_PASSIVE);
1112 }
1113
1114 if ((!(curr & STATUS_EPASS)) && (last & STATUS_EPASS)) {
1115 netdev_dbg(dev, "left error passive state\n");
1116 work_done += c_can_handle_state_change(dev, C_CAN_ERROR_WARNING);
1117 }
1118
1119 if ((!(curr & STATUS_EWARN)) && (last & STATUS_EWARN)) {
1120 netdev_dbg(dev, "left error warning state\n");
1121 work_done += c_can_handle_state_change(dev, C_CAN_NO_ERROR);
1122 }
1123
1124 /* handle lec errors on the bus */
1125 work_done += c_can_handle_bus_err(dev, curr & LEC_MASK);
1126
1127 /* Handle Tx/Rx events. We do this unconditionally */
1128 work_done += c_can_do_rx_poll(dev, (quota - work_done));
1129 c_can_do_tx(dev);
1130
1131 end:
1132 if (work_done < quota) {
1133 napi_complete_done(napi, work_done);
1134 /* enable all IRQs if we are not in bus off state */
1135 if (priv->can.state != CAN_STATE_BUS_OFF)
1136 c_can_irq_control(priv, true);
1137 }
1138
1139 return work_done;
1140 }
1141
c_can_isr(int irq,void * dev_id)1142 static irqreturn_t c_can_isr(int irq, void *dev_id)
1143 {
1144 struct net_device *dev = (struct net_device *)dev_id;
1145 struct c_can_priv *priv = netdev_priv(dev);
1146 int reg_int;
1147
1148 reg_int = priv->read_reg(priv, C_CAN_INT_REG);
1149 if (!reg_int)
1150 return IRQ_NONE;
1151
1152 /* save for later use */
1153 if (reg_int & INT_STS_PENDING)
1154 atomic_set(&priv->sie_pending, 1);
1155
1156 /* disable all interrupts and schedule the NAPI */
1157 c_can_irq_control(priv, false);
1158 napi_schedule(&priv->napi);
1159
1160 return IRQ_HANDLED;
1161 }
1162
c_can_open(struct net_device * dev)1163 static int c_can_open(struct net_device *dev)
1164 {
1165 int err;
1166 struct c_can_priv *priv = netdev_priv(dev);
1167
1168 c_can_pm_runtime_get_sync(priv);
1169 c_can_reset_ram(priv, true);
1170
1171 /* open the can device */
1172 err = open_candev(dev);
1173 if (err) {
1174 netdev_err(dev, "failed to open can device\n");
1175 goto exit_open_fail;
1176 }
1177
1178 /* register interrupt handler */
1179 err = request_irq(dev->irq, &c_can_isr, IRQF_SHARED, dev->name,
1180 dev);
1181 if (err < 0) {
1182 netdev_err(dev, "failed to request interrupt\n");
1183 goto exit_irq_fail;
1184 }
1185
1186 /* start the c_can controller */
1187 err = c_can_start(dev);
1188 if (err)
1189 goto exit_start_fail;
1190
1191 can_led_event(dev, CAN_LED_EVENT_OPEN);
1192
1193 napi_enable(&priv->napi);
1194 /* enable status change, error and module interrupts */
1195 c_can_irq_control(priv, true);
1196 netif_start_queue(dev);
1197
1198 return 0;
1199
1200 exit_start_fail:
1201 free_irq(dev->irq, dev);
1202 exit_irq_fail:
1203 close_candev(dev);
1204 exit_open_fail:
1205 c_can_reset_ram(priv, false);
1206 c_can_pm_runtime_put_sync(priv);
1207 return err;
1208 }
1209
c_can_close(struct net_device * dev)1210 static int c_can_close(struct net_device *dev)
1211 {
1212 struct c_can_priv *priv = netdev_priv(dev);
1213
1214 netif_stop_queue(dev);
1215 napi_disable(&priv->napi);
1216 c_can_stop(dev);
1217 free_irq(dev->irq, dev);
1218 close_candev(dev);
1219
1220 c_can_reset_ram(priv, false);
1221 c_can_pm_runtime_put_sync(priv);
1222
1223 can_led_event(dev, CAN_LED_EVENT_STOP);
1224
1225 return 0;
1226 }
1227
alloc_c_can_dev(int msg_obj_num)1228 struct net_device *alloc_c_can_dev(int msg_obj_num)
1229 {
1230 struct net_device *dev;
1231 struct c_can_priv *priv;
1232 int msg_obj_tx_num = msg_obj_num / 2;
1233
1234 dev = alloc_candev(struct_size(priv, dlc, msg_obj_tx_num),
1235 msg_obj_tx_num);
1236 if (!dev)
1237 return NULL;
1238
1239 priv = netdev_priv(dev);
1240 priv->msg_obj_num = msg_obj_num;
1241 priv->msg_obj_rx_num = msg_obj_num - msg_obj_tx_num;
1242 priv->msg_obj_rx_first = 1;
1243 priv->msg_obj_rx_last =
1244 priv->msg_obj_rx_first + priv->msg_obj_rx_num - 1;
1245 priv->msg_obj_rx_mask = GENMASK(priv->msg_obj_rx_num - 1, 0);
1246
1247 priv->msg_obj_tx_num = msg_obj_tx_num;
1248 priv->msg_obj_tx_first = priv->msg_obj_rx_last + 1;
1249 priv->msg_obj_tx_last =
1250 priv->msg_obj_tx_first + priv->msg_obj_tx_num - 1;
1251
1252 priv->tx.head = 0;
1253 priv->tx.tail = 0;
1254 priv->tx.obj_num = msg_obj_tx_num;
1255
1256 netif_napi_add(dev, &priv->napi, c_can_poll, priv->msg_obj_rx_num);
1257
1258 priv->dev = dev;
1259 priv->can.bittiming_const = &c_can_bittiming_const;
1260 priv->can.do_set_mode = c_can_set_mode;
1261 priv->can.do_get_berr_counter = c_can_get_berr_counter;
1262 priv->can.ctrlmode_supported = CAN_CTRLMODE_LOOPBACK |
1263 CAN_CTRLMODE_LISTENONLY |
1264 CAN_CTRLMODE_BERR_REPORTING;
1265
1266 return dev;
1267 }
1268 EXPORT_SYMBOL_GPL(alloc_c_can_dev);
1269
1270 #ifdef CONFIG_PM
c_can_power_down(struct net_device * dev)1271 int c_can_power_down(struct net_device *dev)
1272 {
1273 u32 val;
1274 unsigned long time_out;
1275 struct c_can_priv *priv = netdev_priv(dev);
1276
1277 if (!(dev->flags & IFF_UP))
1278 return 0;
1279
1280 WARN_ON(priv->type != BOSCH_D_CAN);
1281
1282 /* set PDR value so the device goes to power down mode */
1283 val = priv->read_reg(priv, C_CAN_CTRL_EX_REG);
1284 val |= CONTROL_EX_PDR;
1285 priv->write_reg(priv, C_CAN_CTRL_EX_REG, val);
1286
1287 /* Wait for the PDA bit to get set */
1288 time_out = jiffies + msecs_to_jiffies(INIT_WAIT_MS);
1289 while (!(priv->read_reg(priv, C_CAN_STS_REG) & STATUS_PDA) &&
1290 time_after(time_out, jiffies))
1291 cpu_relax();
1292
1293 if (time_after(jiffies, time_out))
1294 return -ETIMEDOUT;
1295
1296 c_can_stop(dev);
1297
1298 c_can_reset_ram(priv, false);
1299 c_can_pm_runtime_put_sync(priv);
1300
1301 return 0;
1302 }
1303 EXPORT_SYMBOL_GPL(c_can_power_down);
1304
c_can_power_up(struct net_device * dev)1305 int c_can_power_up(struct net_device *dev)
1306 {
1307 u32 val;
1308 unsigned long time_out;
1309 struct c_can_priv *priv = netdev_priv(dev);
1310 int ret;
1311
1312 if (!(dev->flags & IFF_UP))
1313 return 0;
1314
1315 WARN_ON(priv->type != BOSCH_D_CAN);
1316
1317 c_can_pm_runtime_get_sync(priv);
1318 c_can_reset_ram(priv, true);
1319
1320 /* Clear PDR and INIT bits */
1321 val = priv->read_reg(priv, C_CAN_CTRL_EX_REG);
1322 val &= ~CONTROL_EX_PDR;
1323 priv->write_reg(priv, C_CAN_CTRL_EX_REG, val);
1324 val = priv->read_reg(priv, C_CAN_CTRL_REG);
1325 val &= ~CONTROL_INIT;
1326 priv->write_reg(priv, C_CAN_CTRL_REG, val);
1327
1328 /* Wait for the PDA bit to get clear */
1329 time_out = jiffies + msecs_to_jiffies(INIT_WAIT_MS);
1330 while ((priv->read_reg(priv, C_CAN_STS_REG) & STATUS_PDA) &&
1331 time_after(time_out, jiffies))
1332 cpu_relax();
1333
1334 if (time_after(jiffies, time_out)) {
1335 ret = -ETIMEDOUT;
1336 goto err_out;
1337 }
1338
1339 ret = c_can_start(dev);
1340 if (ret)
1341 goto err_out;
1342
1343 c_can_irq_control(priv, true);
1344
1345 return 0;
1346
1347 err_out:
1348 c_can_reset_ram(priv, false);
1349 c_can_pm_runtime_put_sync(priv);
1350
1351 return ret;
1352 }
1353 EXPORT_SYMBOL_GPL(c_can_power_up);
1354 #endif
1355
free_c_can_dev(struct net_device * dev)1356 void free_c_can_dev(struct net_device *dev)
1357 {
1358 struct c_can_priv *priv = netdev_priv(dev);
1359
1360 netif_napi_del(&priv->napi);
1361 free_candev(dev);
1362 }
1363 EXPORT_SYMBOL_GPL(free_c_can_dev);
1364
1365 static const struct net_device_ops c_can_netdev_ops = {
1366 .ndo_open = c_can_open,
1367 .ndo_stop = c_can_close,
1368 .ndo_start_xmit = c_can_start_xmit,
1369 .ndo_change_mtu = can_change_mtu,
1370 };
1371
register_c_can_dev(struct net_device * dev)1372 int register_c_can_dev(struct net_device *dev)
1373 {
1374 int err;
1375
1376 /* Deactivate pins to prevent DRA7 DCAN IP from being
1377 * stuck in transition when module is disabled.
1378 * Pins are activated in c_can_start() and deactivated
1379 * in c_can_stop()
1380 */
1381 pinctrl_pm_select_sleep_state(dev->dev.parent);
1382
1383 dev->flags |= IFF_ECHO; /* we support local echo */
1384 dev->netdev_ops = &c_can_netdev_ops;
1385 c_can_set_ethtool_ops(dev);
1386
1387 err = register_candev(dev);
1388 if (!err)
1389 devm_can_led_init(dev);
1390 return err;
1391 }
1392 EXPORT_SYMBOL_GPL(register_c_can_dev);
1393
unregister_c_can_dev(struct net_device * dev)1394 void unregister_c_can_dev(struct net_device *dev)
1395 {
1396 unregister_candev(dev);
1397 }
1398 EXPORT_SYMBOL_GPL(unregister_c_can_dev);
1399
1400 MODULE_AUTHOR("Bhupesh Sharma <bhupesh.sharma@st.com>");
1401 MODULE_LICENSE("GPL v2");
1402 MODULE_DESCRIPTION("CAN bus driver for Bosch C_CAN controller");
1403