Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/usb/core/
Dsysfs.c515 return sprintf(buf, "%d\n", udev->l1_params.besl); in usb2_lpm_besl_show()
523 u8 besl; in usb2_lpm_besl_store() local
525 if (kstrtou8(buf, 0, &besl) || besl > 15) in usb2_lpm_besl_store()
528 udev->l1_params.besl = besl; in usb2_lpm_besl_store()
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-usb175 If the device does not have a preferred besl value then the host can select
176 one instead. This usb2_lpm_besl attribute allows to tune the host selected besl
180 More information on how besl values map to microseconds can be found in
/linux-4.1.27/drivers/usb/host/
Dxhci.c4088 int u2del, besl, besl_host; in xhci_calculate_hird_besl() local
4112 besl = besl_host + besl_device; in xhci_calculate_hird_besl()
4113 if (besl > 15) in xhci_calculate_hird_besl()
4114 besl = 15; in xhci_calculate_hird_besl()
4116 return besl; in xhci_calculate_hird_besl()
4187 hird = udev->l1_params.besl; in xhci_set_usb2_hardware_lpm()
4284 udev->l1_params.besl = XHCI_DEFAULT_BESL; in xhci_update_device()
/linux-4.1.27/include/linux/
Dusb.h421 unsigned int besl; member