Symbol: MCX_PAGE_SIZE
sys/dev/pci/if_mcx.c
127
#define MCX_DOORBELL_AREA_SIZE MCX_PAGE_SIZE
sys/dev/pci/if_mcx.c
132
#define MCX_WQ_DOORBELL_BASE MCX_PAGE_SIZE/2
sys/dev/pci/if_mcx.c
2803
if (cq_stride * cq_size > MCX_PAGE_SIZE) {
sys/dev/pci/if_mcx.c
2809
MCX_PAGE_SIZE) != 0) {
sys/dev/pci/if_mcx.c
2814
if (mcx_dmamem_alloc(sc, &sc->sc_cmdq_mem, MCX_PAGE_SIZE,
sys/dev/pci/if_mcx.c
2815
MCX_PAGE_SIZE) != 0) {
sys/dev/pci/if_mcx.c
3552
*pas = htobe64(MCX_DMA_DVA(buf) + (i * MCX_PAGE_SIZE));
sys/dev/pci/if_mcx.c
3918
bus_dma_iter_add(&iter, MCX_PAGE_SIZE);
sys/dev/pci/if_mcx.c
4376
MCX_PAGE_SIZE);
sys/dev/pci/if_mcx.c
4380
if (mcx_dmamem_alloc(sc, &eq->eq_mem, npages * MCX_PAGE_SIZE,
sys/dev/pci/if_mcx.c
4381
MCX_PAGE_SIZE) != 0) {
sys/dev/pci/if_mcx.c
4671
MCX_PAGE_SIZE);
sys/dev/pci/if_mcx.c
4675
if (mcx_dmamem_alloc(sc, &cq->cq_mem, npages * MCX_PAGE_SIZE,
sys/dev/pci/if_mcx.c
4676
MCX_PAGE_SIZE) != 0) {
sys/dev/pci/if_mcx.c
4825
MCX_PAGE_SIZE);
sys/dev/pci/if_mcx.c
4829
if (mcx_dmamem_alloc(sc, &rx->rx_rq_mem, npages * MCX_PAGE_SIZE,
sys/dev/pci/if_mcx.c
4830
MCX_PAGE_SIZE) != 0) {
sys/dev/pci/if_mcx.c
5182
MCX_PAGE_SIZE);
sys/dev/pci/if_mcx.c
5186
if (mcx_dmamem_alloc(sc, &tx->tx_sq_mem, npages * MCX_PAGE_SIZE,
sys/dev/pci/if_mcx.c
5187
MCX_PAGE_SIZE) != 0) {
sys/dev/pci/if_mcx.c
7038
offset = (MCX_PAGE_SIZE * uar) + MCX_UAR_CQ_DOORBELL;
sys/dev/pci/if_mcx.c
7128
offset = (MCX_PAGE_SIZE * uar) + MCX_UAR_EQ_DOORBELL_ARM;
sys/dev/pci/if_mcx.c
7816
bf_base = (tx->tx_uar * MCX_PAGE_SIZE) + MCX_UAR_BF;
sys/dev/pci/if_mcx.c
8298
bus_size_t len = pages * MCX_PAGE_SIZE;
sys/dev/pci/if_mcx.c
8304
if (bus_dmamem_alloc(sc->sc_dmat, len, MCX_PAGE_SIZE, 0,
sys/dev/pci/if_mcx.c
8325
if (bus_dmamap_create(sc->sc_dmat, len, pages, MCX_PAGE_SIZE,
sys/dev/pci/if_mcx.c
8326
MCX_PAGE_SIZE, BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW /*|BUS_DMA_64BIT*/,