brcm,bcm6345-uart.yaml 797 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/serial/brcm,bcm6345-uart.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: BCM63xx UART
  7. maintainers:
  8. - Rafał Miłecki <rafal@milecki.pl>
  9. allOf:
  10. - $ref: serial.yaml#
  11. properties:
  12. compatible:
  13. const: brcm,bcm6345-uart
  14. reg:
  15. maxItems: 1
  16. interrupts:
  17. maxItems: 1
  18. clocks:
  19. maxItems: 1
  20. clock-names:
  21. const: refclk
  22. unevaluatedProperties: false
  23. required:
  24. - reg
  25. - interrupts
  26. - clocks
  27. examples:
  28. - |
  29. serial@14e00520 {
  30. compatible = "brcm,bcm6345-uart";
  31. reg = <0x14e00520 0x18>;
  32. interrupt-parent = <&periph_intc>;
  33. interrupts = <2>;
  34. clocks = <&periph_clk>;
  35. clock-names = "refclk";
  36. };