Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 1730) sorted by relevance

12345678910>>...70

/Linux-v5.15/scripts/
Dconfig19 --enable|-e option Enable option
20 --disable|-d option Disable option
21 --module|-m option Turn option into a module
22 --set-str option string
23 Set option to "string"
24 --set-val option value
25 Set option to value
26 --undefine|-u option Undefine option
27 --state|-s option Print state of option (n,y,m,undef)
29 --enable-after|-E beforeopt option
[all …]
/Linux-v5.15/drivers/firmware/efi/libstub/
Dgop.c27 enum efi_cmdline_option option; member
36 } cmdline = { .option = EFI_CMDLINE_NONE };
38 static bool parse_modenum(char *option, char **next) in parse_modenum() argument
42 if (!strstarts(option, "mode=")) in parse_modenum()
44 option += strlen("mode="); in parse_modenum()
45 m = simple_strtoull(option, &option, 0); in parse_modenum()
46 if (*option && *option++ != ',') in parse_modenum()
48 cmdline.option = EFI_CMDLINE_MODE_NUM; in parse_modenum()
51 *next = option; in parse_modenum()
55 static bool parse_res(char *option, char **next) in parse_res() argument
[all …]
/Linux-v5.15/drivers/pnp/
Dquirks.c27 struct pnp_option *option, in quirk_awe32_add_ports() argument
35 "%d\n", pnp_option_set(option)); in quirk_awe32_add_ports()
39 *new_option = *option; in quirk_awe32_add_ports()
42 list_add(&new_option->list, &option->list); in quirk_awe32_add_ports()
47 pnp_option_set(option)); in quirk_awe32_add_ports()
52 struct pnp_option *option; in quirk_awe32_resources() local
59 list_for_each_entry(option, &dev->options, list) { in quirk_awe32_resources()
60 if (pnp_option_is_dependent(option) && in quirk_awe32_resources()
61 pnp_option_set(option) != set) { in quirk_awe32_resources()
62 set = pnp_option_set(option); in quirk_awe32_resources()
[all …]
Dresource.c38 struct pnp_option *option; in pnp_build_option() local
40 option = kzalloc(sizeof(struct pnp_option), GFP_KERNEL); in pnp_build_option()
41 if (!option) in pnp_build_option()
44 option->flags = option_flags; in pnp_build_option()
45 option->type = type; in pnp_build_option()
47 list_add_tail(&option->list, &dev->options); in pnp_build_option()
48 return option; in pnp_build_option()
54 struct pnp_option *option; in pnp_register_irq_resource() local
57 option = pnp_build_option(dev, IORESOURCE_IRQ, option_flags); in pnp_register_irq_resource()
58 if (!option) in pnp_register_irq_resource()
[all …]
Dsupport.c91 char *pnp_option_priority_name(struct pnp_option *option) in pnp_option_priority_name() argument
93 switch (pnp_option_priority(option)) { in pnp_option_priority_name()
104 void dbg_pnp_show_option(struct pnp_dev *dev, struct pnp_option *option) in dbg_pnp_show_option() argument
113 if (pnp_option_is_dependent(option)) in dbg_pnp_show_option()
116 pnp_option_set(option), in dbg_pnp_show_option()
117 pnp_option_priority_name(option)); in dbg_pnp_show_option()
122 switch (option->type) { in dbg_pnp_show_option()
124 port = &option->u.port; in dbg_pnp_show_option()
133 mem = &option->u.mem; in dbg_pnp_show_option()
142 irq = &option->u.irq; in dbg_pnp_show_option()
[all …]
/Linux-v5.15/arch/m68k/
DMakefile43 cpuflags-$(CONFIG_M5441x) = $(call cc-option,-mcpu=54455,-mcfv4e)
44 cpuflags-$(CONFIG_M54xx) = $(call cc-option,-mcpu=5475,-m5200)
45 cpuflags-$(CONFIG_M5407) = $(call cc-option,-mcpu=5407,-m5200)
46 cpuflags-$(CONFIG_M532x) = $(call cc-option,-mcpu=532x,-m5307)
47 cpuflags-$(CONFIG_M537x) = $(call cc-option,-mcpu=537x,-m5307)
48 cpuflags-$(CONFIG_M5307) = $(call cc-option,-mcpu=5307,-m5200)
49 cpuflags-$(CONFIG_M528x) = $(call cc-option,-mcpu=528x,-m5307)
50 cpuflags-$(CONFIG_M5275) = $(call cc-option,-mcpu=5275,-m5307)
51 cpuflags-$(CONFIG_M5272) = $(call cc-option,-mcpu=5272,-m5307)
52 cpuflags-$(CONFIG_M5271) = $(call cc-option,-mcpu=5271,-m5307)
[all …]
/Linux-v5.15/tools/perf/trace/beauty/
Dprctl.c16 static size_t prctl__scnprintf_option(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_option() argument
18 return strarray__scnprintf(&strarray__prctl_options, bf, size, "%d", show_prefix, option); in prctl__scnprintf_option()
21 static size_t prctl__scnprintf_set_mm(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_set_mm() argument
24 return strarray__scnprintf(&strarray__prctl_set_mm_options, bf, size, "%d", show_prefix, option); in prctl__scnprintf_set_mm()
29 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg2() local
31 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg2()
37 if (option == PR_SET_NAME) in syscall_arg__scnprintf_prctl_arg2()
45 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg3() local
47 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg3()
55 unsigned long option = arg->val; in syscall_arg__scnprintf_prctl_option() local
[all …]
/Linux-v5.15/tools/include/linux/
Dkconfig.h44 #define IS_BUILTIN(option) __is_defined(option) argument
50 #define IS_MODULE(option) __is_defined(option##_MODULE) argument
58 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \ argument
59 __and(IS_MODULE(option), __is_defined(MODULE)))
65 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option)) argument
/Linux-v5.15/include/linux/
Dkconfig.h50 #define IS_BUILTIN(option) __is_defined(option) argument
57 #define IS_MODULE(option) __is_defined(option##_MODULE) argument
65 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \ argument
66 __and(IS_MODULE(option), __is_defined(MODULE)))
73 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option)) argument
/Linux-v5.15/drivers/misc/cardreader/
Drts5227.c87 struct rtsx_cr_option *option = &pcr->option; in rts5227_init_from_cfg() local
122 if (option->ltr_en) { in rts5227_init_from_cfg()
127 option->ltr_enabled = true; in rts5227_init_from_cfg()
128 option->ltr_active = true; in rts5227_init_from_cfg()
129 rtsx_set_ltr_latency(pcr, option->ltr_active_latency); in rts5227_init_from_cfg()
131 option->ltr_enabled = false; in rts5227_init_from_cfg()
137 option->force_clkreq_0 = false; in rts5227_init_from_cfg()
139 option->force_clkreq_0 = true; in rts5227_init_from_cfg()
146 struct rtsx_cr_option *option = &pcr->option; in rts5227_extra_init_hw() local
174 if (option->force_clkreq_0) in rts5227_extra_init_hw()
[all …]
Drts5260.c178 struct rtsx_cr_option *option = &pcr->option; in rts5260_card_power_on() local
180 if (option->ocp_en) in rts5260_card_power_on()
274 if (pcr->option.ocp_en) in rts5260_card_power_off()
282 struct rtsx_cr_option *option = &pcr->option; in rts5260_init_ocp() local
284 if (option->ocp_en) { in rts5260_init_ocp()
290 option->sd_800mA_ocp_thd); in rts5260_init_ocp()
362 if (!pcr->option.ocp_en) in rts5260_process_ocp()
485 struct rtsx_cr_option *option = &pcr->option; in rts5260_init_from_cfg() local
508 if (option->ltr_en) { in rts5260_init_from_cfg()
513 option->ltr_enabled = true; in rts5260_init_from_cfg()
[all …]
Drts5249.c90 struct rtsx_cr_option *option = &(pcr->option); in rts5249_init_from_cfg() local
119 if (option->ltr_en) { in rts5249_init_from_cfg()
124 option->ltr_enabled = true; in rts5249_init_from_cfg()
125 option->ltr_active = true; in rts5249_init_from_cfg()
126 rtsx_set_ltr_latency(pcr, option->ltr_active_latency); in rts5249_init_from_cfg()
128 option->ltr_enabled = false; in rts5249_init_from_cfg()
135 struct rtsx_cr_option *option = &(pcr->option); in rts5249_init_from_hw() local
139 option->force_clkreq_0 = false; in rts5249_init_from_hw()
141 option->force_clkreq_0 = true; in rts5249_init_from_hw()
254 struct rtsx_cr_option *option = &(pcr->option); in rts5249_extra_init_hw() local
[all …]
Drts5228.c173 struct rtsx_cr_option *option = &pcr->option; in rts5228_card_power_on() local
175 if (option->ocp_en) in rts5228_card_power_on()
310 if (pcr->option.ocp_en) in rts5228_card_power_off()
318 struct rtsx_cr_option *option = &pcr->option; in rts5228_init_ocp() local
320 if (option->ocp_en) { in rts5228_init_ocp()
328 RTS5228_LDO1_OCP_THD_MASK, option->sd_800mA_ocp_thd); in rts5228_init_ocp()
365 if (!pcr->option.ocp_en) in rts5228_process_ocp()
384 struct rtsx_cr_option *option = &pcr->option; in rts5228_init_from_cfg() local
418 if (option->ltr_en) { in rts5228_init_from_cfg()
423 option->ltr_enabled = true; in rts5228_init_from_cfg()
[all …]
Drts5261.c174 struct rtsx_cr_option *option = &pcr->option; in rts5261_card_power_on() local
176 if (option->ocp_en) in rts5261_card_power_on()
310 if (pcr->option.ocp_en) in rts5261_card_power_off()
318 struct rtsx_cr_option *option = &pcr->option; in rts5261_init_ocp() local
320 if (option->ocp_en) { in rts5261_init_ocp()
328 RTS5261_LDO1_OCP_THD_MASK, option->sd_800mA_ocp_thd); in rts5261_init_ocp()
362 if (!pcr->option.ocp_en) in rts5261_process_ocp()
430 struct rtsx_cr_option *option = &pcr->option; in rts5261_init_from_cfg() local
459 if (option->ltr_en) { in rts5261_init_from_cfg()
464 option->ltr_enabled = true; in rts5261_init_from_cfg()
[all …]
/Linux-v5.15/arch/powerpc/
DMakefile15 HAS_BIARCH := $(call cc-option-yn, -m32)
83 KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect)
85 KBUILD_CFLAGS += $(call cc-option,-mbig-endian)
94 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1)
95 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mcall-aixdesc)
96 aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1)
105 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian)
107 aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian)
129 ifeq ($(call cc-option-yn,-mcmodel=medium),y)
144 CFLAGS-$(CONFIG_PPC64) := $(call cc-option,-mtraceback=no)
[all …]
/Linux-v5.15/net/mac80211/
DKconfig13 This option enables the hardware independent IEEE 802.11
29 This option enables the 'minstrel' TX rate control algorithm
36 This option selects the default rate control algorithm
64 Select this option to enable 802.11 mesh operation in mac80211
75 This option enables a few LED triggers for different
91 Select this option to have mac80211 register the
96 The overhead in this option is that all the messages
104 This option collects various mac80211 debug settings.
110 This option affects code generation in mac80211, when
115 This option increases code size a bit and inserts a lot
[all …]
/Linux-v5.15/arch/x86/
DMakefile_32.cpu5 tune = $(call cc-option,-mtune=$(1),$(2))
8 align := -falign-functions=0 $(call cc-option,-falign-jumps=0) $(call cc-option,-falign-loops=0)
27 cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8,-march=athlon)
30 cflags-$(CONFIG_MWINCHIPC6) += $(call cc-option,-march=winchip-c6,-march=i586)
31 cflags-$(CONFIG_MWINCHIP3D) += $(call cc-option,-march=winchip2,-march=i586)
32 cflags-$(CONFIG_MCYRIXIII) += $(call cc-option,-march=c3,-march=i486) $(align)
33 cflags-$(CONFIG_MVIAC3_2) += $(call cc-option,-march=c3-2,-march=i686)
36 cflags-$(CONFIG_MATOM) += $(call cc-option,-march=atom,$(call cc-option,-march=core2,-march=i686))…
37 $(call cc-option,-mtune=atom,$(call cc-option,-mtune=generic))
44 cflags-$(CONFIG_MGEODE_LX) += $(call cc-option,-march=geode,-march=pentium-mmx)
[all …]
/Linux-v5.15/arch/powerpc/platforms/85xx/
DKconfig23 When selected, this option enables cache-sram support
26 parameters should be passed when this option is enabled.
32 This option enables support for the Freescale BSC9131RDB board.
41 This option enables support for the C293PCIE board
47 This option enables support for the Freescale BSC9132 QDS board.
56 This option enables support for the MPC 8540 ADS board
63 This option enables support for the MPC 8560 ADS board
71 This option enables support for the MPC85xx CDS board
80 This option enables support for the MPC85xx MDS board
87 This option enables support for the MPC8536 DS board
[all …]
/Linux-v5.15/tools/perf/Documentation/
Dintel-bts.txt17 recording must also be stipulated i.e. the --per-thread option for
28 option is:
32 Currently Intel BTS is limited to per-thread tracing so the --per-thread option
36 snapshot option
39 The snapshot option is the same as Intel PT (refer Intel PT documentation).
42 auxtrace mmap size option
45 The mmap size option is the same as Intel PT (refer Intel PT documentation).
52 This can be further controlled by option --itrace. The --itrace option is
57 To disable trace decoding entirely, use the option --no-itrace.
60 dump option
[all …]
/Linux-v5.15/drivers/ata/
DKconfig47 This option adds parsing of ATA command descriptions and error bits
49 This option will enlarge the kernel by approx. 6KB. Disable it only
58 This option adds support for "libata.force=" kernel parameter for
64 This option will enlarge the kernel by approx. 3KB. Disable it if
76 This option adds support for ATA-related ACPI objects.
82 option libata.noacpi=1
88 This option adds support for SATA Zero Power Optical Disc
102 This option adds support for SATA Port Multipliers
114 This option enables support for AHCI Serial ATA.
141 This option enables support for Platform AHCI Serial ATA
[all …]
/Linux-v5.15/lib/
DKconfig.ubsan8 This option enables the Undefined Behaviour sanity checker.
18 depends on $(cc-option, -fsanitize-undefined-trap-on-error)
33 …depends on !$(cc-option,-Werror=unused-command-line-argument -fsanitize=bounds -fsanitize-coverage…
41 def_bool $(cc-option,-fsanitize=bounds)
44 def_bool $(cc-option,-fsanitize=array-bounds)
52 This option enables detection of directly indexed out of bounds
76 depends on $(cc-option,-fsanitize=local-bounds)
78 This option enables -fsanitize=local-bounds which traps when an
82 Enabling this option detects errors due to accesses through a
90 depends on $(cc-option,-fsanitize=shift)
[all …]
/Linux-v5.15/tools/bpf/
Dbpf_exp.l36 %option align
37 %option ecs
39 %option nounput
40 %option noreject
41 %option noinput
42 %option noyywrap
44 %option 8bit
45 %option caseless
46 %option yylineno
/Linux-v5.15/arch/x86/lib/
Dcmdline.c29 const char *option) in __cmdline_find_option_bool() argument
59 opptr = option; in __cmdline_find_option_bool()
122 const char *option, char *buffer, int bufsize) in __cmdline_find_option() argument
153 opptr = option; in __cmdline_find_option()
204 int cmdline_find_option_bool(const char *cmdline, const char *option) in cmdline_find_option_bool() argument
206 return __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option); in cmdline_find_option_bool()
209 int cmdline_find_option(const char *cmdline, const char *option, char *buffer, in cmdline_find_option() argument
212 return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option, in cmdline_find_option()
/Linux-v5.15/security/selinux/
DKconfig17 This option adds a kernel parameter 'selinux', which allows SELinux
18 to be disabled at boot. If this option is selected, SELinux
20 command line. The purpose of this option is to allow a single
32 This option enables writing to a selinuxfs node 'disable', which
35 This option is similar to the selinux=0 boot parameter, but is to
40 NOTE: selecting this option will disable the '__ro_after_init'
43 option.
45 WARNING: this option is deprecated and will be removed in a future
55 This enables the development support option of NSA SELinux,
57 policies. If unsure, say Y. With this option enabled, the
[all …]
/Linux-v5.15/drivers/gpu/drm/exynos/
DKconfig11 Choose this option if you have a Samsung SoC Exynos chipset.
23 Choose this option if you want to use Exynos FIMD for DRM.
28 Choose this option if you want to use Exynos5433 DECON for DRM.
34 Choose this option if you want to use Exynos DECON for DRM.
39 Choose this option if you want to use Exynos Mixer for DRM.
44 Choose this option if you want to use Exynos VIDI for DRM.
79 Choose this option if you want to use Exynos HDMI for DRM.
85 Choose this option if you want to use Exynos MIC for DRM.
93 Choose this option if you want to use Exynos G2D for DRM.
102 Choose this option if you want to use Exynos FIMC for DRM.
[all …]

12345678910>>...70