hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
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
/** @file
 *
 *  Copyright (c) 2015-2016, Linaro. All rights reserved.
 *  Copyright (c) 2015-2016, Hisilicon Limited. All rights reserved.
 *
 *  SPDX-License-Identifier: BSD-2-Clause-Patent
 *
 **/
 
#ifndef __DW_USB_PROTOCOL_H__
#define __DW_USB_PROTOCOL_H__
 
//
// Protocol GUID
//
#define DW_USB_PROTOCOL_GUID { 0x109fa264, 0x7811, 0x4862, { 0xa9, 0x73, 0x4a, 0xb2, 0xef, 0x2e, 0xe2, 0xff }}
 
//
// Protocol interface structure
//
typedef struct _DW_USB_PROTOCOL  DW_USB_PROTOCOL;
 
#define USB_HOST_MODE    0
#define USB_DEVICE_MODE  1
#define USB_CABLE_NOT_ATTACHED  2
 
typedef
EFI_STATUS
(EFIAPI *DW_USB_GET_SERIAL_NO) (
  OUT CHAR16                           *SerialNo,
  OUT UINT8                            *Length
  );
 
typedef
EFI_STATUS
(EFIAPI *DW_USB_PHY_INIT) (
  IN UINT8                             Mode
  );
 
struct _DW_USB_PROTOCOL {
  DW_USB_GET_SERIAL_NO                 Get;
  DW_USB_PHY_INIT                      PhyInit;
};
 
extern EFI_GUID gDwUsbProtocolGuid;
 
#endif /* __DW_USB_PROTOCOL_H__ */