11dfb6005SVincent Mailhol /* SPDX-License-Identifier: GPL-2.0 */ 21dfb6005SVincent Mailhol 31dfb6005SVincent Mailhol /* Driver for ETAS GmbH ES58X USB CAN(-FD) Bus Interfaces. 41dfb6005SVincent Mailhol * 51dfb6005SVincent Mailhol * File es581_4.h: Definitions and declarations specific to ETAS 61dfb6005SVincent Mailhol * ES581.4. 71dfb6005SVincent Mailhol * 81dfb6005SVincent Mailhol * Copyright (c) 2019 Robert Bosch Engineering and Business Solutions. All rights reserved. 91dfb6005SVincent Mailhol * Copyright (c) 2020 ETAS K.K.. All rights reserved. 101dfb6005SVincent Mailhol * Copyright (c) 2020, 2021 Vincent Mailhol <mailhol.vincent@wanadoo.fr> 111dfb6005SVincent Mailhol */ 121dfb6005SVincent Mailhol 131dfb6005SVincent Mailhol #ifndef __ES581_4_H__ 141dfb6005SVincent Mailhol #define __ES581_4_H__ 151dfb6005SVincent Mailhol 161dfb6005SVincent Mailhol #include <linux/types.h> 171dfb6005SVincent Mailhol 181dfb6005SVincent Mailhol #define ES581_4_NUM_CAN_CH 2 191dfb6005SVincent Mailhol #define ES581_4_CHANNEL_IDX_OFFSET 1 201dfb6005SVincent Mailhol 211dfb6005SVincent Mailhol #define ES581_4_TX_BULK_MAX 25 221dfb6005SVincent Mailhol #define ES581_4_RX_BULK_MAX 30 231dfb6005SVincent Mailhol #define ES581_4_ECHO_BULK_MAX 30 241dfb6005SVincent Mailhol 251dfb6005SVincent Mailhol enum es581_4_cmd_type { 261dfb6005SVincent Mailhol ES581_4_CAN_COMMAND_TYPE = 0x45 271dfb6005SVincent Mailhol }; 281dfb6005SVincent Mailhol 291dfb6005SVincent Mailhol enum es581_4_cmd_id { 301dfb6005SVincent Mailhol ES581_4_CMD_ID_OPEN_CHANNEL = 0x01, 311dfb6005SVincent Mailhol ES581_4_CMD_ID_CLOSE_CHANNEL = 0x02, 321dfb6005SVincent Mailhol ES581_4_CMD_ID_SET_BITTIMING = 0x03, 331dfb6005SVincent Mailhol ES581_4_CMD_ID_ENABLE_CHANNEL = 0x04, 341dfb6005SVincent Mailhol ES581_4_CMD_ID_TX_MSG = 0x05, 351dfb6005SVincent Mailhol ES581_4_CMD_ID_RX_MSG = 0x06, 361dfb6005SVincent Mailhol ES581_4_CMD_ID_RESET_RX = 0x0A, 371dfb6005SVincent Mailhol ES581_4_CMD_ID_RESET_TX = 0x0B, 381dfb6005SVincent Mailhol ES581_4_CMD_ID_DISABLE_CHANNEL = 0x0C, 391dfb6005SVincent Mailhol ES581_4_CMD_ID_TIMESTAMP = 0x0E, 401dfb6005SVincent Mailhol ES581_4_CMD_ID_RESET_DEVICE = 0x28, 411dfb6005SVincent Mailhol ES581_4_CMD_ID_ECHO = 0x71, 421dfb6005SVincent Mailhol ES581_4_CMD_ID_DEVICE_ERR = 0x72 431dfb6005SVincent Mailhol }; 441dfb6005SVincent Mailhol 451dfb6005SVincent Mailhol enum es581_4_rx_type { 461dfb6005SVincent Mailhol ES581_4_RX_TYPE_MESSAGE = 1, 471dfb6005SVincent Mailhol ES581_4_RX_TYPE_ERROR = 3, 481dfb6005SVincent Mailhol ES581_4_RX_TYPE_EVENT = 4 491dfb6005SVincent Mailhol }; 501dfb6005SVincent Mailhol 511dfb6005SVincent Mailhol /** 521dfb6005SVincent Mailhol * struct es581_4_tx_conf_msg - Channel configuration. 531dfb6005SVincent Mailhol * @bitrate: Bitrate. 541dfb6005SVincent Mailhol * @sample_point: Sample point is in percent [0..100]. 551dfb6005SVincent Mailhol * @samples_per_bit: type enum es58x_samples_per_bit. 561dfb6005SVincent Mailhol * @bit_time: Number of time quanta in one bit. 571dfb6005SVincent Mailhol * @sjw: Synchronization Jump Width. 581dfb6005SVincent Mailhol * @sync_edge: type enum es58x_sync_edge. 591dfb6005SVincent Mailhol * @physical_layer: type enum es58x_physical_layer. 601dfb6005SVincent Mailhol * @echo_mode: type enum es58x_echo_mode. 611dfb6005SVincent Mailhol * @channel_no: Channel number, starting from 1. Not to be confused 621dfb6005SVincent Mailhol * with channed_idx of the ES58X FD which starts from 0. 631dfb6005SVincent Mailhol */ 641dfb6005SVincent Mailhol struct es581_4_tx_conf_msg { 651dfb6005SVincent Mailhol __le32 bitrate; 661dfb6005SVincent Mailhol __le32 sample_point; 671dfb6005SVincent Mailhol __le32 samples_per_bit; 681dfb6005SVincent Mailhol __le32 bit_time; 691dfb6005SVincent Mailhol __le32 sjw; 701dfb6005SVincent Mailhol __le32 sync_edge; 711dfb6005SVincent Mailhol __le32 physical_layer; 721dfb6005SVincent Mailhol __le32 echo_mode; 731dfb6005SVincent Mailhol u8 channel_no; 741dfb6005SVincent Mailhol } __packed; 751dfb6005SVincent Mailhol 761dfb6005SVincent Mailhol struct es581_4_tx_can_msg { 771dfb6005SVincent Mailhol __le32 can_id; 781dfb6005SVincent Mailhol __le32 packet_idx; 791dfb6005SVincent Mailhol __le16 flags; 801dfb6005SVincent Mailhol u8 channel_no; 811dfb6005SVincent Mailhol u8 dlc; 821dfb6005SVincent Mailhol u8 data[CAN_MAX_DLEN]; 831dfb6005SVincent Mailhol } __packed; 841dfb6005SVincent Mailhol 851dfb6005SVincent Mailhol /* The ES581.4 allows bulk transfer. */ 861dfb6005SVincent Mailhol struct es581_4_bulk_tx_can_msg { 871dfb6005SVincent Mailhol u8 num_can_msg; 881dfb6005SVincent Mailhol /* Using type "u8[]" instead of "struct es581_4_tx_can_msg[]" 891dfb6005SVincent Mailhol * for tx_msg_buf because each member has a flexible size. 901dfb6005SVincent Mailhol */ 911dfb6005SVincent Mailhol u8 tx_can_msg_buf[ES581_4_TX_BULK_MAX * 921dfb6005SVincent Mailhol sizeof(struct es581_4_tx_can_msg)]; 931dfb6005SVincent Mailhol } __packed; 941dfb6005SVincent Mailhol 951dfb6005SVincent Mailhol struct es581_4_echo_msg { 961dfb6005SVincent Mailhol __le64 timestamp; 971dfb6005SVincent Mailhol __le32 packet_idx; 981dfb6005SVincent Mailhol } __packed; 991dfb6005SVincent Mailhol 1001dfb6005SVincent Mailhol struct es581_4_bulk_echo_msg { 1011dfb6005SVincent Mailhol u8 channel_no; 1021dfb6005SVincent Mailhol struct es581_4_echo_msg echo_msg[ES581_4_ECHO_BULK_MAX]; 1031dfb6005SVincent Mailhol } __packed; 1041dfb6005SVincent Mailhol 1051dfb6005SVincent Mailhol /* Normal Rx CAN Message */ 1061dfb6005SVincent Mailhol struct es581_4_rx_can_msg { 1071dfb6005SVincent Mailhol __le64 timestamp; 1081dfb6005SVincent Mailhol u8 rx_type; /* type enum es581_4_rx_type */ 1091dfb6005SVincent Mailhol u8 flags; /* type enum es58x_flag */ 1101dfb6005SVincent Mailhol u8 channel_no; 1111dfb6005SVincent Mailhol u8 dlc; 1121dfb6005SVincent Mailhol __le32 can_id; 1131dfb6005SVincent Mailhol u8 data[CAN_MAX_DLEN]; 1141dfb6005SVincent Mailhol } __packed; 1151dfb6005SVincent Mailhol 1161dfb6005SVincent Mailhol struct es581_4_rx_err_msg { 1171dfb6005SVincent Mailhol __le64 timestamp; 1181dfb6005SVincent Mailhol __le16 rx_type; /* type enum es581_4_rx_type */ 1191dfb6005SVincent Mailhol __le16 flags; /* type enum es58x_flag */ 1201dfb6005SVincent Mailhol u8 channel_no; 1211dfb6005SVincent Mailhol u8 __padding[2]; 1221dfb6005SVincent Mailhol u8 dlc; 1231dfb6005SVincent Mailhol __le32 tag; /* Related to the CAN filtering. Unused in this module */ 1241dfb6005SVincent Mailhol __le32 can_id; 1251dfb6005SVincent Mailhol __le32 error; /* type enum es58x_error */ 1261dfb6005SVincent Mailhol __le32 destination; /* Unused in this module */ 1271dfb6005SVincent Mailhol } __packed; 1281dfb6005SVincent Mailhol 1291dfb6005SVincent Mailhol struct es581_4_rx_event_msg { 1301dfb6005SVincent Mailhol __le64 timestamp; 1311dfb6005SVincent Mailhol __le16 rx_type; /* type enum es581_4_rx_type */ 1321dfb6005SVincent Mailhol u8 channel_no; 1331dfb6005SVincent Mailhol u8 __padding; 1341dfb6005SVincent Mailhol __le32 tag; /* Related to the CAN filtering. Unused in this module */ 1351dfb6005SVincent Mailhol __le32 event; /* type enum es58x_event */ 1361dfb6005SVincent Mailhol __le32 destination; /* Unused in this module */ 1371dfb6005SVincent Mailhol } __packed; 1381dfb6005SVincent Mailhol 1391dfb6005SVincent Mailhol struct es581_4_tx_ack_msg { 1401dfb6005SVincent Mailhol __le16 tx_free_entries; /* Number of remaining free entries in the device TX queue */ 1411dfb6005SVincent Mailhol u8 channel_no; 1421dfb6005SVincent Mailhol u8 rx_cmd_ret_u8; /* type enum es58x_cmd_ret_code_u8 */ 1431dfb6005SVincent Mailhol } __packed; 1441dfb6005SVincent Mailhol 1451dfb6005SVincent Mailhol struct es581_4_rx_cmd_ret { 1461dfb6005SVincent Mailhol __le32 rx_cmd_ret_le32; 1471dfb6005SVincent Mailhol u8 channel_no; 1481dfb6005SVincent Mailhol u8 __padding[3]; 1491dfb6005SVincent Mailhol } __packed; 1501dfb6005SVincent Mailhol 1511dfb6005SVincent Mailhol /** 1521dfb6005SVincent Mailhol * struct es581_4_urb_cmd - Commands received from or sent to the 1531dfb6005SVincent Mailhol * ES581.4 device. 1541dfb6005SVincent Mailhol * @SOF: Start of Frame. 1551dfb6005SVincent Mailhol * @cmd_type: Command Type (type: enum es581_4_cmd_type). The CRC 1561dfb6005SVincent Mailhol * calculation starts at this position. 1571dfb6005SVincent Mailhol * @cmd_id: Command ID (type: enum es581_4_cmd_id). 1581dfb6005SVincent Mailhol * @msg_len: Length of the message, excluding CRC (i.e. length of the 1591dfb6005SVincent Mailhol * union). 1601dfb6005SVincent Mailhol * @tx_conf_msg: Channel configuration. 1611dfb6005SVincent Mailhol * @bulk_tx_can_msg: Tx messages. 1621dfb6005SVincent Mailhol * @rx_can_msg: Array of Rx messages. 1631dfb6005SVincent Mailhol * @bulk_echo_msg: Tx message being looped back. 1641dfb6005SVincent Mailhol * @rx_err_msg: Error message. 1651dfb6005SVincent Mailhol * @rx_event_msg: Event message. 1661dfb6005SVincent Mailhol * @tx_ack_msg: Tx acknowledgment message. 1671dfb6005SVincent Mailhol * @rx_cmd_ret: Command return code. 1681dfb6005SVincent Mailhol * @timestamp: Timestamp reply. 1691dfb6005SVincent Mailhol * @rx_cmd_ret_u8: Rx 8 bits return code (type: enum 1701dfb6005SVincent Mailhol * es58x_cmd_ret_code_u8). 1711dfb6005SVincent Mailhol * @raw_msg: Message raw payload. 1721dfb6005SVincent Mailhol * @reserved_for_crc16_do_not_use: The structure ends with a 1731dfb6005SVincent Mailhol * CRC16. Because the structures in above union are of variable 1741dfb6005SVincent Mailhol * lengths, we can not predict the offset of the CRC in 1751dfb6005SVincent Mailhol * advance. Use functions es58x_get_crc() and es58x_set_crc() to 1761dfb6005SVincent Mailhol * manipulate it. 1771dfb6005SVincent Mailhol */ 1781dfb6005SVincent Mailhol struct es581_4_urb_cmd { 1791dfb6005SVincent Mailhol __le16 SOF; 1801dfb6005SVincent Mailhol u8 cmd_type; 1811dfb6005SVincent Mailhol u8 cmd_id; 1821dfb6005SVincent Mailhol __le16 msg_len; 1831dfb6005SVincent Mailhol 1841dfb6005SVincent Mailhol union { 1851dfb6005SVincent Mailhol struct es581_4_tx_conf_msg tx_conf_msg; 1861dfb6005SVincent Mailhol struct es581_4_bulk_tx_can_msg bulk_tx_can_msg; 1871dfb6005SVincent Mailhol struct es581_4_rx_can_msg rx_can_msg[ES581_4_RX_BULK_MAX]; 1881dfb6005SVincent Mailhol struct es581_4_bulk_echo_msg bulk_echo_msg; 1891dfb6005SVincent Mailhol struct es581_4_rx_err_msg rx_err_msg; 1901dfb6005SVincent Mailhol struct es581_4_rx_event_msg rx_event_msg; 1911dfb6005SVincent Mailhol struct es581_4_tx_ack_msg tx_ack_msg; 1921dfb6005SVincent Mailhol struct es581_4_rx_cmd_ret rx_cmd_ret; 1931dfb6005SVincent Mailhol __le64 timestamp; 1941dfb6005SVincent Mailhol u8 rx_cmd_ret_u8; 195*fa7845cfSKees Cook DECLARE_FLEX_ARRAY(u8, raw_msg); 1961dfb6005SVincent Mailhol } __packed; 1971dfb6005SVincent Mailhol 1981dfb6005SVincent Mailhol __le16 reserved_for_crc16_do_not_use; 1991dfb6005SVincent Mailhol } __packed; 2001dfb6005SVincent Mailhol 2011dfb6005SVincent Mailhol #define ES581_4_URB_CMD_HEADER_LEN (offsetof(struct es581_4_urb_cmd, raw_msg)) 2021dfb6005SVincent Mailhol #define ES581_4_TX_URB_CMD_MAX_LEN \ 2031dfb6005SVincent Mailhol ES58X_SIZEOF_URB_CMD(struct es581_4_urb_cmd, bulk_tx_can_msg) 2041dfb6005SVincent Mailhol #define ES581_4_RX_URB_CMD_MAX_LEN \ 2051dfb6005SVincent Mailhol ES58X_SIZEOF_URB_CMD(struct es581_4_urb_cmd, rx_can_msg) 2061dfb6005SVincent Mailhol 2071dfb6005SVincent Mailhol #endif /* __ES581_4_H__ */ 208