blob: 0bd9d4aad0c0eeecc23ac809a43287ae9bfb061b [file] [log] [blame]
Johannes Berg02a7fa02011-04-05 09:42:12 -07001/******************************************************************************
2 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02003 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
Johannes Berg02a7fa02011-04-05 09:42:12 -07004 *
5 * Portions of this file are derived from the ipw3945 project.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
19 *
20 * The full GNU General Public License is included in this distribution in the
21 * file called LICENSE.
22 *
23 * Contact Information:
24 * Intel Linux Wireless <ilw@linux.intel.com>
25 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26 *
27 *****************************************************************************/
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -070028#include <linux/delay.h>
29#include <linux/device.h>
Don Frycc5f7e32012-05-16 22:54:27 +020030#include <linux/export.h>
Johannes Berg02a7fa02011-04-05 09:42:12 -070031
Johannes Berg48e29342013-03-01 00:13:33 +010032#include "iwl-drv.h"
Johannes Berg02a7fa02011-04-05 09:42:12 -070033#include "iwl-io.h"
Paul Bolle6ac7d112012-06-06 14:17:46 +020034#include "iwl-csr.h"
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -070035#include "iwl-debug.h"
Liad Kaufman4c9706d2014-04-27 16:46:09 +030036#include "iwl-prph.h"
Inbal Hacohen313b0a22013-06-24 10:35:53 +030037#include "iwl-fh.h"
Johannes Berg02a7fa02011-04-05 09:42:12 -070038
Emmanuel Grumbacha73a2ce2015-08-23 13:29:36 +030039void iwl_write8(struct iwl_trans *trans, u32 ofs, u8 val)
40{
41 trace_iwlwifi_dev_iowrite8(trans->dev, ofs, val);
42 iwl_trans_write8(trans, ofs, val);
43}
44IWL_EXPORT_SYMBOL(iwl_write8);
45
46void iwl_write32(struct iwl_trans *trans, u32 ofs, u32 val)
47{
48 trace_iwlwifi_dev_iowrite32(trans->dev, ofs, val);
49 iwl_trans_write32(trans, ofs, val);
50}
51IWL_EXPORT_SYMBOL(iwl_write32);
52
53u32 iwl_read32(struct iwl_trans *trans, u32 ofs)
54{
55 u32 val = iwl_trans_read32(trans, ofs);
Emmanuel Grumbach89ced542015-08-26 13:50:59 +030056
Emmanuel Grumbacha73a2ce2015-08-23 13:29:36 +030057 trace_iwlwifi_dev_ioread32(trans->dev, ofs, val);
58 return val;
59}
60IWL_EXPORT_SYMBOL(iwl_read32);
61
Johannes Berg02a7fa02011-04-05 09:42:12 -070062#define IWL_POLL_INTERVAL 10 /* microseconds */
63
Emmanuel Grumbach1042db22012-01-03 16:56:15 +020064int iwl_poll_bit(struct iwl_trans *trans, u32 addr,
Johannes Berg02a7fa02011-04-05 09:42:12 -070065 u32 bits, u32 mask, int timeout)
66{
67 int t = 0;
68
69 do {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +020070 if ((iwl_read32(trans, addr) & mask) == (bits & mask))
Johannes Berg02a7fa02011-04-05 09:42:12 -070071 return t;
72 udelay(IWL_POLL_INTERVAL);
73 t += IWL_POLL_INTERVAL;
74 } while (t < timeout);
75
76 return -ETIMEDOUT;
77}
Johannes Berg48e29342013-03-01 00:13:33 +010078IWL_EXPORT_SYMBOL(iwl_poll_bit);
Johannes Berg02a7fa02011-04-05 09:42:12 -070079
Emmanuel Grumbach1042db22012-01-03 16:56:15 +020080u32 iwl_read_direct32(struct iwl_trans *trans, u32 reg)
Johannes Berg02a7fa02011-04-05 09:42:12 -070081{
Emmanuel Grumbachabae2382012-12-31 13:46:42 +020082 u32 value = 0x5a5a5a5a;
Johannes Berg02a7fa02011-04-05 09:42:12 -070083 unsigned long flags;
Lilach Edelsteine56b04e2013-01-16 11:34:49 +020084 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
Emmanuel Grumbachabae2382012-12-31 13:46:42 +020085 value = iwl_read32(trans, reg);
Lilach Edelsteine56b04e2013-01-16 11:34:49 +020086 iwl_trans_release_nic_access(trans, &flags);
Emmanuel Grumbachabae2382012-12-31 13:46:42 +020087 }
Johannes Berg02a7fa02011-04-05 09:42:12 -070088
89 return value;
90}
Johannes Berg48e29342013-03-01 00:13:33 +010091IWL_EXPORT_SYMBOL(iwl_read_direct32);
Johannes Berg02a7fa02011-04-05 09:42:12 -070092
Emmanuel Grumbach1042db22012-01-03 16:56:15 +020093void iwl_write_direct32(struct iwl_trans *trans, u32 reg, u32 value)
Johannes Berg02a7fa02011-04-05 09:42:12 -070094{
95 unsigned long flags;
96
Lilach Edelsteine56b04e2013-01-16 11:34:49 +020097 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +020098 iwl_write32(trans, reg, value);
Lilach Edelsteine56b04e2013-01-16 11:34:49 +020099 iwl_trans_release_nic_access(trans, &flags);
Johannes Berg02a7fa02011-04-05 09:42:12 -0700100 }
Johannes Berg02a7fa02011-04-05 09:42:12 -0700101}
Johannes Berg48e29342013-03-01 00:13:33 +0100102IWL_EXPORT_SYMBOL(iwl_write_direct32);
Johannes Berg02a7fa02011-04-05 09:42:12 -0700103
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200104int iwl_poll_direct_bit(struct iwl_trans *trans, u32 addr, u32 mask,
Johannes Berg02a7fa02011-04-05 09:42:12 -0700105 int timeout)
106{
107 int t = 0;
108
109 do {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200110 if ((iwl_read_direct32(trans, addr) & mask) == mask)
Johannes Berg02a7fa02011-04-05 09:42:12 -0700111 return t;
112 udelay(IWL_POLL_INTERVAL);
113 t += IWL_POLL_INTERVAL;
114 } while (t < timeout);
115
116 return -ETIMEDOUT;
117}
Johannes Berg48e29342013-03-01 00:13:33 +0100118IWL_EXPORT_SYMBOL(iwl_poll_direct_bit);
Johannes Berg02a7fa02011-04-05 09:42:12 -0700119
Alexander Bondara812cba2014-02-18 16:45:00 +0100120u32 __iwl_read_prph(struct iwl_trans *trans, u32 ofs)
Johannes Berg02a7fa02011-04-05 09:42:12 -0700121{
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200122 u32 val = iwl_trans_read_prph(trans, ofs);
123 trace_iwlwifi_dev_ioread_prph32(trans->dev, ofs, val);
124 return val;
Johannes Berg02a7fa02011-04-05 09:42:12 -0700125}
126
Alexander Bondara812cba2014-02-18 16:45:00 +0100127void __iwl_write_prph(struct iwl_trans *trans, u32 ofs, u32 val)
Johannes Berg02a7fa02011-04-05 09:42:12 -0700128{
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200129 trace_iwlwifi_dev_iowrite_prph32(trans->dev, ofs, val);
130 iwl_trans_write_prph(trans, ofs, val);
Johannes Berg02a7fa02011-04-05 09:42:12 -0700131}
132
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200133u32 iwl_read_prph(struct iwl_trans *trans, u32 ofs)
Johannes Berg02a7fa02011-04-05 09:42:12 -0700134{
135 unsigned long flags;
Emmanuel Grumbachabae2382012-12-31 13:46:42 +0200136 u32 val = 0x5a5a5a5a;
Johannes Berg02a7fa02011-04-05 09:42:12 -0700137
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200138 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
Emmanuel Grumbachabae2382012-12-31 13:46:42 +0200139 val = __iwl_read_prph(trans, ofs);
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200140 iwl_trans_release_nic_access(trans, &flags);
Emmanuel Grumbachabae2382012-12-31 13:46:42 +0200141 }
Johannes Berg02a7fa02011-04-05 09:42:12 -0700142 return val;
143}
Johannes Berg48e29342013-03-01 00:13:33 +0100144IWL_EXPORT_SYMBOL(iwl_read_prph);
Johannes Berg02a7fa02011-04-05 09:42:12 -0700145
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200146void iwl_write_prph(struct iwl_trans *trans, u32 ofs, u32 val)
Johannes Berg02a7fa02011-04-05 09:42:12 -0700147{
148 unsigned long flags;
149
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200150 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200151 __iwl_write_prph(trans, ofs, val);
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200152 iwl_trans_release_nic_access(trans, &flags);
Johannes Berg02a7fa02011-04-05 09:42:12 -0700153 }
Johannes Berg02a7fa02011-04-05 09:42:12 -0700154}
Johannes Berg48e29342013-03-01 00:13:33 +0100155IWL_EXPORT_SYMBOL(iwl_write_prph);
Johannes Berg02a7fa02011-04-05 09:42:12 -0700156
Eran Harary189fa2f2014-01-23 16:26:32 +0200157int iwl_poll_prph_bit(struct iwl_trans *trans, u32 addr,
158 u32 bits, u32 mask, int timeout)
159{
160 int t = 0;
161
162 do {
163 if ((iwl_read_prph(trans, addr) & mask) == (bits & mask))
164 return t;
165 udelay(IWL_POLL_INTERVAL);
166 t += IWL_POLL_INTERVAL;
167 } while (t < timeout);
168
169 return -ETIMEDOUT;
170}
171
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200172void iwl_set_bits_prph(struct iwl_trans *trans, u32 ofs, u32 mask)
Johannes Berg02a7fa02011-04-05 09:42:12 -0700173{
174 unsigned long flags;
175
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200176 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200177 __iwl_write_prph(trans, ofs,
178 __iwl_read_prph(trans, ofs) | mask);
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200179 iwl_trans_release_nic_access(trans, &flags);
Stanislaw Gruszkabfe4b802012-03-07 09:52:24 -0800180 }
Johannes Berg02a7fa02011-04-05 09:42:12 -0700181}
Johannes Berg48e29342013-03-01 00:13:33 +0100182IWL_EXPORT_SYMBOL(iwl_set_bits_prph);
Johannes Berg02a7fa02011-04-05 09:42:12 -0700183
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200184void iwl_set_bits_mask_prph(struct iwl_trans *trans, u32 ofs,
Johannes Berg02a7fa02011-04-05 09:42:12 -0700185 u32 bits, u32 mask)
186{
187 unsigned long flags;
188
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200189 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200190 __iwl_write_prph(trans, ofs,
191 (__iwl_read_prph(trans, ofs) & mask) | bits);
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200192 iwl_trans_release_nic_access(trans, &flags);
Stanislaw Gruszkabfe4b802012-03-07 09:52:24 -0800193 }
Johannes Berg02a7fa02011-04-05 09:42:12 -0700194}
Johannes Berg48e29342013-03-01 00:13:33 +0100195IWL_EXPORT_SYMBOL(iwl_set_bits_mask_prph);
Johannes Berg02a7fa02011-04-05 09:42:12 -0700196
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200197void iwl_clear_bits_prph(struct iwl_trans *trans, u32 ofs, u32 mask)
Johannes Berg02a7fa02011-04-05 09:42:12 -0700198{
199 unsigned long flags;
200 u32 val;
201
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200202 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
Emmanuel Grumbach6a06b6c2012-12-02 13:07:30 +0200203 val = __iwl_read_prph(trans, ofs);
204 __iwl_write_prph(trans, ofs, (val & ~mask));
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200205 iwl_trans_release_nic_access(trans, &flags);
Stanislaw Gruszkabfe4b802012-03-07 09:52:24 -0800206 }
Johannes Berg02a7fa02011-04-05 09:42:12 -0700207}
Johannes Berg48e29342013-03-01 00:13:33 +0100208IWL_EXPORT_SYMBOL(iwl_clear_bits_prph);
Inbal Hacohen313b0a22013-06-24 10:35:53 +0300209
Liad Kaufman4c9706d2014-04-27 16:46:09 +0300210void iwl_force_nmi(struct iwl_trans *trans)
211{
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200212 if (trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
Emmanuel Grumbach66396582015-01-07 16:44:06 +0200213 iwl_write_prph(trans, DEVICE_SET_NMI_REG,
214 DEVICE_SET_NMI_VAL_DRV);
215 iwl_write_prph(trans, DEVICE_SET_NMI_REG,
216 DEVICE_SET_NMI_VAL_HW);
217 } else {
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200218 iwl_write_prph(trans, DEVICE_SET_NMI_8000_REG,
219 DEVICE_SET_NMI_8000_VAL);
Emmanuel Grumbach9b666db2015-03-09 12:37:59 +0200220 iwl_write_prph(trans, DEVICE_SET_NMI_REG,
221 DEVICE_SET_NMI_VAL_DRV);
Emmanuel Grumbach66396582015-01-07 16:44:06 +0200222 }
Liad Kaufman4c9706d2014-04-27 16:46:09 +0300223}
224IWL_EXPORT_SYMBOL(iwl_force_nmi);
225
Inbal Hacohen313b0a22013-06-24 10:35:53 +0300226static const char *get_fh_string(int cmd)
227{
228#define IWL_CMD(x) case x: return #x
229 switch (cmd) {
230 IWL_CMD(FH_RSCSR_CHNL0_STTS_WPTR_REG);
231 IWL_CMD(FH_RSCSR_CHNL0_RBDCB_BASE_REG);
232 IWL_CMD(FH_RSCSR_CHNL0_WPTR);
233 IWL_CMD(FH_MEM_RCSR_CHNL0_CONFIG_REG);
234 IWL_CMD(FH_MEM_RSSR_SHARED_CTRL_REG);
235 IWL_CMD(FH_MEM_RSSR_RX_STATUS_REG);
236 IWL_CMD(FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV);
237 IWL_CMD(FH_TSSR_TX_STATUS_REG);
238 IWL_CMD(FH_TSSR_TX_ERROR_REG);
239 default:
240 return "UNKNOWN";
241 }
242#undef IWL_CMD
243}
244
245int iwl_dump_fh(struct iwl_trans *trans, char **buf)
246{
247 int i;
248 static const u32 fh_tbl[] = {
249 FH_RSCSR_CHNL0_STTS_WPTR_REG,
250 FH_RSCSR_CHNL0_RBDCB_BASE_REG,
251 FH_RSCSR_CHNL0_WPTR,
252 FH_MEM_RCSR_CHNL0_CONFIG_REG,
253 FH_MEM_RSSR_SHARED_CTRL_REG,
254 FH_MEM_RSSR_RX_STATUS_REG,
255 FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV,
256 FH_TSSR_TX_STATUS_REG,
257 FH_TSSR_TX_ERROR_REG
258 };
259
260#ifdef CONFIG_IWLWIFI_DEBUGFS
261 if (buf) {
262 int pos = 0;
263 size_t bufsz = ARRAY_SIZE(fh_tbl) * 48 + 40;
264
265 *buf = kmalloc(bufsz, GFP_KERNEL);
266 if (!*buf)
267 return -ENOMEM;
268
269 pos += scnprintf(*buf + pos, bufsz - pos,
270 "FH register values:\n");
271
272 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++)
273 pos += scnprintf(*buf + pos, bufsz - pos,
274 " %34s: 0X%08x\n",
275 get_fh_string(fh_tbl[i]),
276 iwl_read_direct32(trans, fh_tbl[i]));
277
278 return pos;
279 }
280#endif
281
282 IWL_ERR(trans, "FH register values:\n");
283 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++)
284 IWL_ERR(trans, " %34s: 0X%08x\n",
285 get_fh_string(fh_tbl[i]),
286 iwl_read_direct32(trans, fh_tbl[i]));
287
288 return 0;
289}