07 Nov, 2015

4 commits

  • * acpi-pci:
    PCI: ACPI: Add support for PCI device DMA coherency
    PCI: OF: Move of_pci_dma_configure() to pci_dma_configure()
    of/pci: Fix pci_get_host_bridge_device leak
    device property: ACPI: Remove unused DMA APIs
    device property: ACPI: Make use of the new DMA Attribute APIs
    device property: Adding DMA Attribute APIs for Generic Devices
    ACPI: Adding DMA Attribute APIs for ACPI Device
    device property: Introducing enum dev_dma_attr
    ACPI: Honor ACPI _CCA attribute setting

    Conflicts:
    drivers/crypto/ccp/ccp-platform.c

    Rafael J. Wysocki
     
  • These DMA APIs are replaced with the newer versions, which return
    the enum dev_dma_attr. So, we can safely remove them.

    Signed-off-by: Suravee Suthikulpanit
    Acked-by: Bjorn Helgaas
    Reviewed-by: Hanjun Guo
    Signed-off-by: Rafael J. Wysocki

    Suthikulpanit, Suravee
     
  • Adding acpi_get_dma_attr() to query DMA attributes of ACPI devices.
    It returns the enum dev_dma_attr, which communicates DMA information
    more clearly. This API replaces the acpi_check_dma(), which will be
    removed in subsequent patch.

    This patch also provides a convenient function, acpi_dma_supported(),
    to check DMA support of the specified ACPI device.

    Signed-off-by: Suravee Suthikulpanit
    Acked-by: Bjorn Helgaas
    Reviewed-by: Hanjun Guo
    Signed-off-by: Rafael J. Wysocki

    Suthikulpanit, Suravee
     
  • ACPI configurations can now mark devices as noncoherent,
    support that choice.

    NOTE: This is required to support USB on ARM Juno Development Board.

    Signed-off-by: Jeremy Linton
    Signed-off-by: Suravee Suthikulpanit
    Acked-by: Bjorn Helgaas
    Reviewed-by: Hanjun Guo
    Signed-off-by: Rafael J. Wysocki

    Jeremy Linton
     

02 Nov, 2015

3 commits

  • Rafael J. Wysocki
     
  • * acpi-processor:
    ACPI / CPPC: Fix potential memory leak
    ACPI / CPPC: signedness bug in register_pcc_channel()
    ACPI: Allow selection of the ACPI processor driver for ARM64
    CPPC: Probe for CPPC tables for each ACPI Processor object
    ACPI: Add weak routines for ACPI CPU Hotplug
    ACPI / CPPC: Add a CPUFreq driver for use with CPPC
    ACPI: Introduce CPU performance controls using CPPC

    Rafael J. Wysocki
     
  • * acpica:
    ACPICA: Update version to 20150930
    ACPICA: Debugger: Fix dead lock issue ocurred in single stepping mode
    ACPI: Enable build of AML interpreter debugger
    ACPICA: Debugger: Add thread ID support so that single step mode can only apply to the debugger thread
    ACPICA: Debugger: Fix "terminate" command by cleaning up subsystem shutdown logic
    ACPICA: Debugger: Fix "quit/exit" command by cleaning up user commands termination logic
    ACPICA: Linuxize: Export debugger files to Linux
    ACPICA: iASL: General cleanup of the file suffix #defines
    ACPICA: Improve typechecking, both compile-time and runtime
    ACPICA: Update NFIT table to rename a flags field
    ACPICA: Debugger: Update mutexes used for multithreaded debugger
    ACPICA: Update exception code for "file not found" error
    ACPICA: iASL: Add symbolic operator support for Index() operator
    ACPICA: Remove unnecessary conditional compilation

    Rafael J. Wysocki
     

26 Oct, 2015

