summaryrefslogtreecommitdiff
path: root/ReferenceCode/ME/Protocol/MebxProtocol/MebxProtocol.h
blob: 3ad33e84f036f613ed84e637f9d6e2ed074003dd (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
/** @file
  EFI MEBx Protocol

@copyright
  Copyright (c) 1999 - 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 a 'Sample Driver' and is licensed as such
  under the terms of your license agreement with Intel or your
  vendor.  This file may be modified by the user, subject to
  the additional terms of the license agreement
**/
#ifndef _MEBX_PROTOCOL_H
#define _MEBX_PROTOCOL_H

#define MEBX_CALLBACK_INFO_SIGNATURE    EFI_SIGNATURE_32 ('m', 'e', 'b', 'x')

#define MEBX_CALLBACK_INFO_FROM_THIS(a) CR (a, MEBX_CALLBACK_INFO, DriverCallback, MEBX_CALLBACK_INFO_SIGNATURE)

#ifndef INTEL_MEBX_PROTOCOL_GUID
#define INTEL_MEBX_PROTOCOL_GUID \
  { \
    0x01ab1829, 0xcecd, 0x4cfa, 0xa1, 0x8c, 0xea, 0x75, 0xd6, 0x6f, 0x3e, 0x74 \
  }
#endif

typedef
EFI_STATUS
(EFIAPI *EFI_MEBX_API_ENTRY_POINT) (
  IN UINT32  BiosParams,
  OUT UINT32 *MebxReturnValue
  );

typedef struct _MEBX_VER {
  UINT16  Major;
  UINT16  Minor;
  UINT16  Hotfix;
  UINT16  Build;
} MEBX_VER;

typedef enum {
  MEBX_GRAPHICS_AUTO    = 0,
  MEBX_GRAPHICS_640X480,
  MEBX_GRAPHICS_800X600,
  MEBX_GRAPHICS_1024X768
} MEBX_GRAPHICS_MODE;

typedef enum {
  MEBX_TEXT_AUTO        = 0,
  MEBX_TEXT_80X25,
  MEBX_TEXT_100X31
} MEBX_TEXT_MODE;

typedef struct _EFI_MEBX_PROTOCOL {
  MEBX_VER                  MebxVersion;
  EFI_MEBX_API_ENTRY_POINT  CoreMebxEntry;
} EFI_MEBX_PROTOCOL;

typedef struct _MEBX_INSTANCE {
  EFI_HANDLE        Handle;
  EFI_MEBX_PROTOCOL MebxProtocol;
} MEBX_INSTANCE;

extern EFI_GUID gEfiMebxProtocolGuid;

#endif