Searched refs:asq (Results 1 – 11 of 11) sorted by relevance
/freebsd/sys/dev/iavf/ |
H A D | iavf_adminq.c | 47 hw->aq.asq.tail = IAVF_VF_ATQT1; in iavf_adminq_init_regs() 48 hw->aq.asq.head = IAVF_VF_ATQH1; in iavf_adminq_init_regs() 49 hw->aq.asq.len = IAVF_VF_ATQLEN1; in iavf_adminq_init_regs() 50 hw->aq.asq.bal = IAVF_VF_ATQBAL1; in iavf_adminq_init_regs() 51 hw->aq.asq.bah = IAVF_VF_ATQBAH1; in iavf_adminq_init_regs() 67 ret_code = iavf_allocate_dma_mem(hw, &hw->aq.asq.desc_buf, in iavf_alloc_adminq_asq_ring() 75 ret_code = iavf_allocate_virt_mem(hw, &hw->aq.asq.cmd_buf, in iavf_alloc_adminq_asq_ring() 79 iavf_free_dma_mem(hw, &hw->aq.asq.desc_buf); in iavf_alloc_adminq_asq_ring() 112 iavf_free_virt_mem(hw, &hw->aq.asq.cmd_buf); in iavf_free_adminq_asq() 113 iavf_free_dma_mem(hw, &hw->aq.asq.desc_buf); in iavf_free_adminq_asq() [all …]
|
H A D | iavf_adminq.h | 94 struct iavf_adminq_ring asq; /* send queue */ member
|
H A D | iavf_common.c | 359 if (hw->aq.asq.len) in iavf_check_asq_alive() 360 return !!(rd32(hw, hw->aq.asq.len) & in iavf_check_asq_alive()
|
H A D | if_iavf_iflib.c | 1160 oldreg = reg = rd32(hw, hw->aq.asq.len); in iavf_check_aq_errors() 1177 wr32(hw, hw->aq.asq.len, reg); in iavf_check_aq_errors()
|
/freebsd/sys/dev/ixl/ |
H A D | i40e_adminq.c | 50 hw->aq.asq.tail = I40E_VF_ATQT1; in i40e_adminq_init_regs() 51 hw->aq.asq.head = I40E_VF_ATQH1; in i40e_adminq_init_regs() 52 hw->aq.asq.len = I40E_VF_ATQLEN1; in i40e_adminq_init_regs() 53 hw->aq.asq.bal = I40E_VF_ATQBAL1; in i40e_adminq_init_regs() 54 hw->aq.asq.bah = I40E_VF_ATQBAH1; in i40e_adminq_init_regs() 61 hw->aq.asq.tail = I40E_PF_ATQT; in i40e_adminq_init_regs() 62 hw->aq.asq.head = I40E_PF_ATQH; in i40e_adminq_init_regs() 63 hw->aq.asq.len = I40E_PF_ATQLEN; in i40e_adminq_init_regs() 64 hw->aq.asq.bal = I40E_PF_ATQBAL; in i40e_adminq_init_regs() 65 hw->aq.asq.bah = I40E_PF_ATQBAH; in i40e_adminq_init_regs() [all …]
|
H A D | i40e_adminq.h | 96 struct i40e_adminq_ring asq; /* send queue */ member
|
H A D | i40e_common.c | 397 if (hw->aq.asq.len) { in i40e_check_asq_alive() 399 return !!(rd32(hw, hw->aq.asq.len) & in i40e_check_asq_alive() 402 return !!(rd32(hw, hw->aq.asq.len) & in i40e_check_asq_alive()
|
/freebsd/lib/libvgl/ |
H A D | simple.c | 406 int x = 0, y = b, asq = a*a, asq2 = a*a*2, bsq = b*b; in VGLEllipse() local 407 int bsq2 = b*b*2, d = bsq-asq*b+asq/4, dx = 0, dy = asq2*b; in VGLEllipse() 416 d+=(3*(asq-bsq)/2-(dx+dy))/2; in VGLEllipse() 422 y--; dy-=asq2; d+=asq-dy; in VGLEllipse() 442 int x = 0, y = b, asq = a*a, asq2 = a*a*2, bsq = b*b; in VGLFilledEllipse() local 443 int bsq2 = b*b*2, d = bsq-asq*b+asq/4, dx = 0, dy = asq2*b; in VGLFilledEllipse() 452 d+=(3*(asq-bsq)/2-(dx+dy))/2; in VGLFilledEllipse() 458 y--; dy-=asq2; d+=asq-dy; in VGLFilledEllipse()
|
/freebsd/usr.sbin/bhyve/ |
H A D | pci_nvme.c | 1085 sc->regs.asq, sizeof(struct nvme_command) * asqs); in pci_nvme_init_controller() 1088 sc->regs.asq); in pci_nvme_init_controller() 1094 __func__, sc->regs.asq, sc->submit_queues[0].qbase); in pci_nvme_init_controller() 3055 sc->regs.asq = (sc->regs.asq & (0xFFFFFFFF00000000)) | in pci_nvme_write_bar_0() 3059 sc->regs.asq = (sc->regs.asq & (0x00000000FFFFFFFF)) | in pci_nvme_write_bar_0()
|
/freebsd/sys/dev/nvme/ |
H A D | nvme_ctrlr.c | 364 nvme_mmio_write_8(ctrlr, asq, ctrlr->adminq.cmd_bus_addr); in nvme_ctrlr_enable()
|
H A D | nvme.h | 750 uint64_t asq; /* admin submission queue base addr */ member
|