1 /* SPDX-License-Identifier: GPL-2.0 */
3 /* Driver for ETAS GmbH ES58X USB CAN(-FD) Bus Interfaces.
5 * File es58x_fd.h: Definitions and declarations specific to ETAS
6 * ES582.1 and ES584.1 (naming convention: we use the term "ES58X FD"
7 * when referring to those two variants together).
9 * Copyright (c) 2019 Robert Bosch Engineering and Business Solutions. All rights reserved.
10 * Copyright (c) 2020 ETAS K.K.. All rights reserved.
11 * Copyright (c) 2020, 2021 Vincent Mailhol <mailhol.vincent@wanadoo.fr>
14 #ifndef __ES58X_FD_H__
15 #define __ES58X_FD_H__
17 #include <linux/types.h>
19 #define ES582_1_NUM_CAN_CH 2
20 #define ES584_1_NUM_CAN_CH 1
21 #define ES58X_FD_NUM_CAN_CH 2
22 #define ES58X_FD_CHANNEL_IDX_OFFSET 0
24 #define ES58X_FD_TX_BULK_MAX 100
25 #define ES58X_FD_RX_BULK_MAX 100
26 #define ES58X_FD_ECHO_BULK_MAX 100
28 enum es58x_fd_cmd_type
{
29 ES58X_FD_CMD_TYPE_CAN
= 0x03,
30 ES58X_FD_CMD_TYPE_CANFD
= 0x04,
31 ES58X_FD_CMD_TYPE_DEVICE
= 0xFF
34 /* Command IDs for ES58X_FD_CMD_TYPE_{CAN,CANFD}. */
35 enum es58x_fd_can_cmd_id
{
36 ES58X_FD_CAN_CMD_ID_ENABLE_CHANNEL
= 0x01,
37 ES58X_FD_CAN_CMD_ID_DISABLE_CHANNEL
= 0x02,
38 ES58X_FD_CAN_CMD_ID_TX_MSG
= 0x05,
39 ES58X_FD_CAN_CMD_ID_ECHO_MSG
= 0x07,
40 ES58X_FD_CAN_CMD_ID_RX_MSG
= 0x10,
41 ES58X_FD_CAN_CMD_ID_ERROR_OR_EVENT_MSG
= 0x11,
42 ES58X_FD_CAN_CMD_ID_RESET_RX
= 0x20,
43 ES58X_FD_CAN_CMD_ID_RESET_TX
= 0x21,
44 ES58X_FD_CAN_CMD_ID_TX_MSG_NO_ACK
= 0x55
47 /* Command IDs for ES58X_FD_CMD_TYPE_DEVICE. */
48 enum es58x_fd_dev_cmd_id
{
49 ES58X_FD_DEV_CMD_ID_GETTIMETICKS
= 0x01,
50 ES58X_FD_DEV_CMD_ID_TIMESTAMP
= 0x02
54 * enum es58x_fd_ctrlmode - Controller mode.
55 * @ES58X_FD_CTRLMODE_ACTIVE: send and receive messages.
56 * @ES58X_FD_CTRLMODE_PASSIVE: only receive messages (monitor). Do not
57 * send anything, not even the acknowledgment bit.
58 * @ES58X_FD_CTRLMODE_FD: CAN FD according to ISO11898-1.
59 * @ES58X_FD_CTRLMODE_FD_NON_ISO: follow Bosch CAN FD Specification
61 * @ES58X_FD_CTRLMODE_DISABLE_PROTOCOL_EXCEPTION_HANDLING: How to
62 * behave when CAN FD reserved bit is monitored as
63 * dominant. (c.f. ISO 11898-1:2015, section 10.4.2.4 "Control
64 * field", paragraph "r0 bit"). 0 (not disable = enable): send
65 * error frame. 1 (disable): goes into bus integration mode
67 * @ES58X_FD_CTRLMODE_EDGE_FILTER_DURING_BUS_INTEGRATION: 0: Edge
68 * filtering is disabled. 1: Edge filtering is enabled. Two
69 * consecutive dominant bits required to detect an edge for hard
72 enum es58x_fd_ctrlmode
{
73 ES58X_FD_CTRLMODE_ACTIVE
= 0,
74 ES58X_FD_CTRLMODE_PASSIVE
= BIT(0),
75 ES58X_FD_CTRLMODE_FD
= BIT(4),
76 ES58X_FD_CTRLMODE_FD_NON_ISO
= BIT(5),
77 ES58X_FD_CTRLMODE_DISABLE_PROTOCOL_EXCEPTION_HANDLING
= BIT(6),
78 ES58X_FD_CTRLMODE_EDGE_FILTER_DURING_BUS_INTEGRATION
= BIT(7)
81 struct es58x_fd_bittiming
{
83 __le16 tseg1
; /* range: [tseg1_min-1..tseg1_max-1] */
84 __le16 tseg2
; /* range: [tseg2_min-1..tseg2_max-1] */
85 __le16 brp
; /* range: [brp_min-1..brp_max-1] */
86 __le16 sjw
; /* range: [0..sjw_max-1] */
90 * struct es58x_fd_tx_conf_msg - Channel configuration.
91 * @nominal_bittiming: Nominal bittiming.
92 * @samples_per_bit: type enum es58x_samples_per_bit.
93 * @sync_edge: type enum es58x_sync_edge.
94 * @physical_layer: type enum es58x_physical_layer.
95 * @echo_mode: type enum es58x_echo_mode.
96 * @ctrlmode: type enum es58x_fd_ctrlmode.
97 * @canfd_enabled: boolean (0: Classical CAN, 1: CAN and/or CANFD).
98 * @data_bittiming: Bittiming for flexible data-rate transmission.
99 * @tdc_enabled: Transmitter Delay Compensation switch (0: TDC is
100 * disabled, 1: TDC is enabled).
101 * @tdco: Transmitter Delay Compensation Offset.
102 * @tdcf: Transmitter Delay Compensation Filter window.
104 * Please refer to the microcontroller datasheet: "SAM E70/S70/V70/V71
105 * Family" section 49 "Controller Area Network (MCAN)" for additional
108 struct es58x_fd_tx_conf_msg
{
109 struct es58x_fd_bittiming nominal_bittiming
;
116 struct es58x_fd_bittiming data_bittiming
;
122 #define ES58X_FD_CAN_CONF_LEN \
123 (offsetof(struct es58x_fd_tx_conf_msg, canfd_enabled))
124 #define ES58X_FD_CANFD_CONF_LEN (sizeof(struct es58x_fd_tx_conf_msg))
126 struct es58x_fd_tx_can_msg
{
131 u8 dlc
; /* Only if cmd_id is ES58X_FD_CMD_TYPE_CAN */
132 u8 len
; /* Only if cmd_id is ES58X_FD_CMD_TYPE_CANFD */
134 u8 data
[CANFD_MAX_DLEN
];
137 #define ES58X_FD_CAN_TX_LEN \
138 (offsetof(struct es58x_fd_tx_can_msg, data[CAN_MAX_DLEN]))
139 #define ES58X_FD_CANFD_TX_LEN (sizeof(struct es58x_fd_tx_can_msg))
141 struct es58x_fd_rx_can_msg
{
146 u8 dlc
; /* Only if cmd_id is ES58X_FD_CMD_TYPE_CAN */
147 u8 len
; /* Only if cmd_id is ES58X_FD_CMD_TYPE_CANFD */
149 u8 data
[CANFD_MAX_DLEN
];
152 #define ES58X_FD_CAN_RX_LEN \
153 (offsetof(struct es58x_fd_rx_can_msg, data[CAN_MAX_DLEN]))
154 #define ES58X_FD_CANFD_RX_LEN (sizeof(struct es58x_fd_rx_can_msg))
156 struct es58x_fd_echo_msg
{
161 struct es58x_fd_rx_event_msg
{
164 u8 flags
; /* type enum es58x_flag */
165 u8 error_type
; /* 0: event, 1: error */
170 struct es58x_fd_tx_ack_msg
{
171 __le32 rx_cmd_ret_le32
; /* type enum es58x_cmd_ret_code_u32 */
172 __le16 tx_free_entries
; /* Number of remaining free entries in the device TX queue */
176 * struct es58x_fd_urb_cmd - Commands received from or sent to the
178 * @SOF: Start of Frame.
179 * @cmd_type: Command Type (type: enum es58x_fd_cmd_type). The CRC
180 * calculation starts at this position.
181 * @cmd_id: Command ID (type: enum es58x_fd_cmd_id).
182 * @channel_idx: Channel index starting at 0.
183 * @msg_len: Length of the message, excluding CRC (i.e. length of the
185 * @tx_conf_msg: Channel configuration.
186 * @tx_can_msg_buf: Concatenation of Tx messages. Type is "u8[]"
187 * instead of "struct es58x_fd_tx_msg[]" because the structure
188 * has a flexible size.
189 * @rx_can_msg_buf: Concatenation Rx messages. Type is "u8[]" instead
190 * of "struct es58x_fd_rx_msg[]" because the structure has a
192 * @echo_msg: Array of echo messages (e.g. Tx messages being looped
194 * @rx_event_msg: Error or event message.
195 * @tx_ack_msg: Tx acknowledgment message.
196 * @timestamp: Timestamp reply.
197 * @rx_cmd_ret_le32: Rx 32 bits return code (type: enum
198 * es58x_cmd_ret_code_u32).
199 * @raw_msg: Message raw payload.
200 * @reserved_for_crc16_do_not_use: The structure ends with a
201 * CRC16. Because the structures in above union are of variable
202 * lengths, we can not predict the offset of the CRC in
203 * advance. Use functions es58x_get_crc() and es58x_set_crc() to
206 struct es58x_fd_urb_cmd
{
214 struct es58x_fd_tx_conf_msg tx_conf_msg
;
215 u8 tx_can_msg_buf
[ES58X_FD_TX_BULK_MAX
* ES58X_FD_CANFD_TX_LEN
];
216 u8 rx_can_msg_buf
[ES58X_FD_RX_BULK_MAX
* ES58X_FD_CANFD_RX_LEN
];
217 struct es58x_fd_echo_msg echo_msg
[ES58X_FD_ECHO_BULK_MAX
];
218 struct es58x_fd_rx_event_msg rx_event_msg
;
219 struct es58x_fd_tx_ack_msg tx_ack_msg
;
221 __le32 rx_cmd_ret_le32
;
222 DECLARE_FLEX_ARRAY(u8
, raw_msg
);
225 __le16 reserved_for_crc16_do_not_use
;
228 #define ES58X_FD_URB_CMD_HEADER_LEN (offsetof(struct es58x_fd_urb_cmd, raw_msg))
229 #define ES58X_FD_TX_URB_CMD_MAX_LEN \
230 ES58X_SIZEOF_URB_CMD(struct es58x_fd_urb_cmd, tx_can_msg_buf)
231 #define ES58X_FD_RX_URB_CMD_MAX_LEN \
232 ES58X_SIZEOF_URB_CMD(struct es58x_fd_urb_cmd, rx_can_msg_buf)
234 #endif /* __ES58X_FD_H__ */