iwl-io.h 13.1 KB
Newer Older
Z
Zhu Yi 已提交
1 2
/******************************************************************************
 *
R
Reinette Chatre 已提交
3
 * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved.
Z
Zhu Yi 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
 *
 * Portions of this file are derived from the ipw3945 project.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
 *
 * The full GNU General Public License is included in this distribution in the
 * file called LICENSE.
 *
 * Contact Information:
 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
 *
 *****************************************************************************/

29 30
#ifndef __iwl_io_h__
#define __iwl_io_h__
Z
Zhu Yi 已提交
31 32 33

#include <linux/io.h>

34
#include "iwl-debug.h"
Z
Zhu Yi 已提交
35 36 37 38 39 40 41 42 43 44

/*
 * IO, register, and NIC memory access functions
 *
 * NOTE on naming convention and macro usage for these
 *
 * A single _ prefix before a an access function means that no state
 * check or debug information is printed when that function is called.
 *
 * A double __ prefix before an access function means that state is checked
45 46
 * and the current line number and caller function name are printed in addition
 * to any other debug output.
Z
Zhu Yi 已提交
47 48
 *
 * The non-prefixed name is the #define that maps the caller into a
49 50
 * #define that provides the caller's name and __LINE__ to the double
 * prefix version.
Z
Zhu Yi 已提交
51 52 53
 *
 * If you wish to call the function without any debug or state checking,
 * you should use the single _ prefix version (as is used by dependent IO
54 55
 * routines, for example _iwl_read_direct32 calls the non-check version of
 * _iwl_read32.)
Z
Zhu Yi 已提交
56 57 58 59 60 61 62 63
 *
 * These declarations are *extremely* useful in quickly isolating code deltas
 * which result in misconfiguring of the hardware I/O.  In combination with
 * git-bisect and the IO debug level you can quickly determine the specific
 * commit which breaks the IO sequence to the hardware.
 *
 */

64
#define _iwl_write32(priv, ofs, val) writel((val), (priv)->hw_base + (ofs))
65
#ifdef CONFIG_IWLWIFI_DEBUG
66
static inline void __iwl_write32(const char *f, u32 l, struct iwl_priv *priv,
Z
Zhu Yi 已提交
67 68
				 u32 ofs, u32 val)
{
69
	IWL_DEBUG_IO("write32(0x%08X, 0x%08X) - %s %d\n", ofs, val, f, l);
70
	_iwl_write32(priv, ofs, val);
Z
Zhu Yi 已提交
71
}
72 73
#define iwl_write32(priv, ofs, val) \
	__iwl_write32(__FILE__, __LINE__, priv, ofs, val)
Z
Zhu Yi 已提交
74
#else
75
#define iwl_write32(priv, ofs, val) _iwl_write32(priv, ofs, val)
Z
Zhu Yi 已提交
76 77
#endif

78
#define _iwl_read32(priv, ofs) readl((priv)->hw_base + (ofs))
79
#ifdef CONFIG_IWLWIFI_DEBUG
80
static inline u32 __iwl_read32(char *f, u32 l, struct iwl_priv *priv, u32 ofs)
Z
Zhu Yi 已提交
81 82
{
	IWL_DEBUG_IO("read_direct32(0x%08X) - %s %d\n", ofs, f, l);
83
	return _iwl_read32(priv, ofs);
Z
Zhu Yi 已提交
84
}
85
#define iwl_read32(priv, ofs) __iwl_read32(__FILE__, __LINE__, priv, ofs)
Z
Zhu Yi 已提交
86
#else
87
#define iwl_read32(p, o) _iwl_read32(p, o)
Z
Zhu Yi 已提交
88 89
#endif

90
static inline int _iwl_poll_bit(struct iwl_priv *priv, u32 addr,
Z
Zhu Yi 已提交
91 92 93 94 95
				u32 bits, u32 mask, int timeout)
{
	int i = 0;

	do {
96
		if ((_iwl_read32(priv, addr) & mask) == (bits & mask))
Z
Zhu Yi 已提交
97 98 99 100 101 102 103
			return i;
		mdelay(10);
		i += 10;
	} while (i < timeout);

	return -ETIMEDOUT;
}
104
#ifdef CONFIG_IWLWIFI_DEBUG
105
static inline int __iwl_poll_bit(const char *f, u32 l,
106
				 struct iwl_priv *priv, u32 addr,
Z
Zhu Yi 已提交
107 108
				 u32 bits, u32 mask, int timeout)
{
109
	int ret = _iwl_poll_bit(priv, addr, bits, mask, timeout);
110 111 112
	IWL_DEBUG_IO("poll_bit(0x%08X, 0x%08X, 0x%08X) - %s- %s %d\n",
		     addr, bits, mask,
		     unlikely(ret  == -ETIMEDOUT)?"timeout":"", f, l);
113
	return ret;
Z
Zhu Yi 已提交
114
}
115 116
#define iwl_poll_bit(priv, addr, bits, mask, timeout) \
	__iwl_poll_bit(__FILE__, __LINE__, priv, addr, bits, mask, timeout)
