brcm,bcm6345-uart.txt 660 B

123456789101112131415161718192021222324252627282930313233343536
  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. Optional properties:
  9. - clock-names: Should be "refclk".
  10. Example:
  11. uart0: serial@14e00520 {
  12. compatible = "brcm,bcm6345-uart";
  13. reg = <0x14e00520 0x18>;
  14. interrupt-parent = <&periph_intc>;
  15. interrupts = <2>;
  16. clocks = <&periph_clk>;
  17. clock-names = "refclk";
  18. };
  19. clocks {
  20. periph_clk: periph_clk@0 {
  21. compatible = "fixed-clock";
  22. #clock-cells = <0>;
  23. clock-frequency = <54000000>;
  24. };
  25. };