Home
last modified time | relevance | path

Searched refs:idi_vaddr (Results 1 – 5 of 5) sorted by relevance

/freebsd-11-stable/sys/dev/bnxt/
HDbnxt_hwrm.c97 if (softc->hwrm_cmd_resp.idi_vaddr) in bnxt_free_hwrm_dma_mem()
99 softc->hwrm_cmd_resp.idi_vaddr = NULL; in bnxt_free_hwrm_dma_mem()
119 struct hwrm_err_output *resp = (void *)softc->hwrm_cmd_resp.idi_vaddr; in _hwrm_send_message()
134 void *short_cmd_req = softc->hwrm_short_cmd_req_addr.idi_vaddr; in _hwrm_send_message()
235 (void *)softc->hwrm_cmd_resp.idi_vaddr; in bnxt_hwrm_queue_qportcfg()
272 (void *)softc->hwrm_cmd_resp.idi_vaddr; in bnxt_hwrm_ver_get()
422 (void *)softc->hwrm_cmd_resp.idi_vaddr; in bnxt_hwrm_func_qcaps()
477 (void *)softc->hwrm_cmd_resp.idi_vaddr; in bnxt_hwrm_func_qcfg()
638 resp = (void *)softc->hwrm_cmd_resp.idi_vaddr; in bnxt_hwrm_vnic_cfg()
665 (void *)softc->hwrm_cmd_resp.idi_vaddr; in bnxt_hwrm_vnic_alloc()
[all …]
HDif_bnxt.c513 softc->rx_port_stats = (void *) softc->hw_rx_port_stats.idi_vaddr; in bnxt_rx_queues_alloc()
514 softc->tx_port_stats = (void *) softc->hw_tx_port_stats.idi_vaddr; in bnxt_rx_queues_alloc()
604 memcpy(softc->vnic_info.rss_hash_key_tbl.idi_vaddr, in bnxt_rx_queues_alloc()
615 memset(softc->vnic_info.rss_grp_tbl.idi_vaddr, 0xff, in bnxt_rx_queues_alloc()
648 if (softc->hwrm_short_cmd_req_addr.idi_vaddr) in bnxt_free_hwrm_short_cmd_req()
650 softc->hwrm_short_cmd_req_addr.idi_vaddr = NULL; in bnxt_free_hwrm_short_cmd_req()
880 softc->def_cp_ring.ring.vaddr = softc->def_cp_ring_mem.idi_vaddr; in bnxt_attach_pre()
916 softc->vnic_info.vlan_tag_list.idi_vaddr = NULL; in bnxt_attach_pre()
989 if (softc->vnic_info.vlan_tag_list.idi_vaddr) in bnxt_detach()
1118 softc->vnic_info.rss_grp_tbl.idi_vaddr)[i] = in bnxt_init()
[all …]
HDbnxt_sysctl.c162 struct ctx_hw_stats *tx_stats = (void *)softc->tx_stats.idi_vaddr; in bnxt_create_tx_sysctls()
657 struct ctx_hw_stats *rx_stats = (void *)softc->rx_stats.idi_vaddr; in bnxt_create_rx_sysctls()
738 dma_data.idi_vaddr = NULL; in bnxt_package_ver_sysctl()
746 pkglog = dma_data.idi_vaddr; in bnxt_package_ver_sysctl()
768 dma_data.idi_vaddr = NULL; in bnxt_package_ver_sysctl()
772 if (dma_data.idi_vaddr) in bnxt_package_ver_sysctl()
/freebsd-11-stable/sys/net/
HDiflib.c1282 err = bus_dmamem_alloc(dma->idi_tag, (void**) &dma->idi_vaddr, in iflib_dma_alloc()
1292 err = bus_dmamap_load(dma->idi_tag, dma->idi_map, dma->idi_vaddr, in iflib_dma_alloc()
1305 bus_dmamem_free(dma->idi_tag, dma->idi_vaddr, dma->idi_map); in iflib_dma_alloc()
1341 if (dma->idi_vaddr != NULL) { in iflib_dma_free()
1342 bus_dmamem_free(dma->idi_tag, dma->idi_vaddr, dma->idi_map); in iflib_dma_free()
1343 dma->idi_vaddr = NULL; in iflib_dma_free()
1686 bzero((void *)di->idi_vaddr, di->idi_size); in iflib_txq_setup()
2038 bzero(idi->idi_vaddr, idi->idi_size); in iflib_fl_bufs_free()
2320 bzero((void *)di->idi_vaddr, di->idi_size); in iflib_stop()
2326 bzero((void *)di->idi_vaddr, di->idi_size); in iflib_stop()
[all …]
HDiflib.h267 caddr_t idi_vaddr; member