HomeSort by: relevance | last modified time | path
    Searched defs:qdm (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/dev/pci/qat/
qat_hw17.c 103 struct qat_dmamem *qdm; local in function:qat_adm_mailbox_init
110 qdm = &sc->sc_admin_comms.qadc_const_tbl_dma;
111 error = qat_alloc_dmamem(sc, qdm, PAGE_SIZE, PAGE_SIZE);
115 memcpy(qdm->qdm_dma_vaddr,
118 bus_dmamap_sync(sc->sc_dmat, qdm->qdm_dma_map, 0,
119 qdm->qdm_dma_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
qat.c 662 qat_free_dmamem(struct qat_softc *sc, struct qat_dmamem *qdm)
665 bus_dmamap_unload(sc->sc_dmat, qdm->qdm_dma_map);
666 bus_dmamap_destroy(sc->sc_dmat, qdm->qdm_dma_map);
667 bus_dmamem_unmap(sc->sc_dmat, qdm->qdm_dma_vaddr, qdm->qdm_dma_size);
668 bus_dmamem_free(sc->sc_dmat, &qdm->qdm_dma_seg, 1);
669 explicit_memset(qdm, 0, sizeof(*qdm));
673 qat_alloc_dmamem(struct qat_softc *sc, struct qat_dmamem *qdm,
679 0, &qdm->qdm_dma_seg, 1, &nseg, BUS_DMA_NOWAIT)
1754 struct qat_dmamem *qdm = &qcb->qcb_symck_dmamems[i]; local in function:qat_crypto_setup_ring
1833 struct qat_dmamem *qdm = &qcy->qcy_session_dmamems[i]; local in function:qat_crypto_init
    [all...]
  /src/sys/dev/acpi/
qcomscm.c 320 struct qcscm_dmamem *qdm; local in function:qcscm_tee_app_get_id
331 qdm = qcscm_dmamem_alloc(sc, PAGE_SIZE, 8);
332 if (qdm == NULL)
336 memcpy(QCSCM_DMA_KVA(qdm, 0), name, strlen(name));
342 args[0] = QCSCM_DMA_DVA(qdm);
359 qcscm_dmamem_free(sc, qdm);
424 struct qcscm_dmamem *qdm; local in function:qcscm_uefi_get_variable
438 qdm = qcscm_dmamem_alloc(sc, round_page(reqsize + respsize), 8);
439 if (qdm == NULL)
442 req = QCSCM_DMA_KVA(qdm, reqoff)
537 struct qcscm_dmamem *qdm; local in function:qcscm_uefi_set_variable
621 struct qcscm_dmamem *qdm; local in function:qcscm_uefi_get_next_variable
993 struct qcscm_dmamem *qdm; local in function:qcscm_dmamem_alloc
    [all...]

Completed in 273 milliseconds