From: Lv Zheng <lv.zheng@intel.com>
To: "Rafael J . Wysocki" <rafael.j.wysocki@intel.com>,
"Rafael J . Wysocki" <rjw@rjwysocki.net>,
Robert Moore <robert.moore@intel.com>,
Len Brown <len.brown@intel.com>, Lv Zheng <lv.zheng@intel.com>,
"David E . Box" <david.e.box@intel.com>
Cc: Lv Zheng <zetalog@gmail.com>, linux-acpi@vger.kernel.org
Subject: [PATCH 00/15] ACPICA 20170728 Release
Date: Thu, 3 Aug 2017 14:26:02 +0800 [thread overview]
Message-ID: <cover.1501730699.git.lv.zheng@intel.com> (raw)
The 20170728 ACPICA kernel-resident subsystem updates are linuxized based
on the linux-pm/linux-next branch.
The patchset has passed the following build/boot tests.
Build tests are performed as follows:
1. i386 + allyes
2. i386 + allno
3. i386 + default + ACPI_DEBUGGER=y
4. i386 + default + ACPI_DEBUGGER=n + ACPI_DEBUG=y
5. i386 + default + ACPI_DEBUG=n + ACPI=y
6. i386 + default + ACPI=n
7. x86_64 + allyes
8. x86_64 + allno
9. x86_64 + default + ACPI_DEBUGGER=y
10.x86_64 + default + ACPI_DEBUGGER=n + ACPI_DEBUG=y
11.x86_64 + default + ACPI_DEBUG=n + ACPI=y
12.x86_64 + default + ACPI=n
Boot tests are performed as follows:
1. x86_64 + default + ACPI_DEBUGGER=y
Where:
1. i386: machine named as "Dell Inspiron Mini 1010"
2. x86_64: machine named as "Microsoft Surface Pro 3"
3. default: kernel configuration with following items enabled:
All hardware drivers related to the machines of i386/x86_64
All "drivers/acpi" configurations
All "drivers/platform" drivers
All other drivers that link the APIs provided by ACPICA subsystem
The divergences checking result:
Before applying (20170629 Release):
390 lines
After applying (20170728 Release):
390 lines
Bob Moore (8):
ACPICA: Namespace: Update/fix an error message
ACPICA: Add a comment, no functional change
ACPICA: Interpreter: Update handling for Alias operator
ACPICA: Debugger: Improve support for Alias objects
ACPICA: Implement deferred resolution of reference package elements
ACPICA: Ensure all instances of AE_AML_INTERNAL have error messages
ACPICA: Resources: Allow _DMA method in walk resources
ACPICA: Update version to 20170728
Erik Schmauss (1):
ACPICA: Revert "Update resource descriptor handling"
James Morse (1):
ACPICA: iASL: Add support for the SDEI table
Lv Zheng (4):
ACPICA: Divergences: reduce access size definitions
ACPICA: CLib: Add short multiply/shift support
ACPICA: acpidump: Add DSDT/FACS instance support for Linux and EFI
ACPICA: EFI/EDK2: Cleanup to enable /WX for MSVC builds
Shao Ming (1):
ACPICA: EFI/EDK2: Sort acpi.h inclusion order
drivers/acpi/acpica/Makefile | 1 +
drivers/acpi/acpica/acdispat.h | 13 +
drivers/acpi/acpica/aclocal.h | 2 +-
drivers/acpi/acpica/acobject.h | 3 +-
drivers/acpi/acpica/acutils.h | 9 +-
drivers/acpi/acpica/dbdisply.c | 37 +-
drivers/acpi/acpica/dsfield.c | 2 +
drivers/acpi/acpica/dsobject.c | 398 +++--------------
drivers/acpi/acpica/dsopcode.c | 9 +
drivers/acpi/acpica/dspkginit.c | 496 +++++++++++++++++++++
drivers/acpi/acpica/excreate.c | 61 +--
drivers/acpi/acpica/exdump.c | 34 +-
drivers/acpi/acpica/exmisc.c | 9 +
drivers/acpi/acpica/exoparg2.c | 3 +
drivers/acpi/acpica/hwregs.c | 2 +-
drivers/acpi/acpica/nsaccess.c | 22 +-
drivers/acpi/acpica/nsarguments.c | 21 +-
drivers/acpi/acpica/nsinit.c | 14 +
drivers/acpi/acpica/nsnames.c | 9 +-
drivers/acpi/acpica/nsprepkg.c | 2 +
drivers/acpi/acpica/psloop.c | 14 +
drivers/acpi/acpica/rsxface.c | 7 +-
drivers/acpi/acpica/uthex.c | 4 +-
drivers/acpi/acpica/utmath.c | 222 ++++++++-
drivers/acpi/acpica/utmisc.c | 10 +-
drivers/acpi/acpica/utobject.c | 5 +
drivers/acpi/acpica/utprint.c | 8 +-
drivers/acpi/acpica/utresrc.c | 21 +-
drivers/acpi/acpica/utstate.c | 2 +-
drivers/acpi/acpica/utstrtoul64.c | 9 +-
drivers/acpi/acpica/uttrack.c | 9 +-
drivers/acpi/spcr.c | 9 +-
include/acpi/acnames.h | 1 +
include/acpi/acpi.h | 4 +-
include/acpi/acpixf.h | 2 +-
include/acpi/acrestyp.h | 7 -
include/acpi/actbl2.h | 14 +
include/acpi/actypes.h | 8 +
include/acpi/platform/acgcc.h | 4 +
include/acpi/platform/aclinux.h | 2 +
.../acpi/os_specific/service_layers/oslinuxtbl.c | 105 +++--
tools/power/acpi/tools/acpidump/apfiles.c | 2 +-
tools/power/acpi/tools/acpidump/apmain.c | 2 +-
43 files changed, 1127 insertions(+), 491 deletions(-)
create mode 100644 drivers/acpi/acpica/dspkginit.c
--
2.7.4
next reply other threads:[~2017-08-03 6:26 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-03 6:26 Lv Zheng [this message]
2017-08-03 6:26 ` [PATCH 01/15] ACPICA: Divergences: reduce access size definitions Lv Zheng
2017-08-03 6:26 ` [PATCH 02/15] ACPICA: iASL: Add support for the SDEI table Lv Zheng
2017-08-03 6:26 ` [PATCH 03/15] ACPICA: Namespace: Update/fix an error message Lv Zheng
2017-08-03 6:26 ` [PATCH 04/15] ACPICA: Add a comment, no functional change Lv Zheng
2017-08-03 6:26 ` [PATCH 05/15] ACPICA: EFI/EDK2: Sort acpi.h inclusion order Lv Zheng
2017-08-03 6:26 ` [PATCH 06/15] ACPICA: CLib: Add short multiply/shift support Lv Zheng
2017-08-03 6:26 ` [PATCH 07/15] ACPICA: acpidump: Add DSDT/FACS instance support for Linux and EFI Lv Zheng
2017-08-03 6:27 ` [PATCH 08/15] ACPICA: EFI/EDK2: Cleanup to enable /WX for MSVC builds Lv Zheng
2017-08-03 6:27 ` [PATCH 09/15] ACPICA: Interpreter: Update handling for Alias operator Lv Zheng
2017-08-03 6:27 ` [PATCH 10/15] ACPICA: Debugger: Improve support for Alias objects Lv Zheng
2017-08-03 6:27 ` [PATCH 11/15] ACPICA: Implement deferred resolution of reference package elements Lv Zheng
2017-08-03 6:27 ` [PATCH 12/15] ACPICA: Ensure all instances of AE_AML_INTERNAL have error messages Lv Zheng
2017-08-03 6:27 ` [PATCH 13/15] ACPICA: Resources: Allow _DMA method in walk resources Lv Zheng
2017-08-03 6:27 ` [PATCH 14/15] ACPICA: Revert "Update resource descriptor handling" Lv Zheng
2017-08-03 6:27 ` [PATCH 15/15] ACPICA: Update version to 20170728 Lv Zheng
2017-08-09 22:41 ` [PATCH 00/15] ACPICA 20170728 Release Rafael J. Wysocki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1501730699.git.lv.zheng@intel.com \
--to=lv.zheng@intel.com \
--cc=david.e.box@intel.com \
--cc=len.brown@intel.com \
--cc=linux-acpi@vger.kernel.org \
--cc=rafael.j.wysocki@intel.com \
--cc=rjw@rjwysocki.net \
--cc=robert.moore@intel.com \
--cc=zetalog@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox