blob: 735f9f8c4e43e5350f36bc4b39e9f8634778fd40 [file] [log] [blame]
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +00001/*
2 * linux/can/dev.h
3 *
4 * Definitions for the CAN network device driver interface
5 *
6 * Copyright (C) 2006 Andrey Volkov <avolkov@varma-el.com>
7 * Varma Electronics Oy
8 *
9 * Copyright (C) 2008 Wolfgang Grandegger <wg@grandegger.com>
10 *
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000011 */
12
Oliver Hartkopp42193e32014-05-15 20:31:56 +020013#ifndef _CAN_DEV_H
14#define _CAN_DEV_H
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000015
Hans J. Koch829e0012010-04-13 00:03:25 +000016#include <linux/can.h>
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000017#include <linux/can/error.h>
Fabio Baltieri996a9532012-12-18 18:50:55 +010018#include <linux/can/led.h>
Marc Kleine-Budde27859682015-05-09 17:47:52 +020019#include <linux/can/netlink.h>
20#include <linux/netdevice.h>
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000021
22/*
23 * CAN mode
24 */
25enum can_mode {
26 CAN_MODE_STOP = 0,
27 CAN_MODE_START,
28 CAN_MODE_SLEEP
29};
30
31/*
32 * CAN common private data
33 */
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000034struct can_priv {
35 struct can_device_stats can_stats;
36
Oliver Hartkopp9859ccd2014-02-28 16:36:23 +010037 struct can_bittiming bittiming, data_bittiming;
38 const struct can_bittiming_const *bittiming_const,
39 *data_bittiming_const;
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000040 struct can_clock clock;
41
42 enum can_state state;
43 u32 ctrlmode;
Christian Pellegrinad72c342010-01-14 07:08:34 +000044 u32 ctrlmode_supported;
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000045
46 int restart_ms;
47 struct timer_list restart_timer;
48
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000049 int (*do_set_bittiming)(struct net_device *dev);
Oliver Hartkopp9859ccd2014-02-28 16:36:23 +010050 int (*do_set_data_bittiming)(struct net_device *dev);
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000051 int (*do_set_mode)(struct net_device *dev, enum can_mode mode);
52 int (*do_get_state)(const struct net_device *dev,
53 enum can_state *state);
Wolfgang Grandegger52c793f2010-02-22 22:21:17 +000054 int (*do_get_berr_counter)(const struct net_device *dev,
55 struct can_berr_counter *bec);
Wolfgang Grandeggera6e4bc52009-10-08 22:17:11 +000056
57 unsigned int echo_skb_max;
58 struct sk_buff **echo_skb;
Fabio Baltieri996a9532012-12-18 18:50:55 +010059
60#ifdef CONFIG_CAN_LEDS
61 struct led_trigger *tx_led_trig;
62 char tx_led_trig_name[CAN_LED_NAME_SZ];
63 struct led_trigger *rx_led_trig;
64 char rx_led_trig_name[CAN_LED_NAME_SZ];
Yegor Yefremovc54eb702015-03-16 09:38:13 +010065 struct led_trigger *rxtx_led_trig;
66 char rxtx_led_trig_name[CAN_LED_NAME_SZ];
Fabio Baltieri996a9532012-12-18 18:50:55 +010067#endif
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +000068};
69
Oliver Hartkoppc7cd6062009-12-12 04:13:21 +000070/*
71 * get_can_dlc(value) - helper macro to cast a given data length code (dlc)
72 * to __u8 and ensure the dlc value to be max. 8 bytes.
73 *
74 * To be used in the CAN netdriver receive path to ensure conformance with
75 * ISO 11898-1 Chapter 8.4.2.3 (DLC field)
76 */
Oliver Hartkopp1e0625f2012-06-13 20:48:21 +020077#define get_can_dlc(i) (min_t(__u8, (i), CAN_MAX_DLC))
78#define get_canfd_dlc(i) (min_t(__u8, (i), CANFD_MAX_DLC))
Oliver Hartkoppc7cd6062009-12-12 04:13:21 +000079
Oliver Hartkopp3ccd4c62010-01-12 02:00:46 -080080/* Drop a given socketbuffer if it does not contain a valid CAN frame. */
Yaowei Baid6fbaea2015-10-08 21:28:57 +080081static inline bool can_dropped_invalid_skb(struct net_device *dev,
Oliver Hartkopp3ccd4c62010-01-12 02:00:46 -080082 struct sk_buff *skb)
83{
Oliver Hartkopp1e0625f2012-06-13 20:48:21 +020084 const struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
Oliver Hartkopp3ccd4c62010-01-12 02:00:46 -080085
Oliver Hartkopp1e0625f2012-06-13 20:48:21 +020086 if (skb->protocol == htons(ETH_P_CAN)) {
87 if (unlikely(skb->len != CAN_MTU ||
88 cfd->len > CAN_MAX_DLEN))
89 goto inval_skb;
90 } else if (skb->protocol == htons(ETH_P_CANFD)) {
91 if (unlikely(skb->len != CANFD_MTU ||
92 cfd->len > CANFD_MAX_DLEN))
93 goto inval_skb;
94 } else
95 goto inval_skb;
Oliver Hartkopp3ccd4c62010-01-12 02:00:46 -080096
Yaowei Baid6fbaea2015-10-08 21:28:57 +080097 return false;
Oliver Hartkopp1e0625f2012-06-13 20:48:21 +020098
99inval_skb:
100 kfree_skb(skb);
101 dev->stats.tx_dropped++;
Yaowei Baid6fbaea2015-10-08 21:28:57 +0800102 return true;
Oliver Hartkopp3ccd4c62010-01-12 02:00:46 -0800103}
104
Dong Aisheng98e69012014-11-07 16:45:12 +0800105static inline bool can_is_canfd_skb(const struct sk_buff *skb)
106{
107 /* the CAN specific type of skb is identified by its data length */
108 return skb->len == CANFD_MTU;
109}
110
Oliver Hartkopp1e0625f2012-06-13 20:48:21 +0200111/* get data length from can_dlc with sanitized can_dlc */
112u8 can_dlc2len(u8 can_dlc);
113
114/* map the sanitized data length to an appropriate data length code */
115u8 can_len2dlc(u8 len);
116
Wolfgang Grandeggera6e4bc52009-10-08 22:17:11 +0000117struct net_device *alloc_candev(int sizeof_priv, unsigned int echo_skb_max);
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +0000118void free_candev(struct net_device *dev);
119
Kurt Van Dijckbf03a532012-12-18 18:50:56 +0100120/* a candev safe wrapper around netdev_priv */
121struct can_priv *safe_candev_priv(struct net_device *dev);
122
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +0000123int open_candev(struct net_device *dev);
124void close_candev(struct net_device *dev);
Oliver Hartkoppbc05a892014-02-28 16:36:24 +0100125int can_change_mtu(struct net_device *dev, int new_mtu);
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +0000126
127int register_candev(struct net_device *dev);
128void unregister_candev(struct net_device *dev);
129
130int can_restart_now(struct net_device *dev);
131void can_bus_off(struct net_device *dev);
132
Andri Yngvasonbac78aa2014-12-03 17:54:13 +0000133void can_change_state(struct net_device *dev, struct can_frame *cf,
134 enum can_state tx_state, enum can_state rx_state);
135
Wolfgang Grandeggera6e4bc52009-10-08 22:17:11 +0000136void can_put_echo_skb(struct sk_buff *skb, struct net_device *dev,
137 unsigned int idx);
Marc Kleine-Buddecf5046b2011-10-10 23:43:53 +0200138unsigned int can_get_echo_skb(struct net_device *dev, unsigned int idx);
Wolfgang Grandeggera6e4bc52009-10-08 22:17:11 +0000139void can_free_echo_skb(struct net_device *dev, unsigned int idx);
Wolfgang Grandegger39549ee2009-05-15 23:39:29 +0000140
Wolfgang Grandegger7b6856a2009-10-20 00:08:01 -0700141struct sk_buff *alloc_can_skb(struct net_device *dev, struct can_frame **cf);
Stephane Grosjeancb2518c2014-01-15 09:50:13 +0100142struct sk_buff *alloc_canfd_skb(struct net_device *dev,
143 struct canfd_frame **cfd);
Wolfgang Grandegger7b6856a2009-10-20 00:08:01 -0700144struct sk_buff *alloc_can_err_skb(struct net_device *dev,
145 struct can_frame **cf);
146
Oliver Hartkopp42193e32014-05-15 20:31:56 +0200147#endif /* !_CAN_DEV_H */