VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Ppi/UsbController.h@ 95057

最後變更 在這個檔案從95057是 80721,由 vboxsync 提交於 5 年 前

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

  • 屬性 svn:eol-style 設為 native
檔案大小: 2.7 KB
 
1/** @file
2 Define APIs to retrieve USB Host Controller Info such as controller type and
3 I/O Port Base Address.
4
5Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
6
7SPDX-License-Identifier: BSD-2-Clause-Patent
8
9**/
10
11#ifndef _PEI_USB_CONTROLLER_PPI_H_
12#define _PEI_USB_CONTROLLER_PPI_H_
13
14///
15/// Global ID for the PEI_USB_CONTROLLER_PPI.
16///
17#define PEI_USB_CONTROLLER_PPI_GUID \
18 { \
19 0x3bc1f6de, 0x693e, 0x4547,{ 0xa3, 0x0, 0x21, 0x82, 0x3c, 0xa4, 0x20, 0xb2} \
20 }
21
22///
23/// Forward declaration for the PEI_USB_CONTROLLER_PPI.
24///
25typedef struct _PEI_USB_CONTROLLER_PPI PEI_USB_CONTROLLER_PPI;
26
27///
28/// This bit is used in the ControllerType return parameter of GetUsbController()
29/// to identify the USB Host Controller type as UHCI
30///
31#define PEI_UHCI_CONTROLLER 0x01
32
33///
34/// This bit is used in the ControllerType return parameter of GetUsbController()
35/// to identify the USB Host Controller type as OHCI
36///
37#define PEI_OHCI_CONTROLLER 0x02
38
39///
40/// This bit is used in the ControllerType return parameter of GetUsbController()
41/// to identify the USB Host Controller type as EHCI
42///
43#define PEI_EHCI_CONTROLLER 0x03
44
45///
46/// This bit is used in the ControllerType return parameter of GetUsbController()
47/// to identify the USB Host Controller type as XHCI
48///
49#define PEI_XHCI_CONTROLLER 0x04
50
51/**
52 Retrieve USB Host Controller Info such as controller type and I/O Base Address.
53
54 @param[in] PeiServices The pointer to the PEI Services Table.
55 @param[in] This The pointer to this instance of the PEI_USB_CONTROLLER_PPI.
56 @param[in] ControllerId The ID of the USB controller.
57 @param[out] ControllerType On output, returns the type of the USB controller.
58 @param[out] BaseAddress On output, returns the base address of UHCI's I/O ports
59 if UHCI is enabled or the base address of EHCI's MMIO
60 if EHCI is enabled.
61
62 @retval EFI_SUCCESS USB controller attributes were returned successfully.
63 @retval EFI_INVALID_PARAMETER ControllerId is greater than the maximum number
64 of USB controller supported by this platform.
65
66**/
67typedef
68EFI_STATUS
69(EFIAPI *PEI_GET_USB_CONTROLLER)(
70 IN EFI_PEI_SERVICES **PeiServices,
71 IN PEI_USB_CONTROLLER_PPI *This,
72 IN UINT8 UsbControllerId,
73 OUT UINTN *ControllerType,
74 OUT UINTN *BaseAddress
75 );
76
77///
78/// This PPI contains a single service to retrieve the USB Host Controller type
79/// and the base address of the I/O ports used to access the USB Host Controller.
80///
81struct _PEI_USB_CONTROLLER_PPI {
82 PEI_GET_USB_CONTROLLER GetUsbController;
83};
84
85extern EFI_GUID gPeiUsbControllerPpiGuid;
86
87#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette