Merge tag 'v3.10.105' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / can / dev.h
CommitLineData
39549eef
WG
1/*
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 *
39549eef
WG
11 */
12
13#ifndef CAN_DEV_H
14#define CAN_DEV_H
15
829e0015 16#include <linux/can.h>
39549eef
WG
17#include <linux/can/netlink.h>
18#include <linux/can/error.h>
996a953d 19#include <linux/can/led.h>
39549eef
WG
20
21/*
22 * CAN mode
23 */
24enum can_mode {
25 CAN_MODE_STOP = 0,
26 CAN_MODE_START,
27 CAN_MODE_SLEEP
28};
29
30/*
31 * CAN common private data
32 */
39549eef 33struct can_priv {
ebee2e2f 34 struct net_device *dev;
39549eef
WG
35 struct can_device_stats can_stats;
36
37 struct can_bittiming bittiming;
194b9a4c 38 const struct can_bittiming_const *bittiming_const;
39549eef
WG
39 struct can_clock clock;
40
41 enum can_state state;
42 u32 ctrlmode;
ad72c347 43 u32 ctrlmode_supported;
39549eef
WG
44
45 int restart_ms;
ebee2e2f 46 struct delayed_work restart_work;
39549eef 47
39549eef
WG
48 int (*do_set_bittiming)(struct net_device *dev);
49 int (*do_set_mode)(struct net_device *dev, enum can_mode mode);
50 int (*do_get_state)(const struct net_device *dev,
51 enum can_state *state);
52c793f2
WG
52 int (*do_get_berr_counter)(const struct net_device *dev,
53 struct can_berr_counter *bec);
a6e4bc53
WG
54
55 unsigned int echo_skb_max;
56 struct sk_buff **echo_skb;
996a953d
FB
57
58#ifdef CONFIG_CAN_LEDS
59 struct led_trigger *tx_led_trig;
60 char tx_led_trig_name[CAN_LED_NAME_SZ];
61 struct led_trigger *rx_led_trig;
62 char rx_led_trig_name[CAN_LED_NAME_SZ];
63#endif
39549eef
WG
64};
65
c7cd606f
OH
66/*
67 * get_can_dlc(value) - helper macro to cast a given data length code (dlc)
68 * to __u8 and ensure the dlc value to be max. 8 bytes.
69 *
70 * To be used in the CAN netdriver receive path to ensure conformance with
71 * ISO 11898-1 Chapter 8.4.2.3 (DLC field)
72 */
1e0625fa
OH
73#define get_can_dlc(i) (min_t(__u8, (i), CAN_MAX_DLC))
74#define get_canfd_dlc(i) (min_t(__u8, (i), CANFD_MAX_DLC))
c7cd606f 75
3ccd4c61
OH
76/* Drop a given socketbuffer if it does not contain a valid CAN frame. */
77static inline int can_dropped_invalid_skb(struct net_device *dev,
78 struct sk_buff *skb)
79{
1e0625fa
OH
80 const struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
81
82 if (skb->protocol == htons(ETH_P_CAN)) {
83 if (unlikely(skb->len != CAN_MTU ||
84 cfd->len > CAN_MAX_DLEN))
85 goto inval_skb;
86 } else if (skb->protocol == htons(ETH_P_CANFD)) {
87 if (unlikely(skb->len != CANFD_MTU ||
88 cfd->len > CANFD_MAX_DLEN))
89 goto inval_skb;
90 } else
91 goto inval_skb;
3ccd4c61
OH
92
93 return 0;
1e0625fa
OH
94
95inval_skb:
96 kfree_skb(skb);
97 dev->stats.tx_dropped++;
98 return 1;
3ccd4c61
OH
99}
100
1e0625fa
OH
101/* get data length from can_dlc with sanitized can_dlc */
102u8 can_dlc2len(u8 can_dlc);
103
104/* map the sanitized data length to an appropriate data length code */
105u8 can_len2dlc(u8 len);
106
a6e4bc53 107struct net_device *alloc_candev(int sizeof_priv, unsigned int echo_skb_max);
39549eef
WG
108void free_candev(struct net_device *dev);
109
bf03a537
KVD
110/* a candev safe wrapper around netdev_priv */
111struct can_priv *safe_candev_priv(struct net_device *dev);
112
39549eef
WG
113int open_candev(struct net_device *dev);
114void close_candev(struct net_device *dev);
115
116int register_candev(struct net_device *dev);
117void unregister_candev(struct net_device *dev);
118
119int can_restart_now(struct net_device *dev);
120void can_bus_off(struct net_device *dev);
121
a6e4bc53
WG
122void can_put_echo_skb(struct sk_buff *skb, struct net_device *dev,
123 unsigned int idx);
cf5046b3 124unsigned int can_get_echo_skb(struct net_device *dev, unsigned int idx);
a6e4bc53 125void can_free_echo_skb(struct net_device *dev, unsigned int idx);
39549eef 126
7b6856a0
WG
127struct sk_buff *alloc_can_skb(struct net_device *dev, struct can_frame **cf);
128struct sk_buff *alloc_can_err_skb(struct net_device *dev,
129 struct can_frame **cf);
130
39549eef 131#endif /* CAN_DEV_H */