atmel-usart.txt 782 B

12345678910111213141516171819202122232425262728
  1. * Atmel Universal Synchronous Asynchronous Receiver/Transmitter (USART)
  2. Required properties:
  3. - compatible: Should be "atmel,<chip>-usart"
  4. The compatible <chip> indicated will be the first SoC to support an
  5. additional mode or an USART new feature.
  6. - reg: Should contain registers location and length
  7. - interrupts: Should contain interrupt
  8. Optional properties:
  9. - atmel,use-dma-rx: use of PDC or DMA for receiving data
  10. - atmel,use-dma-tx: use of PDC or DMA for transmitting data
  11. <chip> compatible description:
  12. - at91rm9200: legacy USART support
  13. - at91sam9260: generic USART implementation for SAM9 SoCs
  14. Example:
  15. usart0: serial@fff8c000 {
  16. compatible = "atmel,at91sam9260-usart";
  17. reg = <0xfff8c000 0x4000>;
  18. interrupts = <7>;
  19. atmel,use-dma-rx;
  20. atmel,use-dma-tx;
  21. };