13 Jan, 2020

1 commit


16 Jan, 2019

1 commit


19 Mar, 2018

1 commit


06 Feb, 2018

1 commit


04 Aug, 2017

1 commit

  • ACPICA commit 43ff22215f0fcd8ca80abec5712a07d2cc9a801d

    acpi.h inclusion order need to be changed to build EDK-II ports of
    acpidump on Windows as va_list is used before it's definition in that
    environment. As we only need to ensure order of acenv.h/acenvex.h to
    be pre/post ACPICA type definitions, inclusion order is changed to make
    MSVC builds happy. Lv Zheng.

    Link: https://github.com/acpica/acpica/commit/43ff2221
    Signed-off-by: "Shao, Ming"
    Signed-off-by: Lv Zheng
    Signed-off-by: Shao Ming
    Signed-off-by: Bob Moore
    Signed-off-by: Rafael J. Wysocki

    Shao Ming
     

09 Feb, 2017

1 commit


16 Jan, 2016

1 commit


05 Feb, 2015

1 commit


28 May, 2014

1 commit

  • From ACPICA's perspective, should be included after
    inclusion of . But currently in Linux,
    included by has
    included to find ACPICA types for inline functions.

    This causes the following problem:
    1. Redundant code in and :
    Linux must be careful to keep conditions for inclusion
    consistent with the conditions for inclusion.
    Which finally leads to the issue that we have to keep many useless macro
    definitions in or .
    Such conditions include:
    COMPILER_DEPENDENT_UINT64
    COMPILER_DEPENDENT_INT64
    ACPI_INLINE
    ACPI_SYSTEM_XFACE
    ACPI_EXTERNAL_XFACE
    ACPI_INTERNAL_XFACE
    ACPI_INTERNAL_VAR_XFACE
    ACPI_MUTEX_TYPE
    DEBUGGER_THREADING
    ACPI_ACQUIRE_GLOBAL_LOCK
    ACPI_RELEASE_GLOBAL_LOCK
    ACPI_FLUSH_CPU_CACHE
    They have default implementations in
    while Linux need to keep a copy in to avoid build errors.

    This patch introduces to fix this issue by
    splitting conditions and declarations (most of them are inline functions)
    into 2 header files so that the wrong inclusion of can be
    removed from .

    This patch also removes old ACPI_NATIVE_INTERFACE_HEADER mechanism which is
    not preferred by Linux and adds the platform/acenvex.h to be the solution
    to solve this issue.

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

    Lv Zheng
     

11 Feb, 2014

2 commits

  • If OSPMs have something should appear after actypes.h to reference type
    definitions, the platform/acxxx.h is not sufficient as it is included by
    platform/acenv.h before including actypes.h.

    This patch introduces an OSPMs declarable headers to allow OSPMs to handle
    such requirement for their own purposes.

    This kind of header can also be used by Linux to collect the divergences
    that haven't been back ported yet. Lv Zheng.

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

    Lv Zheng
     
  • Update ACPICA copyrights to 2014. Includes all source headers and
    signons for the various tools.

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

    Bob Moore
     

25 Jan, 2013

1 commit


03 Oct, 2012

1 commit


17 Jul, 2012

1 commit


19 Jan, 2011

1 commit


23 Jan, 2010

1 commit


31 Dec, 2008

1 commit

  • acpi.h now includes only the "public" acpica headers. All other
    acpica headers are "private" and should not be included by acpica
    users. One new file, accommon.h is used to include the commonly
    used private headers for acpica code generation. Future plans
    are to move all private headers to a new subdirectory.

    Signed-off-by: Bob Moore
    Signed-off-by: Lin Ming
    Signed-off-by: Len Brown

    Bob Moore
     

24 Apr, 2008

1 commit


03 Feb, 2007

1 commit

  • Added 2007 copyright to all module headers and signons. This affects
    virtually every file in the ACPICA core subsystem, iASL compiler,
    and the utilities.

    Signed-off-by: Alexey Starikovskiy
    Signed-off-by: Len Brown

    Bob Moore
     

20 Jan, 2006

1 commit

  • Added 2006 copyright.

    At SuSE's suggestion, enabled all error messages
    without enabling function tracing, ie with CONFIG_ACPI_DEBUG=n

    Replaced all instances of the ACPI_DEBUG_PRINT macro invoked at
    the ACPI_DB_ERROR and ACPI_DB_WARN debug levels with
    the ACPI_REPORT_ERROR and ACPI_REPORT_WARNING macros,
    respectively. This preserves all error and warning messages
    in the non-debug version of the ACPICA code (this has been
    referred to as the "debug lite" option.) Over 200 cases
    were converted to create a total of over 380 error/warning
    messages across the ACPICA code. This increases the code
    and data size of the default non-debug version by about 13K.
    Added ACPI_NO_ERROR_MESSAGES flag to enable deleting all messages.
    The size of the debug version remains about the same.

    Signed-off-by: Bob Moore
    Signed-off-by: Len Brown

    Bob Moore
     

05 Aug, 2005

1 commit


12 Jul, 2005

1 commit

  • Fixed three cases in the interpreter where an "index"
    argument to an ASL function was still (internally) 32
    bits instead of the required 64 bits. This was the Index
    argument to the Index, Mid, and Match operators.

    The "strupr" function is now permanently local
    (acpi_ut_strupr), since this is not a POSIX-defined
    function and not present in most kernel-level C
    libraries. References to the C library strupr function
    have been removed from the headers.

    Completed the deployment of static
    functions/prototypes. All prototypes with the static
    attribute have been moved from the headers to the owning
    C file.

    ACPICA 20050329 from Bob Moore

    An error is now generated if an attempt is made to create
    a Buffer Field of length zero (A CreateField with a length
    operand of zero.)

    The interpreter now issues a warning whenever executable
    code at the module level is detected during ACPI table
    load. This will give some idea of the prevalence of this
    type of code.

    Implemented support for references to named objects (other
    than control methods) within package objects.

    Enhanced package object output for the debug
    object. Package objects are now completely dumped, showing
    all elements.

    Enhanced miscellaneous object output for the debug
    object. Any object can now be written to the debug object
    (for example, a device object can be written, and the type
    of the object will be displayed.)

    The "static" qualifier has been added to all local
    functions across the core subsystem.

    The number of "long" lines (> 80 chars) within the source
    has been significantly reduced, by about 1/3.

    Cleaned up all header files to ensure that all CA/iASL
    functions are prototyped (even static functions) and the
    formatting is consistent.

    Two new header files have been added, acopcode.h and
    acnames.h.

    Removed several obsolete functions that were no longer
    used.

    Signed-off-by: Len Brown

    Robert Moore
     

17 Apr, 2005

1 commit

  • Initial git repository build. I'm not bothering with the full history,
    even though we have it. We can create a separate "historical" git
    archive of that later if we want to, and in the meantime it's about
    3.2GB when imported into git - space that would just make the early
    git days unnecessarily complicated, when we don't have a lot of good
    infrastructure for it.

    Let it rip!

    Linus Torvalds