~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/w1/masters/w1-uart.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/w1/masters/w1-uart.rst (Version linux-6.12-rc7) and /Documentation/w1/masters/w1-uart.rst (Version linux-6.10.14)


  1 .. SPDX-License-Identifier: GPL-2.0-or-later        1 .. SPDX-License-Identifier: GPL-2.0-or-later
  2                                                     2 
  3 =====================                               3 =====================
  4 Kernel driver w1-uart                               4 Kernel driver w1-uart
  5 =====================                               5 =====================
  6                                                     6 
  7 Author: Christoph Winklhofer <cj.winklhofer@gma      7 Author: Christoph Winklhofer <cj.winklhofer@gmail.com>
  8                                                     8 
  9                                                     9 
 10 Description                                        10 Description
 11 -----------                                        11 -----------
 12                                                    12 
 13 UART 1-Wire bus driver. The driver utilizes th     13 UART 1-Wire bus driver. The driver utilizes the UART interface via the
 14 Serial Device Bus to create the 1-Wire timing      14 Serial Device Bus to create the 1-Wire timing patterns as described in
 15 the document `"Using a UART to Implement a 1-W     15 the document `"Using a UART to Implement a 1-Wire Bus Master"`_.
 16                                                    16 
 17 .. _"Using a UART to Implement a 1-Wire Bus Ma     17 .. _"Using a UART to Implement a 1-Wire Bus Master": https://www.analog.com/en/technical-articles/using-a-uart-to-implement-a-1wire-bus-master.html
 18                                                    18 
 19 In short, the UART peripheral must support ful     19 In short, the UART peripheral must support full-duplex and operate in
 20 open-drain mode. The timing patterns are gener     20 open-drain mode. The timing patterns are generated by a specific
 21 combination of baud-rate and transmitted byte,     21 combination of baud-rate and transmitted byte, which corresponds to a
 22 1-Wire read bit, write bit or reset pulse.         22 1-Wire read bit, write bit or reset pulse.
 23                                                    23 
 24 For instance the timing pattern for a 1-Wire r     24 For instance the timing pattern for a 1-Wire reset and presence detect uses
 25 the baud-rate 9600, i.e. 104.2 us per bit. The     25 the baud-rate 9600, i.e. 104.2 us per bit. The transmitted byte 0xf0 over
 26 UART (least significant bit first, start-bit l     26 UART (least significant bit first, start-bit low) sets the reset low time
 27 for 1-Wire to 521 us. A present 1-Wire device      27 for 1-Wire to 521 us. A present 1-Wire device changes the received byte by
 28 pulling the line low, which is used by the dri     28 pulling the line low, which is used by the driver to evaluate the result of
 29 the 1-Wire operation.                              29 the 1-Wire operation.
 30                                                    30 
 31 Similar for a 1-Wire read bit or write bit, wh     31 Similar for a 1-Wire read bit or write bit, which uses the baud-rate
 32 115200, i.e. 8.7 us per bit. The transmitted b     32 115200, i.e. 8.7 us per bit. The transmitted byte 0x80 is used for a
 33 Write-0 operation (low time 69.6us) and the by     33 Write-0 operation (low time 69.6us) and the byte 0xff for Read-0, Read-1
 34 and Write-1 (low time 8.7us).                      34 and Write-1 (low time 8.7us).
 35                                                    35 
 36 The default baud-rate for reset and presence d     36 The default baud-rate for reset and presence detection is 9600 and for
 37 a 1-Wire read or write operation 115200. In ca     37 a 1-Wire read or write operation 115200. In case the actual baud-rate
 38 is different from the requested one, the trans     38 is different from the requested one, the transmitted byte is adapted
 39 to generate the 1-Wire timing patterns.            39 to generate the 1-Wire timing patterns.
 40                                                    40 
 41                                                    41 
 42 Usage                                              42 Usage
 43 -----                                              43 -----
 44                                                    44 
 45 Specify the UART 1-wire bus in the device tree     45 Specify the UART 1-wire bus in the device tree by adding the single child
 46 onewire to the serial node (e.g. uart0). For e     46 onewire to the serial node (e.g. uart0). For example:
 47 ::                                                 47 ::
 48                                                    48 
 49   @uart0 {                                         49   @uart0 {
 50     ...                                            50     ...
 51     onewire {                                      51     onewire {
 52       compatible = "w1-uart";                      52       compatible = "w1-uart";
 53     };                                             53     };
 54   };                                               54   };
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php