Chameleon

Chameleon Svn Source Tree

Root/branches/rek_obsolete/i386/libsa/efi_tables.h

Source at commit 177 created 13 years 10 months ago.
By valv, call the cpu/freq detection code late in the booter. Thanks Kabyl. New FSB detection code, plus a FixFSB and busratio keys. Added support for newer intel CPUs (Core i7/i5/i3). More nVidia Device-IDs added. Got rid of some annoying verbose messages. Healed DSDT dependency. Better CPU injection.
1/*! @file efi_tables.h
2 @abstract Utility functions for dealing with EFI tables
3 Copyright 2007 David F. Elliott. All rights reserved.
4 */
5#ifndef _LIBSA_EFI_TABLES_H__
6#define _LIBSA_EFI_TABLES_H__
7
8#include "efi.h"
9
10uint32_t crc32(uint32_t crc, const void *buf, size_t size);
11
12void efi_guid_unparse_upper(EFI_GUID const *pGuid, char *out);
13bool efi_guid_is_null(EFI_GUID const *pGuid);
14int efi_guid_compare(EFI_GUID const *pG1, EFI_GUID const *pG2);
15
16#endif //ndef _LIBSA_EFI_TABLES_H__
17

Archive Download this file

Revision: 177