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/exynos5410-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 * Samsung Exynos5410 Clock Controller
    2 
    3 The Exynos5410 clock controller generates and supplies clock to various
    4 controllers within the Exynos5410 SoC.
    5 
    6 Required Properties:
    7 
    8 - compatible: should be "samsung,exynos5410-clock"
    9 
   10 - reg: physical base address of the controller and length of memory mapped
   11   region.
   12 
   13 - #clock-cells: should be 1.
   14 
   15 - clocks: should contain an entry specifying the root clock from external
   16   oscillator supplied through XXTI or XusbXTI pin.  This clock should be
   17   defined using standard clock bindings with "fin_pll" clock-output-name.
   18   That clock is being passed internally to the 9 PLLs.
   19 
   20 All available clocks are defined as preprocessor macros in
   21 dt-bindings/clock/exynos5410.h header and can be used in device
   22 tree sources.
   23 
   24 Example 1: An example of a clock controller node is listed below.
   25 
   26         fin_pll: xxti {
   27                 compatible = "fixed-clock";
   28                 clock-frequency = <24000000>;
   29                 clock-output-names = "fin_pll";
   30                 #clock-cells = <0>;
   31         };
   32 
   33         clock: clock-controller@10010000 {
   34                 compatible = "samsung,exynos5410-clock";
   35                 reg = <0x10010000 0x30000>;
   36                 #clock-cells = <1>;
   37                 clocks = <&fin_pll>;
   38         };
   39 
   40 Example 2: UART controller node that consumes the clock generated by the clock
   41            controller. Refer to the standard clock bindings for information
   42            about 'clocks' and 'clock-names' property.
   43 
   44         serial@12c20000 {
   45                 compatible = "samsung,exynos4210-uart";
   46                 reg = <0x12C00000 0x100>;
   47                 interrupts = <0 51 0>;
   48                 clocks = <&clock CLK_UART0>, <&clock CLK_SCLK_UART0>;
   49                 clock-names = "uart", "clk_uart_baud0";
   50         };

Cache object: 23ca91ffd689d865be4158ea856a419e


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