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/clock/qca,ath79-pll.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 Binding for Qualcomm Atheros AR7xxx/AR9XXX PLL controller
    2 
    3 The PPL controller provides the 3 main clocks of the SoC: CPU, DDR and AHB.
    4 
    5 Required Properties:
    6 - compatible: has to be "qca,<soctype>-pll" and one of the following
    7   fallbacks:
    8   - "qca,ar7100-pll"
    9   - "qca,ar7240-pll"
   10   - "qca,ar9130-pll"
   11   - "qca,ar9330-pll"
   12   - "qca,ar9340-pll"
   13   - "qca,qca9550-pll"
   14 - reg: Base address and size of the controllers memory area
   15 - clock-names: Name of the input clock, has to be "ref"
   16 - clocks: phandle of the external reference clock
   17 - #clock-cells: has to be one
   18 
   19 Optional properties:
   20 - clock-output-names: should be "cpu", "ddr", "ahb"
   21 
   22 Example:
   23 
   24         pll-controller@18050000 {
   25                 compatible = "qca,ar9132-pll", "qca,ar9130-pll";
   26                 reg = <0x18050000 0x20>;
   27 
   28                 clock-names = "ref";
   29                 clocks = <&extosc>;
   30 
   31                 #clock-cells = <1>;
   32                 clock-output-names = "cpu", "ddr", "ahb";
   33         };

Cache object: f22a9fb43812dc5f504d3ec6862167b8


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