Home
last modified time | relevance | path

Searched refs:periodic_size (Results 1 – 5 of 5) sorted by relevance

/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/
H A DdrvEHCI_SCHD.cxx280 % (ehci->periodic_size << 3); in enable_periodic()
330 } while (frame < ehci->periodic_size); in intr_deschedule()
401 } while ((frame += period) < ehci->periodic_size); in check_period()
505 } while (frame1 < ehci->periodic_size); in qh_schedule()
911 urb->start_frame %= ehci->periodic_size; in get_iso_range()
927 *max %= ehci->periodic_size; in get_iso_range()
949 U32 mod = ehci->periodic_size << 3; in itd_schedule()
1005 itd_link (ehci, (uframe >> 3) % ehci->periodic_size, in itd_schedule()
1120 mod = ehci->periodic_size << 3; in scan_periodic()
1261 frame = (frame + 1) % ehci->periodic_size; in scan_periodic()
H A DdrvEHCI_MEM.cxx247 …hcd_buffer_free(&ehci->hcd.self, ehci->periodic_size * sizeof (void *), ehci->periodic, ehci->peri… in ehci_mem_cleanup()
346 …ehci->periodic = (U32*) hcd_buffer_alloc(&ehci->hcd.self,ehci->periodic_size * sizeof (void *),0,&… in ehci_mem_init()
354 for (i = 0; i < ehci->periodic_size; i++) in ehci_mem_init()
358 ehci->pshadow = (union ehci_shadow *) kmalloc (ehci->periodic_size * sizeof (void *), flags); in ehci_mem_init()
363 memset (ehci->pshadow, 0, ehci->periodic_size * sizeof (void *)); in ehci_mem_init()
H A DdrvEhciHcd.c6903 ehci->periodic_size = DEFAULT_I_TDPS; in ehci_start()
7234 case 0: ehci->periodic_size = 1024; break; in ehci_start()
7235 case 1: ehci->periodic_size = 512; break; in ehci_start()
7236 case 2: ehci->periodic_size = 256; break; in ehci_start()
7647 return (ehci_readl ((U32)&ehci->regs->frame_index) >> 3) % ehci->periodic_size; in ehci_get_frame()
H A DdrvEHCIDBG.cpp718 temp = snprintf (next, size, "size = %d\n", ehci->periodic_size); in show_periodic()
741 for (i = 0; i < ehci->periodic_size; i++) { in show_periodic()
H A DdrvEHCI.h188 U32 periodic_size; member