1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| // SPDX-License-Identifier: GPL-2.0
|
| #include <linux/types.h>
| #include <linux/kconfig.h>
| #include <linux/list.h>
| #include <linux/slab.h>
| #include <linux/security.h>
| #include <linux/highmem.h>
| #include <linux/umh.h>
| #include <linux/sysctl.h>
|
| #include "fallback.h"
| #include "firmware.h"
|
| /*
| * firmware fallback configuration table
| */
|
| struct firmware_fallback_config fw_fallback_config = {
| .force_sysfs_fallback = IS_ENABLED(CONFIG_FW_LOADER_USER_HELPER_FALLBACK),
| .loading_timeout = 60,
| .old_timeout = 60,
| };
| EXPORT_SYMBOL_NS_GPL(fw_fallback_config, FIRMWARE_LOADER_PRIVATE);
|
| #ifdef CONFIG_SYSCTL
| struct ctl_table firmware_config_table[] = {
| {
| .procname = "force_sysfs_fallback",
| .data = &fw_fallback_config.force_sysfs_fallback,
| .maxlen = sizeof(unsigned int),
| .mode = 0644,
| .proc_handler = proc_douintvec_minmax,
| .extra1 = SYSCTL_ZERO,
| .extra2 = SYSCTL_ONE,
| },
| {
| .procname = "ignore_sysfs_fallback",
| .data = &fw_fallback_config.ignore_sysfs_fallback,
| .maxlen = sizeof(unsigned int),
| .mode = 0644,
| .proc_handler = proc_douintvec_minmax,
| .extra1 = SYSCTL_ZERO,
| .extra2 = SYSCTL_ONE,
| },
| { }
| };
| #endif
|
|