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/amlogic,meson8b-clkc.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 * Amlogic Meson8, Meson8b and Meson8m2 Clock and Reset Unit
    2 
    3 The Amlogic Meson8 / Meson8b / Meson8m2 clock controller generates and
    4 supplies clock to various controllers within the SoC.
    5 
    6 Required Properties:
    7 
    8 - compatible: must be one of:
    9         - "amlogic,meson8-clkc" for Meson8 (S802) SoCs
   10         - "amlogic,meson8b-clkc" for Meson8 (S805) SoCs
   11         - "amlogic,meson8m2-clkc" for Meson8m2 (S812) SoCs
   12 - #clock-cells: should be 1.
   13 - #reset-cells: should be 1.
   14 - clocks: list of clock phandles, one for each entry in clock-names
   15 - clock-names: should contain the following:
   16   * "xtal": the 24MHz system oscillator
   17   * "ddr_pll": the DDR PLL clock
   18   * "clk_32k": (if present) the 32kHz clock signal from GPIOAO_6 (CLK_32K_IN)
   19 
   20 Parent node should have the following properties :
   21 - compatible: "amlogic,meson-hhi-sysctrl", "simple-mfd", "syscon"
   22 - reg: base address and size of the HHI system control register space.
   23 
   24 Each clock is assigned an identifier and client nodes can use this identifier
   25 to specify the clock which they consume. All available clocks are defined as
   26 preprocessor macros in the dt-bindings/clock/meson8b-clkc.h header and can be
   27 used in device tree sources.
   28 
   29 Similarly a preprocessor macro for each reset line is defined in
   30 dt-bindings/reset/amlogic,meson8b-clkc-reset.h (which can be used from the
   31 device tree sources).
   32 
   33 
   34 Example: Clock controller node:
   35 
   36         clkc: clock-controller {
   37                 compatible = "amlogic,meson8b-clkc";
   38                 #clock-cells = <1>;
   39                 #reset-cells = <1>;
   40         };
   41 
   42 
   43 Example: UART controller node that consumes the clock generated by the clock
   44   controller:
   45 
   46         uart_AO: serial@c81004c0 {
   47                 compatible = "amlogic,meson-uart";
   48                 reg = <0xc81004c0 0x14>;
   49                 interrupts = <0 90 1>;
   50                 clocks = <&clkc CLKID_CLK81>;
   51         };

Cache object: e01e8c86c1d2ba87045e2b1a87a62f7a


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