The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/phy/rockchip-pcie-phy.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 Rockchip PCIE PHY
    2 -----------------------
    3 
    4 Required properties:
    5  - compatible: rockchip,rk3399-pcie-phy
    6  - clocks: Must contain an entry in clock-names.
    7         See ../clocks/clock-bindings.txt for details.
    8  - clock-names: Must be "refclk"
    9  - resets: Must contain an entry in reset-names.
   10         See ../reset/reset.txt for details.
   11  - reset-names: Must be "phy"
   12 
   13 Required properties for legacy PHY mode (deprecated):
   14  - #phy-cells: must be 0
   15 
   16 Required properties for per-lane PHY mode (preferred):
   17  - #phy-cells: must be 1
   18 
   19 Example:
   20 
   21 grf: syscon@ff770000 {
   22         compatible = "rockchip,rk3399-grf", "syscon", "simple-mfd";
   23         #address-cells = <1>;
   24         #size-cells = <1>;
   25 
   26         ...
   27 
   28         pcie_phy: pcie-phy {
   29                 compatible = "rockchip,rk3399-pcie-phy";
   30                 #phy-cells = <0>;
   31                 clocks = <&cru SCLK_PCIEPHY_REF>;
   32                 clock-names = "refclk";
   33                 resets = <&cru SRST_PCIEPHY>;
   34                 reset-names = "phy";
   35         };
   36 };

Cache object: 57c1b9cff330b2b96c07b151be41a3e4


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.