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

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/pci/rockchip-dw-pcie.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/pci/rockchip-dw-pcie.yaml (Version linux-6.12-rc7) and /Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml (Version linux-4.17.19)


  1 # SPDX-License-Identifier: (GPL-2.0-only OR BS    
  2 %YAML 1.2                                         
  3 ---                                               
  4 $id: http://devicetree.org/schemas/pci/rockchi    
  5 $schema: http://devicetree.org/meta-schemas/co    
  6                                                   
  7 title: DesignWare based PCIe Root Complex cont    
  8                                                   
  9 maintainers:                                      
 10   - Shawn Lin <shawn.lin@rock-chips.com>           
 11   - Simon Xue <xxm@rock-chips.com>                 
 12   - Heiko Stuebner <heiko@sntech.de>               
 13                                                   
 14 description: |+                                   
 15   RK3568 SoC PCIe Root Complex controller is b    
 16   PCIe IP and thus inherits all the common pro    
 17   snps,dw-pcie.yaml.                              
 18                                                   
 19 allOf:                                            
 20   - $ref: /schemas/pci/snps,dw-pcie.yaml#         
 21   - $ref: /schemas/pci/rockchip-dw-pcie-common    
 22                                                   
 23 properties:                                       
 24   compatible:                                     
 25     oneOf:                                        
 26       - const: rockchip,rk3568-pcie               
 27       - items:                                    
 28           - enum:                                 
 29               - rockchip,rk3588-pcie              
 30           - const: rockchip,rk3568-pcie           
 31                                                   
 32   reg:                                            
 33     items:                                        
 34       - description: Data Bus Interface (DBI)     
 35       - description: Rockchip designed configu    
 36       - description: Config registers             
 37                                                   
 38   reg-names:                                      
 39     items:                                        
 40       - const: dbi                                
 41       - const: apb                                
 42       - const: config                             
 43                                                   
 44   legacy-interrupt-controller:                    
 45     description: Interrupt controller node for    
 46     type: object                                  
 47     additionalProperties: false                   
 48     properties:                                   
 49       "#address-cells":                           
 50         const: 0                                  
 51                                                   
 52       "#interrupt-cells":                         
 53         const: 1                                  
 54                                                   
 55       interrupt-controller: true                  
 56                                                   
 57       interrupts:                                 
 58         items:                                    
 59           - description: combined legacy inter    
 60     required:                                     
 61       - "#address-cells"                          
 62       - "#interrupt-cells"                        
 63       - interrupt-controller                      
 64       - interrupts                                
 65                                                   
 66   msi-map: true                                   
 67                                                   
 68   ranges:                                         
 69     minItems: 2                                   
 70     maxItems: 3                                   
 71                                                   
 72   vpcie3v3-supply: true                           
 73                                                   
 74 required:                                         
 75   - msi-map                                       
 76                                                   
 77 unevaluatedProperties: false                      
 78                                                   
 79 examples:                                         
 80   - |                                             
 81     #include <dt-bindings/interrupt-controller    
 82                                                   
 83     bus {                                         
 84         #address-cells = <2>;                     
 85         #size-cells = <2>;                        
 86                                                   
 87         pcie3x2: pcie@fe280000 {                  
 88             compatible = "rockchip,rk3568-pcie    
 89             reg = <0x3 0xc0800000 0x0 0x390000    
 90                   <0x0 0xfe280000 0x0 0x10000>    
 91                   <0x3 0x80000000 0x0 0x100000    
 92             reg-names = "dbi", "apb", "config"    
 93             bus-range = <0x20 0x2f>;              
 94             clocks = <&cru 143>, <&cru 144>,      
 95                      <&cru 145>, <&cru 146>,      
 96                      <&cru 147>;                  
 97             clock-names = "aclk_mst", "aclk_sl    
 98                           "aclk_dbi", "pclk",     
 99                           "aux";                  
100             device_type = "pci";                  
101             interrupts = <GIC_SPI 160 IRQ_TYPE    
102                          <GIC_SPI 159 IRQ_TYPE    
103                          <GIC_SPI 158 IRQ_TYPE    
104                          <GIC_SPI 157 IRQ_TYPE    
105                          <GIC_SPI 156 IRQ_TYPE    
106             interrupt-names = "sys", "pmc", "m    
107             linux,pci-domain = <2>;               
108             max-link-speed = <2>;                 
109             msi-map = <0x2000 &its 0x2000 0x10    
110             num-lanes = <2>;                      
111             phys = <&pcie30phy>;                  
112             phy-names = "pcie-phy";               
113             power-domains = <&power 15>;          
114             ranges = <0x81000000 0x0 0x8080000    
115                      <0x83000000 0x0 0x8090000    
116             resets = <&cru 193>;                  
117             reset-names = "pipe";                 
118             #address-cells = <3>;                 
119             #size-cells = <2>;                    
120                                                   
121             legacy-interrupt-controller {         
122                 interrupt-controller;             
123                 #address-cells = <0>;             
124                 #interrupt-cells = <1>;           
125                 interrupt-parent = <&gic>;        
126                 interrupts = <GIC_SPI 72 IRQ_T    
127             };                                    
128         };                                        
129     };                                            
130 ...                                               
                                                      

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