Lines Matching refs:sgptr

431 	uint32_t sgptr;  in ahc_update_residual()  local
433 sgptr = ahc_le32toh(scb->hscb->sgptr); in ahc_update_residual()
434 if ((sgptr & SG_RESID_VALID) != 0) in ahc_update_residual()
1134 hscb->sgptr = scb->sg_list_phys | SG_FULL_RESID; in ahc_handle_seqint()
1135 hscb->sgptr = ahc_htole32(hscb->sgptr); in ahc_handle_seqint()
2112 ahc_le32toh(hscb->sgptr),
4175 uint32_t sgptr; in ahc_handle_ign_wide_residue() local
4177 sgptr = ahc_inb(ahc, SCB_RESIDUAL_SGPTR); in ahc_handle_ign_wide_residue()
4178 if ((sgptr & SG_LIST_NULL) != 0 in ahc_handle_ign_wide_residue()
4193 sgptr = ahc_inl(ahc, SCB_RESIDUAL_SGPTR); in ahc_handle_ign_wide_residue()
4196 if ((sgptr & SG_LIST_NULL) != 0) { in ahc_handle_ign_wide_residue()
4209 sgptr &= SG_PTR_MASK; in ahc_handle_ign_wide_residue()
4211 sg = ahc_sg_bus_to_virt(scb, sgptr); in ahc_handle_ign_wide_residue()
4237 sgptr = ahc_sg_virt_to_bus(scb, sg); in ahc_handle_ign_wide_residue()
4239 ahc_outl(ahc, SCB_RESIDUAL_SGPTR, sgptr); in ahc_handle_ign_wide_residue()
4264 uint32_t sgptr; in ahc_reinitialize_dataptrs() local
4270 sgptr = (ahc_inb(ahc, SCB_RESIDUAL_SGPTR + 3) << 24) in ahc_reinitialize_dataptrs()
4275 sgptr &= SG_PTR_MASK; in ahc_reinitialize_dataptrs()
4276 sg = ahc_sg_bus_to_virt(scb, sgptr); in ahc_reinitialize_dataptrs()
6625 uint32_t sgptr; in ahc_calc_residual() local
6646 sgptr = ahc_le32toh(hscb->sgptr); in ahc_calc_residual()
6647 if ((sgptr & SG_RESID_VALID) == 0) in ahc_calc_residual()
6650 sgptr &= ~SG_RESID_VALID; in ahc_calc_residual()
6652 if ((sgptr & SG_LIST_NULL) != 0) in ahc_calc_residual()
6658 if ((sgptr & SG_FULL_RESID) != 0) { in ahc_calc_residual()