2 commits

  • * acpi-scan:
    ACPI / scan: use kstrdup_const() in acpi_add_id()
    ACPI / scan: constify struct acpi_hardware_id::id
    ACPI / scan: constify first argument of struct acpi_scan_handler::match

    * acpi-tables:
    ACPI / tables: test the correct variable
    x86, ACPI: Handle apic/x2apic entries in MADT in correct order
    ACPI / tables: Add acpi_subtable_proc to ACPI table parsers

    * acpi-ec:
    ACPI / EC: Fix a race issue in acpi_ec_guard_event()
    ACPI / EC: Fix query handler related issues

    * acpi-assorted:
    ACPI: change acpi_sleep_proc_init() to return void
    ACPI: change init_acpi_device_notify() to return void

    Rafael J. Wysocki
     
  • * device-properties:
    ACPI / property: Fix subnode lookup scope for data-only subnodes
    acpi-dma: Add support for "dma-names" device property
    device property: Add fwnode_property_match_string()
    ACPI / property: Extend device_get_next_child_node() to data-only nodes
    ACPI / gpio: Split acpi_get_gpiod_by_index()
    ACPI / property: Extend fwnode_property_* to data-only subnodes
    ACPI / property: Expose data-only subnodes via sysfs
    ACPI / property: Add support for data-only subnodes
    ACPI / property: Add routine for extraction of _DSD properties

    Rafael J. Wysocki
     

22 Oct, 2015

7 commits

  • ACPICA commit e9c75ca267262326e80d49a290e8387a5963e2d2

    Version 20150930.

    Link: https://github.com/acpica/acpica/commit/e9c75ca2
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • This patch enables ACPICA debugger files using a configurable
    CONFIG_ACPI_DEBUGGER configuration item. Those debugger related code that
    was originally masked as ACPI_FUTURE_USAGE now gets unmasked.

    Necessary OSL stubs are also added in this patch:
    1. acpi_os_readable(): This should be arch specific in Linux, while this
    patch doesn't introduce real implementation and a complex mechanism to
    allow architecture specific acpi_os_readable() to be implemented to
    validate the address. It may be done by future commits.
    2. acpi_os_get_line(): This is used to obtain debugger command input. This
    patch only introduces a simple KDB concept example in it and the
    example should be co-working with the code implemented in
    acpi_os_printf(). Since this KDB example won't be compiled unless
    ENABLE_DEBUGGER is defined and it seems Linux has already stopped to
    use ENABLE_DEBUGGER, thus do not expect it can work properly.

    This patch also cleans up all other ACPI_FUTURE_USAGE surroundings
    accordingly.
    1. Since linkage error can be automatically detected, declaration in the
    headers needn't be surrounded by ACPI_FUTURE_USAGE.
    So only the following separate exported fuction bodies are masked by
    this macro (other exported fucntions may have already been masked at
    entire module level via drivers/acpi/acpica/Makefile):
    acpi_install_exception_handler()
    acpi_subsystem_status()
    acpi_get_system_info()
    acpi_get_statistics()
    acpi_install_initialization_handler()
    2. Since strip can automatically zap the no-user functions, functions that
    are not marked with ACPI_EXPORT_SYMBOL() needn't get surrounded by
    ACPI_FUTURE_USAGE.
    So the following function which is not used by Linux kernel now won't
    get surrounded by this macro:
    acpi_ps_get_name()

    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Lv Zheng
     
  • …to the debugger thread

    When the debugger is running in the kernel mode, acpi_db_single_step() may
    also be invoked by the kernel runtime code path but the single stepping
    command prompt may be erronously logged as the kernel logs and runtime code
    path cannot proceed.

    This patch fixes this issue by adding acpi_gbl_db_thread_id for the debugger
    thread and preventing acpi_db_single_step() to be invoked from other threads.

    It is not suitable to add acpi_thread_id parameter for acpi_os_execute() as
    the function may be implemented as work queue on some hosts. So it is
    better to let the hosts invoke acpi_set_debugger_thread_id(). Currently
    acpiexec is not configured as DEBUGGER_MULTI_THREADED, but we can do this.
    When we do this, it is better to invoke acpi_set_debugger_thread_id() in
    acpi_os_execute() when the execution type is OSL_DEBUGGER_MAIN_THREAD. The
    support should look like:
    create_thread(&tid);
    if (type == OSL_DEBUGGER_MAIN_THREAD)
    acpi_set_debugger_thread_id(tid);
    resume_thread(tid);
    Similarly, semop() may be used for pthread implementation. But this patch
    simply skips debugger thread ID check for application instead of
    introducing such complications as there is no need to skip
    acpi_db_single_step() for an application debugger - acpiexec.

    Note that the debugger thread ID can also be used by acpi_os_printf() to
    filter out debugger output. Lv Zheng.

    Signed-off-by: Lv Zheng <lv.zheng@intel.com>
    Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

    Lv Zheng
     
  • ACPICA commit 8d0f96e2a11a4ceabb2cae4b41e0ce1f4d3786b9

    Adds much stricter typechecking in the iASL compiler, and
    also adds some additional checking in the interpreter.

    Link: https://github.com/acpica/acpica/commit/8d0f96e2
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit 534deab97fb416a13bfede15c538e2c9eac9384a

    Updated one of the memory subtable flags to clarify.

    Link: https://github.com/acpica/acpica/commit/534deab9
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit 6b2701f619040e803313363f516b200e362a9100

    Make these mutex objects independent of the deadlock detection mechanism.
    This mechanism caused failures with the multithread debugger.

    This patch doesn't affect Linux kernel as debugger is currently not fully
    functioning in the Linux kernel. And the further debugger cleanups will
    take care of handling debugger command signalling correctly instead of
    using such kind of mutexes. So it is safe to leave this patch as it is.

    Link: https://github.com/acpica/acpica/commit/6b2701f6
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit eea1f0e561893b6d6417913b2d224082fe3a0a5e

    Remove use of ACPI_DEBUGGER and ACPI_DISASSEMBLER where these
    defines are used around entire modules.

    Note: This type of code also causes problems with IDEs.

    Link: https://github.com/acpica/acpica/commit/eea1f0e5
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     

