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/exynos3250-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 Exynos3250 Clock Controller
    2 
    3 The Exynos3250 clock controller generates and supplies clock to various
    4 controllers within the Exynos3250 SoC.
    5 
    6 Required Properties:
    7 
    8 - compatible: should be one of the following.
    9   - "samsung,exynos3250-cmu" - controller compatible with Exynos3250 SoC.
   10   - "samsung,exynos3250-cmu-dmc" - controller compatible with
   11     Exynos3250 SoC for Dynamic Memory Controller domain.
   12   - "samsung,exynos3250-cmu-isp" - ISP block clock controller compatible
   13      with Exynos3250 SOC
   14 
   15 - reg: physical base address of the controller and length of memory mapped
   16   region.
   17 
   18 - #clock-cells: should be 1.
   19 
   20 Each clock is assigned an identifier and client nodes can use this identifier
   21 to specify the clock which they consume.
   22 
   23 All available clocks are defined as preprocessor macros in
   24 dt-bindings/clock/exynos3250.h header and can be used in device
   25 tree sources.
   26 
   27 Example 1: Examples of clock controller nodes are listed below.
   28 
   29         cmu: clock-controller@10030000 {
   30                 compatible = "samsung,exynos3250-cmu";
   31                 reg = <0x10030000 0x20000>;
   32                 #clock-cells = <1>;
   33         };
   34 
   35         cmu_dmc: clock-controller@105c0000 {
   36                 compatible = "samsung,exynos3250-cmu-dmc";
   37                 reg = <0x105C0000 0x2000>;
   38                 #clock-cells = <1>;
   39         };
   40 
   41         cmu_isp: clock-controller@10048000 {
   42                 compatible = "samsung,exynos3250-cmu-isp";
   43                 reg = <0x10048000 0x1000>;
   44                 #clock-cells = <1>;
   45         };
   46 
   47 Example 2: UART controller node that consumes the clock generated by the clock
   48            controller. Refer to the standard clock bindings for information
   49            about 'clocks' and 'clock-names' property.
   50 
   51         serial@13800000 {
   52                 compatible = "samsung,exynos4210-uart";
   53                 reg = <0x13800000 0x100>;
   54                 interrupts = <0 109 0>;
   55                 clocks = <&cmu CLK_UART0>, <&cmu CLK_SCLK_UART0>;
   56                 clock-names = "uart", "clk_uart_baud0";
   57         };

Cache object: bce315021ef748f3367298169ee96f23


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