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/moxa,moxart-clock.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 Device Tree Clock bindings for arch-moxart
    2 
    3 This binding uses the common clock binding[1].
    4 
    5 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
    6 
    7 MOXA ART SoCs allow to determine PLL output and APB frequencies
    8 by reading registers holding multiplier and divisor information.
    9 
   10 
   11 PLL:
   12 
   13 Required properties:
   14 - compatible : Must be "moxa,moxart-pll-clock"
   15 - #clock-cells : Should be 0
   16 - reg : Should contain registers location and length
   17 - clocks : Should contain phandle + clock-specifier for the parent clock
   18 
   19 Optional properties:
   20 - clock-output-names : Should contain clock name
   21 
   22 
   23 APB:
   24 
   25 Required properties:
   26 - compatible : Must be "moxa,moxart-apb-clock"
   27 - #clock-cells : Should be 0
   28 - reg : Should contain registers location and length
   29 - clocks : Should contain phandle + clock-specifier for the parent clock
   30 
   31 Optional properties:
   32 - clock-output-names : Should contain clock name
   33 
   34 
   35 For example:
   36 
   37         clk_pll: clk_pll@98100000 {
   38                 compatible = "moxa,moxart-pll-clock";
   39                 #clock-cells = <0>;
   40                 reg = <0x98100000 0x34>;
   41         };
   42 
   43         clk_apb: clk_apb@98100000 {
   44                 compatible = "moxa,moxart-apb-clock";
   45                 #clock-cells = <0>;
   46                 reg = <0x98100000 0x34>;
   47                 clocks = <&clk_pll>;
   48         };

Cache object: 7c81048956fc2bec360fe1c3183c7c22


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