summaryrefslogtreecommitdiff
path: root/ReferenceCode/RapidStart/Ppi/PeiGfxPpi/PeiGfxPpi.h
blob: 6636e8e1fbe7f00abfd1b6e37539c6c6d87e827d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/** @file
  Header file for RapidStart Gfx PPI

@copyright
  Copyright (c) 2012 Intel Corporation. All rights reserved
  This software and associated documentation (if any) is furnished
  under a license and may only be used or copied in accordance
  with the terms of the license. Except as permitted by such
  license, no part of this software or documentation may be
  reproduced, stored in a retrieval system, or transmitted in any
  form or by any means without the express written consent of
  Intel Corporation.

  This file contains an 'Intel Peripheral Driver' and uniquely
  identified as "Intel Mobile Silicon Support Module" and is
  licensed for Intel Mobile CPUs and chipsets under the terms of your
  license agreement with Intel or your vendor.  This file may
  be modified by the user, subject to additional terms of the
  license agreement
**/
#ifndef _PEI_GFX_PPI_H_
#define _PEI_GFX_PPI_H_

#define PEI_GFX_PPI_GUID \
  { \
    0xc4d6994a, 0xaa3d, 0x47c0, 0xae, 0xa, 0xb0, 0xbf, 0xad, 0xba, 0xa6, 0x13 \
  }

extern EFI_GUID gPeiGfxPpiGuid;

#define DSS_RANGE                0x01 //< Dss Range is 1
#define GFX_RESTORE_RANGE        0x02 ///< Gfx Memory restore Range is 2
#define FB_RESTORE_RANGE         250  ///< The Max FB Range is 16
#define MAX_GFX_MEMORY_RANGES   (DSS_RANGE + GFX_RESTORE_RANGE + FB_RESTORE_RANGE)

#pragma pack(1)

typedef struct {
   UINT64         BaseAddress;
   UINT64         Size;
} GFX_MEM_RANGE_ENTRY;

typedef struct {
   UINT16                    NumOfEntry;
   UINT8                     Reserved[2];
   GFX_MEM_RANGE_ENTRY       MemRangeEntry[MAX_GFX_MEMORY_RANGES];
} GFX_RESTORE_MEM_TABLE;

#pragma pack()

typedef
EFI_STATUS
(EFIAPI * PEI_GFX_PPI_GET_DSS_ADDRESS_RANGE) (
  IN CONST EFI_PEI_SERVICES        **PeiServices,
  OUT GFX_RESTORE_MEM_TABLE        **DssAddressRange
);

typedef
EFI_STATUS
(EFIAPI * PEI_GFX_PPI_GET_RESTORE_MEM_TABLE) (
  IN CONST EFI_PEI_SERVICES        **PeiServices,
  OUT GFX_RESTORE_MEM_TABLE        **GfxRestoreMemTable
);

typedef
EFI_STATUS
(EFIAPI * PEI_GFX_PPI_GET_RESTORE_FB_RANGE) (
  IN CONST EFI_PEI_SERVICES        **PeiServices,
  OUT GFX_RESTORE_MEM_TABLE        **FbRestoreMemTable
);

typedef
EFI_STATUS
(EFIAPI * PEI_GFX_PPI_RESTORE_DISPLAY) (
    IN CONST EFI_PEI_SERVICES         **PeiServices
);

#pragma pack(1)

typedef struct _PEI_GFX_PPI {
  PEI_GFX_PPI_RESTORE_DISPLAY          RestoreDisplay;
  PEI_GFX_PPI_GET_DSS_ADDRESS_RANGE    GetDssAddressRange;
  PEI_GFX_PPI_GET_RESTORE_MEM_TABLE    GetRestoreMemTable;
  PEI_GFX_PPI_GET_RESTORE_FB_RANGE     GetRestoreFbRange;
} PEI_GFX_PPI;

#pragma pack()

#endif