878ddf1f |
1 | /*++\r |
2 | \r |
3 | Copyright (c) 2006, Intel Corporation \r |
4 | All rights reserved. This program and the accompanying materials \r |
5 | are licensed and made available under the terms and conditions of the BSD License \r |
6 | which accompanies this distribution. The full text of the license may be found at \r |
7 | http://opensource.org/licenses/bsd-license.php \r |
8 | \r |
9 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r |
10 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r |
11 | \r |
12 | Module Name:\r |
13 | \r |
14 | FlashMap.h\r |
15 | \r |
16 | Abstract:\r |
17 | \r |
18 | FlashMap PPI defined in Tiano\r |
19 | \r |
20 | This code abstracts FlashMap access\r |
21 | \r |
22 | --*/\r |
23 | \r |
24 | #ifndef _PEI_FLASH_MAP_PPI_H_\r |
25 | #define _PEI_FLASH_MAP_PPI_H_\r |
26 | \r |
27 | #define PEI_FLASH_MAP_PPI_GUID \\r |
28 | { 0xf34c2fa0, 0xde88, 0x4270, {0x84, 0x14, 0x96, 0x12, 0x22, 0xf4, 0x52, 0x1c } }\r |
29 | \r |
30 | typedef struct _PEI_FLASH_MAP_PPI PEI_FLASH_MAP_PPI;\r |
31 | //\r |
32 | // Functions\r |
33 | //\r |
34 | typedef\r |
35 | EFI_STATUS\r |
36 | (EFIAPI *PEI_GET_FLASH_AREA_INFO) (\r |
37 | IN EFI_PEI_SERVICES **PeiServices,\r |
38 | IN PEI_FLASH_MAP_PPI *This,\r |
39 | IN EFI_FLASH_AREA_TYPE AreaType,\r |
40 | IN EFI_GUID *AreaTypeGuid,\r |
41 | OUT UINT32 *NumEntries,\r |
42 | OUT EFI_FLASH_SUBAREA_ENTRY **Entries\r |
43 | );\r |
44 | \r |
45 | \r |
46 | struct _PEI_FLASH_MAP_PPI {\r |
47 | PEI_GET_FLASH_AREA_INFO GetAreaInfo;\r |
48 | };\r |
49 | \r |
50 | extern EFI_GUID gPeiFlashMapPpiGuid;\r |
51 | \r |
52 | #endif \r |