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

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt

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/phy/phy-mvebu-comphy.txt (Version linux-6.12-rc7) and /Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt (Version linux-4.9.337)


  1 MVEBU comphy drivers                              
  2 --------------------                              
  3                                                   
  4 COMPHY controllers can be found on the followi    
  5 * Armada 7k/8k (on the CP110)                     
  6 * Armada 3700                                     
  7 It provides a number of shared PHYs used by va    
  8 USB, PCIe...).                                    
  9                                                   
 10 Required properties:                              
 11                                                   
 12 - compatible: should be one of:                   
 13   * "marvell,comphy-cp110" for Armada 7k/8k       
 14   * "marvell,comphy-a3700" for Armada 3700        
 15 - reg: should contain the COMPHY register(s) l    
 16   * 1 entry for Armada 7k/8k                      
 17   * 4 entries for Armada 3700 along with the c    
 18     properties, memory areas are:                 
 19     * Generic COMPHY registers                    
 20     * Lane 1 (PCIe/GbE)                           
 21     * Lane 0 (USB3/GbE)                           
 22     * Lane 2 (SATA/USB3)                          
 23 - marvell,system-controller: should contain a     
 24                              controller node (    
 25 - #address-cells: should be 1.                    
 26 - #size-cells: should be 0.                       
 27                                                   
 28 Optional properlties:                             
 29                                                   
 30 - clocks: pointers to the reference clocks for    
 31           consequently: MG clock, MG Core cloc    
 32 - clock-names: names of used clocks for CP110     
 33                "mg_clk", "mg_core_clk" and "ax    
 34                                                   
 35 A sub-node is required for each comphy lane pr    
 36                                                   
 37 Required properties (child nodes):                
 38                                                   
 39 - reg: COMPHY lane number.                        
 40 - #phy-cells : from the generic PHY bindings,     
 41                input port to use for a given c    
 42                                                   
 43 Examples:                                         
 44                                                   
 45         CP11X_LABEL(comphy): phy@120000 {         
 46                 compatible = "marvell,comphy-c    
 47                 reg = <0x120000 0x6000>;          
 48                 marvell,system-controller = <&    
 49                 clocks = <&CP11X_LABEL(clk) 1     
 50                          <&CP11X_LABEL(clk) 1     
 51                 clock-names = "mg_clk", "mg_co    
 52                 #address-cells = <1>;             
 53                 #size-cells = <0>;                
 54                                                   
 55                 CP11X_LABEL(comphy0): phy@0 {     
 56                         reg = <0>;                
 57                         #phy-cells = <1>;         
 58                 };                                
 59                                                   
 60                 CP11X_LABEL(comphy1): phy@1 {     
 61                         reg = <1>;                
 62                         #phy-cells = <1>;         
 63                 };                                
 64         };                                        
 65                                                   
 66         comphy: phy@18300 {                       
 67                 compatible = "marvell,comphy-a    
 68                 reg = <0x18300 0x300>,            
 69                 <0x1F000 0x400>,                  
 70                 <0x5C000 0x400>,                  
 71                 <0xe0178 0x8>;                    
 72                 reg-names = "comphy",             
 73                 "lane1_pcie_gbe",                 
 74                 "lane0_usb3_gbe",                 
 75                 "lane2_sata_usb3";                
 76                 #address-cells = <1>;             
 77                 #size-cells = <0>;                
 78                                                   
 79                                                   
 80                 comphy0: phy@0 {                  
 81                         reg = <0>;                
 82                         #phy-cells = <1>;         
 83                 };                                
 84                                                   
 85                 comphy1: phy@1 {                  
 86                         reg = <1>;                
 87                         #phy-cells = <1>;         
 88                 };                                
 89                                                   
 90                 comphy2: phy@2 {                  
 91                         reg = <2>;                
 92                         #phy-cells = <1>;         
 93                 };                                
 94         };                                        
                                                      

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