• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /** @file
2 *
3 *  Copyright (c) 2016, Hisilicon Limited. All rights reserved.
4 *  Copyright (c) 2016, Linaro Limited. All rights reserved.
5 *
6 *  This program and the accompanying materials
7 *  are licensed and made available under the terms and conditions of the BSD License
8 *  which accompanies this distribution.  The full text of the license may be found at
9 *  http://opensource.org/licenses/bsd-license.php
10 *
11 *  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 *  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 *
14 **/
15 
16 #ifndef _PLATFORM_SAS_PROTOCOL_H_
17 #define _PLATFORM_SAS_PROTOCOL_H_
18 
19 #define PLATFORM_SAS_PROTOCOL_GUID \
20     { \
21         0x40e9829f, 0x3a2c, 0x479a, 0x9a, 0x93, 0x45, 0x7d, 0x13, 0x50, 0x96, 0x5d \
22     }
23 
24 typedef struct _PLATFORM_SAS_PROTOCOL PLATFORM_SAS_PROTOCOL;
25 
26 typedef
27 VOID
28 (EFIAPI * SAS_INIT) (
29     IN PLATFORM_SAS_PROTOCOL   *This
30 );
31 
32 struct _PLATFORM_SAS_PROTOCOL {
33     IN UINT64        BaseAddr;
34     SAS_INIT         Init;
35 };
36 
37 #endif
38