brcm,bcm6345-uart.txt 575 B

123456789101112131415161718192021222324252627282930
  1. * BCM63xx UART
  2. Required properties:
  3. - compatible: "brcm,bcm6345-uart"
  4. - reg: The base address of the UART register bank.
  5. - interrupts: A single interrupt specifier.
  6. - clocks: Clock driving the hardware; used to figure out the baud rate
  7. divisor.
  8. Example:
  9. uart0: serial@14e00520 {
  10. compatible = "brcm,bcm6345-uart";
  11. reg = <0x14e00520 0x18>;
  12. interrupt-parent = <&periph_intc>;
  13. interrupts = <2>;
  14. clocks = <&periph_clk>;
  15. };
  16. clocks {
  17. periph_clk: periph_clk@0 {
  18. compatible = "fixed-clock";
  19. #clock-cells = <0>;
  20. clock-frequency = <54000000>;
  21. };
  22. };