Lines Matching refs:mr
1676 ddi_map_req_t mr; in axq_map_phys() local
1693 mr.map_op = DDI_MO_MAP_LOCKED; in axq_map_phys()
1694 mr.map_type = DDI_MT_REGSPEC; in axq_map_phys()
1695 mr.map_obj.rp = phys_spec; in axq_map_phys()
1696 mr.map_prot = PROT_READ | PROT_WRITE; in axq_map_phys()
1697 mr.map_flags = DDI_MF_KERNEL_MAPPING; in axq_map_phys()
1698 mr.map_handlep = hp; in axq_map_phys()
1699 mr.map_vers = DDI_MAP_VERSION; in axq_map_phys()
1701 result = ddi_map(dip, &mr, 0, 0, addrp); in axq_map_phys()
1716 ddi_map_req_t mr; in axq_unmap_phys() local
1724 mr.map_op = DDI_MO_UNMAP; in axq_unmap_phys()
1725 mr.map_type = DDI_MT_REGSPEC; in axq_unmap_phys()
1726 mr.map_obj.rp = ph; in axq_unmap_phys()
1727 mr.map_prot = PROT_READ | PROT_WRITE; in axq_unmap_phys()
1728 mr.map_flags = DDI_MF_KERNEL_MAPPING; in axq_unmap_phys()
1729 mr.map_handlep = hp; in axq_unmap_phys()
1730 mr.map_vers = DDI_MAP_VERSION; in axq_unmap_phys()
1732 (void) ddi_map(hp->ah_dip, &mr, hp->ah_offset, in axq_unmap_phys()