nvmem-deprecated-cells.yaml 734 B

12345678910111213141516171819202122232425262728
  1. # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/nvmem/nvmem-deprecated-cells.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: NVMEM old syntax for fixed cells
  7. maintainers:
  8. - Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
  9. description: |
  10. Before introducing NVMEM layouts all NVMEM (fixed) cells were defined
  11. as direct device subnodes. That syntax was replaced by "fixed-layout"
  12. and is deprecated now. No new bindings should use it.
  13. patternProperties:
  14. "@[0-9a-f]+(,[0-7])?$":
  15. type: object
  16. allOf:
  17. - $ref: layouts/fixed-cell.yaml
  18. - properties:
  19. compatible: false
  20. deprecated: true
  21. additionalProperties: true
  22. ...