xlnx,zynqmp-pcap-fpga.yaml 835 B

123456789101112131415161718192021222324252627282930313233343536
  1. # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/fpga/xlnx,zynqmp-pcap-fpga.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Xilinx Zynq Ultrascale MPSoC FPGA Manager
  7. maintainers:
  8. - Nava kishore Manne <nava.kishore.manne@amd.com>
  9. description: |
  10. Device Tree Bindings for Zynq Ultrascale MPSoC FPGA Manager.
  11. The ZynqMP SoC uses the PCAP (Processor Configuration Port) to
  12. configure the Programmable Logic (PL). The configuration uses the
  13. firmware interface.
  14. properties:
  15. compatible:
  16. const: xlnx,zynqmp-pcap-fpga
  17. required:
  18. - compatible
  19. additionalProperties: false
  20. examples:
  21. - |
  22. firmware {
  23. zynqmp_firmware: zynqmp-firmware {
  24. zynqmp_pcap: pcap {
  25. compatible = "xlnx,zynqmp-pcap-fpga";
  26. };
  27. };
  28. };
  29. ...