13 Oct, 2015

2 commits

  • For each detected ACPI Processor object (ACPI0007), search its
    device handle for CPPC specific tables (i.e. _CPC) and extract
    CPU specific performance capabilities.

    Signed-off-by: Ashwin Chaugule
    Reviewed-by: Al Stone
    Signed-off-by: Rafael J. Wysocki

    Ashwin Chaugule
     
  • CPPC stands for Collaborative Processor Performance Controls
    and is defined in the ACPI v5.0+ spec. It describes CPU
    performance controls on an abstract and continuous scale
    allowing the platform (e.g. remote power processor) to flexibly
    optimize CPU performance with its knowledge of power budgets
    and other architecture specific knowledge.

    This patch adds a shim which exports commonly used functions
    to get and set CPPC specific controls for each CPU. This enables
    CPUFreq drivers to gather per CPU performance data and use
    with exisiting governors or even allows for customized governors
    which are implemented inside CPUFreq drivers.

    Signed-off-by: Ashwin Chaugule
    Reviewed-by: Al Stone
    Signed-off-by: Rafael J. Wysocki

    Ashwin Chaugule
     

15 Sep, 2015

6 commits

  • This commit removes all CONFIG_.*{,_MODULE} in ACPI code, replacing it
    with IS_ENABLED().

    Signed-off-by: Sudeep Holla
    Signed-off-by: Rafael J. Wysocki

    Sudeep Holla
     
  • This is preparation for using kstrdup_const to initialize that member.

    Signed-off-by: Rasmus Villemoes
    Signed-off-by: Rafael J. Wysocki

    Rasmus Villemoes
     
  • One wouldn't expect a "match" function modify the string it searches
    for, and indeed the only instance of the struct
    acpi_scan_handler::match callback, acpi_pnp_match, can easily be
    changed. While there, update its helper matching_id().

    This is also preparation for constifying struct acpi_hardware_id::id.

    Signed-off-by: Rasmus Villemoes
    Signed-off-by: Rafael J. Wysocki

    Rasmus Villemoes
     
  • Modify is_acpi_node() to return "true" for ACPI data-only subnodes as
    well as for ACPI device objects and change the name of to_acpi_node()
    to to_acpi_device_node() so it is clear that it covers ACPI device
    objects only. Accordingly, introduce to_acpi_data_node() to cover
    data-only subnodes in an analogous way.

    With that, make the fwnode_property_* family of functions work with
    ACPI data-only subnodes introduced previously.

    Signed-off-by: Rafael J. Wysocki
    Tested-by: Mika Westerberg

    Rafael J. Wysocki
     
  • Add infrastructure needed to expose data-only subnodes of ACPI
    device objects introduced previously via sysfs.

    Each data-only subnode is represented as a sysfs directory under
    the directory corresponding to its parent object (a device or a
    data-only subnode). Each of them has a "path" attribute (containing
    the full ACPI namespace path to the object the subnode data come from)
    at this time.

    Signed-off-by: Rafael J. Wysocki
    Tested-by: Mika Westerberg

    Rafael J. Wysocki
     
  • In some cases, the information expressed via device properties is
    hierarchical by nature. For example, the properties of a composite
    device consisting of multiple semi-dependent components may need
    to be represented in the form of a tree of property data sets
    corresponding to specific components of the device.

    Unfortunately, using ACPI device objects for this purpose turns out
    to be problematic, mostly due to the assumption made by some operating
    systems (that platform firmware generally needs to work with) that
    each device object in the ACPI namespace represents a device requiring
    a separate driver. That assumption leads to complications which
    reportedly are impractically difficult to overcome and a different
    approach is needed for the sake of interoperability.

    The approach implemented here is based on extending _DSD via pointers
    (links) to additional ACPI objects returning data packages formatted
    in accordance with the _DSD formatting rules defined by Section 6.2.5
    of ACPI 6. Those additional objects are referred to as data-only
    subnodes of the device object containing the _DSD pointing to them.

    The links to them need to be located in a separate section of the
    _DSD data package following UUID dbb8e3e6-5886-4ba6-8795-1319f52a966b
    referred to as the Hierarchical Data Extension UUID as defined in [1].
    Each of them is represented by a package of two strings. The first
    string in that package (the key) is regarded as the name of the
    data-only subnode pointed to by the link. The second string in it
    (the target) is expected to hold the ACPI namespace path (possibly
    utilizing the usual ACPI namespace search rules) of an ACPI object
    evaluating to a data package extending the _DSD.

    The device properties initialization code follows those links,
    creates a struct acpi_data_node object for each of them to store
    the data returned by the ACPI object pointed to by it and processes
    those data recursively (which may lead to the creation of more
    struct acpi_data_node objects if the returned data package contains
    the Hierarchical Data Extension UUID section with more links in it).

    All of the struct acpi_data_node objects are present until the the
    ACPI device object containing the _DSD with links to them is deleted
    and they are deleted along with that object.

    [1]: http://www.uefi.org/sites/default/files/resources/_DSD-hierarchical-data-extension-UUID-v1.pdf

    Signed-off-by: Rafael J. Wysocki
    Tested-by: Mika Westerberg

    Rafael J. Wysocki
     

