19 Jan, 2011

1 commit


23 Jan, 2010

1 commit


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
     

30 Aug, 2005

1 commit

  • Implemented a full bytewise compare to determine if a table load
    request is attempting to load a duplicate table. The compare is
    performed if the table signatures and table lengths match. This
    will allow different tables with the same OEM Table ID and
    revision to be loaded.

    Although the BIOS is technically violating the ACPI spec when
    this happens -- it does happen -- so Linux must handle it.

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

    Bob Moore
     

05 Aug, 2005

1 commit


30 Jul, 2005

1 commit

  • Implemented support to ignore an attempt to install/load
    a particular ACPI table more than once. Apparently there
    exists BIOS code that repeatedly attempts to load the same
    SSDT upon certain events. Thanks to Venkatesh Pallipadi.

    Restructured the main interface to the AML parser in
    order to correctly handle all exceptional conditions. This
    will prevent leakage of the OwnerId resource and should
    eliminate the AE_OWNER_ID_LIMIT exceptions seen on some
    machines. Thanks to Alexey Starikovskiy.

    Support for "module level code" has been disabled in this
    version due to a number of issues that have appeared
    on various machines. The support can be enabled by
    defining ACPI_ENABLE_MODULE_LEVEL_CODE during subsystem
    compilation. When the issues are fully resolved, the code
    will be enabled by default again.

    Modified the internal functions for debug print support
    to define the FunctionName parameter as a (const char *)
    for compatibility with compiler built-in macros such as
    __FUNCTION__, etc.

    Linted the entire ACPICA source tree for both 32-bit
    and 64-bit.

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

    Robert Moore
     

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