]> git.ipfire.org Git - people/arne_f/kernel.git/blame - drivers/net/can/dev.c
Merge tag 'v3.14.79' into linux-3.14.x-rpi
[people/arne_f/kernel.git] / drivers / net / can / dev.c
CommitLineData
39549eef
WG
1/*
2 * Copyright (C) 2005 Marc Kleine-Budde, Pengutronix
3 * Copyright (C) 2006 Andrey Volkov, Varma Electronics
4 * Copyright (C) 2008-2009 Wolfgang Grandegger <wg@grandegger.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the version 2 of the GNU General Public License
8 * as published by the Free Software Foundation
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
05780d98 16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
39549eef
WG
17 */
18
19#include <linux/module.h>
20#include <linux/kernel.h>
5a0e3ad6 21#include <linux/slab.h>
39549eef
WG
22#include <linux/netdevice.h>
23#include <linux/if_arp.h>
24#include <linux/can.h>
25#include <linux/can/dev.h>
156c2bb9 26#include <linux/can/skb.h>
39549eef 27#include <linux/can/netlink.h>
a1ef7bd9 28#include <linux/can/led.h>
39549eef
WG
29#include <net/rtnetlink.h>
30
31#define MOD_DESC "CAN device driver interface"
32
33MODULE_DESCRIPTION(MOD_DESC);
34MODULE_LICENSE("GPL v2");
35MODULE_AUTHOR("Wolfgang Grandegger <wg@grandegger.com>");
36
1e0625fa
OH
37/* CAN DLC to real data length conversion helpers */
38
39static const u8 dlc2len[] = {0, 1, 2, 3, 4, 5, 6, 7,
40 8, 12, 16, 20, 24, 32, 48, 64};
41
42/* get data length from can_dlc with sanitized can_dlc */
43u8 can_dlc2len(u8 can_dlc)
44{
45 return dlc2len[can_dlc & 0x0F];
46}
47EXPORT_SYMBOL_GPL(can_dlc2len);
48
49static const u8 len2dlc[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, /* 0 - 8 */
50 9, 9, 9, 9, /* 9 - 12 */
51 10, 10, 10, 10, /* 13 - 16 */
52 11, 11, 11, 11, /* 17 - 20 */
53 12, 12, 12, 12, /* 21 - 24 */
54 13, 13, 13, 13, 13, 13, 13, 13, /* 25 - 32 */
55 14, 14, 14, 14, 14, 14, 14, 14, /* 33 - 40 */
56 14, 14, 14, 14, 14, 14, 14, 14, /* 41 - 48 */
57 15, 15, 15, 15, 15, 15, 15, 15, /* 49 - 56 */
58 15, 15, 15, 15, 15, 15, 15, 15}; /* 57 - 64 */
59
60/* map the sanitized data length to an appropriate data length code */
61u8 can_len2dlc(u8 len)
62{
63 if (unlikely(len > 64))
64 return 0xF;
65
66 return len2dlc[len];
67}
68EXPORT_SYMBOL_GPL(can_len2dlc);
69
39549eef
WG
70#ifdef CONFIG_CAN_CALC_BITTIMING
71#define CAN_CALC_MAX_ERROR 50 /* in one-tenth of a percent */
72
73/*
74 * Bit-timing calculation derived from:
75 *
76 * Code based on LinCAN sources and H8S2638 project
77 * Copyright 2004-2006 Pavel Pisa - DCE FELK CVUT cz
78 * Copyright 2005 Stanislav Marek
79 * email: pisa@cmp.felk.cvut.cz
80 *
81 * Calculates proper bit-timing parameters for a specified bit-rate
82 * and sample-point, which can then be used to set the bit-timing
83 * registers of the CAN controller. You can find more information
84 * in the header file linux/can/netlink.h.
85 */
86static int can_update_spt(const struct can_bittiming_const *btc,
87 int sampl_pt, int tseg, int *tseg1, int *tseg2)
88{
89 *tseg2 = tseg + 1 - (sampl_pt * (tseg + 1)) / 1000;
90 if (*tseg2 < btc->tseg2_min)
91 *tseg2 = btc->tseg2_min;
92 if (*tseg2 > btc->tseg2_max)
93 *tseg2 = btc->tseg2_max;
94 *tseg1 = tseg - *tseg2;
95 if (*tseg1 > btc->tseg1_max) {
96 *tseg1 = btc->tseg1_max;
97 *tseg2 = tseg - *tseg1;
98 }
99 return 1000 * (tseg + 1 - *tseg2) / (tseg + 1);
100}
101
102static int can_calc_bittiming(struct net_device *dev, struct can_bittiming *bt)
103{
104 struct can_priv *priv = netdev_priv(dev);
105 const struct can_bittiming_const *btc = priv->bittiming_const;
106 long rate, best_rate = 0;
107 long best_error = 1000000000, error = 0;
108 int best_tseg = 0, best_brp = 0, brp = 0;
109 int tsegall, tseg = 0, tseg1 = 0, tseg2 = 0;
110 int spt_error = 1000, spt = 0, sampl_pt;
111 u64 v64;
112
113 if (!priv->bittiming_const)
114 return -ENOTSUPP;
115
116 /* Use CIA recommended sample points */
117 if (bt->sample_point) {
118 sampl_pt = bt->sample_point;
119 } else {
120 if (bt->bitrate > 800000)
121 sampl_pt = 750;
122 else if (bt->bitrate > 500000)
123 sampl_pt = 800;
124 else
125 sampl_pt = 875;
126 }
127
128 /* tseg even = round down, odd = round up */
129 for (tseg = (btc->tseg1_max + btc->tseg2_max) * 2 + 1;
130 tseg >= (btc->tseg1_min + btc->tseg2_min) * 2; tseg--) {
131 tsegall = 1 + tseg / 2;
132 /* Compute all possible tseg choices (tseg=tseg1+tseg2) */
133 brp = priv->clock.freq / (tsegall * bt->bitrate) + tseg % 2;
134 /* chose brp step which is possible in system */
135 brp = (brp / btc->brp_inc) * btc->brp_inc;
136 if ((brp < btc->brp_min) || (brp > btc->brp_max))
137 continue;
138 rate = priv->clock.freq / (brp * tsegall);
139 error = bt->bitrate - rate;
140 /* tseg brp biterror */
141 if (error < 0)
142 error = -error;
143 if (error > best_error)
144 continue;
145 best_error = error;
146 if (error == 0) {
147 spt = can_update_spt(btc, sampl_pt, tseg / 2,
148 &tseg1, &tseg2);
149 error = sampl_pt - spt;
150 if (error < 0)
151 error = -error;
152 if (error > spt_error)
153 continue;
154 spt_error = error;
155 }
156 best_tseg = tseg / 2;
157 best_brp = brp;
158 best_rate = rate;
159 if (error == 0)
160 break;
161 }
162
163 if (best_error) {
164 /* Error in one-tenth of a percent */
165 error = (best_error * 1000) / bt->bitrate;
166 if (error > CAN_CALC_MAX_ERROR) {
aabdfd6a
WG
167 netdev_err(dev,
168 "bitrate error %ld.%ld%% too high\n",
169 error / 10, error % 10);
39549eef
WG
170 return -EDOM;
171 } else {
aabdfd6a
WG
172 netdev_warn(dev, "bitrate error %ld.%ld%%\n",
173 error / 10, error % 10);
39549eef
WG
174 }
175 }
176
177 /* real sample point */
178 bt->sample_point = can_update_spt(btc, sampl_pt, best_tseg,
179 &tseg1, &tseg2);
180
181 v64 = (u64)best_brp * 1000000000UL;
182 do_div(v64, priv->clock.freq);
183 bt->tq = (u32)v64;
184 bt->prop_seg = tseg1 / 2;
185 bt->phase_seg1 = tseg1 - bt->prop_seg;
186 bt->phase_seg2 = tseg2;
2e114374
OH
187
188 /* check for sjw user settings */
189 if (!bt->sjw || !btc->sjw_max)
190 bt->sjw = 1;
191 else {
192 /* bt->sjw is at least 1 -> sanitize upper bound to sjw_max */
193 if (bt->sjw > btc->sjw_max)
194 bt->sjw = btc->sjw_max;
195 /* bt->sjw must not be higher than tseg2 */
196 if (tseg2 < bt->sjw)
197 bt->sjw = tseg2;
198 }
199
39549eef
WG
200 bt->brp = best_brp;
201 /* real bit-rate */
202 bt->bitrate = priv->clock.freq / (bt->brp * (tseg1 + tseg2 + 1));
203
204 return 0;
205}
206#else /* !CONFIG_CAN_CALC_BITTIMING */
207static int can_calc_bittiming(struct net_device *dev, struct can_bittiming *bt)
208{
aabdfd6a 209 netdev_err(dev, "bit-timing calculation not available\n");
39549eef
WG
210 return -EINVAL;
211}
212#endif /* CONFIG_CAN_CALC_BITTIMING */
213
214/*
215 * Checks the validity of the specified bit-timing parameters prop_seg,
216 * phase_seg1, phase_seg2 and sjw and tries to determine the bitrate
217 * prescaler value brp. You can find more information in the header
218 * file linux/can/netlink.h.
219 */
220static int can_fixup_bittiming(struct net_device *dev, struct can_bittiming *bt)
221{
222 struct can_priv *priv = netdev_priv(dev);
223 const struct can_bittiming_const *btc = priv->bittiming_const;
224 int tseg1, alltseg;
225 u64 brp64;
226
227 if (!priv->bittiming_const)
228 return -ENOTSUPP;
229
230 tseg1 = bt->prop_seg + bt->phase_seg1;
231 if (!bt->sjw)
232 bt->sjw = 1;
233 if (bt->sjw > btc->sjw_max ||
234 tseg1 < btc->tseg1_min || tseg1 > btc->tseg1_max ||
235 bt->phase_seg2 < btc->tseg2_min || bt->phase_seg2 > btc->tseg2_max)
236 return -ERANGE;
237
238 brp64 = (u64)priv->clock.freq * (u64)bt->tq;
239 if (btc->brp_inc > 1)
240 do_div(brp64, btc->brp_inc);
241 brp64 += 500000000UL - 1;
242 do_div(brp64, 1000000000UL); /* the practicable BRP */
243 if (btc->brp_inc > 1)
244 brp64 *= btc->brp_inc;
245 bt->brp = (u32)brp64;
246
247 if (bt->brp < btc->brp_min || bt->brp > btc->brp_max)
248 return -EINVAL;
249
250 alltseg = bt->prop_seg + bt->phase_seg1 + bt->phase_seg2 + 1;
251 bt->bitrate = priv->clock.freq / (bt->brp * alltseg);
252 bt->sample_point = ((tseg1 + 1) * 1000) / alltseg;
253
254 return 0;
255}
256
61463a30 257static int can_get_bittiming(struct net_device *dev, struct can_bittiming *bt)
39549eef
WG
258{
259 struct can_priv *priv = netdev_priv(dev);
260 int err;
261
262 /* Check if the CAN device has bit-timing parameters */
263 if (priv->bittiming_const) {
264
265 /* Non-expert mode? Check if the bitrate has been pre-defined */
266 if (!bt->tq)
267 /* Determine bit-timing parameters */
268 err = can_calc_bittiming(dev, bt);
269 else
270 /* Check bit-timing params and calculate proper brp */
271 err = can_fixup_bittiming(dev, bt);
272 if (err)
273 return err;
274 }
275
276 return 0;
277}
278
279/*
280 * Local echo of CAN messages
281 *
282 * CAN network devices *should* support a local echo functionality
283 * (see Documentation/networking/can.txt). To test the handling of CAN
284 * interfaces that do not support the local echo both driver types are
285 * implemented. In the case that the driver does not support the echo
286 * the IFF_ECHO remains clear in dev->flags. This causes the PF_CAN core
287 * to perform the echo as a fallback solution.
288 */
289static void can_flush_echo_skb(struct net_device *dev)
290{
291 struct can_priv *priv = netdev_priv(dev);
292 struct net_device_stats *stats = &dev->stats;
293 int i;
294
a6e4bc53 295 for (i = 0; i < priv->echo_skb_max; i++) {
39549eef
WG
296 if (priv->echo_skb[i]) {
297 kfree_skb(priv->echo_skb[i]);
298 priv->echo_skb[i] = NULL;
299 stats->tx_dropped++;
300 stats->tx_aborted_errors++;
301 }
302 }
303}
304
305/*
306 * Put the skb on the stack to be looped backed locally lateron
307 *
308 * The function is typically called in the start_xmit function
309 * of the device driver. The driver must protect access to
310 * priv->echo_skb, if necessary.
311 */
a6e4bc53
WG
312void can_put_echo_skb(struct sk_buff *skb, struct net_device *dev,
313 unsigned int idx)
39549eef
WG
314{
315 struct can_priv *priv = netdev_priv(dev);
316
a6e4bc53
WG
317 BUG_ON(idx >= priv->echo_skb_max);
318
39549eef
WG
319 /* check flag whether this packet has to be looped back */
320 if (!(dev->flags & IFF_ECHO) || skb->pkt_type != PACKET_LOOPBACK) {
321 kfree_skb(skb);
322 return;
323 }
324
325 if (!priv->echo_skb[idx]) {
39549eef 326
0ae89beb
OH
327 skb = can_create_echo_skb(skb);
328 if (!skb)
329 return;
39549eef
WG
330
331 /* make settings for echo to reduce code in irq context */
332 skb->protocol = htons(ETH_P_CAN);
333 skb->pkt_type = PACKET_BROADCAST;
334 skb->ip_summed = CHECKSUM_UNNECESSARY;
335 skb->dev = dev;
336
337 /* save this skb for tx interrupt echo handling */
338 priv->echo_skb[idx] = skb;
339 } else {
340 /* locking problem with netif_stop_queue() ?? */
aabdfd6a 341 netdev_err(dev, "%s: BUG! echo_skb is occupied!\n", __func__);
39549eef
WG
342 kfree_skb(skb);
343 }
344}
345EXPORT_SYMBOL_GPL(can_put_echo_skb);
346
347/*
348 * Get the skb from the stack and loop it back locally
349 *
350 * The function is typically called when the TX done interrupt
351 * is handled in the device driver. The driver must protect
352 * access to priv->echo_skb, if necessary.
353 */
cf5046b3 354unsigned int can_get_echo_skb(struct net_device *dev, unsigned int idx)
39549eef
WG
355{
356 struct can_priv *priv = netdev_priv(dev);
357
a6e4bc53
WG
358 BUG_ON(idx >= priv->echo_skb_max);
359
39e3ab6f 360 if (priv->echo_skb[idx]) {
cf5046b3
MKB
361 struct sk_buff *skb = priv->echo_skb[idx];
362 struct can_frame *cf = (struct can_frame *)skb->data;
363 u8 dlc = cf->can_dlc;
364
39549eef
WG
365 netif_rx(priv->echo_skb[idx]);
366 priv->echo_skb[idx] = NULL;
cf5046b3
MKB
367
368 return dlc;
39549eef 369 }
cf5046b3
MKB
370
371 return 0;
39549eef
WG
372}
373EXPORT_SYMBOL_GPL(can_get_echo_skb);
374
39e3ab6f
WG
375/*
376 * Remove the skb from the stack and free it.
377 *
378 * The function is typically called when TX failed.
379 */
a6e4bc53 380void can_free_echo_skb(struct net_device *dev, unsigned int idx)
39e3ab6f
WG
381{
382 struct can_priv *priv = netdev_priv(dev);
383
a6e4bc53
WG
384 BUG_ON(idx >= priv->echo_skb_max);
385
39e3ab6f 386 if (priv->echo_skb[idx]) {
9cbb134e 387 dev_kfree_skb_any(priv->echo_skb[idx]);
39e3ab6f
WG
388 priv->echo_skb[idx] = NULL;
389 }
390}
391EXPORT_SYMBOL_GPL(can_free_echo_skb);
392
39549eef
WG
393/*
394 * CAN device restart for bus-off recovery
395 */
77fc95a3 396static void can_restart(unsigned long data)
39549eef
WG
397{
398 struct net_device *dev = (struct net_device *)data;
399 struct can_priv *priv = netdev_priv(dev);
400 struct net_device_stats *stats = &dev->stats;
401 struct sk_buff *skb;
402 struct can_frame *cf;
403 int err;
404
405 BUG_ON(netif_carrier_ok(dev));
406
407 /*
408 * No synchronization needed because the device is bus-off and
409 * no messages can come in or go out.
410 */
411 can_flush_echo_skb(dev);
412
413 /* send restart message upstream */
7b6856a0 414 skb = alloc_can_err_skb(dev, &cf);
39549eef
WG
415 if (skb == NULL) {
416 err = -ENOMEM;
b3d0df7c 417 goto restart;
39549eef 418 }
7b6856a0 419 cf->can_id |= CAN_ERR_RESTARTED;
39549eef
WG
420
421 netif_rx(skb);
422
39549eef
WG
423 stats->rx_packets++;
424 stats->rx_bytes += cf->can_dlc;
425
b3d0df7c 426restart:
aabdfd6a 427 netdev_dbg(dev, "restarted\n");
39549eef
WG
428 priv->can_stats.restarts++;
429
430 /* Now restart the device */
431 err = priv->do_set_mode(dev, CAN_MODE_START);
432
39549eef
WG
433 netif_carrier_on(dev);
434 if (err)
aabdfd6a 435 netdev_err(dev, "Error %d during restart", err);
39549eef
WG
436}
437
438int can_restart_now(struct net_device *dev)
439{
440 struct can_priv *priv = netdev_priv(dev);
441
442 /*
443 * A manual restart is only permitted if automatic restart is
444 * disabled and the device is in the bus-off state
445 */
446 if (priv->restart_ms)
447 return -EINVAL;
448 if (priv->state != CAN_STATE_BUS_OFF)
449 return -EBUSY;
450
451 /* Runs as soon as possible in the timer context */
452 mod_timer(&priv->restart_timer, jiffies);
453
454 return 0;
455}
456
457/*
458 * CAN bus-off
459 *
460 * This functions should be called when the device goes bus-off to
461 * tell the netif layer that no more packets can be sent or received.
462 * If enabled, a timer is started to trigger bus-off recovery.
463 */
464void can_bus_off(struct net_device *dev)
465{
466 struct can_priv *priv = netdev_priv(dev);
467
aabdfd6a 468 netdev_dbg(dev, "bus-off\n");
39549eef
WG
469
470 netif_carrier_off(dev);
471 priv->can_stats.bus_off++;
472
473 if (priv->restart_ms)
474 mod_timer(&priv->restart_timer,
475 jiffies + (priv->restart_ms * HZ) / 1000);
476}
477EXPORT_SYMBOL_GPL(can_bus_off);
478
479static void can_setup(struct net_device *dev)
480{
481 dev->type = ARPHRD_CAN;
1e0625fa 482 dev->mtu = CAN_MTU;
39549eef
WG
483 dev->hard_header_len = 0;
484 dev->addr_len = 0;
485 dev->tx_queue_len = 10;
486
487 /* New-style flags. */
488 dev->flags = IFF_NOARP;
34324dc2 489 dev->features = NETIF_F_HW_CSUM;
39549eef
WG
490}
491
7b6856a0
WG
492struct sk_buff *alloc_can_skb(struct net_device *dev, struct can_frame **cf)
493{
494 struct sk_buff *skb;
495
156c2bb9
OH
496 skb = netdev_alloc_skb(dev, sizeof(struct can_skb_priv) +
497 sizeof(struct can_frame));
7b6856a0
WG
498 if (unlikely(!skb))
499 return NULL;
500
501 skb->protocol = htons(ETH_P_CAN);
502 skb->pkt_type = PACKET_BROADCAST;
503 skb->ip_summed = CHECKSUM_UNNECESSARY;
156c2bb9 504
3cc97c83
OH
505 skb_reset_mac_header(skb);
506 skb_reset_network_header(skb);
507 skb_reset_transport_header(skb);
508
509 skb_reset_mac_header(skb);
510 skb_reset_network_header(skb);
511 skb_reset_transport_header(skb);
512
2bf3440d
OH
513 can_skb_reserve(skb);
514 can_skb_prv(skb)->ifindex = dev->ifindex;
156c2bb9 515
7b6856a0
WG
516 *cf = (struct can_frame *)skb_put(skb, sizeof(struct can_frame));
517 memset(*cf, 0, sizeof(struct can_frame));
518
519 return skb;
520}
521EXPORT_SYMBOL_GPL(alloc_can_skb);
522
523struct sk_buff *alloc_can_err_skb(struct net_device *dev, struct can_frame **cf)
524{
525 struct sk_buff *skb;
526
527 skb = alloc_can_skb(dev, cf);
528 if (unlikely(!skb))
529 return NULL;
530
531 (*cf)->can_id = CAN_ERR_FLAG;
532 (*cf)->can_dlc = CAN_ERR_DLC;
533
534 return skb;
535}
536EXPORT_SYMBOL_GPL(alloc_can_err_skb);
537
39549eef
WG
538/*
539 * Allocate and setup space for the CAN network device
540 */
a6e4bc53 541struct net_device *alloc_candev(int sizeof_priv, unsigned int echo_skb_max)
39549eef
WG
542{
543 struct net_device *dev;
544 struct can_priv *priv;
a6e4bc53 545 int size;
39549eef 546
a6e4bc53
WG
547 if (echo_skb_max)
548 size = ALIGN(sizeof_priv, sizeof(struct sk_buff *)) +
549 echo_skb_max * sizeof(struct sk_buff *);
550 else
551 size = sizeof_priv;
552
553 dev = alloc_netdev(size, "can%d", can_setup);
39549eef
WG
554 if (!dev)
555 return NULL;
556
557 priv = netdev_priv(dev);
558
a6e4bc53
WG
559 if (echo_skb_max) {
560 priv->echo_skb_max = echo_skb_max;
561 priv->echo_skb = (void *)priv +
562 ALIGN(sizeof_priv, sizeof(struct sk_buff *));
563 }
564
39549eef
WG
565 priv->state = CAN_STATE_STOPPED;
566
567 init_timer(&priv->restart_timer);
568
569 return dev;
570}
571EXPORT_SYMBOL_GPL(alloc_candev);
572
573/*
574 * Free space of the CAN network device
575 */
576void free_candev(struct net_device *dev)
577{
578 free_netdev(dev);
579}
580EXPORT_SYMBOL_GPL(free_candev);
581
582/*
583 * Common open function when the device gets opened.
584 *
585 * This function should be called in the open function of the device
586 * driver.
587 */
588int open_candev(struct net_device *dev)
589{
590 struct can_priv *priv = netdev_priv(dev);
591
592 if (!priv->bittiming.tq && !priv->bittiming.bitrate) {
aabdfd6a 593 netdev_err(dev, "bit-timing not yet defined\n");
39549eef
WG
594 return -EINVAL;
595 }
596
1b0d9224
WG
597 /* Switch carrier on if device was stopped while in bus-off state */
598 if (!netif_carrier_ok(dev))
599 netif_carrier_on(dev);
600
39549eef
WG
601 setup_timer(&priv->restart_timer, can_restart, (unsigned long)dev);
602
603 return 0;
604}
128ced8f 605EXPORT_SYMBOL_GPL(open_candev);
39549eef
WG
606
607/*
608 * Common close function for cleanup before the device gets closed.
609 *
610 * This function should be called in the close function of the device
611 * driver.
612 */
613void close_candev(struct net_device *dev)
614{
615 struct can_priv *priv = netdev_priv(dev);
616
ab48b03e 617 del_timer_sync(&priv->restart_timer);
39549eef
WG
618 can_flush_echo_skb(dev);
619}
620EXPORT_SYMBOL_GPL(close_candev);
621
622/*
623 * CAN netlink interface
624 */
625static const struct nla_policy can_policy[IFLA_CAN_MAX + 1] = {
626 [IFLA_CAN_STATE] = { .type = NLA_U32 },
627 [IFLA_CAN_CTRLMODE] = { .len = sizeof(struct can_ctrlmode) },
628 [IFLA_CAN_RESTART_MS] = { .type = NLA_U32 },
629 [IFLA_CAN_RESTART] = { .type = NLA_U32 },
630 [IFLA_CAN_BITTIMING] = { .len = sizeof(struct can_bittiming) },
631 [IFLA_CAN_BITTIMING_CONST]
632 = { .len = sizeof(struct can_bittiming_const) },
633 [IFLA_CAN_CLOCK] = { .len = sizeof(struct can_clock) },
52c793f2 634 [IFLA_CAN_BERR_COUNTER] = { .len = sizeof(struct can_berr_counter) },
39549eef
WG
635};
636
637static int can_changelink(struct net_device *dev,
638 struct nlattr *tb[], struct nlattr *data[])
639{
640 struct can_priv *priv = netdev_priv(dev);
641 int err;
642
643 /* We need synchronization with dev->stop() */
644 ASSERT_RTNL();
645
39549eef
WG
646 if (data[IFLA_CAN_BITTIMING]) {
647 struct can_bittiming bt;
648
649 /* Do not allow changing bittiming while running */
650 if (dev->flags & IFF_UP)
651 return -EBUSY;
652 memcpy(&bt, nla_data(data[IFLA_CAN_BITTIMING]), sizeof(bt));
653 if ((!bt.bitrate && !bt.tq) || (bt.bitrate && bt.tq))
654 return -EINVAL;
655 err = can_get_bittiming(dev, &bt);
656 if (err)
657 return err;
658 memcpy(&priv->bittiming, &bt, sizeof(bt));
659
660 if (priv->do_set_bittiming) {
661 /* Finally, set the bit-timing registers */
662 err = priv->do_set_bittiming(dev);
663 if (err)
664 return err;
665 }
666 }
667
49cb5c0e
MKB
668 if (data[IFLA_CAN_CTRLMODE]) {
669 struct can_ctrlmode *cm;
670
671 /* Do not allow changing controller mode while running */
672 if (dev->flags & IFF_UP)
673 return -EBUSY;
674 cm = nla_data(data[IFLA_CAN_CTRLMODE]);
8d01cc87
OH
675
676 /* check whether changed bits are allowed to be modified */
677 if (cm->mask & ~priv->ctrlmode_supported)
49cb5c0e 678 return -EOPNOTSUPP;
8d01cc87
OH
679
680 /* clear bits to be modified and copy the flag values */
49cb5c0e 681 priv->ctrlmode &= ~cm->mask;
8d01cc87 682 priv->ctrlmode |= (cm->flags & cm->mask);
49cb5c0e
MKB
683 }
684
39549eef
WG
685 if (data[IFLA_CAN_RESTART_MS]) {
686 /* Do not allow changing restart delay while running */
687 if (dev->flags & IFF_UP)
688 return -EBUSY;
689 priv->restart_ms = nla_get_u32(data[IFLA_CAN_RESTART_MS]);
690 }
691
692 if (data[IFLA_CAN_RESTART]) {
693 /* Do not allow a restart while not running */
694 if (!(dev->flags & IFF_UP))
695 return -EINVAL;
696 err = can_restart_now(dev);
697 if (err)
698 return err;
699 }
700
701 return 0;
702}
703
53a0ef86
WG
704static size_t can_get_size(const struct net_device *dev)
705{
706 struct can_priv *priv = netdev_priv(dev);
c13c64d8
MKB
707 size_t size = 0;
708
709 size += nla_total_size(sizeof(struct can_bittiming)); /* IFLA_CAN_BITTIMING */
710 if (priv->bittiming_const) /* IFLA_CAN_BITTIMING_CONST */
fe119a05 711 size += nla_total_size(sizeof(struct can_bittiming_const));
c13c64d8
MKB
712 size += nla_total_size(sizeof(struct can_clock)); /* IFLA_CAN_CLOCK */
713 size += nla_total_size(sizeof(u32)); /* IFLA_CAN_STATE */
714 size += nla_total_size(sizeof(struct can_ctrlmode)); /* IFLA_CAN_CTRLMODE */
715 size += nla_total_size(sizeof(u32)); /* IFLA_CAN_RESTART_MS */
716 if (priv->do_get_berr_counter) /* IFLA_CAN_BERR_COUNTER */
717 size += nla_total_size(sizeof(struct can_berr_counter));
53a0ef86
WG
718
719 return size;
720}
721
39549eef
WG
722static int can_fill_info(struct sk_buff *skb, const struct net_device *dev)
723{
724 struct can_priv *priv = netdev_priv(dev);
725 struct can_ctrlmode cm = {.flags = priv->ctrlmode};
52c793f2 726 struct can_berr_counter bec;
39549eef
WG
727 enum can_state state = priv->state;
728
729 if (priv->do_get_state)
730 priv->do_get_state(dev, &state);
57a59b9e 731 if (nla_put(skb, IFLA_CAN_BITTIMING,
31e0e328 732 sizeof(priv->bittiming), &priv->bittiming) ||
57a59b9e
MKB
733 (priv->bittiming_const &&
734 nla_put(skb, IFLA_CAN_BITTIMING_CONST,
735 sizeof(*priv->bittiming_const), priv->bittiming_const)) ||
31e0e328 736 nla_put(skb, IFLA_CAN_CLOCK, sizeof(cm), &priv->clock) ||
57a59b9e
MKB
737 nla_put_u32(skb, IFLA_CAN_STATE, state) ||
738 nla_put(skb, IFLA_CAN_CTRLMODE, sizeof(cm), &cm) ||
739 nla_put_u32(skb, IFLA_CAN_RESTART_MS, priv->restart_ms) ||
31e0e328
DM
740 (priv->do_get_berr_counter &&
741 !priv->do_get_berr_counter(dev, &bec) &&
57a59b9e
MKB
742 nla_put(skb, IFLA_CAN_BERR_COUNTER, sizeof(bec), &bec)))
743 return -EMSGSIZE;
39549eef 744 return 0;
39549eef
WG
745}
746
55369c0a
WG
747static size_t can_get_xstats_size(const struct net_device *dev)
748{
749 return sizeof(struct can_device_stats);
750}
751
39549eef
WG
752static int can_fill_xstats(struct sk_buff *skb, const struct net_device *dev)
753{
754 struct can_priv *priv = netdev_priv(dev);
755
31e0e328
DM
756 if (nla_put(skb, IFLA_INFO_XSTATS,
757 sizeof(priv->can_stats), &priv->can_stats))
758 goto nla_put_failure;
39549eef
WG
759 return 0;
760
761nla_put_failure:
762 return -EMSGSIZE;
763}
764
81adee47 765static int can_newlink(struct net *src_net, struct net_device *dev,
993e6f2f
OH
766 struct nlattr *tb[], struct nlattr *data[])
767{
768 return -EOPNOTSUPP;
769}
770
aaf95b87
OH
771static void can_dellink(struct net_device *dev, struct list_head *head)
772{
773 return;
774}
775
39549eef
WG
776static struct rtnl_link_ops can_link_ops __read_mostly = {
777 .kind = "can",
778 .maxtype = IFLA_CAN_MAX,
779 .policy = can_policy,
780 .setup = can_setup,
993e6f2f 781 .newlink = can_newlink,
39549eef 782 .changelink = can_changelink,
aaf95b87 783 .dellink = can_dellink,
53a0ef86 784 .get_size = can_get_size,
39549eef 785 .fill_info = can_fill_info,
55369c0a 786 .get_xstats_size = can_get_xstats_size,
39549eef
WG
787 .fill_xstats = can_fill_xstats,
788};
789
790/*
791 * Register the CAN network device
792 */
793int register_candev(struct net_device *dev)
794{
795 dev->rtnl_link_ops = &can_link_ops;
796 return register_netdev(dev);
797}
798EXPORT_SYMBOL_GPL(register_candev);
799
800/*
801 * Unregister the CAN network device
802 */
803void unregister_candev(struct net_device *dev)
804{
805 unregister_netdev(dev);
806}
807EXPORT_SYMBOL_GPL(unregister_candev);
808
bf03a537
KVD
809/*
810 * Test if a network device is a candev based device
811 * and return the can_priv* if so.
812 */
813struct can_priv *safe_candev_priv(struct net_device *dev)
814{
815 if ((dev->type != ARPHRD_CAN) || (dev->rtnl_link_ops != &can_link_ops))
816 return NULL;
817
818 return netdev_priv(dev);
819}
820EXPORT_SYMBOL_GPL(safe_candev_priv);
821
39549eef
WG
822static __init int can_dev_init(void)
823{
824 int err;
825
a1ef7bd9
KVD
826 can_led_notifier_init();
827
39549eef
WG
828 err = rtnl_link_register(&can_link_ops);
829 if (!err)
830 printk(KERN_INFO MOD_DESC "\n");
831
832 return err;
833}
834module_init(can_dev_init);
835
836static __exit void can_dev_exit(void)
837{
838 rtnl_link_unregister(&can_link_ops);
a1ef7bd9
KVD
839
840 can_led_notifier_exit();
39549eef
WG
841}
842module_exit(can_dev_exit);
843
844MODULE_ALIAS_RTNL_LINK("can");