microchip,mpf-spi-fpga-mgr.yaml 970 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/fpga/microchip,mpf-spi-fpga-mgr.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Microchip Polarfire FPGA manager.
  7. maintainers:
  8. - Vladimir Georgiev <v.georgiev@metrotek.ru>
  9. description:
  10. Device Tree Bindings for Microchip Polarfire FPGA Manager using slave SPI to
  11. load the bitstream in .dat format.
  12. properties:
  13. compatible:
  14. enum:
  15. - microchip,mpf-spi-fpga-mgr
  16. reg:
  17. description: SPI chip select
  18. maxItems: 1
  19. required:
  20. - compatible
  21. - reg
  22. allOf:
  23. - $ref: /schemas/spi/spi-peripheral-props.yaml#
  24. unevaluatedProperties: false
  25. examples:
  26. - |
  27. spi {
  28. #address-cells = <1>;
  29. #size-cells = <0>;
  30. fpga_mgr@0 {
  31. compatible = "microchip,mpf-spi-fpga-mgr";
  32. spi-max-frequency = <20000000>;
  33. reg = <0>;
  34. };
  35. };