From 10219012f29692c7860e505cf2d71004ba82c1f3 Mon Sep 17 00:00:00 2001 From: Zheng Bao Date: Tue, 18 Jan 2011 09:29:19 +0000 Subject: remove the code which is not ready to release. Signed-off-by: Zheng Bao Acked-by: Zheng Bao git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6261 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/vendorcode/amd/cimx/sb800/ACPILIB.h | 60 --------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 src/vendorcode/amd/cimx/sb800/ACPILIB.h (limited to 'src/vendorcode/amd/cimx/sb800/ACPILIB.h') diff --git a/src/vendorcode/amd/cimx/sb800/ACPILIB.h b/src/vendorcode/amd/cimx/sb800/ACPILIB.h deleted file mode 100644 index 09e2607652..0000000000 --- a/src/vendorcode/amd/cimx/sb800/ACPILIB.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - ***************************************************************************** - * - * This file is part of the coreboot project. - * - * Copyright (C) 2010 Advanced Micro Devices, Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; version 2 of the License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * *************************************************************************** - * - */ - -/** - * RSDP - ACPI 2.0 table RSDP - */ -typedef struct _RSDP -{ - UINT64 Signature; /* RSDP signature "RSD PTR" */ - UINT8 Checksum; /* checksum of the first 20 bytes */ - UINT8 OEMID[6]; /* OEM ID, "LXBIOS" */ - UINT8 Revision; /* 0 for APCI 1.0, 2 for ACPI 2.0 */ - UINT32 RsdtAddress; /* physical address of RSDT */ - UINT32 Length; /* total length of RSDP (including extended part) */ - UINT64 XsdtAddress; /* physical address of XSDT */ - UINT8 ExtendedChecksum; /* chechsum of whole table */ - UINT8 Reserved[3]; -} RSDP; - - -/** - * DESCRIPTION_HEADER - ACPI common table header - */ -typedef struct _DESCRIPTION_HEADER -{ - UINT32 Signature; /* ACPI signature (4 ASCII characters) */ - UINT32 Length; /* Length of table, in bytes, including header */ - UINT8 Revision; /* ACPI Specification minor version # */ - UINT8 Checksum; /* To make sum of entire table == 0 */ - UINT8 OEMID[6]; /* OEM identification */ - UINT8 OEMTableID[8]; /* OEM table identification */ - UINT32 OEMRevision; /* OEM revision number */ - UINT32 CreatorID; /* ASL compiler vendor ID */ - UINT32 CreatorRevision; /* ASL compiler revision number */ -} DESCRIPTION_HEADER; - -VOID* ACPI_LocateTable (IN UINT32 Signature); -VOID ACPI_SetTableChecksum (IN VOID* TablePtr); -UINT8 ACPI_GetTableChecksum (IN VOID* TablePtr); -UINT8 GetByteSum (IN VOID* pData, IN UINT32 Length); -- cgit v1.2.3