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/exynos5420-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 Exynos5420 Clock Controller
    2 
    3 The Exynos5420 clock controller generates and supplies clock to various
    4 controllers within the Exynos5420 SoC and for the Exynos5800 SoC.
    5 
    6 Required Properties:
    7 
    8 - compatible: should be one of the following.
    9   - "samsung,exynos5420-clock" - controller compatible with Exynos5420 SoC.
   10   - "samsung,exynos5800-clock" - controller compatible with Exynos5800 SoC.
   11 
   12 - reg: physical base address of the controller and length of memory mapped
   13   region.
   14 
   15 - #clock-cells: should be 1.
   16 
   17 Each clock is assigned an identifier and client nodes can use this identifier
   18 to specify the clock which they consume.
   19 
   20 All available clocks are defined as preprocessor macros in
   21 dt-bindings/clock/exynos5420.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         clock: clock-controller@10010000 {
   27                 compatible = "samsung,exynos5420-clock";
   28                 reg = <0x10010000 0x30000>;
   29                 #clock-cells = <1>;
   30         };
   31 
   32 Example 2: UART controller node that consumes the clock generated by the clock
   33            controller. Refer to the standard clock bindings for information
   34            about 'clocks' and 'clock-names' property.
   35 
   36         serial@13820000 {
   37                 compatible = "samsung,exynos4210-uart";
   38                 reg = <0x13820000 0x100>;
   39                 interrupts = <0 54 0>;
   40                 clocks = <&clock CLK_UART2>, <&clock CLK_SCLK_UART2>;
   41                 clock-names = "uart", "clk_uart_baud0";
   42         };

Cache object: 37a1a90280abd242dd01cc112d7296d4


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