brcm,bcm2835-aux-uart.txt 435 B

12345678910111213141516171819
  1. * BCM2835 AUXILIAR UART
  2. Required properties:
  3. - compatible: "brcm,bcm2835-aux-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. uart1: serial@7e215040 {
  10. compatible = "brcm,bcm2835-aux-uart";
  11. reg = <0x7e215040 0x40>;
  12. interrupts = <1 29>;
  13. clocks = <&aux BCM2835_AUX_CLOCK_UART>;
  14. };