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/rockchip,rk3399-cru.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 * Rockchip RK3399 Clock and Reset Unit
    2 
    3 The RK3399 clock controller generates and supplies clock to various
    4 controllers within the SoC and also implements a reset controller for SoC
    5 peripherals.
    6 
    7 Required Properties:
    8 
    9 - compatible: PMU for CRU should be "rockchip,rk3399-pmucru"
   10 - compatible: CRU should be "rockchip,rk3399-cru"
   11 - reg: physical base address of the controller and length of memory mapped
   12   region.
   13 - #clock-cells: should be 1.
   14 - #reset-cells: should be 1.
   15 
   16 Optional Properties:
   17 
   18 - rockchip,grf: phandle to the syscon managing the "general register files".
   19   It is used for GRF muxes, if missing any muxes present in the GRF will not
   20   be available.
   21 
   22 Each clock is assigned an identifier and client nodes can use this identifier
   23 to specify the clock which they consume. All available clocks are defined as
   24 preprocessor macros in the dt-bindings/clock/rk3399-cru.h headers and can be
   25 used in device tree sources. Similar macros exist for the reset sources in
   26 these files.
   27 
   28 External clocks:
   29 
   30 There are several clocks that are generated outside the SoC. It is expected
   31 that they are defined using standard clock bindings with following
   32 clock-output-names:
   33  - "xin24m" - crystal input - required,
   34  - "xin32k" - rtc clock - optional,
   35  - "clkin_gmac" - external GMAC clock - optional,
   36  - "clkin_i2s" - external I2S clock - optional,
   37  - "pclkin_cif" - external ISP clock - optional,
   38  - "clk_usbphy0_480m" - output clock of the pll in the usbphy0
   39  - "clk_usbphy1_480m" - output clock of the pll in the usbphy1
   40 
   41 Example: Clock controller node:
   42 
   43         pmucru: pmu-clock-controller@ff750000 {
   44                 compatible = "rockchip,rk3399-pmucru";
   45                 reg = <0x0 0xff750000 0x0 0x1000>;
   46                 #clock-cells = <1>;
   47                 #reset-cells = <1>;
   48         };
   49 
   50         cru: clock-controller@ff760000 {
   51                 compatible = "rockchip,rk3399-cru";
   52                 reg = <0x0 0xff760000 0x0 0x1000>;
   53                 #clock-cells = <1>;
   54                 #reset-cells = <1>;
   55         };
   56 
   57 Example: UART controller node that consumes the clock generated by the clock
   58   controller:
   59 
   60         uart0: serial@ff1a0000 {
   61                 compatible = "rockchip,rk3399-uart", "snps,dw-apb-uart";
   62                 reg = <0x0 0xff180000 0x0 0x100>;
   63                 clocks = <&cru SCLK_UART0>, <&cru PCLK_UART0>;
   64                 clock-names = "baudclk", "apb_pclk";
   65                 interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>;
   66                 reg-shift = <2>;
   67                 reg-io-width = <4>;
   68         };

Cache object: cf170a61ea510b89a4d6e42609b56cd8


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