/linux/drivers/acpi/acpica/ |
H A D | dsmethod.c | 4 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing 34 * PARAMETERS: node - Namespace Node of the method 39 * DESCRIPTION: Parse a control method AML to scan for control methods that 43 * there is only a problem if the method actually blocks during execution. 46 * detect whether a method will block or not, so we simply mark all suspicious 50 * control method. 68 /* Create/Init a root op for the method parse tree */ in acpi_ds_auto_serialize_method() 70 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 in acpi_ds_auto_serialize_method() [all...] |
H A D | psxface.c | 37 * method execution 68 * parameters - List of parameters to pass to the method, 71 * return_object - Where to put method's return value (if 74 * return_object - Where to put method's return value (if 80 * DESCRIPTION: Execute a control method 96 /* Validate the Info and method Node */ in acpi_ps_execute_method() 102 /* Init for new method, wait on concurrency semaphore */ in acpi_ps_execute_method() 116 * Execute the method. Performs parse simultaneously in acpi_ps_execute_method() 124 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 in acpi_ps_execute_method() [all...] |
H A D | dbmethod.c | 36 * DESCRIPTION: Set a breakpoint in a control method at the specified 50 acpi_os_printf("There is no method currently executing\n"); in acpi_db_set_method_breakpoint() 78 * DESCRIPTION: Set a breakpoint in a control method at the specified 87 acpi_os_printf("There is no method currently executing\n"); in acpi_db_set_method_call_breakpoint() 104 * DESCRIPTION: Set a local or argument for the running control method. 151 acpi_os_printf("There is no method currently executing\n"); in acpi_db_set_method_data() 168 /* Set a method argument */ in acpi_db_set_method_data() 191 /* Set a method local */ in acpi_db_set_method_data() 241 acpi_os_printf("There is no method currently executing\n"); in acpi_db_disassemble_aml() 256 * PARAMETERS: name - Name of control method 271 struct acpi_namespace_node *method; acpi_db_disassemble_method() local [all...] |
/linux/arch/arm/mm/ |
H A D | proc-v7-bugs.c | 66 static unsigned int spectre_v2_install_workaround(unsigned int method) in spectre_v2_install_workaround() argument 74 switch (method) { in spectre_v2_install_workaround() 109 static unsigned int spectre_v2_install_workaround(unsigned int method) in spectre_v2_install_workaround() argument 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() 175 state = spectre_v2_install_workaround(method); in cpu_v7_spectre_v2_init() 177 spectre_v2_update_state(state, method); in cpu_v7_spectre_v2_init() 183 spectre_bhb_method_name(int method) spectre_bhb_method_name() argument 197 spectre_bhb_install_workaround(int method) spectre_bhb_install_workaround() argument 219 spectre_bhb_install_workaround(int method) spectre_bhb_install_workaround() argument 227 unsigned int state, method = 0; cpu_v7_spectre_bhb_init() local [all...] |
/linux/arch/arm64/boot/dts/cavium/ |
H A D | thunder-88xx.dtsi | 58 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 [all...] |
/linux/Documentation/firmware-guide/acpi/ |
H A D | method-tracing.rst | 15 method tracing facility. 20 ACPICA provides method tracing capability. And two functions are 33 But when the particular layer/level is applied to the control method 37 logs when the control method evaluation is started, and disable the 38 detailed logging when the control method evaluation is stopped. 52 control method is being evaluated:: 58 # echo "method" > /sys/module/acpi/parameters/trace_state 61 control method is being evaluated for the first time:: 67 # echo "method-once" > /sys/module/acpi/parameters/trace_state 74 Full path of a control method tha [all...] |
/linux/tools/testing/selftests/mm/ |
H A D | charge_reserved_hugetlb.sh | 158 local method="$6" 183 if [[ "$method" == "1" ]] || [[ "$method" == 2 ]] || 187 "$cgroup" "$path" "$method" "$private" "-l" "$reserve" 2>&1 | tee $output & 220 "$cgroup" "$path" "$method" "$private" "$reserve" 276 local method="$7" 296 "$write" "/mnt/huge/test" "$method" "$private" "$expect_failure" \ 324 local method="${12}" 350 "$populate1" "$write1" "/mnt/huge/test1" "$method" "$private" \ 367 "$populate2" "$write2" "/mnt/huge/test2" "$method" " [all...] |
H A D | write_to_hugetlbfs.c | 21 enum method { enum 73 enum method method = MAX_METHOD; in main() local 100 method = atoi(optarg); in main() 149 if (method == MAX_METHOD) { in main() 154 printf("Using method=%d\n", method); in main() 166 switch (method) { in main() 222 err(1, "Invalid method."); in main() 239 if (method in main() [all...] |
/linux/arch/arm/kernel/ |
H A D | spectre.c | 26 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/drivers/iio/adc/ |
H A D | twl4030-madc.c | 123 * @method: RT, SW1, SW2 124 * @type: Polling or interrupt based method 133 u16 method; member 184 req.method = madc->use_second_irq ? TWL4030_MADC_SW2 : TWL4030_MADC_SW1; in twl4030_madc_read() 468 const struct twl4030_madc_conversion_method *method; in twl4030_madc_threaded_irq_handler() local 497 /* No pending results for this method, move to next one */ in twl4030_madc_threaded_irq_handler() 500 method = &twl4030_conversion_methods[r->method]; in twl4030_madc_threaded_irq_handler() 502 twl4030_madc_read_channels(madc, method->rbase, in twl4030_madc_threaded_irq_handler() 521 method in twl4030_madc_threaded_irq_handler() 545 const struct twl4030_madc_conversion_method *method; twl4030_madc_start_conversion() local 607 const struct twl4030_madc_conversion_method *method; twl4030_madc_conversion() local [all...] |
/linux/arch/arm64/boot/dts/marvell/ |
H A D | armada-ap810-ap0-octa-core.dtsi | 19 enable-method = "psci"; 25 enable-method = "psci"; 31 enable-method = "psci"; 37 enable-method = "psci"; 43 enable-method = "psci"; 49 enable-method = "psci"; 55 enable-method = "psci"; 61 enable-method = "psci";
|
/linux/Documentation/wmi/ |
H A D | acpi-interface.rst | 32 0x10 2 2 character method ID or single byte notification ID. 37 The WMI object flags control whether the method or notification ID is used: 43 of method ID. 46 The method/notification ID is used to construct the ACPI method names used for 53 by this required ACPI method. The last two characters of the ACPI method name 54 are the method ID of the data block to query. Their single parameter is an 69 characters of the ACPI method name are the method I [all...] |
/linux/arch/arm64/boot/dts/arm/ |
H A D | foundation-v8-psci.dtsi | 10 method = "smc"; 15 enable-method = "psci"; 19 enable-method = "psci"; 23 enable-method = "psci"; 27 enable-method = "psci";
|
H A D | foundation-v8-spin-table.dtsi | 8 enable-method = "spin-table"; 13 enable-method = "spin-table"; 18 enable-method = "spin-table"; 23 enable-method = "spin-table";
|
/linux/arch/arm64/boot/dts/hisilicon/ |
H A D | hip05.dtsi | 18 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 [all...] |
H A D | hip07.dtsi | 18 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 [all...] |
/linux/arch/arm64/boot/dts/mediatek/ |
H A D | mt6755.dtsi | 18 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/Documentation/devicetree/bindings/arm/cpu-enable-method/ |
H A D | marvell,berlin-smp | 2 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";
|
H A D | nuvoton,npcm750-smp | 2 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/drivers/platform/x86/ |
H A D | msi-wmi-platform.c | 88 enum msi_wmi_platform_method method; member 143 enum msi_wmi_platform_method method, u8 *input, in msi_wmi_platform_query() argument 159 * The ACPI control method responsible for handling the WMI method calls in msi_wmi_platform_query() 163 status = wmidev_evaluate_method(data->wdev, 0x0, method, &in, &out); in msi_wmi_platform_query() 248 ret = msi_wmi_platform_query(data->data, data->method, payload, data->length, data->buffer, in msi_wmi_platform_write() 295 const char *name, enum msi_wmi_platform_method method) in msi_wmi_platform_debugfs_add() argument 305 data->method = method; in msi_wmi_platform_debugfs_add() 322 int ret, method; in msi_wmi_platform_debugfs_init() local [all...] |
/linux/arch/arm/boot/dts/qcom/ |
H A D | qcom-msm8916-smp.dtsi | 6 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/arch/arm64/boot/dts/nvidia/ |
H A D | tegra210-p2530.dtsi | 53 enable-method = "psci"; 57 enable-method = "psci"; 61 enable-method = "psci"; 65 enable-method = "psci"; 71 method = "smc";
|
/linux/tools/testing/selftests/tc-testing/creating-plugins/ |
H A D | AddingPlugins.txt | 43 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 shoul [all...] |
/linux/arch/arm64/boot/dts/cix/ |
H A D | sky1.dtsi | 21 enable-method = "psci"; 29 enable-method = "psci"; 37 enable-method = "psci"; 45 enable-method = "psci"; 53 enable-method = "psci"; 61 enable-method = "psci"; 69 enable-method = "psci"; 77 enable-method = "psci"; 85 enable-method = "psci"; 93 enable-method [all...] |
/linux/arch/arm64/boot/dts/amlogic/ |
H A D | amlogic-t7.dtsi | 55 enable-method = "psci"; 62 enable-method = "psci"; 69 enable-method = "psci"; 76 enable-method = "psci"; 83 enable-method = "psci"; 90 enable-method = "psci"; 97 enable-method = "psci"; 104 enable-method = "psci"; 118 method = "smc";
|