rockchip-dfi.txt 622 B

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