fsl,imx-pata.yaml 876 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/ata/fsl,imx-pata.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Freescale i.MX PATA Controller
  7. maintainers:
  8. - Animesh Agarwal <animeshagarwal28@gmail.com>
  9. properties:
  10. compatible:
  11. oneOf:
  12. - items:
  13. - enum:
  14. - fsl,imx31-pata
  15. - fsl,imx51-pata
  16. - const: fsl,imx27-pata
  17. - const: fsl,imx27-pata
  18. reg:
  19. maxItems: 1
  20. interrupts:
  21. items:
  22. - description: PATA Controller interrupts
  23. clocks:
  24. items:
  25. - description: PATA Controller clocks
  26. additionalProperties: false
  27. examples:
  28. - |
  29. pata: pata@83fe0000 {
  30. compatible = "fsl,imx51-pata", "fsl,imx27-pata";
  31. reg = <0x83fe0000 0x4000>;
  32. interrupts = <70>;
  33. clocks = <&clks 161>;
  34. };