summaryrefslogtreecommitdiff
path: root/Platform/96Boards/Include/Protocol/LsConnector.h
blob: f337cfe0f709c46e06f595fd2142096606fa68eb (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
/** @file

  Copyright (c) 2018, Linaro, Ltd. All rights reserved.<BR>

  This program and the accompanying materials are licensed and made available
  under the terms and conditions of the BSD License which accompanies this
  distribution. The full text of the license may be found at
  http://opensource.org/licenses/bsd-license.php

  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

**/

#ifndef _LS_CONNECTOR_H_
#define _LS_CONNECTOR_H_

#define LS_CONNECTOR_PROTOCOL_GUID \
  { 0xae548d4c, 0x9062, 0x4eed, { 0x83, 0x5f, 0xf5, 0x10, 0xf8, 0xfc, 0x48, 0xaf } }

typedef struct _LS_CONNECTOR_PROTOCOL LS_CONNECTOR_PROTOCOL;

typedef enum {
  MezzanineUnknown,
  MezzanineSecure96,
  MezzanineMax
} MEZZANINE_TYPE;

struct _LS_CONNECTOR_PROTOCOL {
  MEZZANINE_TYPE      MezzanineType;
};

extern EFI_GUID g96BoardsLsConnectorProtocolGuid;

#endif // _LS_CONNECTOR_H_