arm,mps2-uart.txt 407 B

1234567891011121314151617181920
  1. ARM MPS2 UART
  2. Required properties:
  3. - compatible : Should be "arm,mps2-uart"
  4. - reg : Address and length of the register set
  5. - interrupts : Reference to the UART RX, TX and overrun interrupts
  6. Required clocking property:
  7. - clocks : The input clock of the UART
  8. Examples:
  9. uart0: serial@40004000 {
  10. compatible = "arm,mps2-uart";
  11. reg = <0x40004000 0x1000>;
  12. interrupts = <0 1 12>;
  13. clocks = <&sysclk>;
  14. };