iwl-io.h 14.9 KB
Newer Older
Z
Zhu Yi 已提交
1 2
/******************************************************************************
 *
3
 * Copyright(c) 2003 - 2009 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
 *
 * 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:
24
 *  Intel Linux Wireless <ilw@linux.intel.com>
Z
Zhu Yi 已提交
25 26 27 28
 * 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"
J
Johannes Berg 已提交
35
#include "iwl-devtrace.h"
Z
Zhu Yi 已提交
36 37 38 39 40 41 42 43 44 45

/*
 * 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
46 47
 * and the current line number and caller function name are printed in addition
 * to any other debug output.
Z
Zhu Yi 已提交
48 49
 *
 * The non-prefixed name is the #define that maps the caller into a
50 51
 * #define that provides the caller's name and __LINE__ to the double
 * prefix version.
Z
Zhu Yi 已提交
52 53 54
 *
 * 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
55 56
 * routines, for example _iwl_read_direct32 calls the non-check version of
 * _iwl_read32.)
Z
Zhu Yi 已提交
57 58
 *
 * These declarations are *extremely* useful in quickly isolating code deltas
T
Tomas Winkler 已提交
59
 * which result in misconfiguration of the hardware I/O.  In combination with
Z
Zhu Yi 已提交
60 61 62 63 64
 * git-bisect and the IO debug level you can quickly determine the specific
 * commit which breaks the IO sequence to the hardware.
 *
 */

J
Johannes Berg 已提交
65 66 67 68 69 70
static inline void _iwl_write32(struct iwl_priv *priv, u32 ofs, u32 val)
{
	trace_iwlwifi_dev_iowrite32(priv, ofs, val);
	iowrite32(val, priv->hw_base + ofs);
}

71
#ifdef CONFIG_IWLWIFI_DEBUG
72
static inline void __iwl_write32(const char *f, u32 l, struct iwl_priv *priv,
Z
Zhu Yi 已提交
73 74
				 u32 ofs, u32 val)
{
75
	IWL_DEBUG_IO(priv, "write32(0x%08X, 0x%08X) - %s %d\n", ofs, val, f, l);
76
	_iwl_write32(priv, ofs, val);
Z
Zhu Yi 已提交
77
}
78 79
#define iwl_write32(priv, ofs, val) \
	__iwl_write32(__FILE__, __LINE__, priv, ofs, val)
Z
Zhu Yi 已提交
80
#else
81
#define iwl_write32(priv, ofs, val) _iwl_write32(priv, ofs, val)
Z
Zhu Yi 已提交
82 83
#endif

J
Johannes Berg 已提交
84 85 86 87 88 89 90
static inline u32 _iwl_read32(struct iwl_priv *priv, u32 ofs)
{
	u32 val = ioread32(priv->hw_base + ofs);
	trace_iwlwifi_dev_ioread32(priv, ofs, val);
	return val;
}

91
#ifdef CONFIG_IWLWIFI_DEBUG
92
static inline u32 __iwl_read32(char *f, u32 l, struct iwl_priv *priv, u32 ofs)
Z
Zhu Yi 已提交
93
{
94
	IWL_DEBUG_IO(priv, "read_direct32(0x%08X) - %s %d\n", ofs, f, l);
95
	return _iwl_read32(priv, ofs);
Z
Zhu Yi 已提交
96
}
97
#define iwl_read32(priv, ofs) __iwl_read32(__FILE__, __LINE__, priv, ofs)
Z
Zhu Yi 已提交
98
#else
99
#define iwl_read32(p, o) _iwl_read32(p, o)
Z
Zhu Yi 已提交
100 101
#endif

102
#define IWL_POLL_INTERVAL 10	/* microseconds */
103
static inline int _iwl_poll_bit(struct iwl_priv *priv, u32 addr,
Z
Zhu Yi 已提交
104 105
				u32 bits, u32 mask, int timeout)
{
106
	int t = 0;
Z
Zhu Yi 已提交
107 108

	do {
109
		if ((_iwl_read32(priv, addr) & mask) == (bits & mask))
110 111 112 113
			return t;
		udelay(IWL_POLL_INTERVAL);
		t += IWL_POLL_INTERVAL;
	} while (t < timeout);
Z
Zhu Yi 已提交
114 115 116

	return -ETIMEDOUT;
}
117
#ifdef CONFIG_IWLWIFI_DEBUG
118
static inline int __iwl_poll_bit(const char *f, u32 l,
119
				 struct iwl_priv *priv, u32 addr,
Z
Zhu Yi 已提交
120 121
				 u32 bits, u32 mask, int timeout)
{
122
	int ret = _iwl_poll_bit(priv, addr, bits, mask, timeout);
123
	IWL_DEBUG_IO(priv, "poll_bit(0x%08X, 0x%08X, 0x%08X) - %s- %s %d\n",
124
		     addr, bits, mask,
125
		     unlikely(ret  == -ETIMEDOUT) ? "timeout" : "", f, l);
126
	return ret;
Z
Zhu Yi 已提交
127
}
128 129
#define iwl_poll_bit(priv, addr, bits, mask, timeout) \
	__iwl_poll_bit(__FILE__, __LINE__, priv, addr, bits, mask, timeout)
Z
Zhu Yi 已提交
130
#else
131
#define iwl_poll_bit(p, a, b, m, t) _iwl_poll_bit(p, a, b, m, t)
Z
Zhu Yi 已提交
132 133
#endif

134
static inline void _iwl_set_bit(struct iwl_priv *priv, u32 reg, u32 mask)
Z
Zhu Yi 已提交
135
{
136
	_iwl_write32(priv, reg, _iwl_read32(priv, reg) | mask);
Z
Zhu Yi 已提交
137
}
138
#ifdef CONFIG_IWLWIFI_DEBUG
139
static inline void __iwl_set_bit(const char *f, u32 l,
140
				 struct iwl_priv *priv, u32 reg, u32 mask)
Z
Zhu Yi 已提交
141
{
142
	u32 val = _iwl_read32(priv, reg) | mask;
143
	IWL_DEBUG_IO(priv, "set_bit(0x%08X, 0x%08X) = 0x%08X\n", reg, mask, val);
144
	_iwl_write32(priv, reg, val);
Z
Zhu Yi 已提交
145
}
M
Mohamed Abbas 已提交
146 147 148 149 150 151 152 153
static inline void iwl_set_bit(struct iwl_priv *p, u32 r, u32 m)
{
	unsigned long reg_flags;

	spin_lock_irqsave(&p->reg_lock, reg_flags);
	__iwl_set_bit(__FILE__, __LINE__, p, r, m);
	spin_unlock_irqrestore(&p->reg_lock, reg_flags);
}
Z
Zhu Yi 已提交
154
#else
M
Mohamed Abbas 已提交
155 156 157 158 159 160 161 162
static inline void iwl_set_bit(struct iwl_priv *p, u32 r, u32 m)
{
	unsigned long reg_flags;

	spin_lock_irqsave(&p->reg_lock, reg_flags);
	_iwl_set_bit(p, r, m);
	spin_unlock_irqrestore(&p->reg_lock, reg_flags);
}
Z
Zhu Yi 已提交
163 164
#endif

165
static inline void _iwl_clear_bit(struct iwl_priv *priv, u32 reg, u32 mask)
Z
Zhu Yi 已提交
166
{
167
	_iwl_write32(priv, reg, _iwl_read32(priv, reg) & ~mask);
Z
Zhu Yi 已提交
168
}
169
#ifdef CONFIG_IWLWIFI_DEBUG
170
static inline void __iwl_clear_bit(const char *f, u32 l,
171
				   struct iwl_priv *priv, u32 reg, u32 mask)
