From: Lv Zheng <lv.zheng@intel.com>
To: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
Robert Moore <robert.moore@intel.com>,
Len Brown <len.brown@intel.com>
Cc: Lv Zheng <lv.zheng@intel.com>, Lv Zheng <zetalog@gmail.com>,
linux-acpi@vger.kernel.org
Subject: [PATCH 00/21] ACPICA: 20131218 Release
Date: Wed, 8 Jan 2014 13:43:06 +0800 [thread overview]
Message-ID: <cover.1387505702.git.lv.zheng@intel.com> (raw)
The 20131218 ACPICA kernel resident system updates are linuxized based on
the pm/linux-next branch.
The patch set has passed the following build/boot tests.
Build tests are performed as follows:
1. i386 + default + COFNIG_ACPI=y
2. i386 + allyes + CONFIG_ACPI=y
3. i386 + default + COFNIG_ACPI=n
4. i386 + allyes + CONFIG_ACPI=n
5. x86_64 + default + COFNIG_ACPI=y
6. x86_64 + allyes + CONFIG_ACPI=y
7. x86_64 + default + COFNIG_ACPI=n
8. x86_64 + allyes + CONFIG_ACPI=n
Boot tests are performed as follows:
1. i386 + default + COFNIG_ACPI=y
2. x86_64 + default + COFNIG_ACPI=y
Where:
1. i386: machine named as "Dell Inspiron Mini 1010"
2. x86_64: machine named as "HP Compaq 8200 Elite SFF PC"
3. default: kernel configuration with following items enabled:
All hardware drivers related to the machines of i386/x86_64
All drivers/acpi configurations
All platform drivers
All ACPI drivers
4 DRM drivers that implement ACPI opregion
All buses with ACPI bindings
All cpufreq configurations
All xen configurations
All ACPI tabln drivers
4. allyes: kernel configuration generated by allyesconfig.
Betty Dall (1):
ACPICA: Add helper macros to extract bus/segment numbers from HEST
table.
Bob Moore (14):
ACPICA: Debug output: Fix a couple of small output issues.
ACPICA: Disassembler: Improve pathname support for emitted External()
statements.
ACPICA: Add option to favor 32-bit FADT addresses.
ACPICA: Tables: Add full support for the DBG2 table.
ACPICA: Tables: Add full support for the PCCT table, update table
definition.
ACPICA: Improve exception handling for GPE block installation.
ACPICA: Update several debug statements - no functional change.
ACPICA: Enhance ACPI warning for memory/IO address conflicts.
ACPICA: Parser: Updates/fixes for debug output.
ACPICA: Conditionally define a local variable that is used for debug
only.
ACPICA: Add an error message if the Debugger fails initialization.
ACPICA: Update ACPI example code to make it an actual working
program.
ACPICA: Interpreter: Add additional debug info for an error case.
ACPICA: Update version to 20131218.
Lv Zheng (6):
ACPICA: Remove unused ACPI_FREE_BUFFER macro. No functional change.
ACPICA: Linux Header: Remove unused OSL prototypes.
ACPICA: Back port and refine validation of the XSDT root table.
ACPICA: Cleanup the option of forcing the use of the RSDT.
ACPICA: AcpiSrc: Cleanup spaces after special macro invocations.
ACPICA: Utilities: Cleanup declarations of the acpi_gbl_debug_file
global.
arch/ia64/kernel/acpi.c | 1 -
arch/x86/kernel/acpi/boot.c | 3 +-
drivers/acpi/acpica/acdebug.h | 1 -
drivers/acpi/acpica/acevents.h | 9 +-
drivers/acpi/acpica/acglobal.h | 30 ++++
drivers/acpi/acpica/aclocal.h | 9 +-
drivers/acpi/acpica/dsfield.c | 2 +-
drivers/acpi/acpica/dsutils.c | 19 ++-
drivers/acpi/acpica/dswload.c | 4 +-
drivers/acpi/acpica/evgpeblk.c | 8 +-
drivers/acpi/acpica/evgpeutil.c | 24 +--
drivers/acpi/acpica/exresnte.c | 3 +-
drivers/acpi/acpica/nsxfeval.c | 23 +--
drivers/acpi/acpica/psopinfo.c | 51 +++++-
drivers/acpi/acpica/tbfadt.c | 335 +++++++++++++++++++++------------------
drivers/acpi/acpica/tbutils.c | 214 ++++++++++++++-----------
drivers/acpi/acpica/utaddress.c | 19 ++-
drivers/acpi/acpica/utalloc.c | 10 +-
drivers/acpi/acpica/utcache.c | 12 +-
drivers/acpi/acpica/utdebug.c | 4 +-
drivers/acpi/acpica/utglobal.c | 4 -
drivers/acpi/acpica/utxfinit.c | 12 +-
include/acpi/acpixf.h | 39 ++---
include/acpi/actbl.h | 3 +
include/acpi/actbl1.h | 10 +-
include/acpi/actbl2.h | 5 +
include/acpi/actbl3.h | 15 +-
include/acpi/actypes.h | 12 +-
include/acpi/platform/acenv.h | 20 ++-
include/acpi/platform/aclinux.h | 4 -
30 files changed, 538 insertions(+), 367 deletions(-)
--
1.7.10
next reply other threads:[~2014-01-08 5:43 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-08 5:43 Lv Zheng [this message]
2014-01-08 5:43 ` [PATCH 01/21] ACPICA: Debug output: Fix a couple of small output issues Lv Zheng
2014-01-08 5:43 ` [PATCH 02/21] ACPICA: Disassembler: Improve pathname support for emitted External() statements Lv Zheng
2014-01-08 5:43 ` [PATCH 03/21] ACPICA: Remove unused ACPI_FREE_BUFFER macro. No functional change Lv Zheng
2014-01-08 5:43 ` [PATCH 04/21] ACPICA: Linux Header: Remove unused OSL prototypes Lv Zheng
2014-01-08 5:43 ` [PATCH 05/21] ACPICA: Back port and refine validation of the XSDT root table Lv Zheng
2014-01-08 5:43 ` [PATCH 06/21] ACPICA: Cleanup the option of forcing the use of the RSDT Lv Zheng
2014-01-08 5:43 ` [PATCH 07/21] ACPICA: Add option to favor 32-bit FADT addresses Lv Zheng
2014-01-08 5:43 ` [PATCH 08/21] ACPICA: Tables: Add full support for the DBG2 table Lv Zheng
2014-01-08 5:43 ` [PATCH 09/21] ACPICA: Tables: Add full support for the PCCT table, update table definition Lv Zheng
2014-01-08 5:44 ` [PATCH 10/21] ACPICA: Add helper macros to extract bus/segment numbers from HEST table Lv Zheng
2014-01-08 5:44 ` [PATCH 11/21] ACPICA: Improve exception handling for GPE block installation Lv Zheng
2014-01-08 5:44 ` [PATCH 12/21] ACPICA: Update several debug statements - no functional change Lv Zheng
2014-01-08 5:44 ` [PATCH 13/21] ACPICA: Enhance ACPI warning for memory/IO address conflicts Lv Zheng
2014-01-08 5:44 ` [PATCH 14/21] ACPICA: Parser: Updates/fixes for debug output Lv Zheng
2014-01-08 5:44 ` [PATCH 15/21] ACPICA: Conditionally define a local variable that is used for debug only Lv Zheng
2014-01-08 5:44 ` [PATCH 16/21] ACPICA: Add an error message if the Debugger fails initialization Lv Zheng
2014-01-08 5:44 ` [PATCH 17/21] ACPICA: Update ACPI example code to make it an actual working program Lv Zheng
2014-01-08 5:44 ` [PATCH 18/21] ACPICA: Interpreter: Add additional debug info for an error case Lv Zheng
2014-01-08 5:44 ` [PATCH 19/21] ACPICA: Linuxize: Cleanup spaces after special macro invocations Lv Zheng
2014-01-08 5:45 ` [PATCH 20/21] ACPICA: Utilities: Cleanup declarations of the acpi_gbl_debug_file global Lv Zheng
2014-01-08 5:45 ` [PATCH 21/21] ACPICA: Update version to 20131218 Lv Zheng
2014-01-08 14:52 ` [PATCH 00/21] ACPICA: 20131218 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.1387505702.git.lv.zheng@intel.com \
--to=lv.zheng@intel.com \
--cc=len.brown@intel.com \
--cc=linux-acpi@vger.kernel.org \
--cc=rafael.j.wysocki@intel.com \
--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;
as well as URLs for NNTP newsgroup(s).