1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (C) 2005 Marc Kleine-Budde, Pengutronix
3 * Copyright (C) 2006 Andrey Volkov, Varma Electronics
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>
20 #define MOD_DESC "CAN device driver interface"
22 MODULE_DESCRIPTION(MOD_DESC);
23 MODULE_LICENSE("GPL v2");
26 static void can_update_state_error_stats(struct net_device *dev,
27 enum can_state new_state)
29 struct can_priv *priv = netdev_priv(dev);
31 if (new_state <= priv->state)
35 case CAN_STATE_ERROR_WARNING:
36 priv->can_stats.error_warning++;
38 case CAN_STATE_ERROR_PASSIVE:
39 priv->can_stats.error_passive++;
41 case CAN_STATE_BUS_OFF:
42 priv->can_stats.bus_off++;
49 static int can_tx_state_to_frame(struct net_device *dev, enum can_state 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;
63 static int can_rx_state_to_frame(struct net_device *dev, enum can_state 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;
77 const char *can_get_state_str(const enum can_state 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:
88 case CAN_STATE_STOPPED:
90 case CAN_STATE_SLEEPING:
98 EXPORT_SYMBOL_GPL(can_get_state_str);
100 void can_change_state(struct net_device *dev, struct can_frame *cf,
101 enum can_state tx_state, enum can_state rx_state)
103 struct can_priv *priv = netdev_priv(dev);
104 enum can_state new_state = max(tx_state, rx_state);
106 if (unlikely(new_state == priv->state)) {
107 netdev_warn(dev, "%s: oops, state did not change", __func__);
111 netdev_dbg(dev, "Controller changed from %s State (%d) into %s State (%d).\n",
112 can_get_state_str(priv->state), priv->state,
113 can_get_state_str(new_state), new_state);
115 can_update_state_error_stats(dev, new_state);
116 priv->state = new_state;
121 if (unlikely(new_state == CAN_STATE_BUS_OFF)) {
122 cf->can_id |= CAN_ERR_BUSOFF;
126 cf->can_id |= CAN_ERR_CRTL;
127 cf->data[1] |= tx_state >= rx_state ?
128 can_tx_state_to_frame(dev, tx_state) : 0;
129 cf->data[1] |= tx_state <= rx_state ?
130 can_rx_state_to_frame(dev, rx_state) : 0;
132 EXPORT_SYMBOL_GPL(can_change_state);
134 /* CAN device restart for bus-off recovery */
135 static void can_restart(struct net_device *dev)
137 struct can_priv *priv = netdev_priv(dev);
138 struct net_device_stats *stats = &dev->stats;
140 struct can_frame *cf;
143 BUG_ON(netif_carrier_ok(dev));
145 /* No synchronization needed because the device is bus-off and
146 * no messages can come in or go out.
148 can_flush_echo_skb(dev);
150 /* send restart message upstream */
151 skb = alloc_can_err_skb(dev, &cf);
155 cf->can_id |= CAN_ERR_RESTARTED;
158 stats->rx_bytes += cf->len;
163 netdev_dbg(dev, "restarted\n");
164 priv->can_stats.restarts++;
166 /* Now restart the device */
167 err = priv->do_set_mode(dev, CAN_MODE_START);
169 netif_carrier_on(dev);
171 netdev_err(dev, "Error %d during restart", err);
174 static void can_restart_work(struct work_struct *work)
176 struct delayed_work *dwork = to_delayed_work(work);
177 struct can_priv *priv = container_of(dwork, struct can_priv,
180 can_restart(priv->dev);
183 int can_restart_now(struct net_device *dev)
185 struct can_priv *priv = netdev_priv(dev);
187 /* A manual restart is only permitted if automatic restart is
188 * disabled and the device is in the bus-off state
190 if (priv->restart_ms)
192 if (priv->state != CAN_STATE_BUS_OFF)
195 cancel_delayed_work_sync(&priv->restart_work);
203 * This functions should be called when the device goes bus-off to
204 * tell the netif layer that no more packets can be sent or received.
205 * If enabled, a timer is started to trigger bus-off recovery.
207 void can_bus_off(struct net_device *dev)
209 struct can_priv *priv = netdev_priv(dev);
211 if (priv->restart_ms)
212 netdev_info(dev, "bus-off, scheduling restart in %d ms\n",
215 netdev_info(dev, "bus-off\n");
217 netif_carrier_off(dev);
219 if (priv->restart_ms)
220 schedule_delayed_work(&priv->restart_work,
221 msecs_to_jiffies(priv->restart_ms));
223 EXPORT_SYMBOL_GPL(can_bus_off);
225 void can_setup(struct net_device *dev)
227 dev->type = ARPHRD_CAN;
229 dev->hard_header_len = 0;
231 dev->tx_queue_len = 10;
233 /* New-style flags. */
234 dev->flags = IFF_NOARP;
235 dev->features = NETIF_F_HW_CSUM;
238 /* Allocate and setup space for the CAN network device */
239 struct net_device *alloc_candev_mqs(int sizeof_priv, unsigned int echo_skb_max,
240 unsigned int txqs, unsigned int rxqs)
242 struct can_ml_priv *can_ml;
243 struct net_device *dev;
244 struct can_priv *priv;
247 /* We put the driver's priv, the CAN mid layer priv and the
248 * echo skb into the netdevice's priv. The memory layout for
249 * the netdev_priv is like this:
251 * +-------------------------+
253 * +-------------------------+
254 * | struct can_ml_priv |
255 * +-------------------------+
256 * | array of struct sk_buff |
257 * +-------------------------+
260 size = ALIGN(sizeof_priv, NETDEV_ALIGN) + sizeof(struct can_ml_priv);
263 size = ALIGN(size, sizeof(struct sk_buff *)) +
264 echo_skb_max * sizeof(struct sk_buff *);
266 dev = alloc_netdev_mqs(size, "can%d", NET_NAME_UNKNOWN, can_setup,
271 priv = netdev_priv(dev);
274 can_ml = (void *)priv + ALIGN(sizeof_priv, NETDEV_ALIGN);
275 can_set_ml_priv(dev, can_ml);
278 priv->echo_skb_max = echo_skb_max;
279 priv->echo_skb = (void *)priv +
280 (size - echo_skb_max * sizeof(struct sk_buff *));
283 priv->state = CAN_STATE_STOPPED;
285 INIT_DELAYED_WORK(&priv->restart_work, can_restart_work);
289 EXPORT_SYMBOL_GPL(alloc_candev_mqs);
291 /* Free space of the CAN network device */
292 void free_candev(struct net_device *dev)
296 EXPORT_SYMBOL_GPL(free_candev);
298 /* changing MTU and control mode for CAN/CANFD devices */
299 int can_change_mtu(struct net_device *dev, int new_mtu)
301 struct can_priv *priv = netdev_priv(dev);
303 /* Do not allow changing the MTU while running */
304 if (dev->flags & IFF_UP)
307 /* allow change of MTU according to the CANFD ability of the device */
310 /* 'CANFD-only' controllers can not switch to CAN_MTU */
311 if (priv->ctrlmode_static & CAN_CTRLMODE_FD)
314 priv->ctrlmode &= ~CAN_CTRLMODE_FD;
318 /* check for potential CANFD ability */
319 if (!(priv->ctrlmode_supported & CAN_CTRLMODE_FD) &&
320 !(priv->ctrlmode_static & CAN_CTRLMODE_FD))
323 priv->ctrlmode |= CAN_CTRLMODE_FD;
333 EXPORT_SYMBOL_GPL(can_change_mtu);
335 /* Common open function when the device gets opened.
337 * This function should be called in the open function of the device
340 int open_candev(struct net_device *dev)
342 struct can_priv *priv = netdev_priv(dev);
344 if (!priv->bittiming.bitrate) {
345 netdev_err(dev, "bit-timing not yet defined\n");
349 /* For CAN FD the data bitrate has to be >= the arbitration bitrate */
350 if ((priv->ctrlmode & CAN_CTRLMODE_FD) &&
351 (!priv->data_bittiming.bitrate ||
352 priv->data_bittiming.bitrate < priv->bittiming.bitrate)) {
353 netdev_err(dev, "incorrect/missing data bit-timing\n");
357 /* Switch carrier on if device was stopped while in bus-off state */
358 if (!netif_carrier_ok(dev))
359 netif_carrier_on(dev);
363 EXPORT_SYMBOL_GPL(open_candev);
366 /* Common function that can be used to understand the limitation of
367 * a transceiver when it provides no means to determine these limitations
370 void of_can_transceiver(struct net_device *dev)
372 struct device_node *dn;
373 struct can_priv *priv = netdev_priv(dev);
374 struct device_node *np = dev->dev.parent->of_node;
377 dn = of_get_child_by_name(np, "can-transceiver");
381 ret = of_property_read_u32(dn, "max-bitrate", &priv->bitrate_max);
383 if ((ret && ret != -EINVAL) || (!ret && !priv->bitrate_max))
384 netdev_warn(dev, "Invalid value for transceiver max bitrate. Ignoring bitrate limit.\n");
386 EXPORT_SYMBOL_GPL(of_can_transceiver);
389 /* Common close function for cleanup before the device gets closed.
391 * This function should be called in the close function of the device
394 void close_candev(struct net_device *dev)
396 struct can_priv *priv = netdev_priv(dev);
398 cancel_delayed_work_sync(&priv->restart_work);
399 can_flush_echo_skb(dev);
401 EXPORT_SYMBOL_GPL(close_candev);
403 /* Register the CAN network device */
404 int register_candev(struct net_device *dev)
406 struct can_priv *priv = netdev_priv(dev);
408 /* Ensure termination_const, termination_const_cnt and
409 * do_set_termination consistency. All must be either set or
412 if ((!priv->termination_const != !priv->termination_const_cnt) ||
413 (!priv->termination_const != !priv->do_set_termination))
416 if (!priv->bitrate_const != !priv->bitrate_const_cnt)
419 if (!priv->data_bitrate_const != !priv->data_bitrate_const_cnt)
422 dev->rtnl_link_ops = &can_link_ops;
423 netif_carrier_off(dev);
425 return register_netdev(dev);
427 EXPORT_SYMBOL_GPL(register_candev);
429 /* Unregister the CAN network device */
430 void unregister_candev(struct net_device *dev)
432 unregister_netdev(dev);
434 EXPORT_SYMBOL_GPL(unregister_candev);
436 /* Test if a network device is a candev based device
437 * and return the can_priv* if so.
439 struct can_priv *safe_candev_priv(struct net_device *dev)
441 if (dev->type != ARPHRD_CAN || dev->rtnl_link_ops != &can_link_ops)
444 return netdev_priv(dev);
446 EXPORT_SYMBOL_GPL(safe_candev_priv);
448 static __init int can_dev_init(void)
452 can_led_notifier_init();
454 err = can_netlink_register();
456 pr_info(MOD_DESC "\n");
460 module_init(can_dev_init);
462 static __exit void can_dev_exit(void)
464 can_netlink_unregister();
466 can_led_notifier_exit();
468 module_exit(can_dev_exit);
470 MODULE_ALIAS_RTNL_LINK("can");