Lines Matching +full:tx +full:- +full:d +full:- +full:cal
1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
50 * a different regdomain and/or tx power setup).
67 uint16_t maxnum_tx_wcb; /* max # of tx descs per WCB */
81 * Supply tx/rx dma-related settings to the firmware.
85 uint32_t maxnum_txwcb; /* max # of tx descs per WCB */
101 uint32_t TxRetrySuccesses; /* tx success w/ 1 retry */
102 uint32_t TxMultipleRetrySuccesses;/* tx success w/ >1 retry */
103 uint32_t TxFailures; /* tx fail due to no ACK */
104 uint32_t RTSSuccesses; /* CTS rx'd for RTS */
105 uint32_t RTSFailures; /* CTS not rx'd for RTS */
109 uint32_t TxWatchDogTimeouts; /* MAC tx hang (f/w recovery) */
115 uint32_t TxUnderflows; /* !tx underflow on dma */
116 uint32_t TxDone; /* MAC tx ops completed
121 supplied a tx descriptor */
122 uint32_t TxAttempts; /* tx descriptors processed */
123 uint32_t TxSuccesses; /* tx attempts successful */
124 uint32_t TxFragments; /* tx with fragmentation */
125 uint32_t TxMulticasts; /* tx multicast frames */
126 uint32_t RxNonCtlPkts; /* rx non-control frames */
173 uint8_t rate; /* use this tx rate */
184 #define MHF_CALDATA 0x0001 /* cal data retrieved */
202 #define MALO_HAL_LOCK(mh) mtx_lock(&mh->mh_mtx)
203 #define MALO_HAL_LOCK_ASSERT(mh) mtx_assert(&mh->mh_mtx, MA_OWNED)
204 #define MALO_HAL_UNLOCK(mh) mtx_unlock(&mh->mh_mtx)