rxrpc: Show some more information through /proc files
[linux/fpc-iii.git] / Documentation / networking / can_ucan_protocol.rst
blob4cef88d24fc7569536b58fd5378574aa5f9a9c3a
1 =================
2 The UCAN Protocol
3 =================
5 UCAN is the protocol used by the microcontroller-based USB-CAN
6 adapter that is integrated on System-on-Modules from Theobroma Systems
7 and that is also available as a standalone USB stick.
9 The UCAN protocol has been designed to be hardware-independent.
10 It is modeled closely after how Linux represents CAN devices
11 internally. All multi-byte integers are encoded as Little Endian.
13 All structures mentioned in this document are defined in
14 ``drivers/net/can/usb/ucan.c``.
16 USB Endpoints
17 =============
19 UCAN devices use three USB endpoints:
21 CONTROL endpoint
22   The driver sends device management commands on this endpoint
24 IN endpoint
25   The device sends CAN data frames and CAN error frames
27 OUT endpoint
28   The driver sends CAN data frames on the out endpoint
31 CONTROL Messages
32 ================
34 UCAN devices are configured using vendor requests on the control pipe.
36 To support multiple CAN interfaces in a single USB device all
37 configuration commands target the corresponding interface in the USB
38 descriptor.
40 The driver uses ``ucan_ctrl_command_in/out`` and
41 ``ucan_device_request_in`` to deliver commands to the device.
43 Setup Packet
44 ------------
46 =================  =====================================================
47 ``bmRequestType``  Direction | Vendor | (Interface or Device)
48 ``bRequest``       Command Number
49 ``wValue``         Subcommand Number (16 Bit) or 0 if not used
50 ``wIndex``         USB Interface Index (0 for device commands)
51 ``wLength``        * Host to Device - Number of bytes to transmit
52                    * Device to Host - Maximum Number of bytes to
53                      receive. If the device send less. Commom ZLP
54                      semantics are used.
55 =================  =====================================================
57 Error Handling
58 --------------
60 The device indicates failed control commands by stalling the
61 pipe.
63 Device Commands
64 ---------------
66 UCAN_DEVICE_GET_FW_STRING
67 ~~~~~~~~~~~~~~~~~~~~~~~~~
69 *Dev2Host; optional*
71 Request the device firmware string.
74 Interface Commands
75 ------------------
77 UCAN_COMMAND_START
78 ~~~~~~~~~~~~~~~~~~
80 *Host2Dev; mandatory*
82 Bring the CAN interface up.
84 Payload Format
85   ``ucan_ctl_payload_t.cmd_start``
87 ====  ============================
88 mode  or mask of ``UCAN_MODE_*``
89 ====  ============================
91 UCAN_COMMAND_STOP
92 ~~~~~~~~~~~~~~~~~~
94 *Host2Dev; mandatory*
96 Stop the CAN interface
98 Payload Format
99   *empty*
101 UCAN_COMMAND_RESET
102 ~~~~~~~~~~~~~~~~~~
104 *Host2Dev; mandatory*
106 Reset the CAN controller (including error counters)
108 Payload Format
109   *empty*
111 UCAN_COMMAND_GET
112 ~~~~~~~~~~~~~~~~
114 *Host2Dev; mandatory*
116 Get Information from the Device
118 Subcommands
119 ^^^^^^^^^^^
121 UCAN_COMMAND_GET_INFO
122   Request the device information structure ``ucan_ctl_payload_t.device_info``.
124   See the ``device_info`` field for details, and
125   ``uapi/linux/can/netlink.h`` for an explanation of the
126   ``can_bittiming fields``.
128   Payload Format
129     ``ucan_ctl_payload_t.device_info``
131 UCAN_COMMAND_GET_PROTOCOL_VERSION
133   Request the device protocol version
134   ``ucan_ctl_payload_t.protocol_version``. The current protocol version is 3.
136   Payload Format
137     ``ucan_ctl_payload_t.protocol_version``
139 .. note:: Devices that do not implement this command use the old
140           protocol version 1
142 UCAN_COMMAND_SET_BITTIMING
143 ~~~~~~~~~~~~~~~~~~~~~~~~~~
145 *Host2Dev; mandatory*
147 Setup bittiming by sending the the structure
148 ``ucan_ctl_payload_t.cmd_set_bittiming`` (see ``struct bittiming`` for
149 details)
151 Payload Format
152   ``ucan_ctl_payload_t.cmd_set_bittiming``.
154 UCAN_SLEEP/WAKE
155 ~~~~~~~~~~~~~~~
157 *Host2Dev; optional*
159 Configure sleep and wake modes. Not yet supported by the driver.
161 UCAN_FILTER
162 ~~~~~~~~~~~
164 *Host2Dev; optional*
166 Setup hardware CAN filters. Not yet supported by the driver.
168 Allowed interface commands
169 --------------------------
171 ==================  ===================  ==================
172 Legal Device State  Command              New Device State
173 ==================  ===================  ==================
174 stopped             SET_BITTIMING        stopped
175 stopped             START                started
176 started             STOP or RESET        stopped
177 stopped             STOP or RESET        stopped
178 started             RESTART              started
179 any                 GET                  *no change*
180 ==================  ===================  ==================
182 IN Message Format
183 =================
185 A data packet on the USB IN endpoint contains one or more
186 ``ucan_message_in`` values. If multiple messages are batched in a USB
187 data packet, the ``len`` field can be used to jump to the next
188 ``ucan_message_in`` value (take care to sanity-check the ``len`` value
189 against the actual data size).
191 .. _can_ucan_in_message_len:
193 ``len`` field
194 -------------
196 Each ``ucan_message_in`` must be aligned to a 4-byte boundary (relative
197 to the start of the start of the data buffer). That means that there
198 may be padding bytes between multiple ``ucan_message_in`` values:
200 .. code::
202     +----------------------------+ < 0
203     |                            |
204     |   struct ucan_message_in   |
205     |                            |
206     +----------------------------+ < len
207               [padding]
208     +----------------------------+ < round_up(len, 4)
209     |                            |
210     |   struct ucan_message_in   |
211     |                            |
212     +----------------------------+
213                 [...]
215 ``type`` field
216 --------------
218 The ``type`` field specifies the type of the message.
220 UCAN_IN_RX
221 ~~~~~~~~~~
223 ``subtype``
224   zero
226 Data received from the CAN bus (ID + payload).
228 UCAN_IN_TX_COMPLETE
229 ~~~~~~~~~~~~~~~~~~~
231 ``subtype``
232   zero
234 The CAN device has sent a message to the CAN bus. It answers with a
235 list of of tuples <echo-ids, flags>.
237 The echo-id identifies the frame from (echos the id from a previous
238 UCAN_OUT_TX message). The flag indicates the result of the
239 transmission. Whereas a set Bit 0 indicates success. All other bits
240 are reserved and set to zero.
242 Flow Control
243 ------------
245 When receiving CAN messages there is no flow control on the USB
246 buffer. The driver has to handle inbound message quickly enough to
247 avoid drops. I case the device buffer overflow the condition is
248 reported by sending corresponding error frames (see
249 :ref:`can_ucan_error_handling`)
252 OUT Message Format
253 ==================
255 A data packet on the USB OUT endpoint contains one or more ``struct
256 ucan_message_out`` values. If multiple messages are batched into one
257 data packet, the device uses the ``len`` field to jump to the next
258 ucan_message_out value. Each ucan_message_out must be aligned to 4
259 bytes (relative to the start of the data buffer). The mechanism is
260 same as described in :ref:`can_ucan_in_message_len`.
262 .. code::
264     +----------------------------+ < 0
265     |                            |
266     |   struct ucan_message_out  |
267     |                            |
268     +----------------------------+ < len
269               [padding]
270     +----------------------------+ < round_up(len, 4)
271     |                            |
272     |   struct ucan_message_out  |
273     |                            |
274     +----------------------------+
275                 [...]
277 ``type`` field
278 --------------
280 In protocol version 3 only ``UCAN_OUT_TX`` is defined, others are used
281 only by legacy devices (protocol version 1).
283 UCAN_OUT_TX
284 ~~~~~~~~~~~
285 ``subtype``
286   echo id to be replied within a CAN_IN_TX_COMPLETE message
288 Transmit a CAN frame. (parameters: ``id``, ``data``)
290 Flow Control
291 ------------
293 When the device outbound buffers are full it starts sending *NAKs* on
294 the *OUT* pipe until more buffers are available. The driver stops the
295 queue when a certain threshold of out packets are incomplete.
297 .. _can_ucan_error_handling:
299 CAN Error Handling
300 ==================
302 If error reporting is turned on the device encodes errors into CAN
303 error frames (see ``uapi/linux/can/error.h``) and sends it using the
304 IN endpoint. The driver updates its error statistics and forwards
307 Although UCAN devices can suppress error frames completely, in Linux
308 the driver is always interested. Hence, the device is always started with
309 the ``UCAN_MODE_BERR_REPORT`` set. Filtering those messages for the
310 user space is done by the driver.
312 Bus OFF
313 -------
315 - The device does not recover from bus of automatically.
316 - Bus OFF is indicated by an error frame (see ``uapi/linux/can/error.h``)
317 - Bus OFF recovery is started by ``UCAN_COMMAND_RESTART``
318 - Once Bus OFF recover is completed the device sends an error frame
319   indicating that it is on ERROR-ACTIVE state.
320 - During Bus OFF no frames are sent by the device.
321 - During Bus OFF transmission requests from the host are completed
322   immediately with the success bit left unset.
324 Example Conversation
325 ====================
327 #) Device is connected to USB
328 #) Host sends command ``UCAN_COMMAND_RESET``, subcmd 0
329 #) Host sends command ``UCAN_COMMAND_GET``, subcmd ``UCAN_COMMAND_GET_INFO``
330 #) Device sends ``UCAN_IN_DEVICE_INFO``
331 #) Host sends command ``UCAN_OUT_SET_BITTIMING``
332 #) Host sends command ``UCAN_COMMAND_START``, subcmd 0, mode ``UCAN_MODE_BERR_REPORT``