fsl,s32-linflexuart.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/serial/fsl,s32-linflexuart.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Freescale LINFlexD UART
  7. description: |
  8. The LINFlexD controller implements several LIN protocol versions, as well
  9. as support for full-duplex UART communication through 8-bit and 9-bit
  10. frames. See chapter 47 ("LINFlexD") in the reference manual
  11. https://www.nxp.com/webapp/Download?colCode=S32V234RM.
  12. maintainers:
  13. - Chester Lin <chester62515@gmail.com>
  14. allOf:
  15. - $ref: serial.yaml#
  16. properties:
  17. compatible:
  18. oneOf:
  19. - const: fsl,s32v234-linflexuart
  20. - items:
  21. - enum:
  22. - nxp,s32g2-linflexuart
  23. - nxp,s32g3-linflexuart
  24. - const: fsl,s32v234-linflexuart
  25. reg:
  26. maxItems: 1
  27. interrupts:
  28. maxItems: 1
  29. required:
  30. - compatible
  31. - reg
  32. - interrupts
  33. unevaluatedProperties: false
  34. examples:
  35. - |
  36. serial@40053000 {
  37. compatible = "fsl,s32v234-linflexuart";
  38. reg = <0x40053000 0x1000>;
  39. interrupts = <0 59 4>;
  40. };