xref: /linux/drivers/net/can/dev/dev.c (revision e8e507a8ac90d48053dfdea9d4855495b0204956)
1 // SPDX-License-Identifier: GPL-2.0-only
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 
7 #include <linux/module.h>
8 #include <linux/kernel.h>
9 #include <linux/slab.h>
10 #include <linux/netdevice.h>
11 #include <linux/if_arp.h>
12 #include <linux/workqueue.h>
13 #include <linux/can.h>
14 #include <linux/can/can-ml.h>
15 #include <linux/can/dev.h>
16 #include <linux/can/skb.h>
17 #include <linux/can/led.h>
18 #include <linux/of.h>
19 
20 #define MOD_DESC "CAN device driver interface"
21 
22 MODULE_DESCRIPTION(MOD_DESC);
23 MODULE_LICENSE("GPL v2");
24 MODULE_AUTHOR("Wolfgang Grandegger <wg@grandegger.com>");
25 
26 static void can_update_state_error_stats(struct net_device *dev,
27 					 enum can_state new_state)
28 {
29 	struct can_priv *priv = netdev_priv(dev);
30 
31 	if (new_state <= priv->state)
32 		return;
33 
34 	switch (new_state) {
35 	case CAN_STATE_ERROR_WARNING:
36 		priv->can_stats.error_warning++;
37 		break;
38 	case CAN_STATE_ERROR_PASSIVE:
39 		priv->can_stats.error_passive++;
40 		break;
41 	case CAN_STATE_BUS_OFF:
42 		priv->can_stats.bus_off++;
43 		break;
44 	default:
45 		break;
46 	}
47 }
48 
49 static int can_tx_state_to_frame(struct net_device *dev, enum can_state state)
50 {
51 	switch (state) {
52 	case CAN_STATE_ERROR_ACTIVE:
53 		return CAN_ERR_CRTL_ACTIVE;
54 	case CAN_STATE_ERROR_WARNING:
55 		return CAN_ERR_CRTL_TX_WARNING;
56 	case CAN_STATE_ERROR_PASSIVE:
57 		return CAN_ERR_CRTL_TX_PASSIVE;
58 	default:
59 		return 0;
60 	}
61 }
62 
63 static int can_rx_state_to_frame(struct net_device *dev, enum can_state state)
64 {
65 	switch (state) {
66 	case CAN_STATE_ERROR_ACTIVE:
67 		return CAN_ERR_CRTL_ACTIVE;
68 	case CAN_STATE_ERROR_WARNING:
69 		return CAN_ERR_CRTL_RX_WARNING;
70 	case CAN_STATE_ERROR_PASSIVE:
71 		return CAN_ERR_CRTL_RX_PASSIVE;
72 	default:
73 		return 0;
74 	}
75 }
76 
77 static const char *can_get_state_str(const enum can_state state)
78 {
79 	switch (state) {
80 	case CAN_STATE_ERROR_ACTIVE:
81 		return "Error Active";
82 	case CAN_STATE_ERROR_WARNING:
83 		return "Error Warning";
84 	case CAN_STATE_ERROR_PASSIVE:
85 		return "Error Passive";
86 	case CAN_STATE_BUS_OFF:
87 		return "Bus Off";
88 	case CAN_STATE_STOPPED:
89 		return "Stopped";
90 	case CAN_STATE_SLEEPING:
91 		return "Sleeping";
92 	default:
93 		return "<unknown>";
94 	}
95 
96 	return "<unknown>";
97 }
98 
99 void can_change_state(struct net_device *dev, struct can_frame *cf,
100 		      enum can_state tx_state, enum can_state rx_state)
101 {
102 	struct can_priv *priv = netdev_priv(dev);
103 	enum can_state new_state = max(tx_state, rx_state);
104 
105 	if (unlikely(new_state == priv->state)) {
106 		netdev_warn(dev, "%s: oops, state did not change", __func__);
107 		return;
108 	}
109 
110 	netdev_dbg(dev, "Controller changed from %s State (%d) into %s State (%d).\n",
111 		   can_get_state_str(priv->state), priv->state,
112 		   can_get_state_str(new_state), new_state);
113 
114 	can_update_state_error_stats(dev, new_state);
115 	priv->state = new_state;
116 
117 	if (!cf)
118 		return;
119 
120 	if (unlikely(new_state == CAN_STATE_BUS_OFF)) {
121 		cf->can_id |= CAN_ERR_BUSOFF;
122 		return;
123 	}
124 
125 	cf->can_id |= CAN_ERR_CRTL;
126 	cf->data[1] |= tx_state >= rx_state ?
127 		       can_tx_state_to_frame(dev, tx_state) : 0;
128 	cf->data[1] |= tx_state <= rx_state ?
129 		       can_rx_state_to_frame(dev, rx_state) : 0;
130 }
131 EXPORT_SYMBOL_GPL(can_change_state);
132 
133 /* CAN device restart for bus-off recovery */
134 static void can_restart(struct net_device *dev)
135 {
136 	struct can_priv *priv = netdev_priv(dev);
137 	struct net_device_stats *stats = &dev->stats;
138 	struct sk_buff *skb;
139 	struct can_frame *cf;
140 	int err;
141 
142 	BUG_ON(netif_carrier_ok(dev));
143 
144 	/* No synchronization needed because the device is bus-off and
145 	 * no messages can come in or go out.
146 	 */
147 	can_flush_echo_skb(dev);
148 
149 	/* send restart message upstream */
150 	skb = alloc_can_err_skb(dev, &cf);
151 	if (!skb)
152 		goto restart;
153 
154 	cf->can_id |= CAN_ERR_RESTARTED;
155 
156 	stats->rx_packets++;
157 	stats->rx_bytes += cf->len;
158 
159 	netif_rx_ni(skb);
160 
161 restart:
162 	netdev_dbg(dev, "restarted\n");
163 	priv->can_stats.restarts++;
164 
165 	/* Now restart the device */
166 	err = priv->do_set_mode(dev, CAN_MODE_START);
167 
168 	netif_carrier_on(dev);
169 	if (err)
170 		netdev_err(dev, "Error %d during restart", err);
171 }
172 
173 static void can_restart_work(struct work_struct *work)
174 {
175 	struct delayed_work *dwork = to_delayed_work(work);
176 	struct can_priv *priv = container_of(dwork, struct can_priv,
177 					     restart_work);
178 
179 	can_restart(priv->dev);
180 }
181 
182 int can_restart_now(struct net_device *dev)
183 {
184 	struct can_priv *priv = netdev_priv(dev);
185 
186 	/* A manual restart is only permitted if automatic restart is
187 	 * disabled and the device is in the bus-off state
188 	 */
189 	if (priv->restart_ms)
190 		return -EINVAL;
191 	if (priv->state != CAN_STATE_BUS_OFF)
192 		return -EBUSY;
193 
194 	cancel_delayed_work_sync(&priv->restart_work);
195 	can_restart(dev);
196 
197 	return 0;
198 }
199 
200 /* CAN bus-off
201  *
202  * This functions should be called when the device goes bus-off to
203  * tell the netif layer that no more packets can be sent or received.
204  * If enabled, a timer is started to trigger bus-off recovery.
205  */
206 void can_bus_off(struct net_device *dev)
207 {
208 	struct can_priv *priv = netdev_priv(dev);
209 
210 	if (priv->restart_ms)
211 		netdev_info(dev, "bus-off, scheduling restart in %d ms\n",
212 			    priv->restart_ms);
213 	else
214 		netdev_info(dev, "bus-off\n");
215 
216 	netif_carrier_off(dev);
217 
218 	if (priv->restart_ms)
219 		schedule_delayed_work(&priv->restart_work,
220 				      msecs_to_jiffies(priv->restart_ms));
221 }
222 EXPORT_SYMBOL_GPL(can_bus_off);
223 
224 void can_setup(struct net_device *dev)
225 {
226 	dev->type = ARPHRD_CAN;
227 	dev->mtu = CAN_MTU;
228 	dev->hard_header_len = 0;
229 	dev->addr_len = 0;
230 	dev->tx_queue_len = 10;
231 
232 	/* New-style flags. */
233 	dev->flags = IFF_NOARP;
234 	dev->features = NETIF_F_HW_CSUM;
235 }
236 
237 /* Allocate and setup space for the CAN network device */
238 struct net_device *alloc_candev_mqs(int sizeof_priv, unsigned int echo_skb_max,
239 				    unsigned int txqs, unsigned int rxqs)
240 {
241 	struct net_device *dev;
242 	struct can_priv *priv;
243 	int size;
244 
245 	/* We put the driver's priv, the CAN mid layer priv and the
246 	 * echo skb into the netdevice's priv. The memory layout for
247 	 * the netdev_priv is like this:
248 	 *
249 	 * +-------------------------+
250 	 * | driver's priv           |
251 	 * +-------------------------+
252 	 * | struct can_ml_priv      |
253 	 * +-------------------------+
254 	 * | array of struct sk_buff |
255 	 * +-------------------------+
256 	 */
257 
258 	size = ALIGN(sizeof_priv, NETDEV_ALIGN) + sizeof(struct can_ml_priv);
259 
260 	if (echo_skb_max)
261 		size = ALIGN(size, sizeof(struct sk_buff *)) +
262 			echo_skb_max * sizeof(struct sk_buff *);
263 
264 	dev = alloc_netdev_mqs(size, "can%d", NET_NAME_UNKNOWN, can_setup,
265 			       txqs, rxqs);
266 	if (!dev)
267 		return NULL;
268 
269 	priv = netdev_priv(dev);
270 	priv->dev = dev;
271 
272 	dev->ml_priv = (void *)priv + ALIGN(sizeof_priv, NETDEV_ALIGN);
273 
274 	if (echo_skb_max) {
275 		priv->echo_skb_max = echo_skb_max;
276 		priv->echo_skb = (void *)priv +
277 			(size - echo_skb_max * sizeof(struct sk_buff *));
278 	}
279 
280 	priv->state = CAN_STATE_STOPPED;
281 
282 	INIT_DELAYED_WORK(&priv->restart_work, can_restart_work);
283 
284 	return dev;
285 }
286 EXPORT_SYMBOL_GPL(alloc_candev_mqs);
287 
288 /* Free space of the CAN network device */
289 void free_candev(struct net_device *dev)
290 {
291 	free_netdev(dev);
292 }
293 EXPORT_SYMBOL_GPL(free_candev);
294 
295 /* changing MTU and control mode for CAN/CANFD devices */
296 int can_change_mtu(struct net_device *dev, int new_mtu)
297 {
298 	struct can_priv *priv = netdev_priv(dev);
299 
300 	/* Do not allow changing the MTU while running */
301 	if (dev->flags & IFF_UP)
302 		return -EBUSY;
303 
304 	/* allow change of MTU according to the CANFD ability of the device */
305 	switch (new_mtu) {
306 	case CAN_MTU:
307 		/* 'CANFD-only' controllers can not switch to CAN_MTU */
308 		if (priv->ctrlmode_static & CAN_CTRLMODE_FD)
309 			return -EINVAL;
310 
311 		priv->ctrlmode &= ~CAN_CTRLMODE_FD;
312 		break;
313 
314 	case CANFD_MTU:
315 		/* check for potential CANFD ability */
316 		if (!(priv->ctrlmode_supported & CAN_CTRLMODE_FD) &&
317 		    !(priv->ctrlmode_static & CAN_CTRLMODE_FD))
318 			return -EINVAL;
319 
320 		priv->ctrlmode |= CAN_CTRLMODE_FD;
321 		break;
322 
323 	default:
324 		return -EINVAL;
325 	}
326 
327 	dev->mtu = new_mtu;
328 	return 0;
329 }
330 EXPORT_SYMBOL_GPL(can_change_mtu);
331 
332 /* Common open function when the device gets opened.
333  *
334  * This function should be called in the open function of the device
335  * driver.
336  */
337 int open_candev(struct net_device *dev)
338 {
339 	struct can_priv *priv = netdev_priv(dev);
340 
341 	if (!priv->bittiming.bitrate) {
342 		netdev_err(dev, "bit-timing not yet defined\n");
343 		return -EINVAL;
344 	}
345 
346 	/* For CAN FD the data bitrate has to be >= the arbitration bitrate */
347 	if ((priv->ctrlmode & CAN_CTRLMODE_FD) &&
348 	    (!priv->data_bittiming.bitrate ||
349 	     priv->data_bittiming.bitrate < priv->bittiming.bitrate)) {
350 		netdev_err(dev, "incorrect/missing data bit-timing\n");
351 		return -EINVAL;
352 	}
353 
354 	/* Switch carrier on if device was stopped while in bus-off state */
355 	if (!netif_carrier_ok(dev))
356 		netif_carrier_on(dev);
357 
358 	return 0;
359 }
360 EXPORT_SYMBOL_GPL(open_candev);
361 
362 #ifdef CONFIG_OF
363 /* Common function that can be used to understand the limitation of
364  * a transceiver when it provides no means to determine these limitations
365  * at runtime.
366  */
367 void of_can_transceiver(struct net_device *dev)
368 {
369 	struct device_node *dn;
370 	struct can_priv *priv = netdev_priv(dev);
371 	struct device_node *np = dev->dev.parent->of_node;
372 	int ret;
373 
374 	dn = of_get_child_by_name(np, "can-transceiver");
375 	if (!dn)
376 		return;
377 
378 	ret = of_property_read_u32(dn, "max-bitrate", &priv->bitrate_max);
379 	of_node_put(dn);
380 	if ((ret && ret != -EINVAL) || (!ret && !priv->bitrate_max))
381 		netdev_warn(dev, "Invalid value for transceiver max bitrate. Ignoring bitrate limit.\n");
382 }
383 EXPORT_SYMBOL_GPL(of_can_transceiver);
384 #endif
385 
386 /* Common close function for cleanup before the device gets closed.
387  *
388  * This function should be called in the close function of the device
389  * driver.
390  */
391 void close_candev(struct net_device *dev)
392 {
393 	struct can_priv *priv = netdev_priv(dev);
394 
395 	cancel_delayed_work_sync(&priv->restart_work);
396 	can_flush_echo_skb(dev);
397 }
398 EXPORT_SYMBOL_GPL(close_candev);
399 
400 /* Register the CAN network device */
401 int register_candev(struct net_device *dev)
402 {
403 	struct can_priv *priv = netdev_priv(dev);
404 
405 	/* Ensure termination_const, termination_const_cnt and
406 	 * do_set_termination consistency. All must be either set or
407 	 * unset.
408 	 */
409 	if ((!priv->termination_const != !priv->termination_const_cnt) ||
410 	    (!priv->termination_const != !priv->do_set_termination))
411 		return -EINVAL;
412 
413 	if (!priv->bitrate_const != !priv->bitrate_const_cnt)
414 		return -EINVAL;
415 
416 	if (!priv->data_bitrate_const != !priv->data_bitrate_const_cnt)
417 		return -EINVAL;
418 
419 	dev->rtnl_link_ops = &can_link_ops;
420 	netif_carrier_off(dev);
421 
422 	return register_netdev(dev);
423 }
424 EXPORT_SYMBOL_GPL(register_candev);
425 
426 /* Unregister the CAN network device */
427 void unregister_candev(struct net_device *dev)
428 {
429 	unregister_netdev(dev);
430 }
431 EXPORT_SYMBOL_GPL(unregister_candev);
432 
433 /* Test if a network device is a candev based device
434  * and return the can_priv* if so.
435  */
436 struct can_priv *safe_candev_priv(struct net_device *dev)
437 {
438 	if (dev->type != ARPHRD_CAN || dev->rtnl_link_ops != &can_link_ops)
439 		return NULL;
440 
441 	return netdev_priv(dev);
442 }
443 EXPORT_SYMBOL_GPL(safe_candev_priv);
444 
445 static __init int can_dev_init(void)
446 {
447 	int err;
448 
449 	can_led_notifier_init();
450 
451 	err = can_netlink_register();
452 	if (!err)
453 		pr_info(MOD_DESC "\n");
454 
455 	return err;
456 }
457 module_init(can_dev_init);
458 
459 static __exit void can_dev_exit(void)
460 {
461 	can_netlink_unregister();
462 
463 	can_led_notifier_exit();
464 }
465 module_exit(can_dev_exit);
466 
467 MODULE_ALIAS_RTNL_LINK("can");
468