Having generic hardware timer interrupt in debugfs
would come handy when we are debugging 3 WIRE
BTCOEX issues.
Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
                sc->debug.stats.istats.tsfoor++;
        if (status & ATH9K_INT_MCI)
                sc->debug.stats.istats.mci++;
+       if (status & ATH9K_INT_GENTIMER)
+               sc->debug.stats.istats.gen_timer++;
 }
 
 static ssize_t read_file_interrupt(struct file *file, char __user *user_buf,
        PR_IS("DTIM", dtim);
        PR_IS("TSFOOR", tsfoor);
        PR_IS("MCI", mci);
+       PR_IS("GENTIMER", gen_timer);
        PR_IS("TOTAL", total);
 
        len += snprintf(buf + len, mxlen - len,
 
  * from a beacon differs from the PCU's internal TSF by more than a
  * (programmable) threshold
  * @local_timeout: Internal bus timeout.
+ * @mci: MCI interrupt, specific to MCI based BTCOEX chipsets
+ * @gen_timer: Generic hardware timer interrupt
  */
 struct ath_interrupt_stats {
        u32 total;
        u32 bb_watchdog;
        u32 tsfoor;
        u32 mci;
+       u32 gen_timer;
 
        /* Sync-cause stats */
        u32 sync_cause_all;