Refer to dma.txt and fsl-mxs-dma.txt for details.
 - dma-names: "rx" for RX channel, "tx" for TX channel.
 
+Optional properties:
+- fsl,uart-has-rtscts : Indicate the UART has RTS and CTS lines,
+       it also means you enable the DMA support for this UART.
+
 Example:
 auart0: serial@8006a000 {
        compatible = "fsl,imx28-auart", "fsl,imx23-auart";
 
 #define MXS_AUART_DMA_ENABLED  0x2
 #define MXS_AUART_DMA_TX_SYNC  2  /* bit 2 */
 #define MXS_AUART_DMA_RX_READY 3  /* bit 3 */
+#define MXS_AUART_RTSCTS       4  /* bit 4 */
        unsigned long flags;
        unsigned int ctrl;
        enum mxs_auart_type devtype;
                 * we can only implement the DMA support for auart
                 * in mx28.
                 */
-               if (is_imx28_auart(s) && (s->flags & MXS_AUART_DMA_CONFIG)) {
+               if (is_imx28_auart(s) && (s->flags & MXS_AUART_DMA_CONFIG)
+                               && test_bit(MXS_AUART_RTSCTS, &s->flags)) {
                        if (!mxs_auart_dma_init(s))
                                /* enable DMA tranfer */
                                ctrl2 |= AUART_CTRL2_TXDMAE | AUART_CTRL2_RXDMAE
 
        s->flags |= MXS_AUART_DMA_CONFIG;
 
+       if (of_get_property(np, "fsl,uart-has-rtscts", NULL))
+               set_bit(MXS_AUART_RTSCTS, &s->flags);
+
        return 0;
 }