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

Cache object: eeb58690b4c0c48b239407f7a6f70a34


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