summaryrefslogtreecommitdiff
path: root/documents
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2019-04-05 08:08:08 -0700
committerRobert Moore <Robert.Moore@intel.com>2019-04-05 08:08:08 -0700
commitc38cf00852b06449038f3de4b2efb68d17dbf4cf (patch)
tree9a5262d3d805802fa8581f0b2b18c2162405c2cc /documents
parent25237e8db3781dbe9caa77d85c44cea85df229fe (diff)
downloadacpica-c38cf00852b06449038f3de4b2efb68d17dbf4cf.tar.gz
Logfile: Changes for version 20190405
Version 20190405.
Diffstat (limited to 'documents')
-rw-r--r--documents/changes.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/documents/changes.txt b/documents/changes.txt
index f8de9aafa..7be71e602 100644
--- a/documents/changes.txt
+++ b/documents/changes.txt
@@ -1,4 +1,38 @@
----------------------------------------
+05 April 2019. Summary of changes for version 20190405:
+
+
+1) ACPICA kernel-resident subsystem:
+
+Event Manager: History: Commit 18996f2db918 ("ACPICA: Events: Stop
+unconditionally clearing ACPI IRQs during suspend/resume") was added
+earlier to stop clearing of event status bits unconditionally on suspend
+and resume paths. Though this change fixed an issue on suspend path, it
+introduced regressions on several resume paths. In the case of S0ix,
+events are enabled as part of device suspend path. If status bits for the
+events are set when they are enabled, it could result in premature wake
+from S0ix. If status is cleared for any event that is being enabled so
+that any stale events are cleared out. In case of S0ix, events are
+enabled as part of device suspend path. If status bits for the events are
+set when they are enabled, it could result in premature wake from S0ix.
+
+This change ensures that status is cleared for any event that is being
+enabled so that any stale events are cleared out.
+
+
+2) iASL Compiler/Disassembler and ACPICA tools:
+
+iASL: Implemented an enhanced multiple file compilation that combines
+named objects from all input files to a single namespace. With this
+feature, any unresolved external declarations as well as duplicate named
+object declarations can be detected during compilation rather than
+generating errors much later at runtime. The following commands are
+examples that utilize this feature:
+ iasl dsdt.asl ssdt.asl
+ iasl dsdt.asl ssdt1.asl ssdt2.asl
+ iasl dsdt.asl ssdt*.asl
+
+----------------------------------------
29 March 2019. Summary of changes for version 20190329: