Home
last modified time | relevance | path

Searched refs:besl (Results 1 – 9 of 9) sorted by relevance

/Linux-v5.15/drivers/usb/dwc2/
Dparams.c132 p->besl = false; in dwc2_set_amlogic_g12a_params()
200 p->besl = false; in dwc2_set_stm32mp15_hsotg_params()
354 p->besl = true; in dwc2_set_param_lpm()
359 p->besl = false; in dwc2_set_param_lpm()
685 CHECK_BOOL(besl, hsotg->params.lpm); in dwc2_check_params()
686 CHECK_BOOL(besl, (hsotg->hw_params.snpsid >= DWC2_CORE_REV_3_00a)); in dwc2_check_params()
688 CHECK_RANGE(hird_threshold, 0, hsotg->params.besl ? 12 : 7, 0); in dwc2_check_params()
Dcore.h492 bool besl; member
Ddebugfs.c704 print_param(seq, p, besl); in params_show()
Dgadget.c5247 val |= hsotg->params.besl ? GLPMCFG_ENBESL : 0; in dwc2_gadget_init_lpm()
/Linux-v5.15/drivers/usb/core/
Dsysfs.c555 return sprintf(buf, "%d\n", udev->l1_params.besl); in usb2_lpm_besl_show()
563 u8 besl; in usb2_lpm_besl_store() local
565 if (kstrtou8(buf, 0, &besl) || besl > 15) in usb2_lpm_besl_store()
568 udev->l1_params.besl = besl; in usb2_lpm_besl_store()
/Linux-v5.15/Documentation/ABI/testing/
Dsysfs-bus-usb266 If the device does not have a preferred besl value then the host can select
267 one instead. This usb2_lpm_besl attribute allows to tune the host selected besl
271 More information on how besl values map to microseconds can be found in
/Linux-v5.15/drivers/usb/gadget/
Dcomposite.c668 unsigned int besl = 0; in bos_desc() local
692 besl = USB_BESL_BASELINE_VALID | in bos_desc()
696 besl |= USB_BESL_DEEP_VALID | in bos_desc()
710 USB_BESL_SUPPORT | besl); in bos_desc()
/Linux-v5.15/drivers/usb/host/
Dxhci.c4403 int u2del, besl, besl_host; in xhci_calculate_hird_besl() local
4427 besl = besl_host + besl_device; in xhci_calculate_hird_besl()
4428 if (besl > 15) in xhci_calculate_hird_besl()
4429 besl = 15; in xhci_calculate_hird_besl()
4431 return besl; in xhci_calculate_hird_besl()
4505 hird = udev->l1_params.besl; in xhci_set_usb2_hardware_lpm()
4604 udev->l1_params.besl = XHCI_DEFAULT_BESL; in xhci_update_device()
/Linux-v5.15/include/linux/
Dusb.h500 unsigned int besl; member