Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3d81969 authored by Lin Huang's avatar Lin Huang Committed by MyungJoo Ham
Browse files

Documentation: bindings: add dt documentation for dfi controller



This patch adds the documentation for rockchip dfi devfreq-event driver.

Signed-off-by: default avatarLin Huang <hl@rock-chips.com>
Acked-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: default avatarMyungJoo Ham <myungjoo.ham@samsung.com>
parent c8a9a6da
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line

* Rockchip rk3399 DFI device

Required properties:
- compatible: Must be "rockchip,rk3399-dfi".
- reg: physical base address of each DFI and length of memory mapped region
- rockchip,pmu: phandle to the syscon managing the "pmu general register files"
- clocks: phandles for clock specified in "clock-names" property
- clock-names : the name of clock used by the DFI, must be "pclk_ddr_mon";

Example:
	dfi: dfi@0xff630000 {
		compatible = "rockchip,rk3399-dfi";
		reg = <0x00 0xff630000 0x00 0x4000>;
		rockchip,pmu = <&pmugrf>;
		clocks = <&cru PCLK_DDR_MON>;
		clock-names = "pclk_ddr_mon";
		status = "disabled";
	};