Lines Matching refs:slot_vaddr

45 static void xhci_initialize_ep(const int id, const uint64_t slot_vaddr, const int port_id, const in…
48 static int xhci_set_address(const int id, const uint64_t slot_vaddr, const int slot_id, const bool …
137 static __always_inline void __write_ep(int id, uint64_t slot_vaddr, int ep_num, struct xhci_ep_cont… in __write_ep() argument
139 …memcpy((void *)(slot_vaddr + ep_num * xhci_hc[id].context_size), ep, sizeof(struct xhci_ep_context… in __write_ep()
150 static __always_inline void __read_from_ep(int id, uint64_t slot_vaddr, int ep_num, struct xhci_ep_… in __read_from_ep() argument
152 …memcpy(ep, (void *)(slot_vaddr + ep_num * xhci_hc[id].context_size), sizeof(struct xhci_ep_context… in __read_from_ep()
173 …ic __always_inline void __read_from_slot(struct xhci_slot_context_t *slot_ctx, uint64_t slot_vaddr) in __read_from_slot() argument
175 memcpy(slot_ctx, (void *)slot_vaddr, sizeof(struct xhci_slot_context_t)); in __read_from_slot()
931 static void xhci_initialize_ep(const int id, const uint64_t slot_vaddr, const int port_id, const in… in xhci_initialize_ep() argument
989 __write_ep(id, slot_vaddr, ep_num, &ep_ctx); in xhci_initialize_ep()
1001 static int xhci_set_address(const int id, const uint64_t slot_vaddr, const int slot_id, const bool … in xhci_set_address() argument
1015 __read_from_slot(&slot, slot_vaddr); in xhci_set_address()
1016 __read_from_ep(id, slot_vaddr, 1, &ep); in xhci_set_address()
1574 uint64_t slot_vaddr = xhci_initialize_slot(id, port_id, speed, max_packet); in xhci_get_descriptor() local
1576 retval = xhci_set_address(id, slot_vaddr, slot_id, true); in xhci_get_descriptor()
1580 retval = xhci_set_address(id, slot_vaddr, slot_id, false); in xhci_get_descriptor()