1 /* SPDX-License-Identifier: GPL-2.0 */
5 * Definitions for the CAN network device driver interface
7 * Copyright (C) 2006 Andrey Volkov <avolkov@varma-el.com>
10 * Copyright (C) 2008 Wolfgang Grandegger <wg@grandegger.com>
17 #include <linux/can.h>
18 #include <linux/can/error.h>
19 #include <linux/can/led.h>
20 #include <linux/can/netlink.h>
21 #include <linux/netdevice.h>
33 * CAN common private data
36 struct net_device
*dev
;
37 struct can_device_stats can_stats
;
39 struct can_bittiming bittiming
, data_bittiming
;
40 const struct can_bittiming_const
*bittiming_const
,
41 *data_bittiming_const
;
42 const u16
*termination_const
;
43 unsigned int termination_const_cnt
;
45 const u32
*bitrate_const
;
46 unsigned int bitrate_const_cnt
;
47 const u32
*data_bitrate_const
;
48 unsigned int data_bitrate_const_cnt
;
50 struct can_clock clock
;
54 /* CAN controller features - see include/uapi/linux/can/netlink.h */
55 u32 ctrlmode
; /* current options setting */
56 u32 ctrlmode_supported
; /* options that can be modified by netlink */
57 u32 ctrlmode_static
; /* static enabled options for driver/hardware */
60 struct delayed_work restart_work
;
62 int (*do_set_bittiming
)(struct net_device
*dev
);
63 int (*do_set_data_bittiming
)(struct net_device
*dev
);
64 int (*do_set_mode
)(struct net_device
*dev
, enum can_mode mode
);
65 int (*do_set_termination
)(struct net_device
*dev
, u16 term
);
66 int (*do_get_state
)(const struct net_device
*dev
,
67 enum can_state
*state
);
68 int (*do_get_berr_counter
)(const struct net_device
*dev
,
69 struct can_berr_counter
*bec
);
71 unsigned int echo_skb_max
;
72 struct sk_buff
**echo_skb
;
74 #ifdef CONFIG_CAN_LEDS
75 struct led_trigger
*tx_led_trig
;
76 char tx_led_trig_name
[CAN_LED_NAME_SZ
];
77 struct led_trigger
*rx_led_trig
;
78 char rx_led_trig_name
[CAN_LED_NAME_SZ
];
79 struct led_trigger
*rxtx_led_trig
;
80 char rxtx_led_trig_name
[CAN_LED_NAME_SZ
];
85 * get_can_dlc(value) - helper macro to cast a given data length code (dlc)
86 * to __u8 and ensure the dlc value to be max. 8 bytes.
88 * To be used in the CAN netdriver receive path to ensure conformance with
89 * ISO 11898-1 Chapter 8.4.2.3 (DLC field)
91 #define get_can_dlc(i) (min_t(__u8, (i), CAN_MAX_DLC))
92 #define get_canfd_dlc(i) (min_t(__u8, (i), CANFD_MAX_DLC))
94 /* Drop a given socketbuffer if it does not contain a valid CAN frame. */
95 static inline bool can_dropped_invalid_skb(struct net_device
*dev
,
98 const struct canfd_frame
*cfd
= (struct canfd_frame
*)skb
->data
;
100 if (skb
->protocol
== htons(ETH_P_CAN
)) {
101 if (unlikely(skb
->len
!= CAN_MTU
||
102 cfd
->len
> CAN_MAX_DLEN
))
104 } else if (skb
->protocol
== htons(ETH_P_CANFD
)) {
105 if (unlikely(skb
->len
!= CANFD_MTU
||
106 cfd
->len
> CANFD_MAX_DLEN
))
115 dev
->stats
.tx_dropped
++;
119 static inline bool can_is_canfd_skb(const struct sk_buff
*skb
)
121 /* the CAN specific type of skb is identified by its data length */
122 return skb
->len
== CANFD_MTU
;
125 /* helper to define static CAN controller features at device creation time */
126 static inline void can_set_static_ctrlmode(struct net_device
*dev
,
129 struct can_priv
*priv
= netdev_priv(dev
);
131 /* alloc_candev() succeeded => netdev_priv() is valid at this point */
132 priv
->ctrlmode
= static_mode
;
133 priv
->ctrlmode_static
= static_mode
;
135 /* override MTU which was set by default in can_setup()? */
136 if (static_mode
& CAN_CTRLMODE_FD
)
137 dev
->mtu
= CANFD_MTU
;
140 /* get data length from can_dlc with sanitized can_dlc */
141 u8
can_dlc2len(u8 can_dlc
);
143 /* map the sanitized data length to an appropriate data length code */
144 u8
can_len2dlc(u8 len
);
146 struct net_device
*alloc_candev(int sizeof_priv
, unsigned int echo_skb_max
);
147 void free_candev(struct net_device
*dev
);
149 /* a candev safe wrapper around netdev_priv */
150 struct can_priv
*safe_candev_priv(struct net_device
*dev
);
152 int open_candev(struct net_device
*dev
);
153 void close_candev(struct net_device
*dev
);
154 int can_change_mtu(struct net_device
*dev
, int new_mtu
);
156 int register_candev(struct net_device
*dev
);
157 void unregister_candev(struct net_device
*dev
);
159 int can_restart_now(struct net_device
*dev
);
160 void can_bus_off(struct net_device
*dev
);
162 void can_change_state(struct net_device
*dev
, struct can_frame
*cf
,
163 enum can_state tx_state
, enum can_state rx_state
);
165 void can_put_echo_skb(struct sk_buff
*skb
, struct net_device
*dev
,
167 unsigned int can_get_echo_skb(struct net_device
*dev
, unsigned int idx
);
168 void can_free_echo_skb(struct net_device
*dev
, unsigned int idx
);
171 void of_can_transceiver(struct net_device
*dev
);
173 static inline void of_can_transceiver(struct net_device
*dev
) { }
176 struct sk_buff
*alloc_can_skb(struct net_device
*dev
, struct can_frame
**cf
);
177 struct sk_buff
*alloc_canfd_skb(struct net_device
*dev
,
178 struct canfd_frame
**cfd
);
179 struct sk_buff
*alloc_can_err_skb(struct net_device
*dev
,
180 struct can_frame
**cf
);
182 #endif /* !_CAN_DEV_H */