09606165a0
Setup more ieee80211_rx_stats fields for received frames: - pktflags: * IEEE80211_RX_F_FAIL_FCSCRC; * IEEE80211_RX_F_AMPDU; * IEEE80211_RX_F_AMPDU_MORE; * IEEE80211_RX_F_SHORTGI; - rate flags (CCK, OFDM, HT); - width; - phytype; - rate; - rx_tsf; - rssi; - nf; - ieee, freq (RTL8188EU only, when ht40 support is disabled). Tested with: - RTL8188CE, RTL8188EU, RTL8821AU (STA / AP modes, i386) - (by kevlo) RTL8188EU and RTL8812AU (amd64) Reviewed by: adrian (previous version), kevlo Differential Revision: https://reviews.freebsd.org/D9021
143 lines
5.1 KiB
C
143 lines
5.1 KiB
C
/*-
|
|
* Copyright (c) 2016 Andriy Voskoboinyk <avos@FreeBSD.org>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef RTL8812A_H
|
|
#define RTL8812A_H
|
|
|
|
/*
|
|
* Global definitions.
|
|
*/
|
|
#define R12A_PUBQ_NPAGES 219
|
|
#define R12A_TXPKTBUF_COUNT 255
|
|
#define R12A_TX_PAGE_COUNT 248
|
|
|
|
#define R12A_TX_PAGE_SIZE 512
|
|
#define R12A_RX_DMA_BUFFER_SIZE 0x3e80
|
|
|
|
#define R12A_MAX_FW_SIZE 0x8000
|
|
#define R12A_MACID_MAX 127
|
|
#define R12A_CAM_ENTRY_COUNT 64
|
|
|
|
#define R12A_INTR_MSG_LEN 60
|
|
|
|
static const uint8_t r12a_chan_5ghz_0[] =
|
|
{ 36, 40, 44, 48, 52, 56, 60, 64 };
|
|
static const uint8_t r12a_chan_5ghz_1[] =
|
|
{ 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144 };
|
|
static const uint8_t r12a_chan_5ghz_2[] =
|
|
{ 149, 153, 157, 161, 165, 169, 173, 177 };
|
|
|
|
|
|
/*
|
|
* Function declarations.
|
|
*/
|
|
/* r12a_attach.c */
|
|
void r12a_vap_preattach(struct rtwn_softc *, struct ieee80211vap *);
|
|
void r12a_detach_private(struct rtwn_softc *);
|
|
|
|
/* r12a_beacon.c */
|
|
void r12a_beacon_init(struct rtwn_softc *, void *, int);
|
|
void r12a_beacon_set_rate(void *, int);
|
|
|
|
/* r12a_calib.c */
|
|
void r12a_save_bb_afe_vals(struct rtwn_softc *, uint32_t[],
|
|
const uint16_t[], int);
|
|
void r12a_restore_bb_afe_vals(struct rtwn_softc *, uint32_t[],
|
|
const uint16_t[], int);
|
|
void r12a_save_rf_vals(struct rtwn_softc *, uint32_t[],
|
|
const uint8_t[], int);
|
|
void r12a_restore_rf_vals(struct rtwn_softc *, uint32_t[],
|
|
const uint8_t[], int);
|
|
void r12a_lc_calib(struct rtwn_softc *);
|
|
#ifndef RTWN_WITHOUT_UCODE
|
|
int r12a_iq_calib_fw_supported(struct rtwn_softc *);
|
|
#endif
|
|
void r12a_iq_calib_sw(struct rtwn_softc *);
|
|
void r12a_iq_calib(struct rtwn_softc *);
|
|
|
|
/* r12a_caps.c */
|
|
int r12a_ioctl_net(struct ieee80211com *, u_long, void *);
|
|
|
|
/* r12a_chan.c */
|
|
void r12a_fix_spur(struct rtwn_softc *, struct ieee80211_channel *);
|
|
void r12a_set_chan(struct rtwn_softc *, struct ieee80211_channel *);
|
|
void r12a_set_band_2ghz(struct rtwn_softc *, uint32_t);
|
|
void r12a_set_band_5ghz(struct rtwn_softc *, uint32_t);
|
|
|
|
/* r12a_fw.c */
|
|
#ifndef RTWN_WITHOUT_UCODE
|
|
void r12a_fw_reset(struct rtwn_softc *, int);
|
|
void r12a_fw_download_enable(struct rtwn_softc *, int);
|
|
void r12a_set_media_status(struct rtwn_softc *, int);
|
|
int r12a_set_pwrmode(struct rtwn_softc *, struct ieee80211vap *,
|
|
int);
|
|
void r12a_iq_calib_fw(struct rtwn_softc *);
|
|
#endif
|
|
|
|
/* r12a_init.c */
|
|
int r12a_check_condition(struct rtwn_softc *, const uint8_t[]);
|
|
int r12a_set_page_size(struct rtwn_softc *);
|
|
void r12a_init_edca(struct rtwn_softc *);
|
|
void r12a_init_bb(struct rtwn_softc *);
|
|
void r12a_init_rf(struct rtwn_softc *);
|
|
void r12a_crystalcap_write(struct rtwn_softc *);
|
|
int r12a_power_on(struct rtwn_softc *);
|
|
void r12a_power_off(struct rtwn_softc *);
|
|
void r12a_init_intr(struct rtwn_softc *);
|
|
void r12a_init_antsel(struct rtwn_softc *);
|
|
|
|
/* r12a_led.c */
|
|
void r12a_set_led(struct rtwn_softc *, int, int);
|
|
|
|
/* r12a_rf.c */
|
|
uint32_t r12a_rf_read(struct rtwn_softc *, int, uint8_t);
|
|
uint32_t r12a_c_cut_rf_read(struct rtwn_softc *, int, uint8_t);
|
|
void r12a_rf_write(struct rtwn_softc *, int, uint8_t, uint32_t);
|
|
|
|
/* r12a_rom.c */
|
|
void r12a_parse_rom_common(struct rtwn_softc *, uint8_t *);
|
|
void r12a_parse_rom(struct rtwn_softc *, uint8_t *);
|
|
|
|
/* r12a_rx.c */
|
|
void r12a_ratectl_tx_complete(struct rtwn_softc *, uint8_t *, int);
|
|
void r12a_handle_c2h_report(struct rtwn_softc *, uint8_t *, int);
|
|
int r12a_check_frame_checksum(struct rtwn_softc *, struct mbuf *);
|
|
uint8_t r12a_rx_radiotap_flags(const void *);
|
|
void r12a_get_rx_stats(struct rtwn_softc *, struct ieee80211_rx_stats *,
|
|
const void *, const void *);
|
|
|
|
/* r12a_tx.c */
|
|
void r12a_fill_tx_desc(struct rtwn_softc *, struct ieee80211_node *,
|
|
struct mbuf *, void *, uint8_t, int);
|
|
void r12a_fill_tx_desc_raw(struct rtwn_softc *, struct ieee80211_node *,
|
|
struct mbuf *, void *, const struct ieee80211_bpf_params *);
|
|
void r12a_fill_tx_desc_null(struct rtwn_softc *, void *, int, int, int);
|
|
uint8_t r12a_tx_radiotap_flags(const void *);
|
|
|
|
#endif /* RTL8812A_H */
|