Searched refs:log2_irq_thresh (Results 1 – 4 of 4) sorted by relevance
/Linux-v6.6/drivers/usb/host/ |
D | ehci-hcd.c | 80 static int log2_irq_thresh; // 0 to 6 variable 81 module_param (log2_irq_thresh, int, S_IRUGO); 82 MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); 533 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in ehci_init() 534 log2_irq_thresh = 0; in ehci_init() 535 temp = 1 << (16 + log2_irq_thresh); in ehci_init()
|
D | oxu210hp-hcd.c | 655 static int log2_irq_thresh; /* 0 to 6 */ variable 656 module_param(log2_irq_thresh, int, S_IRUGO); 657 MODULE_PARM_DESC(log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); 3056 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in oxu_hcd_init() 3057 log2_irq_thresh = 0; in oxu_hcd_init() 3058 temp = 1 << (16 + log2_irq_thresh); in oxu_hcd_init()
|
/Linux-v6.6/drivers/usb/fotg210/ |
D | fotg210-hcd.c | 63 static int log2_irq_thresh; /* 0 to 6 */ variable 64 module_param(log2_irq_thresh, int, S_IRUGO); 65 MODULE_PARM_DESC(log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); 4971 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in hcd_fotg210_init() 4972 log2_irq_thresh = 0; in hcd_fotg210_init() 4973 temp = 1 << (16 + log2_irq_thresh); in hcd_fotg210_init()
|
/Linux-v6.6/Documentation/usb/ |
D | ehci.rst | 113 log2_irq_thresh (default 0):
|