• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/gadget/

Lines Matching defs:periodic

80  * @periodic: Set if this is a periodic ep, such as Interrupt
83 * @fifo_size: The size of the FIFO (for periodic IN endpoints)
84 * @fifo_load: The amount of data loaded into the FIFO (periodic IN)
86 * @size_loaded: The last loaded size for DxEPTSIZE for periodic IN
93 * For periodic IN endpoints, we have fifo_size and fifo_load to try
94 * and keep track of the amount of data in the periodic FIFO for each
97 * as in shared-fifo mode periodic in acts like a single-frame packet
119 unsigned int periodic:1;
303 * s3c_hsotg_init_fifo - initialise non-periodic FIFOs
396 * is_ep_periodic - return true if the endpoint is in periodic mode.
399 * Returns true if the endpoint is in periodic mode, meaning it is being
404 return hs_ep->periodic;
461 bool periodic = is_ep_periodic(hs_ep);
475 if (periodic && !hsotg->dedicated_fifos) {
535 /* limit to 512 bytes of data, it seems at least on the non-periodic
549 periodic ? S3C_GINTSTS_PTxFEmp :
574 periodic ? S3C_GINTSTS_PTxFEmp :
587 if (periodic)
773 /* set these anyway, we may need them for non-periodic in */
2000 * @periodic: True if this is a periodic FIFO interrupt
2002 static void s3c_hsotg_irq_fifoempty(struct s3c_hsotg *hsotg, bool periodic)
2015 if ((periodic && !ep->periodic) ||
2016 (!periodic && ep->periodic))
2284 /* default, set to non-periodic */
2285 hs_ep->periodic = 0;
2304 hs_ep->periodic = 1;
2317 * a unique tx-fifo even if it is non-periodic.
2905 /* show periodic fifo settings */
3012 * periodic transmission FIFOs.
3021 seq_printf(seq, "Non-periodic FIFOs:\n");