Michael D Kinney 9cd9bdc620 DynamicTablesPkg: Replace BSD License with BSD+Patent License
https://bugzilla.tianocore.org/show_bug.cgi?id=1373

Replace BSD 2-Clause License with BSD+Patent License.  This change is
based on the following emails:

  https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html
  https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html

RFCs with detailed process for the license change:

  V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html
  V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html
  V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
2019-04-09 10:57:57 -07:00

45 lines
1.0 KiB
C

/** @file
Copyright (c) 2018, ARM Limited. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
@par Glossary:
- Cm or CM - Configuration Manager
- Obj or OBJ - Object
- Std or STD - Standard
**/
#ifndef IORT_GENERATOR_H_
#define IORT_GENERATOR_H_
#pragma pack(1)
/** A structure that describes the Node indexer
used for indexing the IORT nodes.
*/
typedef struct IortNodeIndexer {
/// Index token for the Node
CM_OBJECT_TOKEN Token;
/// Pointer to the node
VOID * Object;
/// Node offset from the start of the IORT table
UINT32 Offset;
} IORT_NODE_INDEXER;
typedef struct AcpiIortGenerator {
/// ACPI Table generator header
ACPI_TABLE_GENERATOR Header;
// IORT Generator private data
/// IORT node count
UINT32 IortNodeCount;
/// Pointer to the node indexer array
IORT_NODE_INDEXER * NodeIndexer;
} ACPI_IORT_GENERATOR;
#pragma pack()
#endif // IORT_GENERATOR_H_