nxp,lpc1850-uart.txt 927 B

12345678910111213141516171819202122232425262728
  1. * NXP LPC1850 UART
  2. Required properties:
  3. - compatible : "nxp,lpc1850-uart", "ns16550a".
  4. - reg : offset and length of the register set for the device.
  5. - interrupts : should contain uart interrupt.
  6. - clocks : phandle to the input clocks.
  7. - clock-names : required elements: "uartclk", "reg".
  8. Optional properties:
  9. - dmas : Two or more DMA channel specifiers following the
  10. convention outlined in bindings/dma/dma.txt
  11. - dma-names : Names for the dma channels, if present. There must
  12. be at least one channel named "tx" for transmit
  13. and named "rx" for receive.
  14. Since it's also possible to also use the of_serial.c driver all
  15. parameters from 8250.txt also apply but are optional.
  16. Example:
  17. uart0: serial@40081000 {
  18. compatible = "nxp,lpc1850-uart", "ns16550a";
  19. reg = <0x40081000 0x1000>;
  20. reg-shift = <2>;
  21. interrupts = <24>;
  22. clocks = <&ccu2 CLK_APB0_UART0>, <&ccu1 CLK_CPU_UART0>;
  23. clock-names = "uartclk", "reg";
  24. };