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

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/serial/mediatek,uart.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/serial/mediatek,uart.yaml (Version linux-6.12-rc7) and /Documentation/devicetree/bindings/serial/mediatek,uart.yaml (Version linux-5.13.19)


  1 # SPDX-License-Identifier: (GPL-2.0-only OR BS    
  2 %YAML 1.2                                         
  3 ---                                               
  4 $id: http://devicetree.org/schemas/serial/medi    
  5 $schema: http://devicetree.org/meta-schemas/co    
  6                                                   
  7 title: MediaTek Universal Asynchronous Receive    
  8                                                   
  9 maintainers:                                      
 10   - Matthias Brugger <matthias.bgg@gmail.com>      
 11                                                   
 12 allOf:                                            
 13   - $ref: serial.yaml#                            
 14                                                   
 15 description: |                                    
 16   The MediaTek UART is based on the basic 8250    
 17   with 16550A, with enhancements for high spee    
 18   support for DMA.                                
 19                                                   
 20 properties:                                       
 21   compatible:                                     
 22     oneOf:                                        
 23       - const: mediatek,mt6577-uart               
 24       - items:                                    
 25           - enum:                                 
 26               - mediatek,mt2701-uart              
 27               - mediatek,mt2712-uart              
 28               - mediatek,mt6580-uart              
 29               - mediatek,mt6582-uart              
 30               - mediatek,mt6589-uart              
 31               - mediatek,mt6755-uart              
 32               - mediatek,mt6765-uart              
 33               - mediatek,mt6779-uart              
 34               - mediatek,mt6795-uart              
 35               - mediatek,mt6797-uart              
 36               - mediatek,mt7622-uart              
 37               - mediatek,mt7623-uart              
 38               - mediatek,mt7629-uart              
 39               - mediatek,mt7981-uart              
 40               - mediatek,mt7986-uart              
 41               - mediatek,mt7988-uart              
 42               - mediatek,mt8127-uart              
 43               - mediatek,mt8135-uart              
 44               - mediatek,mt8173-uart              
 45               - mediatek,mt8183-uart              
 46               - mediatek,mt8186-uart              
 47               - mediatek,mt8188-uart              
 48               - mediatek,mt8192-uart              
 49               - mediatek,mt8195-uart              
 50               - mediatek,mt8365-uart              
 51               - mediatek,mt8516-uart              
 52           - const: mediatek,mt6577-uart           
 53                                                   
 54   reg:                                            
 55     description: The base address of the UART     
 56     maxItems: 1                                   
 57                                                   
 58   clocks:                                         
 59     minItems: 1                                   
 60     items:                                        
 61       - description: The clock the baudrate is    
 62       - description: The bus clock for registe    
 63                                                   
 64   clock-names:                                    
 65     minItems: 1                                   
 66     items:                                        
 67       - const: baud                               
 68       - const: bus                                
 69                                                   
 70   dmas:                                           
 71     items:                                        
 72       - description: phandle to TX DMA            
 73       - description: phandle to RX DMA            
 74                                                   
 75   dma-names:                                      
 76     items:                                        
 77       - const: tx                                 
 78       - const: rx                                 
 79                                                   
 80   interrupts:                                     
 81     minItems: 1                                   
 82     maxItems: 2                                   
 83                                                   
 84   interrupt-names:                                
 85     description:                                  
 86       The UART interrupt and optionally the RX    
 87     minItems: 1                                   
 88     items:                                        
 89       - const: uart                               
 90       - const: wakeup                             
 91                                                   
 92   pinctrl-0: true                                 
 93   pinctrl-1: true                                 
 94                                                   
 95   pinctrl-names:                                  
 96     minItems: 1                                   
 97     items:                                        
 98       - const: default                            
 99       - const: sleep                              
100                                                   
101 required:                                         
102   - compatible                                    
103   - reg                                           
104   - clocks                                        
105   - interrupts                                    
106                                                   
107 unevaluatedProperties: false                      
108                                                   
109 examples:                                         
110   - |                                             
111     #include <dt-bindings/interrupt-controller    
112                                                   
113     serial@11006000 {                             
114         compatible = "mediatek,mt6589-uart", "    
115         reg = <0x11006000 0x400>;                 
116         interrupts = <GIC_SPI 51 IRQ_TYPE_LEVE    
117                      <GIC_SPI 52 IRQ_TYPE_EDGE    
118         interrupt-names = "uart", "wakeup";       
119         clocks = <&uart_clk>, <&bus_clk>;         
120         clock-names = "baud", "bus";              
121         pinctrl-0 = <&uart_pin>;                  
122         pinctrl-1 = <&uart_pin_sleep>;            
123         pinctrl-names = "default", "sleep";       
124     };                                            
                                                      

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