ARM: mm: Recreate kernel mappings in early_paging_init()
[linux/fpc-iii.git] / drivers / net / wireless / iwlwifi / iwl-io.c
blobdfa4d2e3aaa28124c6074a497d7e003d72cd86a2
1 /******************************************************************************
3 * Copyright(c) 2003 - 2013 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
14 * more details.
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>
32 #include "iwl-drv.h"
33 #include "iwl-io.h"
34 #include "iwl-csr.h"
35 #include "iwl-debug.h"
36 #include "iwl-fh.h"
37 #include "iwl-csr.h"
39 #define IWL_POLL_INTERVAL 10 /* microseconds */
41 int iwl_poll_bit(struct iwl_trans *trans, u32 addr,
42 u32 bits, u32 mask, int timeout)
44 int t = 0;
46 do {
47 if ((iwl_read32(trans, addr) & mask) == (bits & mask))
48 return t;
49 udelay(IWL_POLL_INTERVAL);
50 t += IWL_POLL_INTERVAL;
51 } while (t < timeout);
53 return -ETIMEDOUT;
55 IWL_EXPORT_SYMBOL(iwl_poll_bit);
57 u32 iwl_read_direct32(struct iwl_trans *trans, u32 reg)
59 u32 value = 0x5a5a5a5a;
60 unsigned long flags;
61 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
62 value = iwl_read32(trans, reg);
63 iwl_trans_release_nic_access(trans, &flags);
66 return value;
68 IWL_EXPORT_SYMBOL(iwl_read_direct32);
70 void iwl_write_direct32(struct iwl_trans *trans, u32 reg, u32 value)
72 unsigned long flags;
74 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
75 iwl_write32(trans, reg, value);
76 iwl_trans_release_nic_access(trans, &flags);
79 IWL_EXPORT_SYMBOL(iwl_write_direct32);
81 int iwl_poll_direct_bit(struct iwl_trans *trans, u32 addr, u32 mask,
82 int timeout)
84 int t = 0;
86 do {
87 if ((iwl_read_direct32(trans, addr) & mask) == mask)
88 return t;
89 udelay(IWL_POLL_INTERVAL);
90 t += IWL_POLL_INTERVAL;
91 } while (t < timeout);
93 return -ETIMEDOUT;
95 IWL_EXPORT_SYMBOL(iwl_poll_direct_bit);
97 static inline u32 __iwl_read_prph(struct iwl_trans *trans, u32 ofs)
99 u32 val = iwl_trans_read_prph(trans, ofs);
100 trace_iwlwifi_dev_ioread_prph32(trans->dev, ofs, val);
101 return val;
104 static inline void __iwl_write_prph(struct iwl_trans *trans, u32 ofs, u32 val)
106 trace_iwlwifi_dev_iowrite_prph32(trans->dev, ofs, val);
107 iwl_trans_write_prph(trans, ofs, val);
110 u32 iwl_read_prph(struct iwl_trans *trans, u32 ofs)
112 unsigned long flags;
113 u32 val = 0x5a5a5a5a;
115 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
116 val = __iwl_read_prph(trans, ofs);
117 iwl_trans_release_nic_access(trans, &flags);
119 return val;
121 IWL_EXPORT_SYMBOL(iwl_read_prph);
123 void iwl_write_prph(struct iwl_trans *trans, u32 ofs, u32 val)
125 unsigned long flags;
127 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
128 __iwl_write_prph(trans, ofs, val);
129 iwl_trans_release_nic_access(trans, &flags);
132 IWL_EXPORT_SYMBOL(iwl_write_prph);
134 void iwl_set_bits_prph(struct iwl_trans *trans, u32 ofs, u32 mask)
136 unsigned long flags;
138 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
139 __iwl_write_prph(trans, ofs,
140 __iwl_read_prph(trans, ofs) | mask);
141 iwl_trans_release_nic_access(trans, &flags);
144 IWL_EXPORT_SYMBOL(iwl_set_bits_prph);
146 void iwl_set_bits_mask_prph(struct iwl_trans *trans, u32 ofs,
147 u32 bits, u32 mask)
149 unsigned long flags;
151 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
152 __iwl_write_prph(trans, ofs,
153 (__iwl_read_prph(trans, ofs) & mask) | bits);
154 iwl_trans_release_nic_access(trans, &flags);
157 IWL_EXPORT_SYMBOL(iwl_set_bits_mask_prph);
159 void iwl_clear_bits_prph(struct iwl_trans *trans, u32 ofs, u32 mask)
161 unsigned long flags;
162 u32 val;
164 if (iwl_trans_grab_nic_access(trans, false, &flags)) {
165 val = __iwl_read_prph(trans, ofs);
166 __iwl_write_prph(trans, ofs, (val & ~mask));
167 iwl_trans_release_nic_access(trans, &flags);
170 IWL_EXPORT_SYMBOL(iwl_clear_bits_prph);
172 static const char *get_fh_string(int cmd)
174 #define IWL_CMD(x) case x: return #x
175 switch (cmd) {
176 IWL_CMD(FH_RSCSR_CHNL0_STTS_WPTR_REG);
177 IWL_CMD(FH_RSCSR_CHNL0_RBDCB_BASE_REG);
178 IWL_CMD(FH_RSCSR_CHNL0_WPTR);
179 IWL_CMD(FH_MEM_RCSR_CHNL0_CONFIG_REG);
180 IWL_CMD(FH_MEM_RSSR_SHARED_CTRL_REG);
181 IWL_CMD(FH_MEM_RSSR_RX_STATUS_REG);
182 IWL_CMD(FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV);
183 IWL_CMD(FH_TSSR_TX_STATUS_REG);
184 IWL_CMD(FH_TSSR_TX_ERROR_REG);
185 default:
186 return "UNKNOWN";
188 #undef IWL_CMD
191 int iwl_dump_fh(struct iwl_trans *trans, char **buf)
193 int i;
194 static const u32 fh_tbl[] = {
195 FH_RSCSR_CHNL0_STTS_WPTR_REG,
196 FH_RSCSR_CHNL0_RBDCB_BASE_REG,
197 FH_RSCSR_CHNL0_WPTR,
198 FH_MEM_RCSR_CHNL0_CONFIG_REG,
199 FH_MEM_RSSR_SHARED_CTRL_REG,
200 FH_MEM_RSSR_RX_STATUS_REG,
201 FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV,
202 FH_TSSR_TX_STATUS_REG,
203 FH_TSSR_TX_ERROR_REG
206 #ifdef CONFIG_IWLWIFI_DEBUGFS
207 if (buf) {
208 int pos = 0;
209 size_t bufsz = ARRAY_SIZE(fh_tbl) * 48 + 40;
211 *buf = kmalloc(bufsz, GFP_KERNEL);
212 if (!*buf)
213 return -ENOMEM;
215 pos += scnprintf(*buf + pos, bufsz - pos,
216 "FH register values:\n");
218 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++)
219 pos += scnprintf(*buf + pos, bufsz - pos,
220 " %34s: 0X%08x\n",
221 get_fh_string(fh_tbl[i]),
222 iwl_read_direct32(trans, fh_tbl[i]));
224 return pos;
226 #endif
228 IWL_ERR(trans, "FH register values:\n");
229 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++)
230 IWL_ERR(trans, " %34s: 0X%08x\n",
231 get_fh_string(fh_tbl[i]),
232 iwl_read_direct32(trans, fh_tbl[i]));
234 return 0;