Z
Zhu Yi 已提交
117
#else
118
#define iwl_poll_bit(p, a, b, m, t) _iwl_poll_bit(p, a, b, m, t)
Z
Zhu Yi 已提交
119 120
#endif

121
static inline void _iwl_set_bit(struct iwl_priv *priv, u32 reg, u32 mask)
Z
Zhu Yi 已提交
122
{
123
	_iwl_write32(priv, reg, _iwl_read32(priv, reg) | mask);
Z
Zhu Yi 已提交
124
}
125
#ifdef CONFIG_IWLWIFI_DEBUG
126
static inline void __iwl_set_bit(const char *f, u32 l,
127
				 struct iwl_priv *priv, u32 reg, u32 mask)
Z
Zhu Yi 已提交
128
{
129
	u32 val = _iwl_read32(priv, reg) | mask;
Z
Zhu Yi 已提交
130
	IWL_DEBUG_IO("set_bit(0x%08X, 0x%08X) = 0x%08X\n", reg, mask, val);
131
	_iwl_write32(priv, reg, val);
Z
Zhu Yi 已提交
132
}
133
#define iwl_set_bit(p, r, m) __iwl_set_bit(__FILE__, __LINE__, p, r, m)
Z
Zhu Yi 已提交
134
#else
135
#define iwl_set_bit(p, r, m) _iwl_set_bit(p, r, m)
Z
Zhu Yi 已提交
136 137
#endif

138
static inline void _iwl_clear_bit(struct iwl_priv *priv, u32 reg, u32 mask)
Z
Zhu Yi 已提交
139
{
140
	_iwl_write32(priv, reg, _iwl_read32(priv, reg) & ~mask);
Z
Zhu Yi 已提交
141
}
142
#ifdef CONFIG_IWLWIFI_DEBUG
143
static inline void __iwl_clear_bit(const char *f, u32 l,
144
				   struct iwl_priv *priv, u32 reg, u32 mask)
Z
Zhu Yi 已提交
145
{
146
	u32 val = _iwl_read32(priv, reg) & ~mask;
Z
Zhu Yi 已提交
147
	IWL_DEBUG_IO("clear_bit(0x%08X, 0x%08X) = 0x%08X\n", reg, mask, val);
148
	_iwl_write32(priv, reg, val);
Z
Zhu Yi 已提交
149
}
150
#define iwl_clear_bit(p, r, m) __iwl_clear_bit(__FILE__, __LINE__, p, r, m)
Z
Zhu Yi 已提交
151
#else
152
#define iwl_clear_bit(p, r, m) _iwl_clear_bit(p, r, m)
Z
Zhu Yi 已提交
153 154
#endif

155
static inline int _iwl_grab_nic_access(struct iwl_priv *priv)
Z
Zhu Yi 已提交
156
{
157
	int ret;
Z
Zhu Yi 已提交
158 159
	u32 gp_ctl;

160
#ifdef CONFIG_IWLWIFI_DEBUG
Z
Zhu Yi 已提交
161 162 163 164 165 166 167 168 169
	if (atomic_read(&priv->restrict_refcnt))
		return 0;
#endif
	if (test_bit(STATUS_RF_KILL_HW, &priv->status) ||
	    test_bit(STATUS_RF_KILL_SW, &priv->status)) {
		IWL_WARNING("WARNING: Requesting MAC access during RFKILL "
			"wakes up NIC\n");

		/* 10 msec allows time for NIC to complete its data save */
170
		gp_ctl = _iwl_read32(priv, CSR_GP_CNTRL);
Z
Zhu Yi 已提交
171 172 173 174 175 176 177 178 179 180
		if (gp_ctl & CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY) {
			IWL_DEBUG_RF_KILL("Wait for complete power-down, "
				"gpctl = 0x%08x\n", gp_ctl);
			mdelay(10);
		} else
			IWL_DEBUG_RF_KILL("power-down complete, "
					  "gpctl = 0x%08x\n", gp_ctl);
	}

	/* this bit wakes up the NIC */
181 182
	_iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
	ret = _iwl_poll_bit(priv, CSR_GP_CNTRL,
Z
Zhu Yi 已提交
183 184 185
			   CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN,
			   (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY |
			    CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP), 50);
186
	if (ret < 0) {
Z
Zhu Yi 已提交
187 188 189 190
		IWL_ERROR("MAC is in deep sleep!\n");
		return -EIO;
	}

191
#ifdef CONFIG_IWLWIFI_DEBUG
Z
Zhu Yi 已提交
192 193 194 195 196
	atomic_inc(&priv->restrict_refcnt);
#endif
	return 0;
}

