|
@@ -1011,6 +1011,21 @@ struct iwl_event_log {
|
|
|
int wraps_more_count;
|
|
|
};
|
|
|
|
|
|
+/*
|
|
|
+ * host interrupt timeout value
|
|
|
+ * used with setting interrupt coalescing timer
|
|
|
+ * the CSR_INT_COALESCING is an 8 bit register in 32-usec unit
|
|
|
+ *
|
|
|
+ * default interrupt coalescing timer is 64 x 32 = 2048 usecs
|
|
|
+ * default interrupt coalescing calibration timer is 16 x 32 = 512 usecs
|
|
|
+ */
|
|
|
+#define IWL_HOST_INT_TIMEOUT_MAX (0xFF)
|
|
|
+#define IWL_HOST_INT_TIMEOUT_DEF (0x40)
|
|
|
+#define IWL_HOST_INT_TIMEOUT_MIN (0x0)
|
|
|
+#define IWL_HOST_INT_CALIB_TIMEOUT_MAX (0xFF)
|
|
|
+#define IWL_HOST_INT_CALIB_TIMEOUT_DEF (0x10)
|
|
|
+#define IWL_HOST_INT_CALIB_TIMEOUT_MIN (0x0)
|
|
|
+
|
|
|
struct iwl_priv {
|
|
|
|
|
|
/* ieee device used by generic ieee processing code */
|