3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
18 CalculateCrc32 Boot Services as defined in DXE CIS.
20 This Boot Services is in the Runtime Driver because this service is
21 also required by SetVirtualAddressMap() when the EFI System Table and
22 EFI Runtime Services Table are converted from physical address to
23 virtual addresses. This requires that the 32-bit CRC be recomputed.
31 UINT32 mCrcTable
[256];
35 RuntimeDriverCalculateCrc32 (
54 if (Data
== NULL
|| DataSize
== 0 || CrcOut
== NULL
) {
55 return EFI_INVALID_PARAMETER
;
59 for (Index
= 0, Ptr
= Data
; Index
< DataSize
; Index
++, Ptr
++) {
60 Crc
= (Crc
>> 8) ^ mCrcTable
[(UINT8
) Crc
^ *Ptr
];
63 *CrcOut
= Crc
^ 0xffffffff;
85 for (Index
= 0; Index
< 32; Index
++) {
86 if (Value
& (1 << Index
)) {
87 NewValue
= NewValue
| (1 << (31 - Index
));
95 RuntimeDriverInitializeCrc32Table (
112 for (TableEntry
= 0; TableEntry
< 256; TableEntry
++) {
113 Value
= ReverseBits ((UINT32
) TableEntry
);
114 for (Index
= 0; Index
< 8; Index
++) {
115 if (Value
& 0x80000000) {
116 Value
= (Value
<< 1) ^ 0x04c11db7;
122 mCrcTable
[TableEntry
] = ReverseBits (Value
);