Z
Zhu Yi 已提交
172
{
173
	u32 val = _iwl_read32(priv, reg) & ~mask;
174
	IWL_DEBUG_IO(priv, "clear_bit(0x%08X, 0x%08X) = 0x%08X\n", reg, mask, val);
175
	_iwl_write32(priv, reg, val);
Z
Zhu Yi 已提交
176
}
M
Mohamed Abbas 已提交
177 178 179 180 181 182 183 184
static inline void iwl_clear_bit(struct iwl_priv *p, u32 r, u32 m)
{
	unsigned long reg_flags;

	spin_lock_irqsave(&p->reg_lock, reg_flags);
	__iwl_clear_bit(__FILE__, __LINE__, p, r, m);
	spin_unlock_irqrestore(&p->reg_lock, reg_flags);
}
Z
Zhu Yi 已提交
185
#else
M
Mohamed Abbas 已提交
186 187 188 189 190 191 192 193
static inline void iwl_clear_bit(struct iwl_priv *p, u32 r, u32 m)
{
	unsigned long reg_flags;

	spin_lock_irqsave(&p->reg_lock, reg_flags);
	_iwl_clear_bit(p, r, m);
	spin_unlock_irqrestore(&p->reg_lock, reg_flags);
}
Z
Zhu Yi 已提交
194 195
#endif

196
static inline int _iwl_grab_nic_access(struct iwl_priv *priv)
Z
Zhu Yi 已提交
197
{
198
	int ret;
199
	u32 val;
M
Mohamed Abbas 已提交
200

Z
Zhu Yi 已提交
201
	/* this bit wakes up the NIC */
202
	_iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222

	/*
	 * These bits say the device is running, and should keep running for
	 * at least a short while (at least as long as MAC_ACCESS_REQ stays 1),
	 * but they do not indicate that embedded SRAM is restored yet;
	 * 3945 and 4965 have volatile SRAM, and must save/restore contents
	 * to/from host DRAM when sleeping/waking for power-saving.
	 * Each direction takes approximately 1/4 millisecond; with this
	 * overhead, it's a good idea to grab and hold MAC_ACCESS_REQUEST if a
	 * series of register accesses are expected (e.g. reading Event Log),
	 * to keep device from sleeping.
	 *
	 * CSR_UCODE_DRV_GP1 register bit MAC_SLEEP == 0 indicates that
	 * SRAM is okay/restored.  We don't check that here because this call
	 * is just for hardware register access; but GP1 MAC_SLEEP check is a
	 * good idea before accessing 3945/4965 SRAM (e.g. reading Event Log).
	 *
	 * 5000 series and later (including 1000 series) have non-volatile SRAM,
	 * and do not save/restore SRAM when power cycling.
	 */
223
	ret = _iwl_poll_bit(priv, CSR_GP_CNTRL,
Z
Zhu Yi 已提交
224 225
			   CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN,
			   (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY |
226
			    CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP), 15000);
227
	if (ret < 0) {
228 229
		val = _iwl_read32(priv, CSR_GP_CNTRL);
		IWL_ERR(priv, "MAC is in deep sleep!.  CSR_GP_CNTRL = 0x%08X\n", val);
M
Mohamed Abbas 已提交
230
		_iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_FORCE_NMI);
Z
Zhu Yi 已提交
231 232 233 234 235 236
		return -EIO;
	}

	return 0;
}

237
#ifdef CONFIG_IWLWIFI_DEBUG
238
static inline int __iwl_grab_nic_access(const char *f, u32 l,
239
					       struct iwl_priv *priv)
Z
Zhu Yi 已提交
240
{
241
	IWL_DEBUG_IO(priv, "grabbing nic access - %s %d\n", f, l);
242
	return _iwl_grab_nic_access(priv);
Z
Zhu Yi 已提交
243
}
244 245
#define iwl_grab_nic_access(priv) \
	__iwl_grab_nic_access(__FILE__, __LINE__, priv)
Z
Zhu Yi 已提交
246
#else
247 248
#define iwl_grab_nic_access(priv) \
	_iwl_grab_nic_access(priv)
Z
Zhu Yi 已提交
249 250
#endif

