microchip,mchp48l640.yaml 916 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/mtd/microchip,mchp48l640.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Microchip 48l640 (and similar) serial EERAM
  7. maintainers:
  8. - Heiko Schocher <hs@denx.de>
  9. description: |
  10. The Microchip 48l640 is a 8KByte EERAM connected via SPI.
  11. datasheet: http://ww1.microchip.com/downloads/en/DeviceDoc/20006055B.pdf
  12. properties:
  13. compatible:
  14. enum:
  15. - fujitsu,mb85rs128ty
  16. - microchip,48l640
  17. reg:
  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. eeram@0 {
  31. compatible = "microchip,48l640";
  32. reg = <0>;
  33. spi-max-frequency = <20000000>;
  34. };
  35. };
  36. ...