197
#ifdef CONFIG_IWLWIFI_DEBUG
198
static inline int __iwl_grab_nic_access(const char *f, u32 l,
199
					       struct iwl_priv *priv)
Z
Zhu Yi 已提交
200 201
{
	if (atomic_read(&priv->restrict_refcnt))
202
		IWL_ERROR("Grabbing access while already held %s %d.\n", f, l);
Z
Zhu Yi 已提交
203

204
	IWL_DEBUG_IO("grabbing nic access - %s %d\n", f, l);
205
	return _iwl_grab_nic_access(priv);
Z
Zhu Yi 已提交
206
}
207 208
#define iwl_grab_nic_access(priv) \
	__iwl_grab_nic_access(__FILE__, __LINE__, priv)
Z
Zhu Yi 已提交
209
#else
210 211
#define iwl_grab_nic_access(priv) \
	_iwl_grab_nic_access(priv)
Z
Zhu Yi 已提交
212 213
#endif

214
static inline void _iwl_release_nic_access(struct iwl_priv *priv)
Z
Zhu Yi 已提交
215
{
216
#ifdef CONFIG_IWLWIFI_DEBUG
Z
Zhu Yi 已提交
217 218
	if (atomic_dec_and_test(&priv->restrict_refcnt))
#endif
219
		_iwl_clear_bit(priv, CSR_GP_CNTRL,
Z
Zhu Yi 已提交
220 221
			       CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
}
222
#ifdef CONFIG_IWLWIFI_DEBUG
223
static inline void __iwl_release_nic_access(const char *f, u32 l,
224
					    struct iwl_priv *priv)
Z
Zhu Yi 已提交
225 226
{
	if (atomic_read(&priv->restrict_refcnt) <= 0)
227
		IWL_ERROR("Release unheld nic access at line %s %d.\n", f, l);
Z
Zhu Yi 已提交
228

229
	IWL_DEBUG_IO("releasing nic access - %s %d\n", f, l);
230
	_iwl_release_nic_access(priv);
Z
Zhu Yi 已提交
231
}
232 233
#define iwl_release_nic_access(priv) \
	__iwl_release_nic_access(__FILE__, __LINE__, priv)
Z
Zhu Yi 已提交
234
#else
235 236
#define iwl_release_nic_access(priv) \
	_iwl_release_nic_access(priv)
Z
Zhu Yi 已提交
237 238
#endif

239
static inline u32 _iwl_read_direct32(struct iwl_priv *priv, u32 reg)
Z
Zhu Yi 已提交
240
{
241
	return _iwl_read32(priv, reg);
Z
Zhu Yi 已提交
242
}
243
#ifdef CONFIG_IWLWIFI_DEBUG
244
static inline u32 __iwl_read_direct32(const char *f, u32 l,
245
					struct iwl_priv *priv, u32 reg)
Z
Zhu Yi 已提交
246
{
247
	u32 value = _iwl_read_direct32(priv, reg);
Z
Zhu Yi 已提交
248
	if (!atomic_read(&priv->restrict_refcnt))
249 250
		IWL_ERROR("Nic access not held from %s %d\n", f, l);
	IWL_DEBUG_IO("read_direct32(0x%4X) = 0x%08x - %s %d \n", reg, value,
Z
Zhu Yi 已提交
251 252 253
		     f, l);
	return value;
}
254 255
#define iwl_read_direct32(priv, reg) \
	__iwl_read_direct32(__FILE__, __LINE__, priv, reg)
Z
Zhu Yi 已提交
256
#else
257
#define iwl_read_direct32 _iwl_read_direct32
Z
Zhu Yi 已提交
258 259
#endif

260
static inline void _iwl_write_direct32(struct iwl_priv *priv,
Z
Zhu Yi 已提交
261 262
					 u32 reg, u32 value)
{
263
	_iwl_write32(priv, reg, value);
Z
Zhu Yi 已提交
264
}
265
#ifdef CONFIG_IWLWIFI_DEBUG
266
static void __iwl_write_direct32(const char *f , u32 line,
267
				   struct iwl_priv *priv, u32 reg, u32 value)
Z
Zhu Yi 已提交
268 269
{
	if (!atomic_read(&priv->restrict_refcnt))
270
		IWL_ERROR("Nic access not held from %s line %d\n", f, line);
271
	_iwl_write_direct32(priv, reg, value);
Z
Zhu Yi 已提交
272
}
273
#define iwl_write_direct32(priv, reg, value) \
274
	__iwl_write_direct32(__func__, __LINE__, priv, reg, value)
Z
Zhu Yi 已提交
275
#else
276
#define iwl_write_direct32 _iwl_write_direct32
Z
Zhu Yi 已提交
277 278
#endif

279
static inline void iwl_write_reg_buf(struct iwl_priv *priv,
Z
Zhu Yi 已提交
280 281 282 283 284 285
					       u32 reg, u32 len, u32 *values)
{
	u32 count = sizeof(u32);

	if ((priv != NULL) && (values != NULL)) {
		for (; 0 < len; len -= count, reg += count, values++)
286
			_iwl_write_direct32(priv, reg, *values);
Z
Zhu Yi 已提交
287 288 289
	}
}

290
static inline int _iwl_poll_direct_bit(struct iwl_priv *priv,
Z
Zhu Yi 已提交
291 292 293 294 295
					   u32 addr, u32 mask, int timeout)
{
	int i = 0;

	do {
296
		if ((_iwl_read_direct32(priv, addr) & mask) == mask)
Z
Zhu Yi 已提交
297 298 299 300 301 302 303 304
			return i;
		mdelay(10);
		i += 10;
	} while (i < timeout);

	return -ETIMEDOUT;
}

305
#ifdef CONFIG_IWLWIFI_DEBUG
306
static inline int __iwl_poll_direct_bit(const char *f, u32 l,
307
					    struct iwl_priv *priv,
Z
Zhu Yi 已提交
308 309
					    u32 addr, u32 mask, int timeout)
{
310
	int ret  = _iwl_poll_direct_bit(priv, addr, mask, timeout);
Z
Zhu Yi 已提交
311

312 313
	if (unlikely(ret == -ETIMEDOUT))
		IWL_DEBUG_IO("poll_direct_bit(0x%08X, 0x%08X) - "
Z
Zhu Yi 已提交
314 315
			     "timedout - %s %d\n", addr, mask, f, l);
	else
316 317 318
		IWL_DEBUG_IO("poll_direct_bit(0x%08X, 0x%08X) = 0x%08X "
			     "- %s %d\n", addr, mask, ret, f, l);
	return ret;
Z
Zhu Yi 已提交
319
}
320 321
#define iwl_poll_direct_bit(priv, addr, mask, timeout) \
	__iwl_poll_direct_bit(__FILE__, __LINE__, priv, addr, mask, timeout)
Z
Zhu Yi 已提交
322
#else
323
#define iwl_poll_direct_bit _iwl_poll_direct_bit
Z
Zhu Yi 已提交
324 325
#endif

326
static inline u32 _iwl_read_prph(struct iwl_priv *priv, u32 reg)
Z
Zhu Yi 已提交
327
{
328 329
	_iwl_write_direct32(priv, HBUS_TARG_PRPH_RADDR, reg | (3 << 24));
	return _iwl_read_direct32(priv, HBUS_TARG_PRPH_RDAT);
Z
Zhu Yi 已提交
330
}
331
#ifdef CONFIG_IWLWIFI_DEBUG
332 333
static inline u32 __iwl_read_prph(const char *f, u32 line,
				  struct iwl_priv *priv, u32 reg)
Z
Zhu Yi 已提交
334 335
{
	if (!atomic_read(&priv->restrict_refcnt))
336
		IWL_ERROR("Nic access not held from %s line %d\n", f, line);
337
	return _iwl_read_prph(priv, reg);
Z
Zhu Yi 已提交
338 339
}

340
#define iwl_read_prph(priv, reg) \
341
	__iwl_read_prph(__func__, __LINE__, priv, reg)
Z
Zhu Yi 已提交
342
#else
343
#define iwl_read_prph _iwl_read_prph
Z
Zhu Yi 已提交
344 345
#endif

346
static inline void _iwl_write_prph(struct iwl_priv *priv,
Z
Zhu Yi 已提交
347 348
					     u32 addr, u32 val)
{
349
	_iwl_write_direct32(priv, HBUS_TARG_PRPH_WADDR,
Z
Zhu Yi 已提交
350
			      ((addr & 0x0000FFFF) | (3 << 24)));
351
	_iwl_write_direct32(priv, HBUS_TARG_PRPH_WDAT, val);
Z
Zhu Yi 已提交
352
}
353
#ifdef CONFIG_IWLWIFI_DEBUG
354 355
static inline void __iwl_write_prph(const char *f, u32 line,
				    struct iwl_priv *priv, u32 addr, u32 val)
Z
Zhu Yi 已提交
356 357
{
	if (!atomic_read(&priv->restrict_refcnt))
358
		IWL_ERROR("Nic access not held from %s line %d\n", f, line);
359
	_iwl_write_prph(priv, addr, val);
Z
Zhu Yi 已提交
360 361
}

362
#define iwl_write_prph(priv, addr, val) \
363
	__iwl_write_prph(__func__, __LINE__, priv, addr, val);
Z
Zhu Yi 已提交
364
#else
365
#define iwl_write_prph _iwl_write_prph
Z
Zhu Yi 已提交
366 367
#endif

368 369
#define _iwl_set_bits_prph(priv, reg, mask) \
	_iwl_write_prph(priv, reg, (_iwl_read_prph(priv, reg) | mask))
370
#ifdef CONFIG_IWLWIFI_DEBUG
371 372 373
static inline void __iwl_set_bits_prph(const char *f, u32 line,
				       struct iwl_priv *priv,
				       u32 reg, u32 mask)
Z
Zhu Yi 已提交
374 375
{
	if (!atomic_read(&priv->restrict_refcnt))
376
		IWL_ERROR("Nic access not held from %s line %d\n", f, line);
377

378
	_iwl_set_bits_prph(priv, reg, mask);
Z
Zhu Yi 已提交
379
}
380
#define iwl_set_bits_prph(priv, reg, mask) \
381
	__iwl_set_bits_prph(__func__, __LINE__, priv, reg, mask)
Z
Zhu Yi 已提交
382
#else
383
#define iwl_set_bits_prph _iwl_set_bits_prph
Z
Zhu Yi 已提交
384 385
#endif

386 387
#define _iwl_set_bits_mask_prph(priv, reg, bits, mask) \
	_iwl_write_prph(priv, reg, ((_iwl_read_prph(priv, reg) & mask) | bits))
388

389
#ifdef CONFIG_IWLWIFI_DEBUG
390
static inline void __iwl_set_bits_mask_prph(const char *f, u32 line,
391
		struct iwl_priv *priv, u32 reg, u32 bits, u32 mask)
Z
Zhu Yi 已提交
392 393
{
	if (!atomic_read(&priv->restrict_refcnt))
394
		IWL_ERROR("Nic access not held from %s line %d\n", f, line);
395
	_iwl_set_bits_mask_prph(priv, reg, bits, mask);
Z
Zhu Yi 已提交
396
}
397
#define iwl_set_bits_mask_prph(priv, reg, bits, mask) \
398
	__iwl_set_bits_mask_prph(__func__, __LINE__, priv, reg, bits, mask)
Z
Zhu Yi 已提交
399
#else
400
#define iwl_set_bits_mask_prph _iwl_set_bits_mask_prph
Z
Zhu Yi 已提交
401 402
#endif

403
static inline void iwl_clear_bits_prph(struct iwl_priv
Z
Zhu Yi 已提交
404 405
						 *priv, u32 reg, u32 mask)
{
406 407
	u32 val = _iwl_read_prph(priv, reg);
	_iwl_write_prph(priv, reg, (val & ~mask));
Z
Zhu Yi 已提交
408 409
}

410
static inline u32 iwl_read_targ_mem(struct iwl_priv *priv, u32 addr)
Z
Zhu Yi 已提交
411
{
412 413
	iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, addr);
	return iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Z
Zhu Yi 已提交
414 415
}

416
static inline void iwl_write_targ_mem(struct iwl_priv *priv, u32 addr, u32 val)
Z
Zhu Yi 已提交
417
{
418 419
	iwl_write_direct32(priv, HBUS_TARG_MEM_WADDR, addr);
	iwl_write_direct32(priv, HBUS_TARG_MEM_WDAT, val);
Z
Zhu Yi 已提交
420 421
}

422
static inline void iwl_write_targ_mem_buf(struct iwl_priv *priv, u32 addr,
423
					  u32 len, u32 *values)
Z
Zhu Yi 已提交
424
{
425
	iwl_write_direct32(priv, HBUS_TARG_MEM_WADDR, addr);
Z
Zhu Yi 已提交
426
	for (; 0 < len; len -= sizeof(u32), values++)
427
		iwl_write_direct32(priv, HBUS_TARG_MEM_WDAT, *values);
Z
Zhu Yi 已提交
428 429
}
#endif