Searched refs:octep_vf_device (Results 1 – 11 of 11) sorted by relevance
| /drivers/net/ethernet/marvell/octeon_ep_vf/ |
| A D | octep_vf_main.h | 63 void (*reinit_regs)(struct octep_vf_device *oct); 69 void (*enable_io_queues)(struct octep_vf_device *oct); 71 void (*enable_iq)(struct octep_vf_device *oct, int q); 75 void (*reset_io_queues)(struct octep_vf_device *oct); 76 void (*dump_registers)(struct octep_vf_device *oct); 125 struct octep_vf_device *octep_vf_dev; 219 struct octep_vf_device { struct 324 int octep_vf_setup_iqs(struct octep_vf_device *oct); 325 void octep_vf_free_iqs(struct octep_vf_device *oct); 327 int octep_vf_setup_oqs(struct octep_vf_device *oct); [all …]
|
| A D | octep_vf_mbox.h | 149 int octep_vf_setup_mbox(struct octep_vf_device *oct); 150 void octep_vf_delete_mbox(struct octep_vf_device *oct); 155 int octep_vf_mbox_set_mtu(struct octep_vf_device *oct, int mtu); 156 int octep_vf_mbox_set_mac_addr(struct octep_vf_device *oct, char *mac_addr); 157 int octep_vf_mbox_get_mac_addr(struct octep_vf_device *oct, char *mac_addr); 158 int octep_vf_mbox_version_check(struct octep_vf_device *oct); 159 int octep_vf_mbox_set_rx_state(struct octep_vf_device *oct, bool state); 160 int octep_vf_mbox_set_link_status(struct octep_vf_device *oct, bool status); 161 int octep_vf_mbox_get_link_status(struct octep_vf_device *oct, u8 *oper_up); 162 int octep_vf_mbox_dev_remove(struct octep_vf_device *oct); [all …]
|
| A D | octep_vf_main.c | 172 struct octep_vf_device *oct = ioq_vector->octep_vf_dev; in octep_vf_ioq_intr_handler() 454 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_open() 522 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_stop() 596 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_start_xmit() 779 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_get_stats64() 810 struct octep_vf_device *oct = container_of(work, struct octep_vf_device, in octep_vf_tx_timeout_task() 833 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_tx_timeout() 843 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_set_mac() 862 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_change_mtu() 881 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_set_features() [all …]
|
| A D | octep_vf_cn9k.c | 17 static void cn93_vf_dump_q_regs(struct octep_vf_device *oct, int qno) in cn93_vf_dump_q_regs() 81 static void cn93_vf_reset_iq(struct octep_vf_device *oct, int q_no) in cn93_vf_reset_iq() 106 static void cn93_vf_reset_oq(struct octep_vf_device *oct, int q_no) in cn93_vf_reset_oq() 122 static void octep_vf_reset_io_queues_cn93(struct octep_vf_device *oct) in octep_vf_reset_io_queues_cn93() 136 static void octep_vf_init_config_cn93_vf(struct octep_vf_device *oct) in octep_vf_init_config_cn93_vf() 260 static void cn93_handle_vf_mbox_intr(struct octep_vf_device *oct) in cn93_handle_vf_mbox_intr() 272 struct octep_vf_device *oct; in octep_vf_ioq_intr_handler_cn93() 291 static void octep_vf_reinit_regs_cn93(struct octep_vf_device *oct) in octep_vf_reinit_regs_cn93() 404 static void octep_vf_enable_io_queues_cn93(struct octep_vf_device *oct) in octep_vf_enable_io_queues_cn93() 446 static void octep_vf_dump_registers_cn93(struct octep_vf_device *oct) in octep_vf_dump_registers_cn93() [all …]
|
| A D | octep_vf_cnxk.c | 17 static void cnxk_vf_dump_q_regs(struct octep_vf_device *oct, int qno) in cnxk_vf_dump_q_regs() 84 static void cnxk_vf_reset_iq(struct octep_vf_device *oct, int q_no) in cnxk_vf_reset_iq() 108 static void cnxk_vf_reset_oq(struct octep_vf_device *oct, int q_no) in cnxk_vf_reset_oq() 124 static void octep_vf_reset_io_queues_cnxk(struct octep_vf_device *oct) in octep_vf_reset_io_queues_cnxk() 138 static void octep_vf_init_config_cnxk_vf(struct octep_vf_device *oct) in octep_vf_init_config_cnxk_vf() 271 static void cnxk_handle_vf_mbox_intr(struct octep_vf_device *oct) in cnxk_handle_vf_mbox_intr() 283 struct octep_vf_device *oct; in octep_vf_ioq_intr_handler_cnxk() 302 static void octep_vf_reinit_regs_cnxk(struct octep_vf_device *oct) in octep_vf_reinit_regs_cnxk() 415 static void octep_vf_enable_io_queues_cnxk(struct octep_vf_device *oct) in octep_vf_enable_io_queues_cnxk() 457 static void octep_vf_dump_registers_cnxk(struct octep_vf_device *oct) in octep_vf_dump_registers_cnxk() [all …]
|
| A D | octep_vf_mbox.c | 23 int octep_vf_setup_mbox(struct octep_vf_device *oct) in octep_vf_setup_mbox() 41 void octep_vf_delete_mbox(struct octep_vf_device *oct) in octep_vf_delete_mbox() 54 int octep_vf_mbox_version_check(struct octep_vf_device *oct) in octep_vf_mbox_version_check() 81 struct octep_vf_device *oct = NULL; in octep_vf_mbox_work() 86 oct = (struct octep_vf_device *)wk->ctxptr; in octep_vf_mbox_work() 112 static int __octep_vf_mbox_send_cmd(struct octep_vf_device *oct, in __octep_vf_mbox_send_cmd() 236 int octep_vf_mbox_set_mtu(struct octep_vf_device *oct, int mtu) in octep_vf_mbox_set_mtu() 267 int octep_vf_mbox_set_mac_addr(struct octep_vf_device *oct, char *mac_addr) in octep_vf_mbox_set_mac_addr() 311 int octep_vf_mbox_set_rx_state(struct octep_vf_device *oct, bool state) in octep_vf_mbox_set_rx_state() 374 int octep_vf_mbox_dev_remove(struct octep_vf_device *oct) in octep_vf_mbox_dev_remove() [all …]
|
| A D | octep_vf_rx.c | 79 static int octep_vf_oq_refill(struct octep_vf_device *oct, struct octep_vf_oq *oq) in octep_vf_oq_refill() 123 static int octep_vf_setup_oq(struct octep_vf_device *oct, int q_no) in octep_vf_setup_oq() 229 struct octep_vf_device *oct = oq->octep_vf_dev; in octep_vf_free_oq() 252 int octep_vf_setup_oqs(struct octep_vf_device *oct) in octep_vf_setup_oqs() 284 void octep_vf_oq_dbell_init(struct octep_vf_device *oct) in octep_vf_oq_dbell_init() 297 void octep_vf_free_oqs(struct octep_vf_device *oct) in octep_vf_free_oqs() 318 static int octep_vf_oq_check_hw_for_pkts(struct octep_vf_device *oct, in octep_vf_oq_check_hw_for_pkts() 354 static int __octep_vf_oq_process_rx(struct octep_vf_device *oct, in __octep_vf_oq_process_rx() 482 struct octep_vf_device *oct = oq->octep_vf_dev; in octep_vf_oq_process_rx()
|
| A D | octep_vf_tx.c | 36 struct octep_vf_device *oct = iq->octep_vf_dev; in octep_vf_iq_process_completions() 156 void octep_vf_clean_iqs(struct octep_vf_device *oct) in octep_vf_clean_iqs() 174 static int octep_vf_setup_iq(struct octep_vf_device *oct, int q_no) in octep_vf_setup_iq() 264 struct octep_vf_device *oct = iq->octep_vf_dev; in octep_vf_free_iq() 292 int octep_vf_setup_iqs(struct octep_vf_device *oct) in octep_vf_setup_iqs() 321 void octep_vf_free_iqs(struct octep_vf_device *oct) in octep_vf_free_iqs()
|
| A D | octep_vf_ethtool.c | 50 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_get_drvinfo() 59 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_get_strings() 88 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_get_sset_count() 104 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_get_ethtool_stats() 204 struct octep_vf_device *oct = netdev_priv(netdev); in octep_vf_get_link_ksettings()
|
| A D | octep_vf_rx.h | 167 struct octep_vf_device *octep_vf_dev;
|
| A D | octep_vf_tx.h | 115 struct octep_vf_device *octep_vf_dev;
|
Completed in 24 milliseconds