514 lines
12 KiB
C
514 lines
12 KiB
C
/******************************************************************************
|
|
*
|
|
* Module Name: dtcompiler.h - header for data table compiler
|
|
*
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
* Copyright (C) 2000 - 2011, Intel Corp.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions, and the following disclaimer,
|
|
* without modification.
|
|
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
|
* substantially similar to the "NO WARRANTY" disclaimer below
|
|
* ("Disclaimer") and any redistribution must be conditioned upon
|
|
* including a substantially similar Disclaimer requirement for further
|
|
* binary redistribution.
|
|
* 3. Neither the names of the above-listed copyright holders nor the names
|
|
* of any contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
* Software Foundation.
|
|
*
|
|
* NO WARRANTY
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGES.
|
|
*/
|
|
|
|
#define __DTCOMPILER_H__
|
|
|
|
#ifndef _DTCOMPILER
|
|
#define _DTCOMPILER
|
|
|
|
#include <stdio.h>
|
|
#include "acdisasm.h"
|
|
|
|
|
|
#undef DT_EXTERN
|
|
|
|
#ifdef _DECLARE_DT_GLOBALS
|
|
#define DT_EXTERN
|
|
#define DT_INIT_GLOBAL(a,b) (a)=(b)
|
|
#else
|
|
#define DT_EXTERN extern
|
|
#define DT_INIT_GLOBAL(a,b) (a)
|
|
#endif
|
|
|
|
|
|
/* Types for individual fields (one per input line) */
|
|
|
|
#define DT_FIELD_TYPE_STRING 0
|
|
#define DT_FIELD_TYPE_INTEGER 1
|
|
#define DT_FIELD_TYPE_BUFFER 2
|
|
#define DT_FIELD_TYPE_PCI_PATH 3
|
|
#define DT_FIELD_TYPE_FLAG 4
|
|
#define DT_FIELD_TYPE_FLAGS_INTEGER 5
|
|
#define DT_FIELD_TYPE_INLINE_SUBTABLE 6
|
|
#define DT_FIELD_TYPE_UUID 7
|
|
#define DT_FIELD_TYPE_UNICODE 8
|
|
#define DT_FIELD_TYPE_DEVICE_PATH 9
|
|
#define DT_FIELD_TYPE_LABEL 10
|
|
|
|
|
|
/*
|
|
* Structure used for each individual field within an ACPI table
|
|
*/
|
|
typedef struct dt_field
|
|
{
|
|
char *Name; /* Field name (from name : value) */
|
|
char *Value; /* Field value (from name : value) */
|
|
struct dt_field *Next; /* Next field */
|
|
struct dt_field *NextLabel; /* If field is a label, next label */
|
|
UINT32 Line; /* Line number for this field */
|
|
UINT32 ByteOffset; /* Offset in source file for field */
|
|
UINT32 NameColumn; /* Start column for field name */
|
|
UINT32 Column; /* Start column for field value */
|
|
UINT32 TableOffset;/* Binary offset within ACPI table */
|
|
UINT8 Flags;
|
|
|
|
} DT_FIELD;
|
|
|
|
/* Flags for above */
|
|
|
|
#define DT_FIELD_NOT_ALLOCATED 1
|
|
|
|
|
|
/*
|
|
* Structure used for individual subtables within an ACPI table
|
|
*/
|
|
typedef struct dt_subtable
|
|
{
|
|
struct dt_subtable *Parent;
|
|
struct dt_subtable *Child;
|
|
struct dt_subtable *Peer;
|
|
struct dt_subtable *StackTop;
|
|
UINT8 *Buffer;
|
|
UINT8 *LengthField;
|
|
UINT32 Length;
|
|
UINT32 TotalLength;
|
|
UINT32 SizeOfLengthField;
|
|
UINT8 Flags;
|
|
|
|
} DT_SUBTABLE;
|
|
|
|
|
|
/*
|
|
* Globals
|
|
*/
|
|
|
|
/* List of all field names and values from the input source */
|
|
|
|
DT_EXTERN DT_FIELD DT_INIT_GLOBAL (*Gbl_FieldList, NULL);
|
|
|
|
/* List of all compiled tables and subtables */
|
|
|
|
DT_EXTERN DT_SUBTABLE DT_INIT_GLOBAL (*Gbl_RootTable, NULL);
|
|
|
|
/* Stack for subtables */
|
|
|
|
DT_EXTERN DT_SUBTABLE DT_INIT_GLOBAL (*Gbl_SubtableStack, NULL);
|
|
|
|
/* List for defined labels */
|
|
|
|
DT_EXTERN DT_FIELD DT_INIT_GLOBAL (*Gbl_LabelList, NULL);
|
|
|
|
/* Current offset within the binary output table */
|
|
|
|
DT_EXTERN UINT32 DT_INIT_GLOBAL (Gbl_CurrentTableOffset, 0);
|
|
|
|
|
|
/* dtcompiler - main module */
|
|
|
|
ACPI_STATUS
|
|
DtCompileTable (
|
|
DT_FIELD **Field,
|
|
ACPI_DMTABLE_INFO *Info,
|
|
DT_SUBTABLE **RetSubtable,
|
|
BOOLEAN Required);
|
|
|
|
|
|
/* dtio - binary and text input/output */
|
|
|
|
DT_FIELD *
|
|
DtScanFile (
|
|
FILE *Handle);
|
|
|
|
void
|
|
DtOutputBinary (
|
|
DT_SUBTABLE *RootTable);
|
|
|
|
void
|
|
DtWriteFieldToListing (
|
|
UINT8 *Buffer,
|
|
DT_FIELD *Field,
|
|
UINT32 Length);
|
|
|
|
void
|
|
DtWriteTableToListing (
|
|
void);
|
|
|
|
|
|
/* dtsubtable - compile subtables */
|
|
|
|
void
|
|
DtCreateSubtable (
|
|
UINT8 *Buffer,
|
|
UINT32 Length,
|
|
DT_SUBTABLE **RetSubtable);
|
|
|
|
UINT32
|
|
DtGetSubtableLength (
|
|
DT_FIELD *Field,
|
|
ACPI_DMTABLE_INFO *Info);
|
|
|
|
void
|
|
DtSetSubtableLength (
|
|
DT_SUBTABLE *Subtable);
|
|
|
|
void
|
|
DtPushSubtable (
|
|
DT_SUBTABLE *Subtable);
|
|
|
|
void
|
|
DtPopSubtable (
|
|
void);
|
|
|
|
DT_SUBTABLE *
|
|
DtPeekSubtable (
|
|
void);
|
|
|
|
void
|
|
DtInsertSubtable (
|
|
DT_SUBTABLE *ParentTable,
|
|
DT_SUBTABLE *Subtable);
|
|
|
|
DT_SUBTABLE *
|
|
DtGetNextSubtable (
|
|
DT_SUBTABLE *ParentTable,
|
|
DT_SUBTABLE *ChildTable);
|
|
|
|
DT_SUBTABLE *
|
|
DtGetParentSubtable (
|
|
DT_SUBTABLE *Subtable);
|
|
|
|
|
|
/* dtexpress - Integer expressions and labels */
|
|
|
|
ACPI_STATUS
|
|
DtResolveIntegerExpression (
|
|
DT_FIELD *Field,
|
|
UINT64 *ReturnValue);
|
|
|
|
UINT64
|
|
DtDoOperator (
|
|
UINT64 LeftValue,
|
|
UINT32 Operator,
|
|
UINT64 RightValue);
|
|
|
|
UINT64
|
|
DtResolveLabel (
|
|
char *LabelString);
|
|
|
|
void
|
|
DtDetectAllLabels (
|
|
DT_FIELD *FieldList);
|
|
|
|
|
|
/* dtfield - Compile individual fields within a table */
|
|
|
|
void
|
|
DtCompileOneField (
|
|
UINT8 *Buffer,
|
|
DT_FIELD *Field,
|
|
UINT32 ByteLength,
|
|
UINT8 Type,
|
|
UINT8 Flags);
|
|
|
|
void
|
|
DtCompileInteger (
|
|
UINT8 *Buffer,
|
|
DT_FIELD *Field,
|
|
UINT32 ByteLength,
|
|
UINT8 Flags);
|
|
|
|
UINT32
|
|
DtCompileBuffer (
|
|
UINT8 *Buffer,
|
|
char *Value,
|
|
DT_FIELD *Field,
|
|
UINT32 ByteLength);
|
|
|
|
void
|
|
DtCompileFlag (
|
|
UINT8 *Buffer,
|
|
DT_FIELD *Field,
|
|
ACPI_DMTABLE_INFO *Info);
|
|
|
|
|
|
/* dtparser - lex/yacc files */
|
|
|
|
UINT64
|
|
DtEvaluateExpression (
|
|
char *ExprString);
|
|
|
|
int
|
|
DtInitLexer (
|
|
char *String);
|
|
|
|
void
|
|
DtTerminateLexer (
|
|
void);
|
|
|
|
char *
|
|
DtGetOpName (
|
|
UINT32 ParseOpcode);
|
|
|
|
|
|
/* dtutils - Miscellaneous utilities */
|
|
|
|
typedef
|
|
void (*DT_WALK_CALLBACK) (
|
|
DT_SUBTABLE *Subtable,
|
|
void *Context,
|
|
void *ReturnValue);
|
|
|
|
void
|
|
DtWalkTableTree (
|
|
DT_SUBTABLE *StartTable,
|
|
DT_WALK_CALLBACK UserFunction,
|
|
void *Context,
|
|
void *ReturnValue);
|
|
|
|
void
|
|
DtError (
|
|
UINT8 Level,
|
|
UINT8 MessageId,
|
|
DT_FIELD *FieldObject,
|
|
char *ExtraMessage);
|
|
|
|
void
|
|
DtNameError (
|
|
UINT8 Level,
|
|
UINT8 MessageId,
|
|
DT_FIELD *FieldObject,
|
|
char *ExtraMessage);
|
|
|
|
void
|
|
DtFatal (
|
|
UINT8 MessageId,
|
|
DT_FIELD *FieldObject,
|
|
char *ExtraMessage);
|
|
|
|
ACPI_STATUS
|
|
DtStrtoul64 (
|
|
char *String,
|
|
UINT64 *ReturnInteger);
|
|
|
|
UINT32
|
|
DtGetFileSize (
|
|
FILE *Handle);
|
|
|
|
char*
|
|
DtGetFieldValue (
|
|
DT_FIELD *Field);
|
|
|
|
UINT8
|
|
DtGetFieldType (
|
|
ACPI_DMTABLE_INFO *Info);
|
|
|
|
UINT32
|
|
DtGetBufferLength (
|
|
char *Buffer);
|
|
|
|
UINT32
|
|
DtGetFieldLength (
|
|
DT_FIELD *Field,
|
|
ACPI_DMTABLE_INFO *Info);
|
|
|
|
void
|
|
DtSetTableChecksum (
|
|
UINT8 *ChecksumPointer);
|
|
|
|
void
|
|
DtSetTableLength(
|
|
void);
|
|
|
|
void
|
|
DtFreeFieldList (
|
|
void);
|
|
|
|
|
|
/* dttable - individual table compilation */
|
|
|
|
ACPI_STATUS
|
|
DtCompileFacs (
|
|
DT_FIELD **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileRsdp (
|
|
DT_FIELD **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileAsf (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileCpep (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileDmar (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileEinj (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileErst (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileFadt (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileFpdt (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileHest (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileIvrs (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileMadt (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileMcfg (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileMpst (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileMsct (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompilePmtt (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileRsdt (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileS3pt (
|
|
DT_FIELD **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileSlic (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileSlit (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileSrat (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileUefi (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileWdat (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileXsdt (
|
|
void **PFieldList);
|
|
|
|
ACPI_STATUS
|
|
DtCompileGeneric (
|
|
void **PFieldList);
|
|
|
|
ACPI_DMTABLE_INFO *
|
|
DtGetGenericTableInfo (
|
|
char *Name);
|
|
|
|
/* ACPI Table templates */
|
|
|
|
extern const unsigned char TemplateAsf[];
|
|
extern const unsigned char TemplateBoot[];
|
|
extern const unsigned char TemplateBert[];
|
|
extern const unsigned char TemplateBgrt[];
|
|
extern const unsigned char TemplateCpep[];
|
|
extern const unsigned char TemplateDbgp[];
|
|
extern const unsigned char TemplateDmar[];
|
|
extern const unsigned char TemplateEcdt[];
|
|
extern const unsigned char TemplateEinj[];
|
|
extern const unsigned char TemplateErst[];
|
|
extern const unsigned char TemplateFadt[];
|
|
extern const unsigned char TemplateFpdt[];
|
|
extern const unsigned char TemplateGtdt[];
|
|
extern const unsigned char TemplateHest[];
|
|
extern const unsigned char TemplateHpet[];
|
|
extern const unsigned char TemplateIvrs[];
|
|
extern const unsigned char TemplateMadt[];
|
|
extern const unsigned char TemplateMcfg[];
|
|
extern const unsigned char TemplateMchi[];
|
|
extern const unsigned char TemplateMpst[];
|
|
extern const unsigned char TemplateMsct[];
|
|
extern const unsigned char TemplatePmtt[];
|
|
extern const unsigned char TemplateRsdt[];
|
|
extern const unsigned char TemplateS3pt[];
|
|
extern const unsigned char TemplateSbst[];
|
|
extern const unsigned char TemplateSlic[];
|
|
extern const unsigned char TemplateSlit[];
|
|
extern const unsigned char TemplateSpcr[];
|
|
extern const unsigned char TemplateSpmi[];
|
|
extern const unsigned char TemplateSrat[];
|
|
extern const unsigned char TemplateTcpa[];
|
|
extern const unsigned char TemplateUefi[];
|
|
extern const unsigned char TemplateWaet[];
|
|
extern const unsigned char TemplateWdat[];
|
|
extern const unsigned char TemplateWddt[];
|
|
extern const unsigned char TemplateWdrt[];
|
|
extern const unsigned char TemplateXsdt[];
|
|
|
|
#endif
|