Home
last modified time | relevance | path

Searched refs:UHCI_PTR_TERM (Results 1 – 6 of 6) sorted by relevance

/linux-2.4.37.9/drivers/usb/host/
Dusb-uhci-debug.h10 if (qh->hw.qh.head & UHCI_PTR_TERM) in uhci_show_qh()
17 if (qh->hw.qh.element & UHCI_PTR_TERM) in uhci_show_qh()
70 if (td->hw.td.link & UHCI_PTR_TERM)
89 if (td->hw.td.link & UHCI_PTR_TERM) in uhci_show_td_queue()
114 if (!(qh->hw.qh.element & UHCI_PTR_TERM)) in uhci_show_queue()
117 if (qh->hw.qh.head & UHCI_PTR_TERM) in uhci_show_queue()
Duhci.c173 td->link = UHCI_PTR_TERM; in uhci_alloc_td()
280 td->link = UHCI_PTR_TERM; in uhci_remove_td()
325 ptd->link = UHCI_PTR_TERM; in uhci_insert_tds_in_qh()
350 qh->element = UHCI_PTR_TERM; in uhci_alloc_qh()
351 qh->link = UHCI_PTR_TERM; in uhci_alloc_qh()
461 qh->element = qh->link = UHCI_PTR_TERM; in uhci_remove_qh()
623 pltd->link = UHCI_PTR_TERM; in uhci_delete_queued_urb()
2044 uhci->skel_term_qh->link = UHCI_PTR_TERM; in rh_int_timer_do()
2879 uhci->skel_ls_control_qh->element = UHCI_PTR_TERM; in alloc_uhci()
2882 uhci->skel_hs_control_qh->element = UHCI_PTR_TERM; in alloc_uhci()
[all …]
Dusb-uhci.c181 s->chain_end->hw.qh.head&=cpu_to_le32(~UHCI_PTR_TERM); in enable_desc_loop()
200 s->chain_end->hw.qh.head|=cpu_to_le32(UHCI_PTR_TERM); in disable_desc_loop()
264 set_td_link((*new), UHCI_PTR_TERM | (flags & UHCI_PTR_BITS)); // last by default in alloc_td()
300 set_qh_element(qh, new->dma_addr | UHCI_PTR_TERM); in insert_td()
384 set_qh_head(*new, UHCI_PTR_TERM); in alloc_qh()
385 set_qh_element(*new, UHCI_PTR_TERM); in alloc_qh()
411 if (!(old->hw.qh.head & cpu_to_le32(UHCI_PTR_TERM))) in insert_qh()
617 qh->hw.qh.element &= cpu_to_le32(~UHCI_PTR_TERM); // remove TERM bit in init_skel()
637 set_qh_head(s->chain_end, s->control_chain->dma_addr | UHCI_PTR_QH | UHCI_PTR_TERM); in init_skel()
800 qh->hw.qh.element &= cpu_to_le32(~UHCI_PTR_TERM); in uhci_submit_control_urb()
[all …]
Duhci.h62 #define UHCI_PTR_TERM 0x0001 macro
Dusb-uhci.h73 #define UHCI_PTR_TERM 0x0001 macro
Duhci-debug.h420 if (qh->link != UHCI_PTR_TERM) { in uhci_sprint_schedule()