iwl-3945-io.h 13.0 KB
Newer Older
Z
Zhu Yi 已提交
1 2 3 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 29 30 31 32 33
/******************************************************************************
 *
 * Copyright(c) 2003 - 2007 Intel Corporation. All rights reserved.
 *
 * 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
 *
 *****************************************************************************/

#ifndef __iwl_io_h__
#define __iwl_io_h__

#include <linux/io.h>

34
#include "iwl-3945-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
 * and the current line number is printed in addition to any other debug output.
Z
Zhu Yi 已提交
46 47 48 49 50 51
 *
 * The non-prefixed name is the #define that maps the caller into a
 * #define that provides the caller's __LINE__ to the double prefix version.
 *
 * 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
52
 * routines, for example _iwl_read_direct32 calls the non-check version of
Z
Zhu Yi 已提交
53 54 55 56 57 58 59 60 61 62
 * _iwl_read32.)
 *
 * 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.
 *
 */

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

#define _iwl_read32(iwl, ofs) readl((iwl)->hw_base + (ofs))
77
#ifdef CONFIG_IWL3945_DEBUG
Z
Zhu Yi 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
static inline u32 __iwl_read32(char *f, u32 l, struct iwl_priv *iwl, u32 ofs)
{
	IWL_DEBUG_IO("read_direct32(0x%08X) - %s %d\n", ofs, f, l);
	return _iwl_read32(iwl, ofs);
}
#define iwl_read32(iwl, ofs) __iwl_read32(__FILE__, __LINE__, iwl, ofs)
#else
#define iwl_read32(p, o) _iwl_read32(p, o)
#endif

static inline int _iwl_poll_bit(struct iwl_priv *priv, u32 addr,
				u32 bits, u32 mask, int timeout)
{
	int i = 0;

	do {
		if ((_iwl_read32(priv, addr) & mask) == (bits & mask))
			return i;
		mdelay(10);
		i += 10;
	} while (i < timeout);

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

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

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

158
static inline int _iwl_grab_nic_access(struct iwl_priv *priv)
Z
Zhu Yi 已提交
159
{
160
	int ret;
Z
Zhu Yi 已提交
161 162
	u32 gp_ctl;

163
#ifdef CONFIG_IWL3945_DEBUG
Z
Zhu Yi 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
	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 */
		gp_ctl = _iwl_read32(priv, CSR_GP_CNTRL);
		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 */
	_iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
185
	ret = _iwl_poll_bit(priv, CSR_GP_CNTRL,
Z
Zhu Yi 已提交
186 187 188
			   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);
189
	if (ret < 0) {
Z
Zhu Yi 已提交
190 191 192 193
		IWL_ERROR("MAC is in deep sleep!\n");
		return -EIO;
	}

194
#ifdef CONFIG_IWL3945_DEBUG
Z
Zhu Yi 已提交
195 196 197 198 199
	atomic_inc(&priv->restrict_refcnt);
#endif
	return 0;
}

200
#ifdef CONFIG_IWL3945_DEBUG
201
static inline int __iwl_grab_nic_access(const char *f, u32 l,
Z
Zhu Yi 已提交
202 203 204 205 206 207
					       struct iwl_priv *priv)
{
	if (atomic_read(&priv->restrict_refcnt))
		IWL_DEBUG_INFO("Grabbing access while already held at "
			       "line %d.\n", l);

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

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

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

243
static inline u32 _iwl_read_direct32(struct iwl_priv *priv, u32 reg)
Z
Zhu Yi 已提交
244 245 246
{
	return _iwl_read32(priv, reg);
}
247
#ifdef CONFIG_IWL3945_DEBUG
248
static inline u32 __iwl_read_direct32(const char *f, u32 l,
Z
Zhu Yi 已提交
249 250
					struct iwl_priv *priv, u32 reg)
{
251
	u32 value = _iwl_read_direct32(priv, reg);
Z
Zhu Yi 已提交
252
	if (!atomic_read(&priv->restrict_refcnt))
253 254
		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 已提交
255 256 257
		     f, l);
	return value;
}
258 259
#define iwl_read_direct32(priv, reg) \
	__iwl_read_direct32(__FILE__, __LINE__, priv, reg)
Z
Zhu Yi 已提交
260
#else
261
#define iwl_read_direct32 _iwl_read_direct32
Z
Zhu Yi 已提交
262 263
#endif

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

283
static inline void iwl_write_reg_buf(struct iwl_priv *priv,
Z
Zhu Yi 已提交
284 285 286 287 288 289
					       u32 reg, u32 len, u32 *values)
{
	u32 count = sizeof(u32);

	if ((priv != NULL) && (values != NULL)) {
		for (; 0 < len; len -= count, reg += count, values++)
290
			_iwl_write_direct32(priv, reg, *values);
Z
Zhu Yi 已提交
291 292 293
	}
}

294
static inline int _iwl_poll_direct_bit(struct iwl_priv *priv,
Z
Zhu Yi 已提交
295 296 297 298 299
					   u32 addr, u32 mask, int timeout)
{
	int i = 0;

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

	return -ETIMEDOUT;
}

309
#ifdef CONFIG_IWL3945_DEBUG
310
static inline int __iwl_poll_direct_bit(const char *f, u32 l,
Z
Zhu Yi 已提交
311 312 313
					    struct iwl_priv *priv,
					    u32 addr, u32 mask, int timeout)
{
314
	int ret  = _iwl_poll_direct_bit(priv, addr, mask, timeout);
Z
Zhu Yi 已提交
315

316 317
	if (unlikely(ret == -ETIMEDOUT))
		IWL_DEBUG_IO("poll_direct_bit(0x%08X, 0x%08X) - "
Z
Zhu Yi 已提交
318 319
			     "timedout - %s %d\n", addr, mask, f, l);
	else
320 321 322
		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 已提交
323
}
324 325
#define iwl_poll_direct_bit(iwl, addr, mask, timeout) \
	__iwl_poll_direct_bit(__FILE__, __LINE__, iwl, addr, mask, timeout)
Z
Zhu Yi 已提交
326
#else
327
#define iwl_poll_direct_bit _iwl_poll_direct_bit
Z
Zhu Yi 已提交
328 329
#endif

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

343 344
#define iwl_read_prph(priv, reg) \
	__iwl_read_prph(__LINE__, priv, reg)
Z
Zhu Yi 已提交
345
#else
346
#define iwl_read_prph _iwl_read_prph
Z
Zhu Yi 已提交
347 348
#endif

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

365 366
#define iwl_write_prph(priv, addr, val) \
	__iwl_write_prph(__LINE__, priv, addr, val);
Z
Zhu Yi 已提交
367
#else
368
#define iwl_write_prph _iwl_write_prph
Z
Zhu Yi 已提交
369 370
#endif

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

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

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

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

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

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

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

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