Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Documentation: bindings: add dt documentation for dfi controller

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

Signed-off-by: Lin Huang <hl@rock-chips.com>
Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>

authored by

Lin Huang and committed by
MyungJoo Ham
d3d81969 c8a9a6da

+19
+19
Documentation/devicetree/bindings/devfreq/event/rockchip-dfi.txt
··· 1 + 2 + * Rockchip rk3399 DFI device 3 + 4 + Required properties: 5 + - compatible: Must be "rockchip,rk3399-dfi". 6 + - reg: physical base address of each DFI and length of memory mapped region 7 + - rockchip,pmu: phandle to the syscon managing the "pmu general register files" 8 + - clocks: phandles for clock specified in "clock-names" property 9 + - clock-names : the name of clock used by the DFI, must be "pclk_ddr_mon"; 10 + 11 + Example: 12 + dfi: dfi@0xff630000 { 13 + compatible = "rockchip,rk3399-dfi"; 14 + reg = <0x00 0xff630000 0x00 0x4000>; 15 + rockchip,pmu = <&pmugrf>; 16 + clocks = <&cru PCLK_DDR_MON>; 17 + clock-names = "pclk_ddr_mon"; 18 + status = "disabled"; 19 + };