blob: 71e9e382ce80881dfbb43ea333e6c2e35158929b [file] [log] [blame]
Luciano Coelho274c66c2012-05-10 12:13:13 +03001/*
2 * This file is part of wl18xx
3 *
4 * Copyright (C) 2011 Texas Instruments Inc.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18 * 02110-1301 USA
19 *
20 */
21
22#ifndef __WL18XX_PRIV_H__
23#define __WL18XX_PRIV_H__
24
Luciano Coelho23ee9bf2012-05-10 12:13:29 +030025#include "conf.h"
Luciano Coelho274c66c2012-05-10 12:13:13 +030026
Arik Nemtsov4a1ccce2012-06-25 17:46:40 +030027/* minimum FW required for driver */
28#define WL18XX_CHIP_VER 8
Eliad Peller750e9d12014-12-29 08:24:07 +020029#define WL18XX_IFTYPE_VER 9
Luciano Coelho2f244562012-11-27 15:52:01 +020030#define WL18XX_MAJOR_VER WLCORE_FW_VER_IGNORE
31#define WL18XX_SUBTYPE_VER WLCORE_FW_VER_IGNORE
Eliad Peller750e9d12014-12-29 08:24:07 +020032#define WL18XX_MINOR_VER 11
Arik Nemtsov4a1ccce2012-06-25 17:46:40 +030033
Luciano Coelho274c66c2012-05-10 12:13:13 +030034#define WL18XX_CMD_MAX_SIZE 740
35
Igal Chernobelsky26a309c2012-07-29 18:21:12 +030036#define WL18XX_AGGR_BUFFER_SIZE (13 * PAGE_SIZE)
37
Igal Chernobelskyf1c434d2012-07-31 14:48:46 +030038#define WL18XX_NUM_TX_DESCRIPTORS 32
39#define WL18XX_NUM_RX_DESCRIPTORS 32
40
Arik Nemtsov16310202014-07-11 03:01:37 +030041#define WL18XX_NUM_MAC_ADDRESSES 2
Arik Nemtsovf4afbed2012-08-02 20:37:21 +030042
Eliad Peller028e7242014-02-10 13:47:25 +020043#define WL18XX_RX_BA_MAX_SESSIONS 13
Igal Chernobelskyd21553f2013-03-12 17:19:35 +020044
Eliad Peller028e7242014-02-10 13:47:25 +020045#define WL18XX_MAX_AP_STATIONS 10
46#define WL18XX_MAX_LINKS 16
Eliad Pellerda08fdf2014-02-10 13:47:22 +020047
Luciano Coelho274c66c2012-05-10 12:13:13 +030048struct wl18xx_priv {
49 /* buffer for sending commands to FW */
50 u8 cmd_buf[WL18XX_CMD_MAX_SIZE];
Arik Nemtsov872b3452012-05-10 12:13:25 +030051
Luciano Coelho23ee9bf2012-05-10 12:13:29 +030052 struct wl18xx_priv_conf conf;
53
Arik Nemtsov872b3452012-05-10 12:13:25 +030054 /* Index of last released Tx desc in FW */
55 u8 last_fw_rls_idx;
Luciano Coelhoa9c130d2012-05-10 12:13:37 +030056
Arik Nemtsov2fd8a3b2012-11-28 11:42:48 +020057 /* number of keys requiring extra spare mem-blocks */
58 int extra_spare_key_count;
Luciano Coelho274c66c2012-05-10 12:13:13 +030059};
60
Arik Nemtsov1fab39d2012-05-10 12:13:21 +030061#define WL18XX_FW_MAX_TX_STATUS_DESC 33
62
63struct wl18xx_fw_status_priv {
64 /*
65 * Index in released_tx_desc for first byte that holds
66 * released tx host desc
67 */
68 u8 fw_release_idx;
69
70 /*
71 * Array of host Tx descriptors, where fw_release_idx
72 * indicated the first released idx.
73 */
74 u8 released_tx_desc[WL18XX_FW_MAX_TX_STATUS_DESC];
75
Arik Nemtsovf1626fd2012-11-28 11:42:40 +020076 /* A bitmap representing the currently suspended links. The suspend
77 * is short lived, for multi-channel Tx requirements.
78 */
79 __le32 link_suspend_bitmap;
80
81 /* packet threshold for an "almost empty" AC,
82 * for Tx schedulng purposes
83 */
84 u8 tx_ac_threshold;
85
86 /* number of packets to queue up for a link in PS */
87 u8 tx_ps_threshold;
88
89 /* number of packet to queue up for a suspended link */
90 u8 tx_suspend_threshold;
91
92 /* Should have less than this number of packets in queue of a slow
93 * link to qualify as high priority link
94 */
95 u8 tx_slow_link_prio_threshold;
96
97 /* Should have less than this number of packets in queue of a fast
98 * link to qualify as high priority link
99 */
100 u8 tx_fast_link_prio_threshold;
101
102 /* Should have less than this number of packets in queue of a slow
103 * link before we stop queuing up packets for it.
104 */
105 u8 tx_slow_stop_threshold;
106
107 /* Should have less than this number of packets in queue of a fast
108 * link before we stop queuing up packets for it.
109 */
110 u8 tx_fast_stop_threshold;
111
112 u8 padding[3];
Arik Nemtsov1fab39d2012-05-10 12:13:21 +0300113};
114
Eliad Peller75fb4df2014-02-10 13:47:21 +0200115struct wl18xx_fw_packet_counters {
116 /* Cumulative counter of released packets per AC */
117 u8 tx_released_pkts[NUM_TX_QUEUES];
118
119 /* Cumulative counter of freed packets per HLID */
Eliad Pellerda08fdf2014-02-10 13:47:22 +0200120 u8 tx_lnk_free_pkts[WL18XX_MAX_LINKS];
Eliad Peller75fb4df2014-02-10 13:47:21 +0200121
122 /* Cumulative counter of released Voice memory blocks */
123 u8 tx_voice_released_blks;
124
125 /* Tx rate of the last transmitted packet */
126 u8 tx_last_rate;
127
128 u8 padding[2];
129} __packed;
130
131/* FW status registers */
132struct wl18xx_fw_status {
133 __le32 intr;
134 u8 fw_rx_counter;
135 u8 drv_rx_counter;
136 u8 reserved;
137 u8 tx_results_counter;
138 __le32 rx_pkt_descs[WL18XX_NUM_RX_DESCRIPTORS];
139
140 __le32 fw_localtime;
141
142 /*
143 * A bitmap (where each bit represents a single HLID)
144 * to indicate if the station is in PS mode.
145 */
146 __le32 link_ps_bitmap;
147
148 /*
149 * A bitmap (where each bit represents a single HLID) to indicate
150 * if the station is in Fast mode
151 */
152 __le32 link_fast_bitmap;
153
154 /* Cumulative counter of total released mem blocks since FW-reset */
155 __le32 total_released_blks;
156
157 /* Size (in Memory Blocks) of TX pool */
158 __le32 tx_total;
159
160 struct wl18xx_fw_packet_counters counters;
161
162 __le32 log_start_addr;
163
164 /* Private status to be used by the lower drivers */
165 struct wl18xx_fw_status_priv priv;
166} __packed;
167
Luciano Coelho283e8c42012-05-10 12:14:11 +0300168#define WL18XX_PHY_VERSION_MAX_LEN 20
169
170struct wl18xx_static_data_priv {
171 char phy_version[WL18XX_PHY_VERSION_MAX_LEN];
172};
173
Luciano Coelhobe652022012-05-10 12:13:41 +0300174struct wl18xx_clk_cfg {
175 u32 n;
176 u32 m;
177 u32 p;
178 u32 q;
179 bool swallow;
180};
181
182enum {
183 CLOCK_CONFIG_16_2_M = 1,
184 CLOCK_CONFIG_16_368_M,
185 CLOCK_CONFIG_16_8_M,
186 CLOCK_CONFIG_19_2_M,
187 CLOCK_CONFIG_26_M,
188 CLOCK_CONFIG_32_736_M,
189 CLOCK_CONFIG_33_6_M,
190 CLOCK_CONFIG_38_468_M,
191 CLOCK_CONFIG_52_M,
192
193 NUM_CLOCK_CONFIGS,
194};
195
Luciano Coelho274c66c2012-05-10 12:13:13 +0300196#endif /* __WL18XX_PRIV_H__ */