Home | History | Annotate | Download | only in pci

Lines Matching refs:rpr_msgin

2002 		bus_dmamap_sync(sc->sc_dmat, rp->rpr_msgin.dma_map, 0,
2003 rp->rpr_msgin.dma_map->dm_mapsize, BUS_DMASYNC_POSTWRITE);
2014 memset(rp->rpr_msgin.dma_vaddr, 0, rp->rpr_msgin.dma_size);
2367 ubsec_dma_free(sc, &rp->rpr_msgin);
2921 if (ubsec_dma_malloc(sc, (msglen + 7) / 8, &rp->rpr_msgin, 0)) {
2925 memset(rp->rpr_msgin.dma_vaddr, 0, (msglen + 7) / 8);
2927 rp->rpr_msgin.dma_vaddr,
2945 mcr->mcr_ipktbuf.pb_addr = htole32(rp->rpr_msgin.dma_paddr);
2947 mcr->mcr_ipktbuf.pb_len = htole32(rp->rpr_msgin.dma_size);
2955 if (rp->rpr_msgin.dma_paddr & 3 || rp->rpr_msgin.dma_size & 3) {
2957 device_xname(sc->sc_dev), (u_long) rp->rpr_msgin.dma_paddr,
2958 (u_long) rp->rpr_msgin.dma_size);
2976 bus_dmamap_sync(sc->sc_dmat, rp->rpr_msgin.dma_map,
2977 0, rp->rpr_msgin.dma_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
2993 if (rp->rpr_msgin.dma_map != NULL) {
2994 memset(rp->rpr_msgin.dma_vaddr, 0,
2995 rp->rpr_msgin.dma_size);
2996 ubsec_dma_free(sc, &rp->rpr_msgin);