Lines Matching refs:osdep
333 struct iavf_osdep *osdep = (struct iavf_osdep *)hw->back; in iavf_rd32() local
335 KASSERT(reg < osdep->mem_bus_space_size, in iavf_rd32()
337 (uintmax_t)reg, (uintmax_t)osdep->mem_bus_space_size)); in iavf_rd32()
339 return (bus_space_read_4(osdep->mem_bus_space_tag, in iavf_rd32()
340 osdep->mem_bus_space_handle, reg)); in iavf_rd32()
354 struct iavf_osdep *osdep = (struct iavf_osdep *)hw->back; in iavf_wr32() local
356 KASSERT(reg < osdep->mem_bus_space_size, in iavf_wr32()
358 (uintmax_t)reg, (uintmax_t)osdep->mem_bus_space_size)); in iavf_wr32()
360 bus_space_write_4(osdep->mem_bus_space_tag, in iavf_wr32()
361 osdep->mem_bus_space_handle, reg, val); in iavf_wr32()
374 struct iavf_osdep *osdep = (struct iavf_osdep *)hw->back; in iavf_flush() local
376 rd32(hw, osdep->flush_reg); in iavf_flush()