mbox series

[v2,00/22] ACPICA release 20210331 (ACPI 6.4 support)

Message ID 20210406213028.718796-1-erik.kaneda@intel.com (mailing list archive)
Headers show
Series ACPICA release 20210331 (ACPI 6.4 support) | expand

Message

Erik Kaneda April 6, 2021, 9:30 p.m. UTC
This series contains the Linux-ized patches of ACPICA version 20210331.
This release implements changes to implement the ACPI 6.4 specification
as well as several new tables defined outside of the ACPI specification.

v2: fix build issue stemming modified NFIT structure

This patch set is also available here:

https://github.com/SchmErik/linux/tree/20210331


Alexander Monakov (1):
  ACPICA: Add parsing for IVRS IVHD 40h and device entry F0h

Ben Widawsky (1):
  ACPICA: CXL 2.0: CEDT: Add new CEDT table

Bob Moore (8):
  ACPICA: ACPI 6.4: NFIT: add Location Cookie field
  ACPICA: ACPI 6.4: HMAT: add new fields/flags
  ACPICA: ACPI 6.4: Add new flags in SRAT
  ACPICA: ACPI 6.4: PMTT: add new fields/structures
  ACPICA: ACPI 6.4: add CSI2Bus resource template
  ACPICA: iASL: Add support for CEDT table
  ACPICA: iASL: Decode subtable type field for VIOT
  ACPICA: Update version to 20210331

Colin Ian King (1):
  ACPICA: Tree-wide: fix various typos and spelling mistakes

Erik Kaneda (8):
  ACPICA: ACPI 6.4: Add new predefined objects _BPC, _BPS, and _BPT
  ACPICA: ACPI 6.4: add USB4 capabilities UUID
  ACPICA: ACPI 6.4: add CXL ACPI device ID and _CBR object
  ACPICA: ACPI 6.4: MADT: add Multiprocessor Wakeup Structure
  ACPICA: ACPI 6.4: PCCT: add support for subtable type 5
  ACPICA: ACPI 6.4: PPTT: add new version of subtable type 1
  ACPICA: ACPI 6.4: add SDEV secure access components
  ACPICA: ACPI 6.4: add support for PHAT table

Jean-Philippe Brucker (2):
  ACPICA: iASL: Add definitions for the VIOT table
  ACPICA: acpisrc: Add missing conversion for VIOT support

Shameer Kolothum (1):
  ACPICA: IORT: Updates for revision E.b

 drivers/acpi/acpica/acpredef.h    |  15 ++
 drivers/acpi/acpica/acresrc.h     |   4 +
 drivers/acpi/acpica/acutils.h     |   1 +
 drivers/acpi/acpica/amlresrc.h    |  19 ++-
 drivers/acpi/acpica/rscalc.c      |   4 +-
 drivers/acpi/acpica/rsdump.c      |   8 +
 drivers/acpi/acpica/rsdumpinfo.c  |  26 ++++
 drivers/acpi/acpica/rsinfo.c      |   6 +-
 drivers/acpi/acpica/rslist.c      |   9 +-
 drivers/acpi/acpica/rsmisc.c      |  19 +++
 drivers/acpi/acpica/rsserial.c    |  75 ++++++++++
 drivers/acpi/acpica/utresdecode.c |  10 +-
 drivers/acpi/acpica/utresrc.c     |   1 +
 drivers/acpi/nfit/core.c          |   2 +-
 include/acpi/acoutput.h           |   2 +-
 include/acpi/acpixf.h             |   2 +-
 include/acpi/acrestyp.h           |   9 +-
 include/acpi/actbl1.h             |  54 ++++++-
 include/acpi/actbl2.h             | 240 ++++++++++++++++++++++++++----
 include/acpi/actbl3.h             |  70 ++++++++-
 include/acpi/acuuid.h             |   1 +
 include/acpi/platform/acgcc.h     |   2 +-
 tools/power/acpi/common/cmfsize.c |   2 +-
 23 files changed, 537 insertions(+), 44 deletions(-)

Comments

Rafael J. Wysocki April 7, 2021, 5:11 p.m. UTC | #1
On Wed, Apr 7, 2021 at 12:05 AM Erik Kaneda <erik.kaneda@intel.com> wrote:
>
> This series contains the Linux-ized patches of ACPICA version 20210331.
> This release implements changes to implement the ACPI 6.4 specification
> as well as several new tables defined outside of the ACPI specification.
>
> v2: fix build issue stemming modified NFIT structure
>
> This patch set is also available here:
>
> https://github.com/SchmErik/linux/tree/20210331
>
>
> Alexander Monakov (1):
>   ACPICA: Add parsing for IVRS IVHD 40h and device entry F0h
>
> Ben Widawsky (1):
>   ACPICA: CXL 2.0: CEDT: Add new CEDT table
>
> Bob Moore (8):
>   ACPICA: ACPI 6.4: NFIT: add Location Cookie field
>   ACPICA: ACPI 6.4: HMAT: add new fields/flags
>   ACPICA: ACPI 6.4: Add new flags in SRAT
>   ACPICA: ACPI 6.4: PMTT: add new fields/structures
>   ACPICA: ACPI 6.4: add CSI2Bus resource template
>   ACPICA: iASL: Add support for CEDT table
>   ACPICA: iASL: Decode subtable type field for VIOT
>   ACPICA: Update version to 20210331
>
> Colin Ian King (1):
>   ACPICA: Tree-wide: fix various typos and spelling mistakes
>
> Erik Kaneda (8):
>   ACPICA: ACPI 6.4: Add new predefined objects _BPC, _BPS, and _BPT
>   ACPICA: ACPI 6.4: add USB4 capabilities UUID
>   ACPICA: ACPI 6.4: add CXL ACPI device ID and _CBR object
>   ACPICA: ACPI 6.4: MADT: add Multiprocessor Wakeup Structure
>   ACPICA: ACPI 6.4: PCCT: add support for subtable type 5
>   ACPICA: ACPI 6.4: PPTT: add new version of subtable type 1
>   ACPICA: ACPI 6.4: add SDEV secure access components
>   ACPICA: ACPI 6.4: add support for PHAT table
>
> Jean-Philippe Brucker (2):
>   ACPICA: iASL: Add definitions for the VIOT table
>   ACPICA: acpisrc: Add missing conversion for VIOT support
>
> Shameer Kolothum (1):
>   ACPICA: IORT: Updates for revision E.b

All applied as 5.13 material, thank you!