1 /******************************************************************************
3 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
5 * Portions of this file are derived from the ipw3945 project.
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.
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
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
20 * The full GNU General Public License is included in this distribution in the
21 * file called LICENSE.
23 * Contact Information:
24 * Intel Linux Wireless <ilw@linux.intel.com>
25 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *****************************************************************************/
28 #include <linux/delay.h>
29 #include <linux/device.h>
30 #include <linux/export.h>
35 #include "iwl-debug.h"
39 void iwl_write8(struct iwl_trans
*trans
, u32 ofs
, u8 val
)
41 trace_iwlwifi_dev_iowrite8(trans
->dev
, ofs
, val
);
42 iwl_trans_write8(trans
, ofs
, val
);
44 IWL_EXPORT_SYMBOL(iwl_write8
);
46 void iwl_write32(struct iwl_trans
*trans
, u32 ofs
, u32 val
)
48 trace_iwlwifi_dev_iowrite32(trans
->dev
, ofs
, val
);
49 iwl_trans_write32(trans
, ofs
, val
);
51 IWL_EXPORT_SYMBOL(iwl_write32
);
53 u32
iwl_read32(struct iwl_trans
*trans
, u32 ofs
)
55 u32 val
= iwl_trans_read32(trans
, ofs
);
57 trace_iwlwifi_dev_ioread32(trans
->dev
, ofs
, val
);
60 IWL_EXPORT_SYMBOL(iwl_read32
);
62 #define IWL_POLL_INTERVAL 10 /* microseconds */
64 int iwl_poll_bit(struct iwl_trans
*trans
, u32 addr
,
65 u32 bits
, u32 mask
, int timeout
)
70 if ((iwl_read32(trans
, addr
) & mask
) == (bits
& mask
))
72 udelay(IWL_POLL_INTERVAL
);
73 t
+= IWL_POLL_INTERVAL
;
74 } while (t
< timeout
);
78 IWL_EXPORT_SYMBOL(iwl_poll_bit
);
80 u32
iwl_read_direct32(struct iwl_trans
*trans
, u32 reg
)
82 u32 value
= 0x5a5a5a5a;
84 if (iwl_trans_grab_nic_access(trans
, false, &flags
)) {
85 value
= iwl_read32(trans
, reg
);
86 iwl_trans_release_nic_access(trans
, &flags
);
91 IWL_EXPORT_SYMBOL(iwl_read_direct32
);
93 void iwl_write_direct32(struct iwl_trans
*trans
, u32 reg
, u32 value
)
97 if (iwl_trans_grab_nic_access(trans
, false, &flags
)) {
98 iwl_write32(trans
, reg
, value
);
99 iwl_trans_release_nic_access(trans
, &flags
);
102 IWL_EXPORT_SYMBOL(iwl_write_direct32
);
104 int iwl_poll_direct_bit(struct iwl_trans
*trans
, u32 addr
, u32 mask
,
110 if ((iwl_read_direct32(trans
, addr
) & mask
) == mask
)
112 udelay(IWL_POLL_INTERVAL
);
113 t
+= IWL_POLL_INTERVAL
;
114 } while (t
< timeout
);
118 IWL_EXPORT_SYMBOL(iwl_poll_direct_bit
);
120 u32
__iwl_read_prph(struct iwl_trans
*trans
, u32 ofs
)
122 u32 val
= iwl_trans_read_prph(trans
, ofs
);
123 trace_iwlwifi_dev_ioread_prph32(trans
->dev
, ofs
, val
);
127 void __iwl_write_prph(struct iwl_trans
*trans
, u32 ofs
, u32 val
)
129 trace_iwlwifi_dev_iowrite_prph32(trans
->dev
, ofs
, val
);
130 iwl_trans_write_prph(trans
, ofs
, val
);
133 u32
iwl_read_prph(struct iwl_trans
*trans
, u32 ofs
)
136 u32 val
= 0x5a5a5a5a;
138 if (iwl_trans_grab_nic_access(trans
, false, &flags
)) {
139 val
= __iwl_read_prph(trans
, ofs
);
140 iwl_trans_release_nic_access(trans
, &flags
);
144 IWL_EXPORT_SYMBOL(iwl_read_prph
);
146 void iwl_write_prph(struct iwl_trans
*trans
, u32 ofs
, u32 val
)
150 if (iwl_trans_grab_nic_access(trans
, false, &flags
)) {
151 __iwl_write_prph(trans
, ofs
, val
);
152 iwl_trans_release_nic_access(trans
, &flags
);
155 IWL_EXPORT_SYMBOL(iwl_write_prph
);
157 int iwl_poll_prph_bit(struct iwl_trans
*trans
, u32 addr
,
158 u32 bits
, u32 mask
, int timeout
)
163 if ((iwl_read_prph(trans
, addr
) & mask
) == (bits
& mask
))
165 udelay(IWL_POLL_INTERVAL
);
166 t
+= IWL_POLL_INTERVAL
;
167 } while (t
< timeout
);
172 void iwl_set_bits_prph(struct iwl_trans
*trans
, u32 ofs
, u32 mask
)
176 if (iwl_trans_grab_nic_access(trans
, false, &flags
)) {
177 __iwl_write_prph(trans
, ofs
,
178 __iwl_read_prph(trans
, ofs
) | mask
);
179 iwl_trans_release_nic_access(trans
, &flags
);
182 IWL_EXPORT_SYMBOL(iwl_set_bits_prph
);
184 void iwl_set_bits_mask_prph(struct iwl_trans
*trans
, u32 ofs
,
189 if (iwl_trans_grab_nic_access(trans
, false, &flags
)) {
190 __iwl_write_prph(trans
, ofs
,
191 (__iwl_read_prph(trans
, ofs
) & mask
) | bits
);
192 iwl_trans_release_nic_access(trans
, &flags
);
195 IWL_EXPORT_SYMBOL(iwl_set_bits_mask_prph
);
197 void iwl_clear_bits_prph(struct iwl_trans
*trans
, u32 ofs
, u32 mask
)
202 if (iwl_trans_grab_nic_access(trans
, false, &flags
)) {
203 val
= __iwl_read_prph(trans
, ofs
);
204 __iwl_write_prph(trans
, ofs
, (val
& ~mask
));
205 iwl_trans_release_nic_access(trans
, &flags
);
208 IWL_EXPORT_SYMBOL(iwl_clear_bits_prph
);
210 void iwl_force_nmi(struct iwl_trans
*trans
)
212 if (trans
->cfg
->device_family
!= IWL_DEVICE_FAMILY_8000
) {
213 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
);
218 iwl_write_prph(trans
, DEVICE_SET_NMI_8000_REG
,
219 DEVICE_SET_NMI_8000_VAL
);
220 iwl_write_prph(trans
, DEVICE_SET_NMI_REG
,
221 DEVICE_SET_NMI_VAL_DRV
);
224 IWL_EXPORT_SYMBOL(iwl_force_nmi
);
226 static const char *get_fh_string(int cmd
)
228 #define IWL_CMD(x) case x: return #x
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
);
245 int iwl_dump_fh(struct iwl_trans
*trans
, char **buf
)
248 static const u32 fh_tbl
[] = {
249 FH_RSCSR_CHNL0_STTS_WPTR_REG
,
250 FH_RSCSR_CHNL0_RBDCB_BASE_REG
,
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
,
260 #ifdef CONFIG_IWLWIFI_DEBUGFS
263 size_t bufsz
= ARRAY_SIZE(fh_tbl
) * 48 + 40;
265 *buf
= kmalloc(bufsz
, GFP_KERNEL
);
269 pos
+= scnprintf(*buf
+ pos
, bufsz
- pos
,
270 "FH register values:\n");
272 for (i
= 0; i
< ARRAY_SIZE(fh_tbl
); i
++)
273 pos
+= scnprintf(*buf
+ pos
, bufsz
- pos
,
275 get_fh_string(fh_tbl
[i
]),
276 iwl_read_direct32(trans
, fh_tbl
[i
]));
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
]));