/*********************** END TX SCHEDULER *************************************/
 
+/* Oscillator clock */
+#define OSC_CLK                                (0xa04068)
+#define OSC_CLK_FORCE_CONTROL          (0x8)
+
 #endif                         /* __iwl_prph_h__ */
 
                goto out;
        }
 
+       if (trans->cfg->host_interrupt_operation_mode) {
+               /*
+                * This is a bit of an abuse - This is needed for 7260 / 3160
+                * only check host_interrupt_operation_mode even if this is
+                * not related to host_interrupt_operation_mode.
+                *
+                * Enable the oscillator to count wake up time for L1 exit. This
+                * consumes slightly more power (100uA) - but allows to be sure
+                * that we wake up from L1 on time.
+                *
+                * This looks weird: read twice the same register, discard the
+                * value, set a bit, and yet again, read that same register
+                * just to discard the value. But that's the way the hardware
+                * seems to like it.
+                */
+               iwl_read_prph(trans, OSC_CLK);
+               iwl_read_prph(trans, OSC_CLK);
+               iwl_set_bits_prph(trans, OSC_CLK, OSC_CLK_FORCE_CONTROL);
+               iwl_read_prph(trans, OSC_CLK);
+               iwl_read_prph(trans, OSC_CLK);
+       }
+
        /*
         * Enable DMA clock and wait for it to stabilize.
         *