1* RS485 serial communications 2 3The RTS signal is capable of automatically controlling line direction for 4the built-in half-duplex mode. 5The properties described hereafter shall be given to a half-duplex capable 6UART node. 7 8Optional properties: 9- rs485-rts-delay: prop-encoded-array <a b> where: 10 * a is the delay between rts signal and beginning of data sent in milliseconds. 11 it corresponds to the delay before sending data. 12 * b is the delay between end of data sent and rts signal in milliseconds 13 it corresponds to the delay after sending data and actual release of the line. 14 If this property is not specified, <0 0> is assumed. 15- linux,rs485-enabled-at-boot-time: empty property telling to enable the rs485 16 feature at boot time. It can be disabled later with proper ioctl. 17- rs485-rx-during-tx: empty property that enables the receiving of data even 18 whilst sending data. 19 20RS485 example for Atmel USART: 21 usart0: serial@fff8c000 { 22 compatible = "atmel,at91sam9260-usart"; 23 reg = <0xfff8c000 0x4000>; 24 interrupts = <7>; 25 atmel,use-dma-rx; 26 atmel,use-dma-tx; 27 linux,rs485-enabled-at-boot-time; 28 rs485-rts-delay = <0 200>; // in milliseconds 29 }; 30 31