Home
last modified time | relevance | path

Searched refs:periodic_size (Results 1 - 22 of 22) sorted by relevance

/kernel/linux/linux-5.10/drivers/usb/host/
H A Dehci-mem.c129 ehci->periodic_size * sizeof (u32), in ehci_mem_cleanup()
190 ehci->periodic_size * sizeof(__le32), in ehci_mem_init()
208 for (i = 0; i < ehci->periodic_size; i++) in ehci_mem_init()
212 for (i = 0; i < ehci->periodic_size; i++) in ehci_mem_init()
217 ehci->pshadow = kcalloc(ehci->periodic_size, sizeof(void *), flags); in ehci_mem_init()
H A Dfotg210-hcd.c534 temp = scnprintf(next, size, "size = %d\n", fotg210->periodic_size); in fill_periodic_buffer()
542 for (i = 0; i < fotg210->periodic_size; i++) { in fill_periodic_buffer()
1905 fotg210->periodic_size * sizeof(u32), in fotg210_mem_cleanup()
1953 fotg210->periodic_size * sizeof(__le32), in fotg210_mem_init()
1958 for (i = 0; i < fotg210->periodic_size; i++) in fotg210_mem_init()
1962 fotg210->pshadow = kcalloc(fotg210->periodic_size, sizeof(void *), in fotg210_mem_init()
2763 } else if (qh->period > fotg210->periodic_size) { in qh_make()
2764 qh->period = fotg210->periodic_size; in qh_make()
2788 if (qh->period > fotg210->periodic_size) { in qh_make()
2789 qh->period = fotg210->periodic_size; in qh_make()
[all...]
H A Dehci-sched.c422 for (; frame < ehci->periodic_size; frame += period) { in tt_no_collision()
529 for (i = qh->ps.phase; i < ehci->periodic_size; i += period) { in qh_link_periodic()
604 for (i = qh->ps.phase; i < ehci->periodic_size; i += period) in qh_unlink_periodic()
1469 unsigned mod = ehci->periodic_size << 3; in iso_stream_schedule()
1784 itd_link(ehci, frame & (ehci->periodic_size - 1), itd); in itd_link_urb()
1951 itd_link_urb(ehci, urb, ehci->periodic_size << 3, stream); in itd_submit()
2174 sitd_link(ehci, (next_uframe >> 3) & (ehci->periodic_size - 1), in sitd_link_urb()
2328 sitd_link_urb(ehci, urb, ehci->periodic_size << 3, stream); in sitd_submit()
2346 unsigned fmask = ehci->periodic_size - 1; in scan_isoc()
H A Dehci-hcd.c482 * periodic_size can shrink by USBCMD update if hcc_params allows. in ehci_init()
484 ehci->periodic_size = DEFAULT_I_TDPS; in ehci_init()
497 case 0: ehci->periodic_size = 1024; break; in ehci_init()
498 case 1: ehci->periodic_size = 512; break; in ehci_init()
499 case 2: ehci->periodic_size = 256; break; in ehci_init()
1092 return (ehci_read_frame_index(ehci) >> 3) % ehci->periodic_size; in ehci_get_frame()
H A Doxu210hp-hcd.c115 #define HCC_PGM_FRAMELISTLEN(p) ((p)&(1 << 1)) /* true: periodic_size changes*/
429 unsigned int periodic_size; member
1169 for (i = 0; i < oxu->periodic_size; i++) in ehci_mem_init()
1190 for (i = 0; i < oxu->periodic_size; i++) in ehci_mem_init()
1194 oxu->pshadow = kcalloc(oxu->periodic_size, sizeof(void *), flags); in ehci_mem_init()
2317 % (oxu->periodic_size << 3); in enable_periodic()
2364 for (i = qh->start; i < oxu->periodic_size; i += period) { in qh_link_periodic()
2433 for (i = qh->start; i < oxu->periodic_size; i += period) in qh_unlink_periodic()
2509 } while ((frame += 1) < oxu->periodic_size); in check_period()
2517 } while ((frame += period) < oxu->periodic_size); in check_period()
[all...]
H A Dehci-q.c822 } else if (urb->interval > ehci->periodic_size << 3) { in qh_make()
823 urb->interval = ehci->periodic_size << 3; in qh_make()
854 if (urb->interval > ehci->periodic_size) in qh_make()
855 urb->interval = ehci->periodic_size; in qh_make()
H A Dfotg210.h115 unsigned periodic_size; member
224 #define HCC_PGM_FRAMELISTLEN(p) ((p)&(1 << 1)) /* true: periodic_size changes*/
H A Dehci.h152 unsigned periodic_size; member
H A Dehci-dbg.c642 temp = scnprintf(next, size, "size = %d\n", ehci->periodic_size); in fill_periodic_buffer()
651 for (i = 0; i < ehci->periodic_size; i++) { in fill_periodic_buffer()
/kernel/linux/linux-6.6/drivers/usb/host/
H A Dehci-mem.c128 ehci->periodic_size * sizeof (u32), in ehci_mem_cleanup()
189 ehci->periodic_size * sizeof(__le32), in ehci_mem_init()
207 for (i = 0; i < ehci->periodic_size; i++) in ehci_mem_init()
211 for (i = 0; i < ehci->periodic_size; i++) in ehci_mem_init()
216 ehci->pshadow = kcalloc(ehci->periodic_size, sizeof(void *), flags); in ehci_mem_init()
H A Dehci-sched.c428 for (; frame < ehci->periodic_size; frame += period) { in tt_no_collision()
536 for (i = qh->ps.phase; i < ehci->periodic_size; i += period) { in qh_link_periodic()
611 for (i = qh->ps.phase; i < ehci->periodic_size; i += period) in qh_unlink_periodic()
1480 unsigned mod = ehci->periodic_size << 3; in iso_stream_schedule()
1795 itd_link(ehci, frame & (ehci->periodic_size - 1), itd); in itd_link_urb()
1962 itd_link_urb(ehci, urb, ehci->periodic_size << 3, stream); in itd_submit()
2185 sitd_link(ehci, (next_uframe >> 3) & (ehci->periodic_size - 1), in sitd_link_urb()
2339 sitd_link_urb(ehci, urb, ehci->periodic_size << 3, stream); in sitd_submit()
2357 unsigned fmask = ehci->periodic_size - 1; in scan_isoc()
H A Dehci-hcd.c483 * periodic_size can shrink by USBCMD update if hcc_params allows. in ehci_init()
485 ehci->periodic_size = DEFAULT_I_TDPS; in ehci_init()
498 case 0: ehci->periodic_size = 1024; break; in ehci_init()
499 case 1: ehci->periodic_size = 512; break; in ehci_init()
500 case 2: ehci->periodic_size = 256; break; in ehci_init()
1090 return (ehci_read_frame_index(ehci) >> 3) % ehci->periodic_size; in ehci_get_frame()
H A Doxu210hp-hcd.c115 #define HCC_PGM_FRAMELISTLEN(p) ((p)&(1 << 1)) /* true: periodic_size changes*/
429 unsigned int periodic_size; member
1169 for (i = 0; i < oxu->periodic_size; i++) in ehci_mem_init()
1190 for (i = 0; i < oxu->periodic_size; i++) in ehci_mem_init()
1194 oxu->pshadow = kcalloc(oxu->periodic_size, sizeof(void *), flags); in ehci_mem_init()
2318 % (oxu->periodic_size << 3); in enable_periodic()
2365 for (i = qh->start; i < oxu->periodic_size; i += period) { in qh_link_periodic()
2434 for (i = qh->start; i < oxu->periodic_size; i += period) in qh_unlink_periodic()
2510 } while ((frame += 1) < oxu->periodic_size); in check_period()
2518 } while ((frame += period) < oxu->periodic_size); in check_period()
[all...]
H A Dehci-q.c823 } else if (urb->interval > ehci->periodic_size << 3) { in qh_make()
824 urb->interval = ehci->periodic_size << 3; in qh_make()
855 if (urb->interval > ehci->periodic_size) in qh_make()
856 urb->interval = ehci->periodic_size; in qh_make()
H A Dehci.h152 unsigned periodic_size; member
H A Dehci-dbg.c642 temp = scnprintf(next, size, "size = %d\n", ehci->periodic_size); in fill_periodic_buffer()
651 for (i = 0; i < ehci->periodic_size; i++) { in fill_periodic_buffer()
/kernel/linux/linux-5.10/drivers/usb/isp1760/
H A Disp1760-hcd.h65 unsigned periodic_size; member
H A Disp1760-hcd.c446 * periodic_size can shrink by USBCMD update if hcc_params allows. in priv_init()
448 priv->periodic_size = DEFAULT_I_TDPS; in priv_init()
2078 return (fr >> 3) % priv->periodic_size; in isp1760_get_frame()
/kernel/linux/linux-6.6/drivers/usb/isp1760/
H A Disp1760-hcd.h68 unsigned periodic_size; member
H A Disp1760-hcd.c696 * periodic_size can shrink by USBCMD update if hcc_params allows. in priv_init()
698 priv->periodic_size = DEFAULT_I_TDPS; in priv_init()
2454 return (fr >> 3) % priv->periodic_size; in isp1760_get_frame()
/kernel/linux/linux-6.6/drivers/usb/fotg210/
H A Dfotg210-hcd.c533 temp = scnprintf(next, size, "size = %d\n", fotg210->periodic_size); in fill_periodic_buffer()
541 for (i = 0; i < fotg210->periodic_size; i++) { in fill_periodic_buffer()
1906 fotg210->periodic_size * sizeof(u32), in fotg210_mem_cleanup()
1954 fotg210->periodic_size * sizeof(__le32), in fotg210_mem_init()
1959 for (i = 0; i < fotg210->periodic_size; i++) in fotg210_mem_init()
1963 fotg210->pshadow = kcalloc(fotg210->periodic_size, sizeof(void *), in fotg210_mem_init()
2764 } else if (qh->period > fotg210->periodic_size) { in qh_make()
2765 qh->period = fotg210->periodic_size; in qh_make()
2789 if (qh->period > fotg210->periodic_size) { in qh_make()
2790 qh->period = fotg210->periodic_size; in qh_make()
[all...]
H A Dfotg210-hcd.h115 unsigned periodic_size; member
222 #define HCC_PGM_FRAMELISTLEN(p) ((p)&(1 << 1)) /* true: periodic_size changes*/

Completed in 45 milliseconds