xref: /freebsd/sys/dev/ath/ah_osdep.c (revision 0572ccaa4543b0abef8ef81e384c1d04de9f3da1)
1 /*-
2  * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer,
10  *    without modification.
11  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13  *    redistribution must be conditioned upon including a substantially
14  *    similar Disclaimer requirement for further binary redistribution.
15  *
16  * NO WARRANTY
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27  * THE POSSIBILITY OF SUCH DAMAGES.
28  *
29  * $FreeBSD$
30  */
31 #include "opt_ah.h"
32 
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/kernel.h>
36 #include <sys/module.h>
37 #include <sys/sysctl.h>
38 #include <sys/bus.h>
39 #include <sys/malloc.h>
40 #include <sys/proc.h>
41 #include <sys/pcpu.h>
42 #include <sys/lock.h>
43 #include <sys/mutex.h>
44 
45 #include <machine/stdarg.h>
46 
47 #include <net/ethernet.h>		/* XXX for ether_sprintf */
48 
49 #include <dev/ath/ath_hal/ah.h>
50 #include <dev/ath/ath_hal/ah_debug.h>
51 
52 /*
53  * WiSoC boards overload the bus tag with information about the
54  * board layout.  We must extract the bus space tag from that
55  * indirect structure.  For everyone else the tag is passed in
56  * directly.
57  * XXX cache indirect ref privately
58  */
59 #ifdef AH_SUPPORT_AR5312
60 #define	BUSTAG(ah) \
61 	((bus_space_tag_t) ((struct ar531x_config *)((ah)->ah_st))->tag)
62 #else
63 #define	BUSTAG(ah)	((ah)->ah_st)
64 #endif
65 
66 /*
67  * This lock is used to seralise register access for chips which have
68  * problems w/ SMP CPUs issuing concurrent PCI transactions.
69  *
70  * XXX This is a global lock for now; it should be pushed to
71  * a per-device lock in some platform-independent fashion.
72  */
73 struct mtx ah_regser_mtx;
74 MTX_SYSINIT(ah_regser, &ah_regser_mtx, "Atheros register access mutex",
75     MTX_SPIN);
76 
77 extern	void ath_hal_printf(struct ath_hal *, const char*, ...)
78 		__printflike(2,3);
79 extern	void ath_hal_vprintf(struct ath_hal *, const char*, __va_list)
80 		__printflike(2, 0);
81 extern	const char* ath_hal_ether_sprintf(const u_int8_t *mac);
82 extern	void *ath_hal_malloc(size_t);
83 extern	void ath_hal_free(void *);
84 #ifdef AH_ASSERT
85 extern	void ath_hal_assert_failed(const char* filename,
86 		int lineno, const char* msg);
87 #endif
88 #ifdef AH_DEBUG
89 extern	void DO_HALDEBUG(struct ath_hal *ah, u_int mask, const char* fmt, ...);
90 #endif /* AH_DEBUG */
91 
92 /* NB: put this here instead of the driver to avoid circular references */
93 SYSCTL_NODE(_hw, OID_AUTO, ath, CTLFLAG_RD, 0, "Atheros driver parameters");
94 static SYSCTL_NODE(_hw_ath, OID_AUTO, hal, CTLFLAG_RD, 0,
95     "Atheros HAL parameters");
96 
97 #ifdef AH_DEBUG
98 int ath_hal_debug = 0;
99 SYSCTL_INT(_hw_ath_hal, OID_AUTO, debug, CTLFLAG_RW, &ath_hal_debug,
100     0, "Atheros HAL debugging printfs");
101 TUNABLE_INT("hw.ath.hal.debug", &ath_hal_debug);
102 #endif /* AH_DEBUG */
103 
104 static MALLOC_DEFINE(M_ATH_HAL, "ath_hal", "ath hal data");
105 
106 void*
107 ath_hal_malloc(size_t size)
108 {
109 	return malloc(size, M_ATH_HAL, M_NOWAIT | M_ZERO);
110 }
111 
112 void
113 ath_hal_free(void* p)
114 {
115 	free(p, M_ATH_HAL);
116 }
117 
118 void
119 ath_hal_vprintf(struct ath_hal *ah, const char* fmt, va_list ap)
120 {
121 	vprintf(fmt, ap);
122 }
123 
124 void
125 ath_hal_printf(struct ath_hal *ah, const char* fmt, ...)
126 {
127 	va_list ap;
128 	va_start(ap, fmt);
129 	ath_hal_vprintf(ah, fmt, ap);
130 	va_end(ap);
131 }
132 
133 const char*
134 ath_hal_ether_sprintf(const u_int8_t *mac)
135 {
136 	return ether_sprintf(mac);
137 }
138 
139 #ifdef AH_DEBUG
140 
141 /*
142  * XXX This is highly relevant only for the AR5416 and later
143  * PCI/PCIe NICs.  It'll need adjustment for other hardware
144  * variations.
145  */
146 static int
147 ath_hal_reg_whilst_asleep(struct ath_hal *ah, uint32_t reg)
148 {
149 
150 	if (reg >= 0x4000 && reg < 0x5000)
151 		return (1);
152 	if (reg >= 0x6000 && reg < 0x7000)
153 		return (1);
154 	if (reg >= 0x7000 && reg < 0x8000)
155 		return (1);
156 	return (0);
157 }
158 
159 void
160 DO_HALDEBUG(struct ath_hal *ah, u_int mask, const char* fmt, ...)
161 {
162 	if ((mask == HAL_DEBUG_UNMASKABLE) ||
163 	    (ah != NULL && ah->ah_config.ah_debug & mask) ||
164 	    (ath_hal_debug & mask)) {
165 		__va_list ap;
166 		va_start(ap, fmt);
167 		ath_hal_vprintf(ah, fmt, ap);
168 		va_end(ap);
169 	}
170 }
171 #undef	HAL_DEBUG_UNMASKABLE
172 #endif /* AH_DEBUG */
173 
174 #ifdef AH_DEBUG_ALQ
175 /*
176  * ALQ register tracing support.
177  *
178  * Setting hw.ath.hal.alq=1 enables tracing of all register reads and
179  * writes to the file /tmp/ath_hal.log.  The file format is a simple
180  * fixed-size array of records.  When done logging set hw.ath.hal.alq=0
181  * and then decode the file with the arcode program (that is part of the
182  * HAL).  If you start+stop tracing the data will be appended to an
183  * existing file.
184  *
185  * NB: doesn't handle multiple devices properly; only one DEVICE record
186  *     is emitted and the different devices are not identified.
187  */
188 #include <sys/alq.h>
189 #include <sys/pcpu.h>
190 #include <dev/ath/ath_hal/ah_decode.h>
191 
192 static	struct alq *ath_hal_alq;
193 static	int ath_hal_alq_emitdev;	/* need to emit DEVICE record */
194 static	u_int ath_hal_alq_lost;		/* count of lost records */
195 static	char ath_hal_logfile[MAXPATHLEN] = "/tmp/ath_hal.log";
196 
197 SYSCTL_STRING(_hw_ath_hal, OID_AUTO, alq_logfile, CTLFLAG_RW,
198     &ath_hal_logfile, sizeof(kernelname), "Name of ALQ logfile");
199 
200 static	u_int ath_hal_alq_qsize = 64*1024;
201 
202 static int
203 ath_hal_setlogging(int enable)
204 {
205 	int error;
206 
207 	if (enable) {
208 		error = alq_open(&ath_hal_alq, ath_hal_logfile,
209 			curthread->td_ucred, ALQ_DEFAULT_CMODE,
210 			sizeof (struct athregrec), ath_hal_alq_qsize);
211 		ath_hal_alq_lost = 0;
212 		ath_hal_alq_emitdev = 1;
213 		printf("ath_hal: logging to %s enabled\n",
214 			ath_hal_logfile);
215 	} else {
216 		if (ath_hal_alq)
217 			alq_close(ath_hal_alq);
218 		ath_hal_alq = NULL;
219 		printf("ath_hal: logging disabled\n");
220 		error = 0;
221 	}
222 	return (error);
223 }
224 
225 static int
226 sysctl_hw_ath_hal_log(SYSCTL_HANDLER_ARGS)
227 {
228 	int error, enable;
229 
230 	enable = (ath_hal_alq != NULL);
231         error = sysctl_handle_int(oidp, &enable, 0, req);
232         if (error || !req->newptr)
233                 return (error);
234 	else
235 		return (ath_hal_setlogging(enable));
236 }
237 SYSCTL_PROC(_hw_ath_hal, OID_AUTO, alq, CTLTYPE_INT|CTLFLAG_RW,
238 	0, 0, sysctl_hw_ath_hal_log, "I", "Enable HAL register logging");
239 SYSCTL_INT(_hw_ath_hal, OID_AUTO, alq_size, CTLFLAG_RW,
240 	&ath_hal_alq_qsize, 0, "In-memory log size (#records)");
241 SYSCTL_INT(_hw_ath_hal, OID_AUTO, alq_lost, CTLFLAG_RW,
242 	&ath_hal_alq_lost, 0, "Register operations not logged");
243 
244 static struct ale *
245 ath_hal_alq_get(struct ath_hal *ah)
246 {
247 	struct ale *ale;
248 
249 	if (ath_hal_alq_emitdev) {
250 		ale = alq_get(ath_hal_alq, ALQ_NOWAIT);
251 		if (ale) {
252 			struct athregrec *r =
253 				(struct athregrec *) ale->ae_data;
254 			r->op = OP_DEVICE;
255 			r->reg = 0;
256 			r->val = ah->ah_devid;
257 			alq_post(ath_hal_alq, ale);
258 			ath_hal_alq_emitdev = 0;
259 		} else
260 			ath_hal_alq_lost++;
261 	}
262 	ale = alq_get(ath_hal_alq, ALQ_NOWAIT);
263 	if (!ale)
264 		ath_hal_alq_lost++;
265 	return ale;
266 }
267 
268 void
269 ath_hal_reg_write(struct ath_hal *ah, u_int32_t reg, u_int32_t val)
270 {
271 	bus_space_tag_t tag = BUSTAG(ah);
272 	bus_space_handle_t h = ah->ah_sh;
273 
274 	/* Debug - complain if we haven't fully waken things up */
275 	if (! ath_hal_reg_whilst_asleep(ah, reg) &&
276 	    ah->ah_powerMode != HAL_PM_AWAKE) {
277 		ath_hal_printf(ah, "%s: reg=0x%08x, val=0x%08x, pm=%d\n",
278 		    __func__, reg, val, ah->ah_powerMode);
279 	}
280 
281 	if (ath_hal_alq) {
282 		struct ale *ale = ath_hal_alq_get(ah);
283 		if (ale) {
284 			struct athregrec *r = (struct athregrec *) ale->ae_data;
285 			r->threadid = curthread->td_tid;
286 			r->op = OP_WRITE;
287 			r->reg = reg;
288 			r->val = val;
289 			alq_post(ath_hal_alq, ale);
290 		}
291 	}
292 	if (ah->ah_config.ah_serialise_reg_war)
293 		mtx_lock_spin(&ah_regser_mtx);
294 	bus_space_write_4(tag, h, reg, val);
295 	if (ah->ah_config.ah_serialise_reg_war)
296 		mtx_unlock_spin(&ah_regser_mtx);
297 }
298 
299 u_int32_t
300 ath_hal_reg_read(struct ath_hal *ah, u_int32_t reg)
301 {
302 	bus_space_tag_t tag = BUSTAG(ah);
303 	bus_space_handle_t h = ah->ah_sh;
304 	u_int32_t val;
305 
306 	/* Debug - complain if we haven't fully waken things up */
307 	if (! ath_hal_reg_whilst_asleep(ah, reg) &&
308 	    ah->ah_powerMode != HAL_PM_AWAKE) {
309 		ath_hal_printf(ah, "%s: reg=0x%08x, pm=%d\n",
310 		    __func__, reg, ah->ah_powerMode);
311 	}
312 
313 	if (ah->ah_config.ah_serialise_reg_war)
314 		mtx_lock_spin(&ah_regser_mtx);
315 	val = bus_space_read_4(tag, h, reg);
316 	if (ah->ah_config.ah_serialise_reg_war)
317 		mtx_unlock_spin(&ah_regser_mtx);
318 	if (ath_hal_alq) {
319 		struct ale *ale = ath_hal_alq_get(ah);
320 		if (ale) {
321 			struct athregrec *r = (struct athregrec *) ale->ae_data;
322 			r->threadid = curthread->td_tid;
323 			r->op = OP_READ;
324 			r->reg = reg;
325 			r->val = val;
326 			alq_post(ath_hal_alq, ale);
327 		}
328 	}
329 	return val;
330 }
331 
332 void
333 OS_MARK(struct ath_hal *ah, u_int id, u_int32_t v)
334 {
335 	if (ath_hal_alq) {
336 		struct ale *ale = ath_hal_alq_get(ah);
337 		if (ale) {
338 			struct athregrec *r = (struct athregrec *) ale->ae_data;
339 			r->threadid = curthread->td_tid;
340 			r->op = OP_MARK;
341 			r->reg = id;
342 			r->val = v;
343 			alq_post(ath_hal_alq, ale);
344 		}
345 	}
346 }
347 #elif defined(AH_DEBUG) || defined(AH_REGOPS_FUNC)
348 /*
349  * Memory-mapped device register read/write.  These are here
350  * as routines when debugging support is enabled and/or when
351  * explicitly configured to use function calls.  The latter is
352  * for architectures that might need to do something before
353  * referencing memory (e.g. remap an i/o window).
354  *
355  * NB: see the comments in ah_osdep.h about byte-swapping register
356  *     reads and writes to understand what's going on below.
357  */
358 
359 void
360 ath_hal_reg_write(struct ath_hal *ah, u_int32_t reg, u_int32_t val)
361 {
362 	bus_space_tag_t tag = BUSTAG(ah);
363 	bus_space_handle_t h = ah->ah_sh;
364 
365 	/* Debug - complain if we haven't fully waken things up */
366 	if (! ath_hal_reg_whilst_asleep(ah, reg) &&
367 	    ah->ah_powerMode != HAL_PM_AWAKE) {
368 		ath_hal_printf(ah, "%s: reg=0x%08x, val=0x%08x, pm=%d\n",
369 		    __func__, reg, val, ah->ah_powerMode);
370 	}
371 
372 	if (ah->ah_config.ah_serialise_reg_war)
373 		mtx_lock_spin(&ah_regser_mtx);
374 	bus_space_write_4(tag, h, reg, val);
375 	if (ah->ah_config.ah_serialise_reg_war)
376 		mtx_unlock_spin(&ah_regser_mtx);
377 }
378 
379 u_int32_t
380 ath_hal_reg_read(struct ath_hal *ah, u_int32_t reg)
381 {
382 	bus_space_tag_t tag = BUSTAG(ah);
383 	bus_space_handle_t h = ah->ah_sh;
384 	u_int32_t val;
385 
386 	/* Debug - complain if we haven't fully waken things up */
387 	if (! ath_hal_reg_whilst_asleep(ah, reg) &&
388 	    ah->ah_powerMode != HAL_PM_AWAKE) {
389 		ath_hal_printf(ah, "%s: reg=0x%08x, pm=%d\n",
390 		    __func__, reg, ah->ah_powerMode);
391 	}
392 
393 	if (ah->ah_config.ah_serialise_reg_war)
394 		mtx_lock_spin(&ah_regser_mtx);
395 	val = bus_space_read_4(tag, h, reg);
396 	if (ah->ah_config.ah_serialise_reg_war)
397 		mtx_unlock_spin(&ah_regser_mtx);
398 	return val;
399 }
400 #endif /* AH_DEBUG || AH_REGOPS_FUNC */
401 
402 #ifdef AH_ASSERT
403 void
404 ath_hal_assert_failed(const char* filename, int lineno, const char *msg)
405 {
406 	printf("Atheros HAL assertion failure: %s: line %u: %s\n",
407 		filename, lineno, msg);
408 	panic("ath_hal_assert");
409 }
410 #endif /* AH_ASSERT */
411