technologic,nand.yaml 940 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/mtd/technologic,nand.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Technologic Systems NAND controller
  7. maintainers:
  8. - Nikita Shubin <nikita.shubin@maquefel.me>
  9. allOf:
  10. - $ref: nand-controller.yaml
  11. properties:
  12. compatible:
  13. oneOf:
  14. - const: technologic,ts7200-nand
  15. - items:
  16. - enum:
  17. - technologic,ts7300-nand
  18. - technologic,ts7260-nand
  19. - technologic,ts7250-nand
  20. - const: technologic,ts7200-nand
  21. reg:
  22. maxItems: 1
  23. required:
  24. - compatible
  25. - reg
  26. unevaluatedProperties: false
  27. examples:
  28. - |
  29. nand-controller@60000000 {
  30. compatible = "technologic,ts7200-nand";
  31. reg = <0x60000000 0x8000000>;
  32. #address-cells = <1>;
  33. #size-cells = <0>;
  34. nand@0 {
  35. reg = <0>;
  36. };
  37. };