Home
last modified time | relevance | path

Searched refs:method (Results 1 – 25 of 1000) sorted by relevance

12345678910>>...40

/linux-6.3-rc2/drivers/acpi/acpica/
A Ddsmethod.c323 if (!obj_desc->method.mutex) { in acpi_ds_begin_method_execution()
342 (!(obj_desc->method. in acpi_ds_begin_method_execution()
378 obj_desc->method.mutex->mutex. in acpi_ds_begin_method_execution()
398 obj_desc->method.mutex->mutex. in acpi_ds_begin_method_execution()
417 if (!obj_desc->method.owner_id) { in acpi_ds_begin_method_execution()
428 obj_desc->method.thread_count++; in acpi_ds_begin_method_execution()
435 if (obj_desc->method.mutex) { in acpi_ds_begin_method_execution()
742 if (method_desc->method. in acpi_ds_terminate_control_method()
746 method. in acpi_ds_terminate_control_method()
806 if (method_desc->method. in acpi_ds_terminate_control_method()
[all …]
A Dpsxface.c124 op = acpi_ps_create_scope_op(info->obj_desc->method.aml_start); in acpi_ps_execute_method()
134 acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL, in acpi_ps_execute_method()
142 info->obj_desc->method.aml_start, in acpi_ps_execute_method()
143 info->obj_desc->method.aml_length, info, in acpi_ps_execute_method()
153 if (info->obj_desc->method.info_flags & ACPI_METHOD_MODULE_LEVEL) { in acpi_ps_execute_method()
159 if (info->obj_desc->method.info_flags & ACPI_METHOD_INTERNAL_ONLY) { in acpi_ps_execute_method()
161 info->obj_desc->method.dispatch.implementation(walk_state); in acpi_ps_execute_method()
249 op = acpi_ps_create_scope_op(info->obj_desc->method.aml_start); in acpi_ps_execute_table()
266 info->obj_desc->method.aml_start, in acpi_ps_execute_table()
267 info->obj_desc->method.aml_length, info, in acpi_ps_execute_table()
[all …]
A Ddbmethod.c271 struct acpi_namespace_node *method; in acpi_db_disassemble_method() local
273 method = acpi_db_convert_to_node(name); in acpi_db_disassemble_method()
274 if (!method) { in acpi_db_disassemble_method()
278 if (method->type != ACPI_TYPE_METHOD) { in acpi_db_disassemble_method()
280 name, acpi_ut_get_type_name(method->type))); in acpi_db_disassemble_method()
284 obj_desc = method->object; in acpi_db_disassemble_method()
299 obj_desc->method.aml_start, in acpi_db_disassemble_method()
300 obj_desc->method.aml_length, NULL, in acpi_db_disassemble_method()
311 walk_state->owner_id = obj_desc->method.owner_id; in acpi_db_disassemble_method()
315 status = acpi_ds_scope_stack_push(method, method->type, walk_state); in acpi_db_disassemble_method()
[all …]
/linux-6.3-rc2/arch/arm/mm/
A Dproc-v7-bugs.c74 switch (method) { in spectre_v2_install_workaround()
119 unsigned int state, method = 0; in cpu_v7_spectre_v2_init() local
129 method = SPECTRE_V2_METHOD_BPIALL; in cpu_v7_spectre_v2_init()
135 method = SPECTRE_V2_METHOD_ICIALLU; in cpu_v7_spectre_v2_init()
161 method = SPECTRE_V2_METHOD_HVC; in cpu_v7_spectre_v2_init()
165 method = SPECTRE_V2_METHOD_SMC; in cpu_v7_spectre_v2_init()
185 switch (method) { in spectre_bhb_method_name()
199 if (spectre_bhb_method != method) { in spectre_bhb_install_workaround()
210 spectre_bhb_method = method; in spectre_bhb_install_workaround()
227 unsigned int state, method = 0; in cpu_v7_spectre_bhb_init() local
[all …]
/linux-6.3-rc2/arch/arm64/boot/dts/cavium/
A Dthunder-88xx.dtsi58 method = "smc";
69 enable-method = "psci";
75 enable-method = "psci";
81 enable-method = "psci";
87 enable-method = "psci";
93 enable-method = "psci";
99 enable-method = "psci";
105 enable-method = "psci";
111 enable-method = "psci";
117 enable-method = "psci";
[all …]
/linux-6.3-rc2/Documentation/firmware-guide/acpi/
A Dmethod-tracing.rst15 method tracing facility.
52 control method is being evaluated::
124 # echo "method" > trace_state
195 Disable the method tracing feature.
198 Enable the method tracing feature.
203 "method"
204 Enable the method tracing feature.
209 "method-once"
210 Enable the method tracing feature.
216 Enable the method tracing feature.
[all …]
A Dmethod-customizing.rst14 1. override an existing method which may not work correctly,
16 2. insert a completely new method in order to create a missing
17 method such as _OFF, _ON, _STA, _INI, etc.
38 1. override an existing method
45 Here is an example of a customized \_SB._AC._PSR method::
58 e) assemble the file to generate the AML code of the method.
63 g) override the old method via the debugfs by running
66 2. insert a new method
68 This is easier than overriding an existing method.
69 We just need to create the ASL code of the method we want to
[all …]
/linux-6.3-rc2/tools/testing/selftests/mm/
A Dcharge_reserved_hugetlb.sh156 local method="$6"
181 if [[ "$method" == "1" ]] || [[ "$method" == 2 ]] ||
274 local method="$7"
322 local method="${12}"
400 for method in 0 1 2; do
423 echo private=$private, populate=$populate, method=$method, reserve=$reserve
452 echo private=$private, populate=$populate, method=$method, reserve=$reserve
472 echo private=$private, populate=$populate, method=$method, reserve=$reserve
489 echo private=$private, populate=$populate, method=$method, reserve=$reserve
505 echo private=$private, populate=$populate, method=$method, reserve=$reserve
[all …]
A Dwrite_to_hugetlbfs.c21 enum method { enum
71 enum method method = MAX_METHOD; in main() local
98 method = atoi(optarg); in main()
147 if (method == MAX_METHOD) { in main()
152 printf("Using method=%d\n", method); in main()
164 switch (method) { in main()
236 if (method == HUGETLBFS) in main()
/linux-6.3-rc2/arch/arm/kernel/
A Dspectre.c26 void spectre_v2_update_state(unsigned int state, unsigned int method) in spectre_v2_update_state() argument
30 spectre_v2_methods |= method; in spectre_v2_update_state()
36 const char *method; in cpu_show_spectre_v2() local
49 method = "Branch predictor hardening"; in cpu_show_spectre_v2()
53 method = "I-cache invalidation"; in cpu_show_spectre_v2()
58 method = "Firmware call"; in cpu_show_spectre_v2()
62 method = "History overwrite"; in cpu_show_spectre_v2()
66 method = "Multiple mitigations"; in cpu_show_spectre_v2()
70 return sprintf(buf, "Mitigation: %s\n", method); in cpu_show_spectre_v2()
/linux-6.3-rc2/arch/sh/boards/
A Dof-generic.c57 const char *method = NULL; in sh_of_smp_probe() local
68 if (!method) in sh_of_smp_probe()
69 of_property_read_string(np, "enable-method", &method); in sh_of_smp_probe()
76 if (!method) { in sh_of_smp_probe()
78 of_property_read_string(np, "enable-method", &method); in sh_of_smp_probe()
82 pr_info("CPU enable method: %s\n", method); in sh_of_smp_probe()
83 if (method) in sh_of_smp_probe()
84 for (; m->method; m++) in sh_of_smp_probe()
85 if (!strcmp(m->method, method)) { in sh_of_smp_probe()
/linux-6.3-rc2/drivers/iio/adc/
A Dtwl4030-madc.c132 u16 method; member
499 method = &twl4030_conversion_methods[r->method]; in twl4030_madc_threaded_irq_handler()
501 twl4030_madc_read_channels(madc, method->rbase, in twl4030_madc_threaded_irq_handler()
520 method = &twl4030_conversion_methods[r->method]; in twl4030_madc_threaded_irq_handler()
552 method->ctrl); in twl4030_madc_start_conversion()
555 method->ctrl); in twl4030_madc_start_conversion()
613 if (req->method < TWL4030_MADC_RT || req->method > TWL4030_MADC_SW2) { in twl4030_madc_conversion()
622 method = &twl4030_conversion_methods[req->method]; in twl4030_madc_conversion()
633 method->avg); in twl4030_madc_conversion()
637 method->avg); in twl4030_madc_conversion()
[all …]
/linux-6.3-rc2/arch/arm64/boot/dts/marvell/
A Darmada-ap810-ap0-octa-core.dtsi20 enable-method = "psci";
26 enable-method = "psci";
32 enable-method = "psci";
38 enable-method = "psci";
44 enable-method = "psci";
50 enable-method = "psci";
56 enable-method = "psci";
62 enable-method = "psci";
/linux-6.3-rc2/arch/arm64/boot/dts/arm/
A Dfoundation-v8-psci.dtsi10 method = "smc";
15 enable-method = "psci";
19 enable-method = "psci";
23 enable-method = "psci";
27 enable-method = "psci";
/linux-6.3-rc2/arch/arm64/boot/dts/hisilicon/
A Dhip05.dtsi18 method = "smc";
88 enable-method = "psci";
96 enable-method = "psci";
104 enable-method = "psci";
112 enable-method = "psci";
120 enable-method = "psci";
128 enable-method = "psci";
136 enable-method = "psci";
144 enable-method = "psci";
152 enable-method = "psci";
[all …]
A Dhip07.dtsi18 method = "smc";
271 enable-method = "psci";
280 enable-method = "psci";
289 enable-method = "psci";
298 enable-method = "psci";
307 enable-method = "psci";
316 enable-method = "psci";
325 enable-method = "psci";
334 enable-method = "psci";
343 enable-method = "psci";
[all …]
/linux-6.3-rc2/arch/arm64/boot/dts/mediatek/
A Dmt6755.dtsi18 method = "smc";
28 enable-method = "psci";
35 enable-method = "psci";
42 enable-method = "psci";
49 enable-method = "psci";
56 enable-method = "psci";
63 enable-method = "psci";
70 enable-method = "psci";
77 enable-method = "psci";
/linux-6.3-rc2/Documentation/devicetree/bindings/arm/cpu-enable-method/
A Dmarvell,berlin-smp2 Secondary CPU enable-method "marvell,berlin-smp" binding
5 This document describes the "marvell,berlin-smp" method for enabling secondary
6 CPUs. To apply to all CPUs, a single "marvell,berlin-smp" enable method should
9 Enable method name: "marvell,berlin-smp"
15 This enable method needs valid nodes compatible with "arm,cortex-a9-scu" and
23 enable-method = "marvell,berlin-smp";
A Dnuvoton,npcm750-smp2 Secondary CPU enable-method "nuvoton,npcm750-smp" binding
5 To apply to all CPUs, a single "nuvoton,npcm750-smp" enable method should be
8 Enable method name: "nuvoton,npcm750-smp"
14 This enable method needs valid nodes compatible with "arm,cortex-a9-scu" and
22 enable-method = "nuvoton,npcm750-smp";
/linux-6.3-rc2/arch/arm/boot/dts/
A Dqcom-msm8916-smp.dtsi6 enable-method = "qcom,msm8916-smp";
9 enable-method = "qcom,msm8916-smp";
12 enable-method = "qcom,msm8916-smp";
15 enable-method = "qcom,msm8916-smp";
19 /delete-property/ entry-method;
/linux-6.3-rc2/Documentation/devicetree/bindings/
A Dnuma.txt178 enable-method = "psci";
186 enable-method = "psci";
193 enable-method = "psci";
200 enable-method = "psci";
207 enable-method = "psci";
214 enable-method = "psci";
221 enable-method = "psci";
228 enable-method = "psci";
235 enable-method = "psci";
243 enable-method = "psci";
[all …]
/linux-6.3-rc2/Documentation/devicetree/bindings/arm/hisilicon/controller/
A Dhip04-bootwrapper.yaml7 title: Bootwrapper boot method
12 description: Bootwrapper boot method (software protocol on SMP)
19 boot-method:
22 Address and size of boot method.
32 - boot-method
/linux-6.3-rc2/arch/arm64/boot/dts/nvidia/
A Dtegra210-p2530.dtsi51 enable-method = "psci";
55 enable-method = "psci";
59 enable-method = "psci";
63 enable-method = "psci";
69 method = "smc";
/linux-6.3-rc2/Documentation/devicetree/bindings/arm/
A Dcpus.yaml194 enable-method:
212 - brcm,bcm11351-cpu-method
355 enable-method:
358 - brcm,bcm11351-cpu-method
361 # and if enable-method is present
363 - enable-method
375 rockchip,pmu: [enable-method]
446 enable-method = "spin-table";
454 enable-method = "spin-table";
462 enable-method = "spin-table";
[all …]
/linux-6.3-rc2/tools/testing/selftests/tc-testing/creating-plugins/
A DAddingPlugins.txt43 This method takes a testcount (number of tests to be run) and
47 and the post_suite method can refer to it when dumping the "skipped"
52 post-suite method using this info passed in to the pre_suite method.
57 The post_suite method will receive the ordinal number of the last
64 The pre_case method will receive the ordinal number of the test
70 The adjust_command method receives a string representing
84 The adjust_command method must return the adjusted command so tdc
90 The add_args method receives the argparser object and can add
95 The add_args method should return the argparser object.
100 The check_args method is so that the plugin can do validation on

Completed in 37 milliseconds

12345678910>>...40