01 Sep, 2015

2 commits

  • * pm-cpufreq: (53 commits)
    cpufreq: speedstep-lib: Use monotonic clock
    cpufreq: powernv: Increase the verbosity of OCC console messages
    cpufreq: sfi: use kmemdup rather than duplicating its implementation
    cpufreq: drop !cpufreq_driver check from cpufreq_parse_governor()
    cpufreq: rename cpufreq_real_policy as cpufreq_user_policy
    cpufreq: remove redundant 'policy' field from user_policy
    cpufreq: remove redundant 'governor' field from user_policy
    cpufreq: update user_policy.* on success
    cpufreq: use memcpy() to copy policy
    cpufreq: remove redundant CPUFREQ_INCOMPATIBLE notifier event
    cpufreq: mediatek: Add MT8173 cpufreq driver
    dt-bindings: mediatek: Add MT8173 CPU DVFS clock bindings
    intel_pstate: append more Oracle OEM table id to vendor bypass list
    intel_pstate: Add SKY-S support
    intel_pstate: Fix possible overflow complained by Coverity
    cpufreq: Correct a freq check in cpufreq_set_policy()
    cpufreq: Lock CPU online/offline in cpufreq_register_driver()
    cpufreq: Replace recover_policy with new_policy in cpufreq_online()
    cpufreq: Separate CPU device registration from CPU online
    cpufreq: powernv: Restore cpu frequency to policy->cur on unthrottling
    ...

    Rafael J. Wysocki
     
  • * acpi-scan:
    ACPI / bus: Move ACPI bus type registration
    ACPI / scan: Move bus operations and notification routines to bus.c
    ACPI / scan: Move device matching code to bus.c
    ACPI / scan: Move sysfs-related device code to a separate file

    * acpi-processor:
    PCC: Disable compilation by default
    ACPI: Decouple ACPI idle and ACPI processor drivers
    ACPI: Split out ACPI PSS from ACPI Processor driver
    PCC: Initialize PCC Mailbox earlier at boot
    ACPI / processor: remove leftover __refdata annotations

    * acpi-assorted:
    ACPI: fix acpi_debugfs_init prototype
    ACPI: Remove FSF mailing addresses

    Rafael J. Wysocki
     

26 Aug, 2015

8 commits

  • ACPICA commit d93470de8febeecdc20633fde11cb0b200fa773b

    Version 20150818.

    Link: https://github.com/acpica/acpica/commit/d93470de
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit 7a3f22baab000b186779dac64ad71d9776b8f432

    It is likely that the debugger is enabled only when a userspace program
    explicitly tells a kernel to do so, so it shouldn't be initialized as
    early as current implementation.

    The only tool requiring ACPI_DEBUGGER is acpiexec, so acpiexec need to call
    the new APIs by itself. And BSD developers may also get notified to invoke
    the APIs for DDB enabling. Lv Zheng.

    This patch doesn't affect Linux kernel as debugger is currently not enabled
    in the Linux kernel.

    Link: https://github.com/acpica/acpica/commit/7a3f22ba
    Signed-off-by: Lv Zheng
    Signed-off-by: Bob Moore
    Signed-off-by: Rafael J. Wysocki

    Lv Zheng
     
  • ACPICA commit 5b4087fba991d8383046b550bbe22f3d8d9b9c8f

    Needed to improve MSVC editor support for symbols.

    For Linux kernel, this change is a no-op.

    Link: https://github.com/acpica/acpica/commit/5b4087fb
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit a9d9c2d0c2d077bb3175ec9c252cf0e5da3efd45

    Was previously compile-time only.
    Add support option for acpiexec.

    Link: https://github.com/acpica/acpica/commit/a9d9c2d0
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit bba222c15c2ce79076eb3a5e9d4d5f7120db8a00

    If "Objects" command is invoked with no arguments, the counts
    for each object type are displayed.

    Linux kernel is not affected by this commit as currently debugger is
    not enabled in the Linux kernel.

    Link: https://github.com/acpica/acpica/commit/bba222c1
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit 539f8c03fe64305725bd85343e42f3b6c42aad14

    A couple typos and long lines.

    Link: https://github.com/acpica/acpica/commit/539f8c03
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit 6d9c827b540837b6e54059e17756a06985e4a196

    ACPICA BZ 1176.

    Link: https://bugs.acpica.org/show_bug.cgi?id=1176
    Link: https://github.com/acpica/acpica/commit/6d9c827b
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit ed7769e832de6c7ba90615480d916c85fd100422

    If a table load fails, delete all namespace objects created by the
    table, otherwise these objects will be uninitialized, causing
    problems later. This appears to be a very rare problem.
    Also handle the unitialized node problem to prevent possible
    faults. ACPICA BZ 1185.

    Link: https://github.com/acpica/acpica/commit/ed7769e8
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     

