Home
last modified time | relevance | path

Searched refs:src_epid (Results 1 – 3 of 3) sorted by relevance

/Linux-v4.19/drivers/net/fjes/
Dfjes_trace.h284 TP_PROTO(struct fjes_hw *hw, int src_epid,
286 TP_ARGS(hw, src_epid, status),
288 __field(int, src_epid)
295 __entry->src_epid = src_epid;
297 __entry->ep_status = hw->hw_info.share->ep_status[src_epid];
300 hw->ep_shm_info[src_epid].tx.info->v1i.rx_status;
303 __entry->src_epid, __entry->status, __entry->ep_status,
308 TP_PROTO(struct fjes_hw *hw, int src_epid),
309 TP_ARGS(hw, src_epid),
311 __field(int, src_epid)
[all …]
Dfjes_main.c931 int src_epid) in fjes_txrx_stop_req_irq() argument
937 status = fjes_hw_get_partner_ep_status(hw, src_epid); in fjes_txrx_stop_req_irq()
938 trace_fjes_txrx_stop_req_irq_pre(hw, src_epid, status); in fjes_txrx_stop_req_irq()
945 if (src_epid < hw->my_epid) { in fjes_txrx_stop_req_irq()
947 hw->ep_shm_info[src_epid].tx.info->v1i.rx_status |= in fjes_txrx_stop_req_irq()
951 clear_bit(src_epid, &hw->txrx_stop_req_bit); in fjes_txrx_stop_req_irq()
952 set_bit(src_epid, &adapter->unshare_watch_bitmask); in fjes_txrx_stop_req_irq()
960 if (hw->ep_shm_info[src_epid].rx.info->v1i.rx_status & in fjes_txrx_stop_req_irq()
962 set_bit(src_epid, &hw->epstop_req_bit); in fjes_txrx_stop_req_irq()
969 trace_fjes_txrx_stop_req_irq_post(hw, src_epid); in fjes_txrx_stop_req_irq()
[all …]
Dfjes_hw.c742 static bool fjes_hw_epid_is_stop_requested(struct fjes_hw *hw, int src_epid) in fjes_hw_epid_is_stop_requested() argument
744 return test_bit(src_epid, &hw->txrx_stop_req_bit); in fjes_hw_epid_is_stop_requested()
747 static bool fjes_hw_epid_is_stop_process_done(struct fjes_hw *hw, int src_epid) in fjes_hw_epid_is_stop_process_done() argument
749 return (hw->ep_shm_info[src_epid].tx.info->v1i.rx_status & in fjes_hw_epid_is_stop_process_done()