Lines Matching +full:low +full:- +full:pass

1 /* SPDX-License-Identifier: GPL-2.0-or-later */
27 * is os-specific and should be defined in osdef1st.h.
50 #define DMA_RD 1 /* memory -> hw */
53 #define DMA_WR 2 /* hw -> memory */
118 u_short pass_SMT ; /* pass SMT frames */
119 u_short pass_NSA ; /* pass all NSA frames */
120 u_short pass_DB ; /* pass Direct Beacon Frames */
121 u_short pass_llc_promisc ; /* pass all llc frames (default ON) */
162 #define DB_P smc->debug
202 * This macro may be invoked by the OS-specific module to read
209 #define HWM_GET_TX_PHYS(txd) (u_long)AIX_REVERSE((txd)->txd_tbadr)
216 * This macro may be invoked by the OS-specific module to read
225 #define HWM_GET_TX_LEN(txd) ((int)AIX_REVERSE((txd)->txd_tbctrl)& RD_LENGTH)
232 * This macro may be invoked by the OS-specific module to get the
242 #define HWM_GET_TX_USED(smc,queue) (int) (smc)->hw.fp.tx_q[queue].tx_used
249 * This macro may be invoked by the OS-specific module to get the
261 (smc)->hw.fp.tx_q[queue].tx_curr_put
268 * This macro may be invoked by the OS-specific module to read
277 #define HWM_GET_RX_FRAG_LEN(rxd) ((int)AIX_REVERSE((rxd)->rxd_rbctrl)& \
285 * This macro may be invoked by the OS-specific module to read
294 #define HWM_GET_RX_PHYS(rxd) (u_long)AIX_REVERSE((rxd)->rxd_rbadr)
301 * This macro may be invoked by the OS-specific module to get
311 #define HWM_GET_RX_USED(smc) ((int)(smc)->hw.fp.rx_q[QUEUE_R1].rx_used)
318 * This macro may be invoked by the OS-specific module to get
325 #define HWM_GET_RX_FREE(smc) ((int)(smc)->hw.fp.rx_q[QUEUE_R1].rx_free-1)
332 * This macro may be invoked by the OS-specific module to get the
341 (smc)->hw.fp.rx_q[QUEUE_R1].rx_curr_put
348 * This macro is invoked by the OS-specific before it left the
351 * given low water mark.
353 * para low_water low water mark of used RxD's
359 if ((low_water) >= (smc)->hw.fp.rx_q[QUEUE_R1].rx_used) {\