25 Aug, 2015

2 commits

  • This patch introduces a new Kconfig symbol, ACPI_PROCESSOR_IDLE,
    which is auto selected by architectures which support the ACPI
    based C states for CPU Idle management.

    The processor_idle driver in its present form contains declarations
    specific to X86 and IA64. Since there are no reasonable defaults
    for other architectures e.g. ARM64, the driver is selected only for
    X86 or IA64.

    This helps in decoupling the ACPI processor_driver from the ACPI
    processor_idle driver which is useful for the upcoming alternative
    patchwork for controlling CPU Performance (CPPC) and CPU Idle (LPI).

    Signed-off-by: Ashwin Chaugule
    Signed-off-by: Rafael J. Wysocki

    Ashwin Chaugule
     
  • The ACPI processor driver is currently tied too closely
    to the ACPI P-states (PSS) and other related constructs
    for controlling CPU performance.

    The newer ACPI specification (v5.1 onwards) introduces
    alternative methods to PSS. These new mechanisms are
    described within each ACPI Processor object and so they
    need to be scanned whenever a new Processor object is detected.
    This patch introduces a new Kconfig symbol to allow for
    finer configurability among the two options for controlling
    performance states. There is no change in functionality and
    the option is auto-selected by the architectures which support it.

    A future commit will introduce support for CPPC: A newer method of
    controlling CPU performance. The OS is not expected to support
    CPPC and PSS at the same time, so the Kconfig option lets us make
    the two mutually exclusive at compile time.

    Signed-off-by: Ashwin Chaugule
    [ rjw: Changelog ]
    Signed-off-by: Rafael J. Wysocki

    Ashwin Chaugule
     

24 Jul, 2015

4 commits

  • ACPICA commit 8580ce04c1b7aa415c364b06e79edb8aca77dded

    Version 20150717.

    Link: https://github.com/acpica/acpica/commit/8580ce04
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit 55fa9555c71eaa99daebed4cd82cfde3875e8c45

    In addition to the existing support for the client table.

    Link: https://github.com/acpica/acpica/commit/55fa9555
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Bob Moore
     
  • ACPICA commit 49c6a6517a906900e9baa51ad5859beeb8a3089f

    The following error logs can be seen for calloc/free/malloc/realloc that
    defined in the stdlib.h:
    ...\stdlib.h(281) : error C2059: syntax error : ','
    ...\stdlib.h(281) : error C2143: syntax error : missing ')' before 'constant'
    ...\stdlib.h(281) : error C2143: syntax error : missing '{' before 'constant'
    ...\stdlib.h(281) : error C2059: syntax error : ''
    ...\stdlib.h(281) : error C2059: syntax error : ')'

    This is caused by the wrong inclusion order of stdlib.h/crtdbg.h introduced
    in acenv.h. This patch fixes this breakage. Lv Zheng.

    This patch doesn't affect Linux kernel.

    Link: https://github.com/acpica/acpica/commit/49c6a651
    Signed-off-by: Lv Zheng
    Signed-off-by: Bob Moore
    Signed-off-by: Rafael J. Wysocki

    Lv Zheng
     
  • ACPICA commit 61e9e20aadfaa03184d0959fbdc1fa5cdfea2551

    This patch adds option to bypass opcode tracing. The option can be used to
    reduce the trace message output. Lv Zheng.

    Link: https://github.com/acpica/acpica/commit/61e9e20a
    Signed-off-by: Lv Zheng
    Signed-off-by: Bob Moore
    Signed-off-by: Rafael J. Wysocki

    Lv Zheng