Home
last modified time | relevance | path

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

12345678910>>...31

/Linux-v4.19/drivers/acpi/acpica/
Ddsmethod.c70 op = acpi_ps_alloc_op(AML_METHOD_OP, obj_desc->method.aml_start); in acpi_ds_auto_serialize_method()
88 obj_desc->method.aml_start, in acpi_ds_auto_serialize_method()
89 obj_desc->method.aml_length, NULL, 0); in acpi_ds_auto_serialize_method()
146 walk_state->method_desc->method.sync_level = 0; in acpi_ds_detect_named_opcodes()
147 walk_state->method_desc->method.info_flags |= in acpi_ds_detect_named_opcodes()
269 mutex_desc->mutex.sync_level = method_desc->method.sync_level; in acpi_ds_create_method_mutex()
270 method_desc->method.mutex = mutex_desc; in acpi_ds_create_method_mutex()
308 if (obj_desc->method.thread_count == ACPI_UINT8_MAX) { in acpi_ds_begin_method_execution()
317 if (obj_desc->method.info_flags & ACPI_METHOD_SERIALIZED) { in acpi_ds_begin_method_execution()
323 if (!obj_desc->method.mutex) { in acpi_ds_begin_method_execution()
[all …]
Ddbmethod.c269 struct acpi_namespace_node *method; in acpi_db_disassemble_method() local
271 method = acpi_db_convert_to_node(name); in acpi_db_disassemble_method()
272 if (!method) { in acpi_db_disassemble_method()
276 if (method->type != ACPI_TYPE_METHOD) { in acpi_db_disassemble_method()
278 name, acpi_ut_get_type_name(method->type))); in acpi_db_disassemble_method()
282 obj_desc = method->object; in acpi_db_disassemble_method()
284 op = acpi_ps_create_scope_op(obj_desc->method.aml_start); in acpi_db_disassemble_method()
297 obj_desc->method.aml_start, in acpi_db_disassemble_method()
298 obj_desc->method.aml_length, NULL, in acpi_db_disassemble_method()
304 status = acpi_ut_allocate_owner_id(&obj_desc->method.owner_id); in acpi_db_disassemble_method()
[all …]
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()
150 if (info->obj_desc->method.info_flags & ACPI_METHOD_MODULE_LEVEL) { in acpi_ps_execute_method()
156 if (info->obj_desc->method.info_flags & ACPI_METHOD_INTERNAL_ONLY) { in acpi_ps_execute_method()
158 info->obj_desc->method.dispatch.implementation(walk_state); in acpi_ps_execute_method()
246 op = acpi_ps_create_scope_op(info->obj_desc->method.aml_start); in acpi_ps_execute_table()
255 acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL, in acpi_ps_execute_table()
263 info->obj_desc->method.aml_start, in acpi_ps_execute_table()
[all …]
/Linux-v4.19/arch/arm64/boot/dts/cavium/
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-v4.19/Documentation/acpi/
Dmethod-tracing.txt9 This document describes the functions and the interfaces of the method
14 ACPICA provides method tracing capability. And two functions are
25 But when the particular layer/level is applied to the control method
29 logs when the control method evaluation is started, and disable the
30 detailed logging when the control method evaluation is stopped.
41 control method is being evaluated:
46 # echo "method" > /sys/module/acpi/parameters/trace_state
48 control method is being evaluated for the first time:
53 # echo "method-once" > /sys/module/acpi/parameters/trace_state
57 \PPPP.AAAA.TTTT.HHHH: Full path of a control method that can be found
[all …]
Dmethod-customizing.txt10 1. override an existing method which may not work correctly,
12 2. insert a completely new method in order to create a missing
13 method such as _OFF, _ON, _STA, _INI, etc.
15 control method rather than override the entire DSDT, because kernel
21 Note: The same ACPI control method can be overridden for many times,
26 1. override an existing method
30 c) rewrite the ASL code of the method and save it in a new file,
32 Here is an example of a customized \_SB._AC._PSR method,
42 Note that the full pathname of the method in ACPI namespace
44 e) assemble the file to generate the AML code of the method.
[all …]
/Linux-v4.19/arch/sh/boards/
Dof-generic.c60 const char *method = NULL; in sh_of_smp_probe() local
72 if (!method) in sh_of_smp_probe()
73 of_property_read_string(np, "enable-method", &method); in sh_of_smp_probe()
80 if (!method) { in sh_of_smp_probe()
82 of_property_read_string(np, "enable-method", &method); in sh_of_smp_probe()
86 pr_info("CPU enable method: %s\n", method); in sh_of_smp_probe()
87 if (method) in sh_of_smp_probe()
88 for (; m->method; m++) in sh_of_smp_probe()
89 if (!strcmp(m->method, method)) { in sh_of_smp_probe()
/Linux-v4.19/drivers/iio/adc/
Dtwl4030-madc.c145 u16 method; member
196 req.method = madc->use_second_irq ? TWL4030_MADC_SW2 : TWL4030_MADC_SW1; in twl4030_madc_read()
487 const struct twl4030_madc_conversion_method *method; in twl4030_madc_threaded_irq_handler() local
519 method = &twl4030_conversion_methods[r->method]; in twl4030_madc_threaded_irq_handler()
521 len = twl4030_madc_read_channels(madc, method->rbase, in twl4030_madc_threaded_irq_handler()
540 method = &twl4030_conversion_methods[r->method]; in twl4030_madc_threaded_irq_handler()
542 len = twl4030_madc_read_channels(madc, method->rbase, in twl4030_madc_threaded_irq_handler()
564 const struct twl4030_madc_conversion_method *method; in twl4030_madc_start_conversion() local
570 method = &twl4030_conversion_methods[conv_method]; in twl4030_madc_start_conversion()
572 method->ctrl); in twl4030_madc_start_conversion()
[all …]
/Linux-v4.19/arch/arm64/boot/dts/marvell/
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-v4.19/kernel/trace/
Dtrace_probe.h146 #define FETCH_FUNC_NAME(method, type) fetch_##method##_##type argument
149 #define DECLARE_FETCH_FUNC(method, type) \ argument
150 extern void FETCH_FUNC_NAME(method, type)(struct pt_regs *regs, \
153 #define DECLARE_BASIC_FETCH_FUNCS(method) \ argument
154 DECLARE_FETCH_FUNC(method, u8); \
155 DECLARE_FETCH_FUNC(method, u16); \
156 DECLARE_FETCH_FUNC(method, u32); \
157 DECLARE_FETCH_FUNC(method, u64)
191 #define DEFINE_BASIC_FETCH_FUNCS(method) \ argument
192 DEFINE_FETCH_##method(u8) \
[all …]
/Linux-v4.19/arch/arm64/boot/dts/arm/
Dfoundation-v8-psci.dtsi10 method = "smc";
15 enable-method = "psci";
19 enable-method = "psci";
23 enable-method = "psci";
27 enable-method = "psci";
Dfoundation-v8-spin-table.dtsi8 enable-method = "spin-table";
13 enable-method = "spin-table";
18 enable-method = "spin-table";
23 enable-method = "spin-table";
/Linux-v4.19/Documentation/devicetree/bindings/arm/cpu-enable-method/
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";
Dal,alpine-smp2 Secondary CPU enable-method "al,alpine-smp" binding
5 This document describes the "al,alpine-smp" method for
7 "al,alpine-smp" enable method should be defined in the
10 Enable method name: "al,alpine-smp"
16 This enable method requires valid nodes compatible with
24 enable-method = "al,alpine-smp";
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-v4.19/Documentation/devicetree/bindings/
Dnuma.txt134 enable-method = "psci";
142 enable-method = "psci";
149 enable-method = "psci";
156 enable-method = "psci";
163 enable-method = "psci";
170 enable-method = "psci";
177 enable-method = "psci";
184 enable-method = "psci";
191 enable-method = "psci";
199 enable-method = "psci";
[all …]
/Linux-v4.19/arch/arm64/boot/dts/hisilicon/
Dhip05.dtsi22 method = "smc";
92 enable-method = "psci";
100 enable-method = "psci";
108 enable-method = "psci";
116 enable-method = "psci";
124 enable-method = "psci";
132 enable-method = "psci";
140 enable-method = "psci";
148 enable-method = "psci";
156 enable-method = "psci";
[all …]
Dhip07.dtsi22 method = "smc";
275 enable-method = "psci";
284 enable-method = "psci";
293 enable-method = "psci";
302 enable-method = "psci";
311 enable-method = "psci";
320 enable-method = "psci";
329 enable-method = "psci";
338 enable-method = "psci";
347 enable-method = "psci";
[all …]
/Linux-v4.19/drivers/infiniband/core/
Duverbs_uapi.c31 const struct uverbs_method_def *method, in uapi_merge_method() argument
34 u32 method_key = obj_key | uapi_key_ioctl_method(method->id); in uapi_merge_method()
38 if (!method->attrs) in uapi_merge_method()
49 if (WARN_ON(method->handler)) in uapi_merge_method()
55 WARN_ON(!method->handler); in uapi_merge_method()
56 rcu_assign_pointer(method_elm->handler, method->handler); in uapi_merge_method()
57 if (method->handler != uverbs_destroy_def_handler) in uapi_merge_method()
61 for (i = 0; i != method->num_attrs; i++) { in uapi_merge_method()
62 const struct uverbs_attr_def *attr = (*method->attrs)[i]; in uapi_merge_method()
142 const struct uverbs_method_def *method = in uapi_merge_tree() local
[all …]
/Linux-v4.19/arch/arm64/boot/dts/mediatek/
Dmt6755.dtsi25 method = "smc";
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";
84 enable-method = "psci";
Dmt6795.dtsi25 method = "smc";
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";
84 enable-method = "psci";
/Linux-v4.19/Documentation/devicetree/bindings/arm/bcm/
Dbrcm,bcm11351-cpu-method.txt3 This binding defines the enable method used for starting secondary
7 The enable method is specified by defining the following required
9 - enable-method = "brcm,bcm11351-cpu-method";
33 enable-method = "brcm,bcm11351-cpu-method";
/Linux-v4.19/arch/arm64/boot/dts/nvidia/
Dtegra210-p2530.dtsi58 enable-method = "psci";
62 enable-method = "psci";
66 enable-method = "psci";
70 enable-method = "psci";
76 method = "smc";
/Linux-v4.19/tools/testing/selftests/tc-testing/creating-plugins/
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
/Linux-v4.19/Documentation/media/uapi/v4l/
Dio.rst12 The classic I/O method using the :ref:`read() <func-read>` and
14 V4L2 device. When the driver does not support this method attempts to
17 Other methods must be negotiated. To select the streaming I/O method
20 method is not defined yet.
22 Video overlay can be considered another I/O method, although the
27 Generally exactly one I/O method, including overlay, is associated with
36 method (after first switching away from read/write) other than by

12345678910>>...31