Lines Matching full:loading
38 * use small loading timeout for caching devices' firmware because all these
40 * ready for completing firmware loading now. The maximum size of firmware in
91 * There is a small window in which user can write to 'loading' in __fw_load_abort()
92 * between loading done and disappearance of 'loading' in __fw_load_abort()
215 int loading = 0; in firmware_loading_show() local
219 loading = fw_sysfs_loading(fw_sysfs->fw_priv); in firmware_loading_show()
222 return sysfs_emit(buf, "%d\n", loading); in firmware_loading_show()
226 * firmware_loading_store() - set value in the 'loading' control file
229 * @buf: buffer to scan for loading control value
245 int loading = simple_strtol(buf, NULL, 10); in firmware_loading_store() local
252 switch (loading) { in firmware_loading_store()
265 * Several loading requests may be pending on in firmware_loading_store()
267 * see the mapped 'buf->data' once the loading in firmware_loading_store()
294 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading); in firmware_loading_store()
305 static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
495 * In charge of constructing a sysfs fallback interface for firmware loading.
503 /* fall back on userspace loading */ in fw_load_sysfs_fallback()
561 dev_dbg(device, "firmware: %s loading timed out\n", in fw_load_from_user_helper()
626 * @opt_flags: options to control firmware loading behaviour, as defined by
631 * a fallback mechanism through userspace by exposing a sysfs loading
632 * interface. Userspace is in charge of loading the firmware through the sysfs
633 * loading interface. This sysfs fallback mechanism may be disabled completely