source: rtems-libbsd/freebsd/sys/dev/rtwn/rtl8192c/pci/r92ce.h @ 0cbb715

55-freebsd-126-freebsd-12
Last change on this file since 0cbb715 was 0cbb715, checked in by Christian Mauderer <Christian.Mauderer@…>, on 11/22/16 at 09:41:47

rtwn: Import from FreeBSD.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1/*      $OpenBSD: if_rtwnreg.h,v 1.3 2015/06/14 08:02:47 stsp Exp $     */
2
3/*-
4 * Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr>
5 * Copyright (c) 2015 Stefan Sperling <stsp@openbsd.org>
6 * Copyright (c) 2016 Andriy Voskoboinyk <avos@FreeBSD.org>
7 *
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 *
20 * $FreeBSD$
21 */
22
23#ifndef RTL8192CE_H
24#define RTL8192CE_H
25
26#include <dev/rtwn/rtl8192c/r92c.h>
27
28
29/*
30 * Global definitions.
31 */
32#define R92CE_PUBQ_NPAGES       176
33#define R92CE_HPQ_NPAGES        41
34#define R92CE_LPQ_NPAGES        28
35#define R92CE_TX_PAGE_COUNT     \
36        (R92CE_PUBQ_NPAGES + R92CE_HPQ_NPAGES + R92CE_LPQ_NPAGES)
37
38
39/*
40 * Function declarations.
41 */
42/* r92ce_calib.c */
43void    r92ce_iq_calib(struct rtwn_softc *);
44
45/* r92ce_fw.c */
46#ifndef RTWN_WITHOUT_UCODE
47void    r92ce_fw_reset(struct rtwn_softc *, int);
48#endif
49
50/* r92ce_init.c */
51void    r92ce_init_intr(struct rtwn_softc *);
52void    r92ce_init_edca(struct rtwn_softc *);
53void    r92ce_init_bb(struct rtwn_softc *);
54int     r92ce_power_on(struct rtwn_softc *);
55void    r92ce_power_off(struct rtwn_softc *);
56void    r92ce_init_ampdu(struct rtwn_softc *);
57void    r92ce_post_init(struct rtwn_softc *);
58
59/* r92ce_led.c */
60void    r92ce_set_led(struct rtwn_softc *, int, int);
61
62/* r92ce_rx.c */
63int     r92ce_classify_intr(struct rtwn_softc *, void *, int);
64void    r92ce_enable_intr(struct rtwn_pci_softc *);
65void    r92ce_start_xfers(struct rtwn_softc *);
66
67/* r92ce_tx.c */
68void    r92ce_setup_tx_desc(struct rtwn_pci_softc *, void *, uint32_t);
69void    r92ce_tx_postsetup(struct rtwn_pci_softc *, void *,
70            bus_dma_segment_t[]);
71void    r92ce_copy_tx_desc(void *, const void *);
72void    r92ce_dump_tx_desc(struct rtwn_softc *, const void *);
73
74#endif  /* RTL8192CE_H */
Note: See TracBrowser for help on using the repository browser.