esp,esp8089.yaml 759 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # SPDX-License-Identifier: GPL-2.0
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/net/wireless/esp,esp8089.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Espressif ESP8089
  7. maintainers:
  8. - Hans de Goede <hdegoede@redhat.com>
  9. properties:
  10. compatible:
  11. const: esp,esp8089
  12. reg:
  13. maxItems: 1
  14. esp,crystal-26M-en:
  15. $ref: /schemas/types.yaml#/definitions/uint32
  16. description: >
  17. Value for the crystal_26M_en firmware parameter
  18. required:
  19. - compatible
  20. - reg
  21. additionalProperties: false
  22. examples:
  23. - |
  24. mmc {
  25. #address-cells = <1>;
  26. #size-cells = <0>;
  27. wifi@1 {
  28. compatible = "esp,esp8089";
  29. reg = <1>;
  30. esp,crystal-26M-en = <2>;
  31. };
  32. };
  33. ...