All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] [PATCH v2 1/3] ath10k: WMI API updates
@ 2013-04-24  6:53 Sujith Manoharan
  2013-04-24  6:53 ` [ath9k-devel] [PATCH v2 2/3] ath10k: Merge debug levels Sujith Manoharan
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Sujith Manoharan @ 2013-04-24  6:53 UTC (permalink / raw)
  To: ath9k-devel

From: Sujith Manoharan <c_manoha@qca.qualcomm.com>

To sync with new FW ver .614

Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
---
 drivers/net/wireless/ath/ath10k/hw.h  |  3 ++-
 drivers/net/wireless/ath/ath10k/wmi.c |  1 +
 drivers/net/wireless/ath/ath10k/wmi.h | 12 ++++++++++++
 3 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/drivers/net/wireless/ath/ath10k/hw.h b/drivers/net/wireless/ath/ath10k/hw.h
index 82465a8..c8f7e52 100644
--- a/drivers/net/wireless/ath/ath10k/hw.h
+++ b/drivers/net/wireless/ath/ath10k/hw.h
@@ -24,7 +24,7 @@
 #define SUPPORTED_FW_MAJOR	1
 #define SUPPORTED_FW_MINOR	0
 #define SUPPORTED_FW_RELEASE	0
-#define SUPPORTED_FW_BUILD	548
+#define SUPPORTED_FW_BUILD	614
 
 /* AR9888 1.0 definitions */
 #define AR9888_HW_1_0_VERSION		0x4000002c
@@ -50,6 +50,7 @@
 #define TARGET_AST_SKID_LIMIT			16
 #define TARGET_NUM_PEERS			16
 #define TARGET_NUM_OFFLOAD_PEERS		0
+#define TARGET_NUM_OFFLOAD_REORDER_BUFS         0
 #define TARGET_NUM_PEER_KEYS			2
 #define TARGET_NUM_TIDS	(2 * (TARGET_NUM_PEERS + TARGET_NUM_VDEV))
 #define TARGET_TX_CHAIN_MASK			0x7
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
index 3de4bb2..98c6f1a 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -1236,6 +1236,7 @@ int ath10k_wmi_cmd_init(struct ath10k *ar)
 		/* reserve an additional peer for each VDEV */
 		__cpu_to_le32(TARGET_NUM_PEERS + TARGET_NUM_VDEV),
 		__cpu_to_le32(TARGET_NUM_OFFLOAD_PEERS),
+		__cpu_to_le32(TARGET_NUM_OFFLOAD_REORDER_BUFS),
 		__cpu_to_le32(TARGET_NUM_PEER_KEYS),
 		__cpu_to_le32(TARGET_NUM_TIDS),
 		__cpu_to_le32(TARGET_AST_SKID_LIMIT),
diff --git a/drivers/net/wireless/ath/ath10k/wmi.h b/drivers/net/wireless/ath/ath10k/wmi.h
index 2bb8f0a..3a9f4ad 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.h
+++ b/drivers/net/wireless/ath/ath10k/wmi.h
@@ -378,6 +378,8 @@ enum wmi_cmd_id {
 	WMI_DBGLOG_CFG_CMDID,
 	WMI_PDEV_QVIT_CMDID,
 	WMI_PDEV_FTM_INTG_CMDID,
+	WMI_VDEV_SET_KEEPALIVE_CMDID,
+	WMI_VDEV_GET_KEEPALIVE_CMDID,
 	WMI_PDEV_UTF_CMDID,
 };
 
@@ -440,6 +442,8 @@ enum wmi_event_id {
 	WMI_PDEV_QVIT_EVENTID,
 	WMI_WLAN_PROFILE_DATA_EVENTID,
 	WMI_PDEV_FTM_INTG_EVENTID,
+	WMI_WLAN_FREQ_AVOID_EVENTID,
+	WMI_VDEV_GET_KEEPALIVE_EVENTID,
 	WMI_PDEV_UTF_EVENTID,
 };
 
@@ -748,6 +752,9 @@ struct wmi_resource_config {
 	 */
 	__le32 num_offload_peers;
 
+	/* For target-based RX reordering */
+	__le32 num_offload_reorder_bufs;
+
 	/* number of keys per peer */
 	__le32 num_peer_keys;
 
@@ -1054,6 +1061,9 @@ struct wmi_start_scan_cmd {
 	__le32 probe_delay;
 	/* Scan control flags */
 	__le32 scan_ctrl_flags;
+
+	/* Burst duration time in msecs */
+	__le32 burst_duration;
 	/*
 	 * TLV (tag length value )  paramerters follow the scan_cmd structure.
 	 * TLV can contain channel list, bssid list, ssid list and
@@ -2038,6 +2048,8 @@ enum wmi_vdev_param {
 	WMI_VDEV_PARAM_MCAST_INDICATE,
 	/* Tx DHCP packet indicate Enable/Disable */
 	WMI_VDEV_PARAM_DHCP_INDICATE,
+	/* Enable host inspection of Tx unicast packet to unknown destination */
+	WMI_VDEV_PARAM_UNKNOWN_DEST_INDICATE,
 
 	/* The minimum amount of time AP begins to consider STA inactive */
 	WMI_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS,
-- 
1.8.2.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-04-25  6:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-24  6:53 [ath9k-devel] [PATCH v2 1/3] ath10k: WMI API updates Sujith Manoharan
2013-04-24  6:53 ` [ath9k-devel] [PATCH v2 2/3] ath10k: Merge debug levels Sujith Manoharan
2013-04-24  6:53 ` [ath9k-devel] [PATCH v2 3/3] ath10k: Initialize CW mode Sujith Manoharan
2013-04-24  7:34 ` [ath9k-devel] [PATCH v2 1/3] ath10k: WMI API updates Markowski Bartosz
2013-04-24 12:06 ` Sujith Manoharan
2013-04-25  6:33   ` Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.