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

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/iio/afe/temperature-sense-rtd.yaml

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/devicetree/bindings/iio/afe/temperature-sense-rtd.yaml (Version linux-6.12-rc7) and /Documentation/devicetree/bindings/iio/afe/temperature-sense-rtd.yaml (Version linux-5.9.16)


  1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-C    
  2 %YAML 1.2                                         
  3 ---                                               
  4 $id: http://devicetree.org/schemas/iio/afe/tem    
  5 $schema: http://devicetree.org/meta-schemas/co    
  6                                                   
  7 title: Temperature Sense RTD                      
  8                                                   
  9 maintainers:                                      
 10   - Liam Beguin <liambeguin@gmail.com>             
 11                                                   
 12 description: |                                    
 13   RTDs (Resistance Temperature Detectors) are     
 14   used to get a linear voltage to temperature     
 15   (usually 0 to 100 degrees Celsius).             
 16                                                   
 17   When an io-channel measures the output volta    
 18   PT1000, the interesting measurement is almos    
 19   temperature, not the voltage output. This bi    
 20                                                   
 21   The general transfer function here is (using    
 22                                                   
 23     V = R(T) * iexc                               
 24     R(T) = r0 * (1 + alpha * T)                   
 25     T = 1 / (alpha * r0 * iexc) * (V - r0 * ie    
 26                                                   
 27   The following circuit matches what's in the     
 28                                                   
 29            5V0                                    
 30           -----                                   
 31             |                                     
 32         +---+----+                                
 33         |  R 5k  |                                
 34         +---+----+                                
 35             |                                     
 36             V 1mA                                 
 37             |                                     
 38             +---- Vout                            
 39             |                                     
 40         +---+----+                                
 41         | PT1000 |                                
 42         +---+----+                                
 43             |                                     
 44           -----                                   
 45            GND                                    
 46                                                   
 47 properties:                                       
 48   compatible:                                     
 49     const: temperature-sense-rtd                  
 50                                                   
 51   io-channels:                                    
 52     maxItems: 1                                   
 53     description: |                                
 54       Channel node of a voltage io-channel.       
 55                                                   
 56   '#io-channel-cells':                            
 57     const: 0                                      
 58                                                   
 59   excitation-current-microamp:                    
 60     description: The current fed through the R    
 61                                                   
 62   alpha-ppm-per-celsius:                          
 63     description: |                                
 64       alpha can also be expressed in micro-ohm    
 65       approximation of the resistance versus t    
 66       between 0 and 100 degrees Celsius.          
 67                                                   
 68       alpha = (R_100 - R_0) / (100 * R_0)         
 69                                                   
 70       Where, R_100 is the resistance of the se    
 71       R_0 (or r-naught-ohms) is the resistance    
 72       Celsius.                                    
 73                                                   
 74       Pure platinum has an alpha of 3925. Indu    
 75       and ASTM E-1137 specify an alpha of 3850    
 76                                                   
 77   r-naught-ohms:                                  
 78     description: |                                
 79       Resistance of the sensor at 0 degrees Ce    
 80       Common values are 100 for PT100, 500 for    
 81                                                   
 82 additionalProperties: false                       
 83 required:                                         
 84   - compatible                                    
 85   - io-channels                                   
 86   - excitation-current-microamp                   
 87   - alpha-ppm-per-celsius                         
 88   - r-naught-ohms                                 
 89                                                   
 90 examples:                                         
 91   - |                                             
 92     pt1000_1: temperature-sensor0 {               
 93         compatible = "temperature-sense-rtd";     
 94         #io-channel-cells = <0>;                  
 95         io-channels = <&temp_adc1 0>;             
 96                                                   
 97         excitation-current-microamp = <1000>;     
 98         alpha-ppm-per-celsius = <3908>;           
 99         r-naught-ohms = <1000>;                   
100     };                                            
101 ...                                               
                                                      

~ [ 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