*
  */
 
+#include <linux/atomic.h>
 #include <linux/clk.h>
 #include <linux/device.h>
 #include <linux/io.h>
 
        u8 tx_trigger;
        u8 rx_trigger;
+       atomic_t active;
        bool is_suspending;
        int wakeirq;
        int wakeups_enabled;
        unsigned int iir, lsr;
        int ret;
 
+       pm_runtime_get_noresume(port->dev);
+
+       /* Shallow idle state wake-up to an IO interrupt? */
+       if (atomic_add_unless(&priv->active, 1, 1)) {
+               priv->latency = priv->calc_latency;
+               schedule_work(&priv->qos_work);
+       }
+
 #ifdef CONFIG_SERIAL_8250_DMA
        if (up->dma) {
                ret = omap_8250_dma_handle_irq(port);
+               pm_runtime_mark_last_busy(port->dev);
+               pm_runtime_put(port->dev);
                return IRQ_RETVAL(ret);
        }
 #endif
 
-       serial8250_rpm_get(up);
        lsr = serial_port_in(port, UART_LSR);
        iir = serial_port_in(port, UART_IIR);
        ret = serial8250_handle_irq(port, iir);
                schedule_delayed_work(&up->overrun_backoff, delay);
        }
 
-       serial8250_rpm_put(up);
+       pm_runtime_mark_last_busy(port->dev);
+       pm_runtime_put(port->dev);
 
        return IRQ_RETVAL(ret);
 }
        u16 status;
        u8 iir;
 
-       serial8250_rpm_get(up);
-
        iir = serial_port_in(port, UART_IIR);
        if (iir & UART_IIR_NO_INT) {
-               serial8250_rpm_put(up);
                return IRQ_HANDLED;
        }
 
 
        uart_unlock_and_check_sysrq(port);
 
-       serial8250_rpm_put(up);
        return 1;
 }
 
        if (!of_get_available_child_count(pdev->dev.of_node))
                pm_runtime_set_autosuspend_delay(&pdev->dev, -1);
 
-       pm_runtime_irq_safe(&pdev->dev);
-
        pm_runtime_get_sync(&pdev->dev);
 
        omap_serial_fill_features_erratas(&up, priv);
 
        priv->latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE;
        schedule_work(&priv->qos_work);
+       atomic_set(&priv->active, 0);
 
        return 0;
 }
        struct omap8250_priv *priv = dev_get_drvdata(dev);
        struct uart_8250_port *up = NULL;
 
+       /* Did the hardware wake to a device IO interrupt before a wakeirq? */
+       if (atomic_read(&priv->active))
+               return 0;
+
        if (priv->line >= 0)
                up = serial8250_get_port(priv->line);
 
                uart_port_unlock_irq(&up->port);
        }
 
+       atomic_set(&priv->active, 1);
        priv->latency = priv->calc_latency;
        schedule_work(&priv->qos_work);
+
        return 0;
 }