Lines Matching +full:auto +full:- +full:detection
1 /*-
59 #define AL_ETH_DEFAULT_SMALL_PACKET_LEN (128 - NET_IP_ALIGN)
60 #define AL_ETH_HEADER_COPY_SIZE (128 - NET_IP_ALIGN)
150 #define AL_ETH_TX_RING_IDX_NEXT(tx_ring, idx) (((idx) + 1) & (AL_ETH_DEFAULT_TX_SW_DESCS - 1))
152 #define AL_ETH_RX_RING_IDX_NEXT(rx_ring, idx) (((idx) + 1) & (AL_ETH_DEFAULT_RX_DESCS - 1))
153 #define AL_ETH_RX_RING_IDX_ADD(rx_ring, idx, n) (((idx) + (n)) & (AL_ETH_DEFAULT_RX_DESCS - 1))
182 /* SFP detection event */
194 /* SFP detection status */
244 * Some features need tri-state capability,
283 #define AL_ETH_TXQ_IRQ_IDX(adapter, q) (1 + (adapter)->num_rx_queues + (q))
334 bool an_en; /* run kr auto-negotiation */
335 bool lt_en; /* run kr link-training */
337 bool sfp_detection_needed; /* true if need to run sfp detection */