maxim,max310x.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. * Maxim MAX310X advanced Universal Asynchronous Receiver-Transmitter (UART)
  2. Required properties:
  3. - compatible: Should be one of the following:
  4. - "maxim,max3107" for Maxim MAX3107,
  5. - "maxim,max3108" for Maxim MAX3108,
  6. - "maxim,max3109" for Maxim MAX3109,
  7. - "maxim,max14830" for Maxim MAX14830.
  8. - reg: SPI chip select number.
  9. - interrupt-parent: The phandle for the interrupt controller that
  10. services interrupts for this IC.
  11. - interrupts: Specifies the interrupt source of the parent interrupt
  12. controller. The format of the interrupt specifier depends on the
  13. parent interrupt controller.
  14. - clocks: phandle to the IC source clock.
  15. - clock-names: Should be "xtal" if clock is an external crystal or
  16. "osc" if an external clock source is used.
  17. Optional properties:
  18. - gpio-controller: Marks the device node as a GPIO controller.
  19. - #gpio-cells: Should be two. The first cell is the GPIO number and
  20. the second cell is used to specify the GPIO polarity:
  21. 0 = active high,
  22. 1 = active low.
  23. Example:
  24. max14830: max14830@0 {
  25. compatible = "maxim,max14830";
  26. reg = <0>;
  27. clocks = <&clk20m>;
  28. clock-names = "osc";
  29. interrupt-parent = <&gpio3>;
  30. interrupts = <7 IRQ_TYPE_EDGE_FALLING>;
  31. gpio-controller;
  32. #gpio-cells = <2>;
  33. };