aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/kernel-parameters.txt
diff options
context:
space:
mode:
authorLv Zheng <lv.zheng@intel.com>2014-02-10 22:01:52 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-02-13 10:25:16 -0500
commit4dde507fc1984435f28862ddd1beb90822aa116c (patch)
treedfe3d0d086f490ff0ca7088830994eba91454a3f /Documentation/kernel-parameters.txt
parente252652fb2664d42de19f933aa3688bbc470de3f (diff)
ACPICA: Add boot option to disable auto return object repair
Sometimes, there might be bugs caused by unexpected AML which is compliant to the Windows but not compliant to the Linux implementation. There is a predefined validation mechanism implemented in ACPICA to repair the unexpected AML evaluation results that are caused by the unexpected AMLs. For example, BIOS may return misorder _CST result and the repair mechanism can make an ascending order on the returned _CST package object based on the C-state type. This mechanism is quite useful to implement an AML interpreter with better compliance with the real world where Windows is the de-facto standard and BIOS codes are only tested on one platform thus not compliant to the ACPI specification. But if a compliance issue hasn't been figured out yet, it will be difficult for developers to identify if the unexpected evaluation result is caused by this mechanism or by the AML interpreter. For example, _PR0 is expected to be a control method, but BIOS may use Package: "Name(_PR0, Package(1) {P1PR})". This boot option can disable the predefined validation mechanism so that developers can make sure the root cause comes from the parser/executer. This patch adds a new kernel parameter to disable this feature. A build test has been made on a Dell Inspiron mini 1100 (i386 z530) machine when this patch is applied and the corresponding boot test is performed w/ or w/o the new kernel parameter specified. References: https://bugzilla.kernel.org/show_bug.cgi?id=67901 Tested-by: Fabian Wehning <fabian.wehning@googlemail.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'Documentation/kernel-parameters.txt')
-rw-r--r--Documentation/kernel-parameters.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 7116fda7077f..bf0fda0125f0 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -231,6 +231,14 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
231 231
232 acpi_no_auto_ssdt [HW,ACPI] Disable automatic loading of SSDT 232 acpi_no_auto_ssdt [HW,ACPI] Disable automatic loading of SSDT
233 233
234 acpica_no_return_repair [HW, ACPI]
235 Disable AML predefined validation mechanism
236 This mechanism can repair the evaluation result to make
237 the return objects more ACPI specification compliant.
238 This option is useful for developers to identify the
239 root cause of an AML interpreter issue when the issue
240 has something to do with the repair mechanism.
241
234 acpi_os_name= [HW,ACPI] Tell ACPI BIOS the name of the OS 242 acpi_os_name= [HW,ACPI] Tell ACPI BIOS the name of the OS
235 Format: To spoof as Windows 98: ="Microsoft Windows" 243 Format: To spoof as Windows 98: ="Microsoft Windows"
236 244