Upgrade ldns and drill(1). 1/2
[dragonfly.git] / sys / dev / netif / ath / ath / if_ath_descdma.c
1 /*-
2  * Copyright (c) 2002-2009 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
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 /*
34  * Driver for the Atheros Wireless LAN controller.
35  *
36  * This software is derived from work of Atsushi Onoe; his contribution
37  * is greatly appreciated.
38  */
39
40 #include "opt_inet.h"
41 #include "opt_ath.h"
42 /*
43  * This is needed for register operations which are performed
44  * by the driver - eg, calls to ath_hal_gettsf32().
45  *
46  * It's also required for any AH_DEBUG checks in here, eg the
47  * module dependencies.
48  */
49 #include "opt_ah.h"
50 #include "opt_wlan.h"
51
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/sysctl.h>
55 #include <sys/mbuf.h>
56 #include <sys/malloc.h>
57 #include <sys/lock.h>
58 #include <sys/kernel.h>
59 #include <sys/socket.h>
60 #include <sys/sockio.h>
61 #include <sys/errno.h>
62 #include <sys/callout.h>
63 #include <sys/bus.h>
64 #include <sys/endian.h>
65 #include <sys/kthread.h>
66 #include <sys/taskqueue.h>
67 #include <sys/priv.h>
68 #include <sys/module.h>
69 #include <sys/ktr.h>
70
71 #if defined(__DragonFly__)
72 /* empty */
73 #else
74 #include <sys/smp.h>    /* for mp_ncpus */
75 #include <machine/bus.h>
76 #endif
77
78 #include <net/if.h>
79 #include <net/if_var.h>
80 #include <net/if_dl.h>
81 #include <net/if_media.h>
82 #include <net/if_types.h>
83 #include <net/if_arp.h>
84 #include <net/ethernet.h>
85 #include <net/if_llc.h>
86
87 #include <netproto/802_11/ieee80211_var.h>
88 #include <netproto/802_11/ieee80211_regdomain.h>
89 #ifdef IEEE80211_SUPPORT_SUPERG
90 #include <netproto/802_11/ieee80211_superg.h>
91 #endif
92 #ifdef IEEE80211_SUPPORT_TDMA
93 #include <netproto/802_11/ieee80211_tdma.h>
94 #endif
95
96 #include <net/bpf.h>
97
98 #ifdef INET
99 #include <netinet/in.h>
100 #include <netinet/if_ether.h>
101 #endif
102
103 #include <dev/netif/ath/ath/if_athvar.h>
104 #include <dev/netif/ath/ath_hal/ah_devid.h>             /* XXX for softled */
105 #include <dev/netif/ath/ath_hal/ah_diagcodes.h>
106
107 #include <dev/netif/ath/ath/if_ath_debug.h>
108 #include <dev/netif/ath/ath/if_ath_misc.h>
109 #if 0
110 #include <dev/netif/ath/ath/if_ath_tsf.h>
111 #include <dev/netif/ath/ath/if_ath_tx.h>
112 #include <dev/netif/ath/ath/if_ath_sysctl.h>
113 #include <dev/netif/ath/ath/if_ath_led.h>
114 #include <dev/netif/ath/ath/if_ath_keycache.h>
115 #include <dev/netif/ath/ath/if_ath_rx.h>
116 #include <dev/netif/ath/ath/if_ath_rx_edma.h>
117 #include <dev/netif/ath/ath/if_ath_tx_edma.h>
118 #include <dev/netif/ath/ath/if_ath_beacon.h>
119 #include <dev/netif/ath/ath/if_ath_btcoex.h>
120 #include <dev/netif/ath/ath/if_ath_spectral.h>
121 #include <dev/netif/ath/ath/if_ath_lna_div.h>
122 #include <dev/netif/ath/ath/if_athdfs.h>
123 #endif
124 #include <dev/netif/ath/ath/if_ath_descdma.h>
125
126 MALLOC_DECLARE(M_ATHDEV);
127
128 /*
129  * This is the descriptor setup / busdma memory intialisation and
130  * teardown routines.
131  */
132
133 static void
134 ath_load_cb(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
135 {
136         bus_addr_t *paddr = (bus_addr_t*) arg;
137         KASSERT(error == 0, ("error %u on bus_dma callback", error));
138         *paddr = segs->ds_addr;
139 }
140
141 /*
142  * Allocate the descriptors and appropriate DMA tag/setup.
143  *
144  * For some situations (eg EDMA TX completion), there isn't a requirement
145  * for the ath_buf entries to be allocated.
146  */
147 int
148 ath_descdma_alloc_desc(struct ath_softc *sc,
149         struct ath_descdma *dd, ath_bufhead *head,
150         const char *name, int ds_size, int ndesc)
151 {
152 #define DS2PHYS(_dd, _ds) \
153         ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
154 #define ATH_DESC_4KB_BOUND_CHECK(_daddr, _len) \
155         ((((u_int32_t)(_daddr) & 0xFFF) > (0x1000 - (_len))) ? 1 : 0)
156         int error;
157
158         dd->dd_descsize = ds_size;
159
160         DPRINTF(sc, ATH_DEBUG_RESET,
161             "%s: %s DMA: %u desc, %d bytes per descriptor\n",
162             __func__, name, ndesc, dd->dd_descsize);
163
164         dd->dd_name = name;
165         dd->dd_desc_len = dd->dd_descsize * ndesc;
166
167         /*
168          * Merlin work-around:
169          * Descriptors that cross the 4KB boundary can't be used.
170          * Assume one skipped descriptor per 4KB page.
171          */
172         if (! ath_hal_split4ktrans(sc->sc_ah)) {
173                 int numpages = dd->dd_desc_len / 4096;
174                 dd->dd_desc_len += ds_size * numpages;
175         }
176
177         /*
178          * Setup DMA descriptor area.
179          *
180          * BUS_DMA_ALLOCNOW is not used; we never use bounce
181          * buffers for the descriptors themselves.
182          */
183         error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), /* parent */
184                        PAGE_SIZE, 0,            /* alignment, bounds */
185                        BUS_SPACE_MAXADDR_32BIT, /* lowaddr */
186                        BUS_SPACE_MAXADDR,       /* highaddr */
187                        NULL, NULL,              /* filter, filterarg */
188                        dd->dd_desc_len,         /* maxsize */
189                        1,                       /* nsegments */
190                        dd->dd_desc_len,         /* maxsegsize */
191                        0,                       /* flags */
192 #if defined(__DragonFly__)
193 #else
194                        NULL,                    /* lockfunc */
195                        NULL,                    /* lockarg */
196 #endif
197                        &dd->dd_dmat);
198         if (error != 0) {
199                 device_printf(sc->sc_dev,
200                     "cannot allocate %s DMA tag\n", dd->dd_name);
201                 return error;
202         }
203
204         /* allocate descriptors */
205         error = bus_dmamem_alloc(dd->dd_dmat, (void**) &dd->dd_desc,
206                                  BUS_DMA_NOWAIT | BUS_DMA_COHERENT,
207                                  &dd->dd_dmamap);
208         if (error != 0) {
209                 device_printf(sc->sc_dev,
210                     "unable to alloc memory for %u %s descriptors, error %u\n",
211                     ndesc, dd->dd_name, error);
212                 goto fail1;
213         }
214
215         error = bus_dmamap_load(dd->dd_dmat, dd->dd_dmamap,
216                                 dd->dd_desc, dd->dd_desc_len,
217                                 ath_load_cb, &dd->dd_desc_paddr,
218                                 BUS_DMA_NOWAIT);
219         if (error != 0) {
220                 device_printf(sc->sc_dev,
221                     "unable to map %s descriptors, error %u\n",
222                     dd->dd_name, error);
223                 goto fail2;
224         }
225
226         DPRINTF(sc, ATH_DEBUG_RESET, "%s: %s DMA map: %p (%lu) -> %p (%lu)\n",
227             __func__, dd->dd_name, (uint8_t *) dd->dd_desc,
228             (u_long) dd->dd_desc_len, (caddr_t) dd->dd_desc_paddr,
229             /*XXX*/ (u_long) dd->dd_desc_len);
230
231         return (0);
232
233 fail2:
234         bus_dmamem_free(dd->dd_dmat, dd->dd_desc, dd->dd_dmamap);
235 fail1:
236         bus_dma_tag_destroy(dd->dd_dmat);
237         memset(dd, 0, sizeof(*dd));
238         return error;
239 #undef DS2PHYS
240 #undef ATH_DESC_4KB_BOUND_CHECK
241 }
242
243 int
244 ath_descdma_setup(struct ath_softc *sc,
245         struct ath_descdma *dd, ath_bufhead *head,
246         const char *name, int ds_size, int nbuf, int ndesc)
247 {
248 #define DS2PHYS(_dd, _ds) \
249         ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
250 #define ATH_DESC_4KB_BOUND_CHECK(_daddr, _len) \
251         ((((u_int32_t)(_daddr) & 0xFFF) > (0x1000 - (_len))) ? 1 : 0)
252         uint8_t *ds;
253         struct ath_buf *bf;
254         int i, bsize, error;
255
256         /* Allocate descriptors */
257         error = ath_descdma_alloc_desc(sc, dd, head, name, ds_size,
258             nbuf * ndesc);
259
260         /* Assume any errors during allocation were dealt with */
261         if (error != 0) {
262                 return (error);
263         }
264
265         ds = (uint8_t *) dd->dd_desc;
266
267         /* allocate rx buffers */
268         bsize = sizeof(struct ath_buf) * nbuf;
269         bf = kmalloc(bsize, M_ATHDEV, M_NOWAIT | M_ZERO);
270         if (bf == NULL) {
271                 device_printf(sc->sc_dev,
272                     "malloc of %s buffers failed, size %u\n",
273                     dd->dd_name, bsize);
274                 goto fail3;
275         }
276         dd->dd_bufptr = bf;
277
278         TAILQ_INIT(head);
279         for (i = 0; i < nbuf; i++, bf++, ds += (ndesc * dd->dd_descsize)) {
280                 bf->bf_desc = (struct ath_desc *) ds;
281                 bf->bf_daddr = DS2PHYS(dd, ds);
282                 if (! ath_hal_split4ktrans(sc->sc_ah)) {
283                         /*
284                          * Merlin WAR: Skip descriptor addresses which
285                          * cause 4KB boundary crossing along any point
286                          * in the descriptor.
287                          */
288                          if (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr,
289                              dd->dd_descsize)) {
290                                 /* Start at the next page */
291                                 ds += 0x1000 - (bf->bf_daddr & 0xFFF);
292                                 bf->bf_desc = (struct ath_desc *) ds;
293                                 bf->bf_daddr = DS2PHYS(dd, ds);
294                         }
295                 }
296                 error = bus_dmamap_create(sc->sc_dmat, BUS_DMA_NOWAIT,
297                                 &bf->bf_dmamap);
298                 if (error != 0) {
299                         device_printf(sc->sc_dev, "unable to create dmamap "
300                             "for %s buffer %u, error %u\n",
301                             dd->dd_name, i, error);
302                         ath_descdma_cleanup(sc, dd, head);
303                         return error;
304                 }
305                 bf->bf_lastds = bf->bf_desc;    /* Just an initial value */
306                 TAILQ_INSERT_TAIL(head, bf, bf_list);
307         }
308
309         /*
310          * XXX TODO: ensure that ds doesn't overflow the descriptor
311          * allocation otherwise weird stuff will occur and crash your
312          * machine.
313          */
314         return 0;
315         /* XXX this should likely just call ath_descdma_cleanup() */
316 fail3:
317         bus_dmamap_unload(dd->dd_dmat, dd->dd_dmamap);
318         bus_dmamem_free(dd->dd_dmat, dd->dd_desc, dd->dd_dmamap);
319         bus_dma_tag_destroy(dd->dd_dmat);
320         memset(dd, 0, sizeof(*dd));
321         return error;
322 #undef DS2PHYS
323 #undef ATH_DESC_4KB_BOUND_CHECK
324 }
325
326 /*
327  * Allocate ath_buf entries but no descriptor contents.
328  *
329  * This is for RX EDMA where the descriptors are the header part of
330  * the RX buffer.
331  */
332 int
333 ath_descdma_setup_rx_edma(struct ath_softc *sc,
334         struct ath_descdma *dd, ath_bufhead *head,
335         const char *name, int nbuf, int rx_status_len)
336 {
337         struct ath_buf *bf;
338         int i, bsize, error;
339
340         DPRINTF(sc, ATH_DEBUG_RESET, "%s: %s DMA: %u buffers\n",
341             __func__, name, nbuf);
342
343         dd->dd_name = name;
344         /*
345          * This is (mostly) purely for show.  We're not allocating any actual
346          * descriptors here as EDMA RX has the descriptor be part
347          * of the RX buffer.
348          *
349          * However, dd_desc_len is used by ath_descdma_free() to determine
350          * whether we have already freed this DMA mapping.
351          */
352         dd->dd_desc_len = rx_status_len * nbuf;
353         dd->dd_descsize = rx_status_len;
354
355         /* allocate rx buffers */
356         bsize = sizeof(struct ath_buf) * nbuf;
357         bf = kmalloc(bsize, M_ATHDEV, M_NOWAIT | M_ZERO);
358         if (bf == NULL) {
359                 device_printf(sc->sc_dev,
360                     "malloc of %s buffers failed, size %u\n",
361                     dd->dd_name, bsize);
362                 error = ENOMEM;
363                 goto fail3;
364         }
365         dd->dd_bufptr = bf;
366
367         TAILQ_INIT(head);
368         for (i = 0; i < nbuf; i++, bf++) {
369                 bf->bf_desc = NULL;
370                 bf->bf_daddr = 0;
371                 bf->bf_lastds = NULL;   /* Just an initial value */
372
373                 error = bus_dmamap_create(sc->sc_dmat, BUS_DMA_NOWAIT,
374                                 &bf->bf_dmamap);
375                 if (error != 0) {
376                         device_printf(sc->sc_dev, "unable to create dmamap "
377                             "for %s buffer %u, error %u\n",
378                             dd->dd_name, i, error);
379                         ath_descdma_cleanup(sc, dd, head);
380                         return error;
381                 }
382                 TAILQ_INSERT_TAIL(head, bf, bf_list);
383         }
384         return 0;
385 fail3:
386         memset(dd, 0, sizeof(*dd));
387         return error;
388 }
389
390 void
391 ath_descdma_cleanup(struct ath_softc *sc,
392         struct ath_descdma *dd, ath_bufhead *head)
393 {
394         struct ath_buf *bf;
395         struct ieee80211_node *ni;
396         int do_warning = 0;
397
398         if (dd->dd_dmamap != 0) {
399                 bus_dmamap_unload(dd->dd_dmat, dd->dd_dmamap);
400                 bus_dmamem_free(dd->dd_dmat, dd->dd_desc, dd->dd_dmamap);
401                 bus_dma_tag_destroy(dd->dd_dmat);
402         }
403
404         if (head != NULL) {
405                 TAILQ_FOREACH(bf, head, bf_list) {
406                         if (bf->bf_m) {
407                                 /*
408                                  * XXX warn if there's buffers here.
409                                  * XXX it should have been freed by the
410                                  * owner!
411                                  */
412                                 
413                                 if (do_warning == 0) {
414                                         do_warning = 1;
415                                         device_printf(sc->sc_dev,
416                                             "%s: %s: mbuf should've been"
417                                             " unmapped/freed!\n",
418                                             __func__,
419                                             dd->dd_name);
420                                 }
421                                 bus_dmamap_sync(sc->sc_dmat, bf->bf_dmamap,
422                                     BUS_DMASYNC_POSTREAD);
423                                 bus_dmamap_unload(sc->sc_dmat, bf->bf_dmamap);
424                                 m_freem(bf->bf_m);
425                                 bf->bf_m = NULL;
426                         }
427                         if (bf->bf_dmamap != NULL) {
428                                 bus_dmamap_destroy(sc->sc_dmat, bf->bf_dmamap);
429                                 bf->bf_dmamap = NULL;
430                         }
431                         ni = bf->bf_node;
432                         bf->bf_node = NULL;
433                         if (ni != NULL) {
434                                 /*
435                                  * Reclaim node reference.
436                                  */
437                                 ieee80211_free_node(ni);
438                         }
439                 }
440         }
441
442         if (head != NULL)
443                 TAILQ_INIT(head);
444
445         if (dd->dd_bufptr != NULL)
446                 kfree(dd->dd_bufptr, M_ATHDEV);
447         memset(dd, 0, sizeof(*dd));
448 }