xlnx,vcu.txt 987 B

12345678910111213141516171819202122232425262728293031
  1. LogicoreIP designed compatible with Xilinx ZYNQ family.
  2. -------------------------------------------------------
  3. General concept
  4. ---------------
  5. LogicoreIP design to provide the isolation between processing system
  6. and programmable logic. Also provides the list of register set to configure
  7. the frequency.
  8. Required properties:
  9. - compatible: shall be one of:
  10. "xlnx,vcu"
  11. "xlnx,vcu-logicoreip-1.0"
  12. - reg, reg-names: There are two sets of registers need to provide.
  13. 1. vcu slcr
  14. 2. Logicore
  15. reg-names should contain name for the each register sequence.
  16. - clocks: phandle for aclk and pll_ref clocksource
  17. - clock-names: The identification string, "aclk", is always required for
  18. the axi clock. "pll_ref" is required for pll.
  19. Example:
  20. xlnx_vcu: vcu@a0040000 {
  21. compatible = "xlnx,vcu-logicoreip-1.0";
  22. reg = <0x0 0xa0040000 0x0 0x1000>,
  23. <0x0 0xa0041000 0x0 0x1000>;
  24. reg-names = "vcu_slcr", "logicore";
  25. clocks = <&si570_1>, <&clkc 71>;
  26. clock-names = "pll_ref", "aclk";
  27. };