ath_netbsd.c revision 1.14.4.2 1 1.14.4.2 yamt /* $NetBSD: ath_netbsd.c,v 1.14.4.2 2010/03/11 15:03:28 yamt Exp $ */
2 1.6 xtraeme
3 1.1 dyoung /*-
4 1.1 dyoung * Copyright (c) 2003, 2004 David Young
5 1.1 dyoung * All rights reserved.
6 1.1 dyoung *
7 1.1 dyoung * Redistribution and use in source and binary forms, with or without
8 1.1 dyoung * modification, are permitted provided that the following conditions
9 1.1 dyoung * are met:
10 1.1 dyoung * 1. Redistributions of source code must retain the above copyright
11 1.1 dyoung * notice, this list of conditions and the following disclaimer.
12 1.1 dyoung * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 dyoung * notice, this list of conditions and the following disclaimer in the
14 1.1 dyoung * documentation and/or other materials provided with the distribution.
15 1.1 dyoung *
16 1.1 dyoung * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 1.1 dyoung * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 1.1 dyoung * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 1.1 dyoung * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 1.1 dyoung * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 1.1 dyoung * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 1.1 dyoung * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 1.1 dyoung * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 1.1 dyoung * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 1.1 dyoung * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 1.1 dyoung */
27 1.6 xtraeme
28 1.6 xtraeme #include <sys/cdefs.h>
29 1.14.4.2 yamt __KERNEL_RCSID(0, "$NetBSD: ath_netbsd.c,v 1.14.4.2 2010/03/11 15:03:28 yamt Exp $");
30 1.6 xtraeme
31 1.1 dyoung #include <sys/param.h>
32 1.1 dyoung #include <sys/types.h>
33 1.1 dyoung #include <sys/errno.h>
34 1.9 hubertf #include <sys/systm.h>
35 1.1 dyoung #include <sys/sysctl.h>
36 1.9 hubertf #include <sys/mbuf.h>
37 1.1 dyoung #include <sys/malloc.h>
38 1.1 dyoung #include <sys/kernel.h>
39 1.1 dyoung #include <sys/socket.h>
40 1.1 dyoung #include <sys/sockio.h>
41 1.1 dyoung #include <sys/sysctl.h>
42 1.1 dyoung #include <sys/callout.h>
43 1.11 ad #include <sys/bus.h>
44 1.1 dyoung #include <machine/stdarg.h>
45 1.1 dyoung #include <sys/endian.h>
46 1.2 martin #include <sys/device.h>
47 1.1 dyoung
48 1.1 dyoung #include <net/if.h>
49 1.1 dyoung #include <net/if_dl.h>
50 1.1 dyoung #include <net/if_media.h>
51 1.1 dyoung #include <net/if_arp.h>
52 1.1 dyoung #include <net/if_ether.h>
53 1.1 dyoung #include <net/if_llc.h>
54 1.1 dyoung
55 1.1 dyoung #include <net80211/ieee80211_netbsd.h>
56 1.1 dyoung #include <net80211/ieee80211_var.h>
57 1.1 dyoung #include <dev/ic/ath_netbsd.h>
58 1.1 dyoung #include <dev/ic/athvar.h>
59 1.3 dyoung
60 1.1 dyoung void
61 1.12 dyoung device_printf(device_t dev, const char *fmt, ...)
62 1.1 dyoung {
63 1.12 dyoung va_list ap;
64 1.1 dyoung
65 1.12 dyoung va_start(ap, fmt);
66 1.12 dyoung printf("%s: ", device_xname(dev));
67 1.12 dyoung vprintf(fmt, ap);
68 1.12 dyoung va_end(ap);
69 1.1 dyoung return;
70 1.1 dyoung }
71 1.1 dyoung
72 1.1 dyoung /*
73 1.7 dyoung * Setup sysctl(3) MIB, hw.ath.*.
74 1.1 dyoung *
75 1.14.4.1 yamt * TBD condition CTLFLAG_PERMANENT on being a module or not
76 1.1 dyoung */
77 1.1 dyoung SYSCTL_SETUP(sysctl_ath, "sysctl ath subtree setup")
78 1.1 dyoung {
79 1.1 dyoung int rc;
80 1.1 dyoung const struct sysctlnode *cnode, *rnode;
81 1.1 dyoung
82 1.1 dyoung if ((rnode = ath_sysctl_treetop(clog)) == NULL)
83 1.1 dyoung return;
84 1.1 dyoung
85 1.1 dyoung if ((rc = SYSCTL_GLOBAL_INT(CTLFLAG_READWRITE, "dwell",
86 1.1 dyoung "channel dwell time (ms) for AP/station scanning",
87 1.1 dyoung dwelltime)) != 0)
88 1.1 dyoung goto err;
89 1.1 dyoung
90 1.1 dyoung if ((rc = SYSCTL_GLOBAL_INT(CTLFLAG_READWRITE, "calibrate",
91 1.1 dyoung "chip calibration interval (secs)", calinterval)) != 0)
92 1.1 dyoung goto err;
93 1.1 dyoung
94 1.1 dyoung if ((rc = SYSCTL_GLOBAL_INT(CTLFLAG_READWRITE, "outdoor",
95 1.1 dyoung "outdoor operation", outdoor)) != 0)
96 1.1 dyoung goto err;
97 1.1 dyoung
98 1.1 dyoung /* country code */
99 1.1 dyoung if ((rc = SYSCTL_GLOBAL_INT(CTLFLAG_READWRITE,
100 1.1 dyoung "countrycode", "country code", countrycode)) != 0)
101 1.1 dyoung goto err;
102 1.1 dyoung
103 1.1 dyoung /* regulatory domain */
104 1.7 dyoung if ((rc = SYSCTL_GLOBAL_INT(CTLFLAG_READWRITE, "regdomain",
105 1.7 dyoung "EEPROM regdomain code", regdomain)) != 0)
106 1.1 dyoung goto err;
107 1.1 dyoung
108 1.1 dyoung if ((rc = SYSCTL_GLOBAL_INT(CTLFLAG_READWRITE, "debug",
109 1.1 dyoung "control debugging printfs", debug)) != 0)
110 1.1 dyoung goto err;
111 1.1 dyoung
112 1.7 dyoung if ((rc = SYSCTL_GLOBAL_INT(CTLFLAG_READONLY, "rxbuf",
113 1.7 dyoung "rx buffers allocated", rxbuf)) != 0)
114 1.7 dyoung goto err;
115 1.7 dyoung if ((rc = SYSCTL_GLOBAL_INT(CTLFLAG_READONLY, "txbuf",
116 1.7 dyoung "tx buffers allocated", txbuf)) != 0)
117 1.7 dyoung goto err;
118 1.7 dyoung
119 1.1 dyoung return;
120 1.1 dyoung err:
121 1.1 dyoung printf("%s: sysctl_createv failed (rc = %d)\n", __func__, rc);
122 1.1 dyoung }
123 1.1 dyoung
124 1.1 dyoung static int
125 1.1 dyoung ath_sysctl_slottime(SYSCTLFN_ARGS)
126 1.1 dyoung {
127 1.1 dyoung struct ath_softc *sc;
128 1.1 dyoung struct sysctlnode node;
129 1.1 dyoung u_int slottime;
130 1.1 dyoung int error;
131 1.1 dyoung
132 1.1 dyoung node = *rnode;
133 1.1 dyoung sc = (struct ath_softc *)node.sysctl_data;
134 1.1 dyoung slottime = ath_hal_getslottime(sc->sc_ah);
135 1.1 dyoung node.sysctl_data = &slottime;
136 1.1 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
137 1.1 dyoung if (error || newp == NULL)
138 1.1 dyoung return error;
139 1.1 dyoung return !ath_hal_setslottime(sc->sc_ah, slottime) ? EINVAL : 0;
140 1.1 dyoung }
141 1.1 dyoung
142 1.1 dyoung static int
143 1.1 dyoung ath_sysctl_acktimeout(SYSCTLFN_ARGS)
144 1.1 dyoung {
145 1.1 dyoung struct ath_softc *sc;
146 1.1 dyoung struct sysctlnode node;
147 1.1 dyoung u_int acktimeout;
148 1.1 dyoung int error;
149 1.1 dyoung
150 1.1 dyoung node = *rnode;
151 1.1 dyoung sc = (struct ath_softc *)node.sysctl_data;
152 1.1 dyoung acktimeout = ath_hal_getacktimeout(sc->sc_ah);
153 1.1 dyoung node.sysctl_data = &acktimeout;
154 1.1 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
155 1.1 dyoung if (error || newp == NULL)
156 1.1 dyoung return error;
157 1.1 dyoung return !ath_hal_setacktimeout(sc->sc_ah, acktimeout) ? EINVAL : 0;
158 1.1 dyoung }
159 1.1 dyoung
160 1.1 dyoung static int
161 1.1 dyoung ath_sysctl_ctstimeout(SYSCTLFN_ARGS)
162 1.1 dyoung {
163 1.1 dyoung struct ath_softc *sc;
164 1.1 dyoung struct sysctlnode node;
165 1.1 dyoung u_int ctstimeout;
166 1.1 dyoung int error;
167 1.1 dyoung
168 1.1 dyoung node = *rnode;
169 1.1 dyoung sc = (struct ath_softc *)node.sysctl_data;
170 1.1 dyoung ctstimeout = ath_hal_getctstimeout(sc->sc_ah);
171 1.1 dyoung node.sysctl_data = &ctstimeout;
172 1.1 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
173 1.1 dyoung if (error || newp == NULL)
174 1.1 dyoung return error;
175 1.1 dyoung return !ath_hal_setctstimeout(sc->sc_ah, ctstimeout) ? EINVAL : 0;
176 1.1 dyoung }
177 1.1 dyoung
178 1.1 dyoung static int
179 1.1 dyoung ath_sysctl_softled(SYSCTLFN_ARGS)
180 1.1 dyoung {
181 1.1 dyoung struct ath_softc *sc;
182 1.1 dyoung struct sysctlnode node;
183 1.1 dyoung int softled;
184 1.1 dyoung int error;
185 1.1 dyoung
186 1.1 dyoung node = *rnode;
187 1.1 dyoung sc = (struct ath_softc *)node.sysctl_data;
188 1.1 dyoung softled = sc->sc_softled;
189 1.1 dyoung node.sysctl_data = &softled;
190 1.1 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
191 1.1 dyoung if (error || newp == NULL)
192 1.1 dyoung return error;
193 1.1 dyoung softled = (softled != 0);
194 1.1 dyoung if (softled != sc->sc_softled) {
195 1.1 dyoung if (softled) {
196 1.1 dyoung /* NB: handle any sc_ledpin change */
197 1.1 dyoung ath_hal_gpioCfgOutput(sc->sc_ah, sc->sc_ledpin);
198 1.1 dyoung ath_hal_gpioset(sc->sc_ah, sc->sc_ledpin,
199 1.1 dyoung !sc->sc_ledon);
200 1.1 dyoung }
201 1.1 dyoung sc->sc_softled = softled;
202 1.1 dyoung }
203 1.1 dyoung return 0;
204 1.1 dyoung }
205 1.1 dyoung
206 1.1 dyoung static int
207 1.1 dyoung ath_sysctl_rxantenna(SYSCTLFN_ARGS)
208 1.1 dyoung {
209 1.1 dyoung struct ath_softc *sc;
210 1.1 dyoung struct sysctlnode node;
211 1.1 dyoung u_int defantenna;
212 1.1 dyoung int error;
213 1.1 dyoung
214 1.1 dyoung node = *rnode;
215 1.1 dyoung sc = (struct ath_softc *)node.sysctl_data;
216 1.1 dyoung defantenna = ath_hal_getdefantenna(sc->sc_ah);
217 1.1 dyoung node.sysctl_data = &defantenna;
218 1.1 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
219 1.1 dyoung if (error || newp == NULL)
220 1.1 dyoung return error;
221 1.1 dyoung ath_hal_setdefantenna(sc->sc_ah, defantenna);
222 1.1 dyoung return 0;
223 1.1 dyoung }
224 1.1 dyoung
225 1.1 dyoung static int
226 1.1 dyoung ath_sysctl_diversity(SYSCTLFN_ARGS)
227 1.1 dyoung {
228 1.1 dyoung struct ath_softc *sc;
229 1.1 dyoung struct sysctlnode node;
230 1.1 dyoung u_int diversity;
231 1.1 dyoung int error;
232 1.1 dyoung
233 1.1 dyoung node = *rnode;
234 1.1 dyoung sc = (struct ath_softc *)node.sysctl_data;
235 1.1 dyoung diversity = sc->sc_diversity;
236 1.1 dyoung node.sysctl_data = &diversity;
237 1.1 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
238 1.1 dyoung if (error || newp == NULL)
239 1.1 dyoung return error;
240 1.1 dyoung if (!ath_hal_setdiversity(sc->sc_ah, diversity))
241 1.1 dyoung return EINVAL;
242 1.1 dyoung sc->sc_diversity = diversity;
243 1.1 dyoung return 0;
244 1.1 dyoung }
245 1.1 dyoung
246 1.1 dyoung static int
247 1.1 dyoung ath_sysctl_diag(SYSCTLFN_ARGS)
248 1.1 dyoung {
249 1.1 dyoung struct ath_softc *sc;
250 1.1 dyoung struct sysctlnode node;
251 1.1 dyoung u_int32_t diag;
252 1.1 dyoung int error;
253 1.1 dyoung
254 1.1 dyoung node = *rnode;
255 1.1 dyoung sc = (struct ath_softc *)node.sysctl_data;
256 1.1 dyoung if (!ath_hal_getdiag(sc->sc_ah, &diag))
257 1.1 dyoung return EINVAL;
258 1.1 dyoung node.sysctl_data = &diag;
259 1.1 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
260 1.1 dyoung if (error || newp == NULL)
261 1.1 dyoung return error;
262 1.1 dyoung return !ath_hal_setdiag(sc->sc_ah, diag) ? EINVAL : 0;
263 1.1 dyoung }
264 1.1 dyoung
265 1.1 dyoung static int
266 1.1 dyoung ath_sysctl_tpscale(SYSCTLFN_ARGS)
267 1.1 dyoung {
268 1.1 dyoung struct ath_softc *sc;
269 1.1 dyoung struct sysctlnode node;
270 1.1 dyoung u_int32_t scale;
271 1.1 dyoung int error;
272 1.1 dyoung
273 1.1 dyoung node = *rnode;
274 1.1 dyoung sc = (struct ath_softc *)node.sysctl_data;
275 1.8 mrg (void)ath_hal_gettpscale(sc->sc_ah, &scale);
276 1.1 dyoung node.sysctl_data = &scale;
277 1.1 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
278 1.1 dyoung if (error || newp == NULL)
279 1.1 dyoung return error;
280 1.1 dyoung return !ath_hal_settpscale(sc->sc_ah, scale)
281 1.1 dyoung ? EINVAL
282 1.1 dyoung : ath_reset(&sc->sc_if);
283 1.1 dyoung }
284 1.1 dyoung
285 1.1 dyoung static int
286 1.1 dyoung ath_sysctl_tpc(SYSCTLFN_ARGS)
287 1.1 dyoung {
288 1.1 dyoung struct ath_softc *sc;
289 1.1 dyoung struct sysctlnode node;
290 1.1 dyoung u_int tpc;
291 1.1 dyoung int error;
292 1.1 dyoung
293 1.1 dyoung node = *rnode;
294 1.1 dyoung sc = (struct ath_softc *)node.sysctl_data;
295 1.1 dyoung tpc = ath_hal_gettpc(sc->sc_ah);
296 1.1 dyoung node.sysctl_data = &tpc;
297 1.1 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
298 1.1 dyoung if (error || newp == NULL)
299 1.1 dyoung return error;
300 1.1 dyoung return !ath_hal_settpc(sc->sc_ah, tpc) ? EINVAL : 0;
301 1.1 dyoung }
302 1.1 dyoung
303 1.7 dyoung static int
304 1.7 dyoung ath_sysctl_rfkill(SYSCTLFN_ARGS)
305 1.7 dyoung {
306 1.7 dyoung struct ath_softc *sc;
307 1.7 dyoung struct sysctlnode node;
308 1.7 dyoung u_int rfkill;
309 1.7 dyoung int error;
310 1.7 dyoung
311 1.7 dyoung node = *rnode;
312 1.7 dyoung sc = (struct ath_softc *)node.sysctl_data;
313 1.7 dyoung rfkill = ath_hal_getrfkill(sc->sc_ah);
314 1.7 dyoung node.sysctl_data = &rfkill;
315 1.7 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
316 1.7 dyoung if (error || newp == NULL)
317 1.7 dyoung return error;
318 1.7 dyoung return !ath_hal_setrfkill(sc->sc_ah, rfkill) ? EINVAL : 0;
319 1.7 dyoung }
320 1.7 dyoung
321 1.7 dyoung static int
322 1.7 dyoung ath_sysctl_rfsilent(SYSCTLFN_ARGS)
323 1.7 dyoung {
324 1.7 dyoung struct ath_softc *sc;
325 1.7 dyoung struct sysctlnode node;
326 1.7 dyoung u_int rfsilent;
327 1.7 dyoung int error;
328 1.7 dyoung
329 1.7 dyoung node = *rnode;
330 1.7 dyoung sc = (struct ath_softc *)node.sysctl_data;
331 1.8 mrg (void)ath_hal_getrfsilent(sc->sc_ah, &rfsilent);
332 1.7 dyoung node.sysctl_data = &rfsilent;
333 1.7 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
334 1.7 dyoung if (error || newp == NULL)
335 1.7 dyoung return error;
336 1.7 dyoung return !ath_hal_setrfsilent(sc->sc_ah, rfsilent) ? EINVAL : 0;
337 1.7 dyoung }
338 1.7 dyoung
339 1.7 dyoung static int
340 1.7 dyoung ath_sysctl_regdomain(SYSCTLFN_ARGS)
341 1.7 dyoung {
342 1.7 dyoung struct ath_softc *sc;
343 1.7 dyoung struct sysctlnode node;
344 1.7 dyoung u_int32_t rd;
345 1.7 dyoung int error;
346 1.7 dyoung
347 1.7 dyoung node = *rnode;
348 1.7 dyoung sc = (struct ath_softc *)node.sysctl_data;
349 1.7 dyoung if (!ath_hal_getregdomain(sc->sc_ah, &rd))
350 1.7 dyoung return EINVAL;
351 1.7 dyoung node.sysctl_data = &rd;
352 1.7 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
353 1.7 dyoung if (error || newp == NULL)
354 1.7 dyoung return error;
355 1.7 dyoung return !ath_hal_setregdomain(sc->sc_ah, rd) ? EINVAL : 0;
356 1.7 dyoung }
357 1.7 dyoung
358 1.7 dyoung static int
359 1.7 dyoung ath_sysctl_tpack(SYSCTLFN_ARGS)
360 1.7 dyoung {
361 1.7 dyoung struct ath_softc *sc;
362 1.7 dyoung struct sysctlnode node;
363 1.7 dyoung u_int32_t tpack;
364 1.7 dyoung int error;
365 1.7 dyoung
366 1.7 dyoung node = *rnode;
367 1.7 dyoung sc = (struct ath_softc *)node.sysctl_data;
368 1.8 mrg (void)ath_hal_gettpack(sc->sc_ah, &tpack);
369 1.7 dyoung node.sysctl_data = &tpack;
370 1.7 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
371 1.7 dyoung if (error || newp == NULL)
372 1.7 dyoung return error;
373 1.7 dyoung return !ath_hal_settpack(sc->sc_ah, tpack) ? EINVAL : 0;
374 1.7 dyoung }
375 1.7 dyoung
376 1.7 dyoung static int
377 1.7 dyoung ath_sysctl_tpcts(SYSCTLFN_ARGS)
378 1.7 dyoung {
379 1.7 dyoung struct ath_softc *sc;
380 1.7 dyoung struct sysctlnode node;
381 1.7 dyoung u_int32_t tpcts;
382 1.7 dyoung int error;
383 1.7 dyoung
384 1.7 dyoung node = *rnode;
385 1.7 dyoung sc = (struct ath_softc *)node.sysctl_data;
386 1.8 mrg (void)ath_hal_gettpcts(sc->sc_ah, &tpcts);
387 1.7 dyoung node.sysctl_data = &tpcts;
388 1.7 dyoung error = sysctl_lookup(SYSCTLFN_CALL(&node));
389 1.7 dyoung if (error || newp == NULL)
390 1.7 dyoung return error;
391 1.7 dyoung return !ath_hal_settpcts(sc->sc_ah, tpcts) ? EINVAL : 0;
392 1.7 dyoung }
393 1.7 dyoung
394 1.4 dyoung const struct sysctlnode *
395 1.3 dyoung ath_sysctl_instance(const char *dvname, struct sysctllog **log)
396 1.3 dyoung {
397 1.3 dyoung int rc;
398 1.3 dyoung const struct sysctlnode *rnode;
399 1.3 dyoung
400 1.3 dyoung if ((rc = sysctl_createv(log, 0, NULL, &rnode,
401 1.3 dyoung CTLFLAG_PERMANENT, CTLTYPE_NODE, "hw", NULL,
402 1.3 dyoung NULL, 0, NULL, 0, CTL_HW, CTL_EOL)) != 0)
403 1.3 dyoung goto err;
404 1.3 dyoung
405 1.3 dyoung if ((rc = sysctl_createv(log, 0, &rnode, &rnode,
406 1.3 dyoung CTLFLAG_PERMANENT, CTLTYPE_NODE, dvname,
407 1.3 dyoung SYSCTL_DESCR("ath information and options"),
408 1.3 dyoung NULL, 0, NULL, 0, CTL_CREATE, CTL_EOL)) != 0)
409 1.3 dyoung goto err;
410 1.3 dyoung
411 1.3 dyoung return rnode;
412 1.3 dyoung err:
413 1.3 dyoung printf("%s: sysctl_createv failed, rc = %d\n", __func__, rc);
414 1.3 dyoung return NULL;
415 1.3 dyoung }
416 1.3 dyoung
417 1.1 dyoung const struct sysctlnode *
418 1.1 dyoung ath_sysctl_treetop(struct sysctllog **log)
419 1.1 dyoung {
420 1.1 dyoung int rc;
421 1.1 dyoung const struct sysctlnode *rnode;
422 1.1 dyoung
423 1.1 dyoung if ((rc = sysctl_createv(log, 0, NULL, &rnode,
424 1.1 dyoung CTLFLAG_PERMANENT, CTLTYPE_NODE, "hw", NULL,
425 1.1 dyoung NULL, 0, NULL, 0, CTL_HW, CTL_EOL)) != 0)
426 1.1 dyoung goto err;
427 1.1 dyoung
428 1.1 dyoung if ((rc = sysctl_createv(log, 0, &rnode, &rnode,
429 1.1 dyoung CTLFLAG_PERMANENT, CTLTYPE_NODE, "ath",
430 1.1 dyoung SYSCTL_DESCR("ath information and options"),
431 1.1 dyoung NULL, 0, NULL, 0, CTL_CREATE, CTL_EOL)) != 0)
432 1.1 dyoung goto err;
433 1.1 dyoung
434 1.1 dyoung return rnode;
435 1.1 dyoung err:
436 1.1 dyoung printf("%s: sysctl_createv failed, rc = %d\n", __func__, rc);
437 1.1 dyoung return NULL;
438 1.1 dyoung }
439 1.1 dyoung
440 1.1 dyoung void
441 1.1 dyoung ath_sysctlattach(struct ath_softc *sc)
442 1.1 dyoung {
443 1.1 dyoung int rc;
444 1.1 dyoung struct sysctllog **log = &sc->sc_sysctllog;
445 1.1 dyoung const struct sysctlnode *cnode, *rnode;
446 1.1 dyoung
447 1.1 dyoung ath_hal_getcountrycode(sc->sc_ah, &sc->sc_countrycode);
448 1.8 mrg (void)ath_hal_getregdomain(sc->sc_ah, &sc->sc_regdomain);
449 1.1 dyoung sc->sc_debug = ath_debug;
450 1.1 dyoung sc->sc_txintrperiod = ATH_TXINTR_PERIOD;
451 1.1 dyoung
452 1.14.4.1 yamt if ((rnode = ath_sysctl_instance(device_xname(sc->sc_dev), log)) == NULL)
453 1.1 dyoung return;
454 1.1 dyoung
455 1.1 dyoung if ((rc = SYSCTL_INT(0, countrycode, "EEPROM country code")) != 0)
456 1.1 dyoung goto err;
457 1.1 dyoung
458 1.1 dyoung if ((rc = SYSCTL_INT(CTLFLAG_READWRITE, debug,
459 1.1 dyoung "control debugging printfs")) != 0)
460 1.1 dyoung goto err;
461 1.1 dyoung
462 1.1 dyoung #if 0
463 1.1 dyoung /* channel dwell time (ms) for AP/station scanning */
464 1.1 dyoung if ((rc = SYSCTL_INT(CTLFLAG_READWRITE, dwell,
465 1.1 dyoung "Channel dwell time (ms) for scanning")) != 0)
466 1.1 dyoung goto err;
467 1.1 dyoung #endif
468 1.1 dyoung
469 1.1 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, slottime,
470 1.1 dyoung "802.11 slot time (us)")) != 0)
471 1.1 dyoung goto err;
472 1.1 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, acktimeout,
473 1.1 dyoung "802.11 ACK timeout (us)")) != 0)
474 1.1 dyoung goto err;
475 1.1 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, ctstimeout,
476 1.1 dyoung "802.11 CTS timeout (us)")) != 0)
477 1.1 dyoung goto err;
478 1.1 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, softled,
479 1.1 dyoung "enable/disable software LED support")) != 0)
480 1.1 dyoung goto err;
481 1.1 dyoung if ((rc = SYSCTL_INT(CTLFLAG_READWRITE, ledpin,
482 1.1 dyoung "GPIO pin connected to LED")) != 0)
483 1.1 dyoung goto err;
484 1.1 dyoung if ((rc = SYSCTL_INT(CTLFLAG_READWRITE, ledon,
485 1.1 dyoung "setting to turn LED on")) != 0)
486 1.1 dyoung goto err;
487 1.1 dyoung if ((rc = SYSCTL_INT(CTLFLAG_READWRITE, ledidle,
488 1.1 dyoung "idle time for inactivity LED (ticks)")) != 0)
489 1.1 dyoung goto err;
490 1.1 dyoung if ((rc = SYSCTL_INT(CTLFLAG_READWRITE, txantenna,
491 1.1 dyoung "tx antenna (0=auto)")) != 0)
492 1.1 dyoung goto err;
493 1.1 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, rxantenna,
494 1.1 dyoung "default/rx antenna")) != 0)
495 1.1 dyoung goto err;
496 1.5 skrll if (ath_hal_hasdiversity(sc->sc_ah)) {
497 1.1 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, diversity,
498 1.1 dyoung "antenna diversity")) != 0)
499 1.1 dyoung goto err;
500 1.1 dyoung }
501 1.1 dyoung if ((rc = SYSCTL_INT(CTLFLAG_READWRITE, txintrperiod,
502 1.1 dyoung "tx descriptor batching")) != 0)
503 1.1 dyoung goto err;
504 1.1 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, diag,
505 1.1 dyoung "h/w diagnostic control")) != 0)
506 1.1 dyoung goto err;
507 1.1 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, tpscale,
508 1.1 dyoung "tx power scaling")) != 0)
509 1.1 dyoung goto err;
510 1.5 skrll if (ath_hal_hastpc(sc->sc_ah)) {
511 1.1 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, tpc,
512 1.1 dyoung "enable/disable per-packet TPC")) != 0)
513 1.1 dyoung goto err;
514 1.7 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, tpack,
515 1.7 dyoung "tx power for ack frames")) != 0)
516 1.7 dyoung goto err;
517 1.7 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, tpcts,
518 1.7 dyoung "tx power for cts frames")) != 0)
519 1.7 dyoung goto err;
520 1.1 dyoung }
521 1.7 dyoung if (ath_hal_hasrfsilent(sc->sc_ah)) {
522 1.7 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, rfsilent,
523 1.7 dyoung "h/w RF silent config")) != 0)
524 1.7 dyoung goto err;
525 1.7 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, rfkill,
526 1.7 dyoung "enable/disable RF kill switch")) != 0)
527 1.7 dyoung goto err;
528 1.7 dyoung }
529 1.7 dyoung if ((rc = SYSCTL_INT_SUBR(CTLFLAG_READWRITE, regdomain,
530 1.7 dyoung "EEPROM regdomain code")) != 0)
531 1.7 dyoung goto err;
532 1.1 dyoung return;
533 1.1 dyoung err:
534 1.1 dyoung printf("%s: sysctl_createv failed, rc = %d\n", __func__, rc);
535 1.1 dyoung }
536