251
static inline void _iwl_release_nic_access(struct iwl_priv *priv)
Z
Zhu Yi 已提交
252
{
M
Mohamed Abbas 已提交
253 254
	_iwl_clear_bit(priv, CSR_GP_CNTRL,
			CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Z
Zhu Yi 已提交
255
}
256
#ifdef CONFIG_IWLWIFI_DEBUG
257
static inline void __iwl_release_nic_access(const char *f, u32 l,
258
					    struct iwl_priv *priv)
Z
Zhu Yi 已提交
259 260
{

261
	IWL_DEBUG_IO(priv, "releasing nic access - %s %d\n", f, l);
262
	_iwl_release_nic_access(priv);
Z
Zhu Yi 已提交
263
}
264 265
#define iwl_release_nic_access(priv) \
	__iwl_release_nic_access(__FILE__, __LINE__, priv)
Z
Zhu Yi 已提交
266
#else
267 268
#define iwl_release_nic_access(priv) \
	_iwl_release_nic_access(priv)
Z
Zhu Yi 已提交
269 270
#endif

271
static inline u32 _iwl_read_direct32(struct iwl_priv *priv, u32 reg)
Z
Zhu Yi 已提交
272
{
273
	return _iwl_read32(priv, reg);
Z
Zhu Yi 已提交
274
}
275
#ifdef CONFIG_IWLWIFI_DEBUG
276
static inline u32 __iwl_read_direct32(const char *f, u32 l,
277
					struct iwl_priv *priv, u32 reg)
Z
Zhu Yi 已提交
278
{
279
	u32 value = _iwl_read_direct32(priv, reg);
280
	IWL_DEBUG_IO(priv, "read_direct32(0x%4X) = 0x%08x - %s %d \n", reg, value,
Z
Zhu Yi 已提交
281 282 283
		     f, l);
	return value;
}
M
Mohamed Abbas 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296
static inline u32 iwl_read_direct32(struct iwl_priv *priv, u32 reg)
{
	u32 value;
	unsigned long reg_flags;

	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	iwl_grab_nic_access(priv);
	value = __iwl_read_direct32(__FILE__, __LINE__, priv, reg);
	iwl_release_nic_access(priv);
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
	return value;
}

Z
Zhu Yi 已提交
297
#else
M
Mohamed Abbas 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310
static inline u32 iwl_read_direct32(struct iwl_priv *priv, u32 reg)
{
	u32 value;
	unsigned long reg_flags;

	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	iwl_grab_nic_access(priv);
	value = _iwl_read_direct32(priv, reg);
	iwl_release_nic_access(priv);
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
	return value;

}
Z
Zhu Yi 已提交
311 312
#endif

313
static inline void _iwl_write_direct32(struct iwl_priv *priv,
Z
Zhu Yi 已提交
314 315
					 u32 reg, u32 value)
{
316
	_iwl_write32(priv, reg, value);
Z
Zhu Yi 已提交
317
}
M
Mohamed Abbas 已提交
318
static inline void iwl_write_direct32(struct iwl_priv *priv, u32 reg, u32 value)
Z
Zhu Yi 已提交
319
{
M
Mohamed Abbas 已提交
320 321 322 323 324 325 326 327
	unsigned long reg_flags;

	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	if (!iwl_grab_nic_access(priv)) {
		_iwl_write_direct32(priv, reg, value);
		iwl_release_nic_access(priv);
	}
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Z
Zhu Yi 已提交
328 329
}

330
static inline void iwl_write_reg_buf(struct iwl_priv *priv,
Z
Zhu Yi 已提交
331 332 333 334 335 336
					       u32 reg, u32 len, u32 *values)
{
	u32 count = sizeof(u32);

	if ((priv != NULL) && (values != NULL)) {
		for (; 0 < len; len -= count, reg += count, values++)
M
Mohamed Abbas 已提交
337
			iwl_write_direct32(priv, reg, *values);
Z
Zhu Yi 已提交
338 339 340
	}
}

Z
Zhu, Yi 已提交
341 342
static inline int _iwl_poll_direct_bit(struct iwl_priv *priv, u32 addr,
				       u32 mask, int timeout)
Z
Zhu Yi 已提交
343
{
M
Mohamed Abbas 已提交
344 345 346 347 348 349 350 351 352 353
	int t = 0;

	do {
		if ((iwl_read_direct32(priv, addr) & mask) == mask)
			return t;
		udelay(IWL_POLL_INTERVAL);
		t += IWL_POLL_INTERVAL;
	} while (t < timeout);

	return -ETIMEDOUT;
Z
Zhu Yi 已提交
354 355
}

356
#ifdef CONFIG_IWLWIFI_DEBUG
357
static inline int __iwl_poll_direct_bit(const char *f, u32 l,
358
					    struct iwl_priv *priv,
Z
Zhu Yi 已提交
359 360
					    u32 addr, u32 mask, int timeout)
{
361
	int ret  = _iwl_poll_direct_bit(priv, addr, mask, timeout);
Z
Zhu Yi 已提交
362

363
	if (unlikely(ret == -ETIMEDOUT))
364
		IWL_DEBUG_IO(priv, "poll_direct_bit(0x%08X, 0x%08X) - "
Z
Zhu Yi 已提交
365 366
			     "timedout - %s %d\n", addr, mask, f, l);
	else
367
		IWL_DEBUG_IO(priv, "poll_direct_bit(0x%08X, 0x%08X) = 0x%08X "
368 369
			     "- %s %d\n", addr, mask, ret, f, l);
	return ret;
Z
Zhu Yi 已提交
370
}
371 372
#define iwl_poll_direct_bit(priv, addr, mask, timeout) \
	__iwl_poll_direct_bit(__FILE__, __LINE__, priv, addr, mask, timeout)
Z
Zhu Yi 已提交
373
#else
374
#define iwl_poll_direct_bit _iwl_poll_direct_bit
Z
Zhu Yi 已提交
375 376
#endif

377
static inline u32 _iwl_read_prph(struct iwl_priv *priv, u32 reg)
Z
Zhu Yi 已提交
378
{
379
	_iwl_write_direct32(priv, HBUS_TARG_PRPH_RADDR, reg | (3 << 24));
380
	rmb();
381
	return _iwl_read_direct32(priv, HBUS_TARG_PRPH_RDAT);
Z
Zhu Yi 已提交
382
}
M
Mohamed Abbas 已提交
383
static inline u32 iwl_read_prph(struct iwl_priv *priv, u32 reg)
Z
Zhu Yi 已提交
384
{
M
Mohamed Abbas 已提交
385 386
	unsigned long reg_flags;
	u32 val;
Z
Zhu Yi 已提交
387

M
Mohamed Abbas 已提交
388 389 390 391 392 393 394
	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	iwl_grab_nic_access(priv);
	val = _iwl_read_prph(priv, reg);
	iwl_release_nic_access(priv);
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
	return val;
}
Z
Zhu Yi 已提交
395

396
static inline void _iwl_write_prph(struct iwl_priv *priv,
Z
Zhu Yi 已提交
397 398
					     u32 addr, u32 val)
{
399
	_iwl_write_direct32(priv, HBUS_TARG_PRPH_WADDR,
Z
Zhu Yi 已提交
400
			      ((addr & 0x0000FFFF) | (3 << 24)));
401
	wmb();
402
	_iwl_write_direct32(priv, HBUS_TARG_PRPH_WDAT, val);
Z
Zhu Yi 已提交
403
}
M
Mohamed Abbas 已提交
404 405

static inline void iwl_write_prph(struct iwl_priv *priv, u32 addr, u32 val)
Z
Zhu Yi 已提交
406
{
M
Mohamed Abbas 已提交
407
	unsigned long reg_flags;
Z
Zhu Yi 已提交
408

M
Mohamed Abbas 已提交
409 410 411 412 413 414 415
	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	if (!iwl_grab_nic_access(priv)) {
		_iwl_write_prph(priv, addr, val);
		iwl_release_nic_access(priv);
	}
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
}
Z
Zhu Yi 已提交
416

417 418
#define _iwl_set_bits_prph(priv, reg, mask) \
	_iwl_write_prph(priv, reg, (_iwl_read_prph(priv, reg) | mask))
M
Mohamed Abbas 已提交
419 420

static inline void iwl_set_bits_prph(struct iwl_priv *priv, u32 reg, u32 mask)
Z
Zhu Yi 已提交
421
{
M
Mohamed Abbas 已提交
422
	unsigned long reg_flags;
423

M
Mohamed Abbas 已提交
424 425
	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	iwl_grab_nic_access(priv);
426
	_iwl_set_bits_prph(priv, reg, mask);
M
Mohamed Abbas 已提交
427 428
	iwl_release_nic_access(priv);
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Z
Zhu Yi 已提交
429 430
}

431 432
#define _iwl_set_bits_mask_prph(priv, reg, bits, mask) \
	_iwl_write_prph(priv, reg, ((_iwl_read_prph(priv, reg) & mask) | bits))
433

M
Mohamed Abbas 已提交
434 435
static inline void iwl_set_bits_mask_prph(struct iwl_priv *priv, u32 reg,
				u32 bits, u32 mask)
Z
Zhu Yi 已提交
436
{
M
Mohamed Abbas 已提交
437 438 439 440
	unsigned long reg_flags;

	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	iwl_grab_nic_access(priv);
441
	_iwl_set_bits_mask_prph(priv, reg, bits, mask);
M
Mohamed Abbas 已提交
442 443
	iwl_release_nic_access(priv);
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Z
Zhu Yi 已提交
444 445
}

446
static inline void iwl_clear_bits_prph(struct iwl_priv
Z
Zhu Yi 已提交
447 448
						 *priv, u32 reg, u32 mask)
{
M
Mohamed Abbas 已提交
449 450 451 452 453 454
	unsigned long reg_flags;
	u32 val;

	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	iwl_grab_nic_access(priv);
	val = _iwl_read_prph(priv, reg);
455
	_iwl_write_prph(priv, reg, (val & ~mask));
M
Mohamed Abbas 已提交
456 457
	iwl_release_nic_access(priv);
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Z
Zhu Yi 已提交
458 459
}

460
static inline u32 iwl_read_targ_mem(struct iwl_priv *priv, u32 addr)
Z
Zhu Yi 已提交
461
{
M
Mohamed Abbas 已提交
462 463 464 465 466 467 468
	unsigned long reg_flags;
	u32 value;

	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	iwl_grab_nic_access(priv);

	_iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, addr);
469
	rmb();
M
Mohamed Abbas 已提交
470 471 472 473 474
	value = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);

	iwl_release_nic_access(priv);
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
	return value;
