Lines Matching refs:buf_res

173 	struct usb_page_search buf_res;  in ohci_controller_init()  local
246 usbd_get_page(&sc->sc_hw.hcca_pc, 0, &buf_res); in ohci_controller_init()
247 OWRITE4(sc, OHCI_HCCA, buf_res.physaddr); in ohci_controller_init()
249 usbd_get_page(&sc->sc_hw.ctrl_start_pc, 0, &buf_res); in ohci_controller_init()
250 OWRITE4(sc, OHCI_CONTROL_HEAD_ED, buf_res.physaddr); in ohci_controller_init()
252 usbd_get_page(&sc->sc_hw.bulk_start_pc, 0, &buf_res); in ohci_controller_init()
253 OWRITE4(sc, OHCI_BULK_HEAD_ED, buf_res.physaddr); in ohci_controller_init()
307 struct usb_page_search buf_res; in ohci_init_ed() local
310 usbd_get_page(pc, 0, &buf_res); in ohci_init_ed()
312 ed = buf_res.buffer; in ohci_init_ed()
314 ed->ed_self = htole32(buf_res.physaddr); in ohci_init_ed()
324 struct usb_page_search buf_res; in ohci_init() local
390 usbd_get_page(&sc->sc_hw.hcca_pc, 0, &buf_res); in ohci_init()
392 sc->sc_hcca_p = buf_res.buffer; in ohci_init()
1242 struct usb_page_search buf_res; in ohci_setup_standard_chain_sub() local
1325 usbd_get_page(temp->pc, buf_offset, &buf_res); in ohci_setup_standard_chain_sub()
1326 td->td_cbp = htole32(buf_res.physaddr); in ohci_setup_standard_chain_sub()
1329 usbd_get_page(temp->pc, buf_offset, &buf_res); in ohci_setup_standard_chain_sub()
1330 td->td_be = htole32(buf_res.physaddr); in ohci_setup_standard_chain_sub()
1821 struct usb_page_search buf_res; in ohci_device_isoc_enter() local
1903 usbd_get_page(xfer->frbuffers, buf_offset - length, &buf_res); in ohci_device_isoc_enter()
1904 length = OHCI_PAGE_MASK(buf_res.physaddr); in ohci_device_isoc_enter()
1905 buf_res.physaddr = in ohci_device_isoc_enter()
1906 OHCI_PAGE(buf_res.physaddr); in ohci_device_isoc_enter()
1907 td->itd_bp0 = htole32(buf_res.physaddr); in ohci_device_isoc_enter()
1908 usbd_get_page(xfer->frbuffers, buf_offset - 1, &buf_res); in ohci_device_isoc_enter()
1909 td->itd_be = htole32(buf_res.physaddr); in ohci_device_isoc_enter()