sprd-uart.txt 474 B

12345678910111213141516171819
  1. * Spreadtrum serial UART
  2. Required properties:
  3. - compatible: must be one of:
  4. * "sprd,sc9836-uart"
  5. * "sprd,sc9860-uart", "sprd,sc9836-uart"
  6. - reg: offset and length of the register set for the device
  7. - interrupts: exactly one interrupt specifier
  8. - clocks: phandles to input clocks.
  9. Example:
  10. uart0: serial@0 {
  11. compatible = "sprd,sc9860-uart",
  12. "sprd,sc9836-uart";
  13. reg = <0x0 0x100>;
  14. interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
  15. clocks = <&ext_26m>;
  16. };