Z
Zhu Yi 已提交
475 476
}

477
static inline void iwl_write_targ_mem(struct iwl_priv *priv, u32 addr, u32 val)
Z
Zhu Yi 已提交
478
{
M
Mohamed Abbas 已提交
479 480 481 482 483 484 485 486 487 488
	unsigned long reg_flags;

	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	if (!iwl_grab_nic_access(priv)) {
		_iwl_write_direct32(priv, HBUS_TARG_MEM_WADDR, addr);
		wmb();
		_iwl_write_direct32(priv, HBUS_TARG_MEM_WDAT, val);
		iwl_release_nic_access(priv);
	}
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Z
Zhu Yi 已提交
489 490
}

491
static inline void iwl_write_targ_mem_buf(struct iwl_priv *priv, u32 addr,
492
					  u32 len, u32 *values)
Z
Zhu Yi 已提交
493
{
M
Mohamed Abbas 已提交
494 495 496 497 498 499 500 501 502 503 504 505
	unsigned long reg_flags;

	spin_lock_irqsave(&priv->reg_lock, reg_flags);
	if (!iwl_grab_nic_access(priv)) {
		_iwl_write_direct32(priv, HBUS_TARG_MEM_WADDR, addr);
		wmb();
		for (; 0 < len; len -= sizeof(u32), values++)
			_iwl_write_direct32(priv, HBUS_TARG_MEM_WDAT, *values);

		iwl_release_nic_access(priv);
	}
	spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Z
Zhu Yi 已提交
506 507
}
#endif