]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Usb/UsbBotPei/PeiUsbLib.h
MdeModulePkg/UsbBusDxe: Add missing "return NULL" in UsbCreateDesc()
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbBotPei / PeiUsbLib.h
CommitLineData
4b1bf81c 1/** @file\r
2Common Libarary for PEI USB.\r
3\r
d1102dba
LG
4Copyright (c) 1999 - 2018, Intel Corporation. All rights reserved.<BR>\r
5\r
4b1bf81c 6This program and the accompanying materials\r
7are licensed and made available under the terms and conditions\r
8of the BSD License which accompanies this distribution. The\r
9full text of the license may be found at\r
10http://opensource.org/licenses/bsd-license.php\r
11\r
12THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15**/\r
16\r
17#ifndef _PEI_USB_LIB_H_\r
18#define _PEI_USB_LIB_H_\r
19//\r
20// Standard device request and request type\r
21// By [Spec-USB20/Chapter-9.4]\r
22//\r
23#define USB_DEV_GET_STATUS 0x00\r
24#define USB_DEV_GET_STATUS_REQ_TYPE_D 0x80 // Receiver : Device\r
25#define USB_DEV_GET_STATUS_REQ_TYPE_I 0x81 // Receiver : Interface\r
26#define USB_DEV_GET_STATUS_REQ_TYPE_E 0x82 // Receiver : Endpoint\r
27\r
28#define USB_DEV_CLEAR_FEATURE 0x01\r
29#define USB_DEV_CLEAR_FEATURE_REQ_TYPE_D 0x00 // Receiver : Device\r
30#define USB_DEV_CLEAR_FEATURE_REQ_TYPE_I 0x01 // Receiver : Interface\r
31#define USB_DEV_CLEAR_FEATURE_REQ_TYPE_E 0x02 // Receiver : Endpoint\r
32\r
33#define USB_DEV_SET_FEATURE 0x03\r
34#define USB_DEV_SET_FEATURE_REQ_TYPE_D 0x00 // Receiver : Device\r
35#define USB_DEV_SET_FEATURE_REQ_TYPE_I 0x01 // Receiver : Interface\r
36#define USB_DEV_SET_FEATURE_REQ_TYPE_E 0x02 // Receiver : Endpoint\r
d1102dba 37\r
4b1bf81c 38#define USB_DEV_SET_ADDRESS 0x05\r
39#define USB_DEV_SET_ADDRESS_REQ_TYPE 0x00\r
40\r
41#define USB_DEV_GET_DESCRIPTOR 0x06\r
42#define USB_DEV_GET_DESCRIPTOR_REQ_TYPE 0x80\r
43\r
44#define USB_DEV_SET_DESCRIPTOR 0x07\r
45#define USB_DEV_SET_DESCRIPTOR_REQ_TYPE 0x00\r
46\r
47#define USB_DEV_GET_CONFIGURATION 0x08\r
48#define USB_DEV_GET_CONFIGURATION_REQ_TYPE 0x80\r
49\r
50#define USB_DEV_SET_CONFIGURATION 0x09\r
51#define USB_DEV_SET_CONFIGURATION_REQ_TYPE 0x00\r
52\r
53#define USB_DEV_GET_INTERFACE 0x0A\r
54#define USB_DEV_GET_INTERFACE_REQ_TYPE 0x81\r
55\r
56#define USB_DEV_SET_INTERFACE 0x0B\r
57#define USB_DEV_SET_INTERFACE_REQ_TYPE 0x01\r
58\r
59#define USB_DEV_SYNCH_FRAME 0x0C\r
60#define USB_DEV_SYNCH_FRAME_REQ_TYPE 0x82\r
61\r
62//\r
63// USB Descriptor types\r
64//\r
65#define USB_DT_DEVICE 0x01\r
66#define USB_DT_CONFIG 0x02\r
67#define USB_DT_STRING 0x03\r
68#define USB_DT_INTERFACE 0x04\r
69#define USB_DT_ENDPOINT 0x05\r
70#define USB_DT_HUB 0x29\r
71#define USB_DT_HID 0x21\r
72\r
73//\r
74// USB request type\r
75//\r
76#define USB_TYPE_STANDARD (0x00 << 5)\r
77#define USB_TYPE_CLASS (0x01 << 5)\r
78#define USB_TYPE_VENDOR (0x02 << 5)\r
79#define USB_TYPE_RESERVED (0x03 << 5)\r
80\r
81//\r
82// USB request targer device\r
83//\r
84#define USB_RECIP_DEVICE 0x00\r
85#define USB_RECIP_INTERFACE 0x01\r
86#define USB_RECIP_ENDPOINT 0x02\r
87#define USB_RECIP_OTHER 0x03\r
88\r
89typedef enum {\r
90 EfiUsbEndpointHalt,\r
91 EfiUsbDeviceRemoteWakeup\r
92} EFI_USB_STANDARD_FEATURE_SELECTOR;\r
93\r
94//\r
95// Usb Data recipient type\r
96//\r
97typedef enum {\r
98 EfiUsbDevice,\r
99 EfiUsbInterface,\r
100 EfiUsbEndpoint\r
101} EFI_USB_RECIPIENT;\r
102\r
4b1bf81c 103\r
104/**\r
105 Clear a given usb feature.\r
106\r
107 @param PeiServices General-purpose services that are available to every PEIM.\r
108 @param UsbIoPpi Indicates the PEI_USB_IO_PPI instance.\r
109 @param Recipient The recipient of ClearFeature Request, should be one of Device/Interface/Endpoint.\r
110 @param Value Request Value.\r
111 @param Target Request Index.\r
112\r
113 @retval EFI_SUCCESS Usb feature is cleared successfully.\r
114 @retval EFI_DEVICE_ERROR Cannot clear the usb feature due to a hardware error.\r
115 @retval Others Other failure occurs.\r
116\r
117**/\r
118EFI_STATUS\r
119PeiUsbClearDeviceFeature (\r
120 IN EFI_PEI_SERVICES **PeiServices,\r
121 IN PEI_USB_IO_PPI *UsbIoPpi,\r
122 IN EFI_USB_RECIPIENT Recipient,\r
123 IN UINT16 Value,\r
124 IN UINT16 Target\r
125 );\r
126\r
4b1bf81c 127\r
128/**\r
129 Clear Endpoint Halt.\r
130\r
131 @param PeiServices General-purpose services that are available to every PEIM.\r
132 @param UsbIoPpi Indicates the PEI_USB_IO_PPI instance.\r
133 @param EndpointAddress The endpoint address.\r
134\r
135 @retval EFI_SUCCESS Endpoint halt is cleared successfully.\r
136 @retval EFI_DEVICE_ERROR Cannot clear the endpoint halt status due to a hardware error.\r
137 @retval Others Other failure occurs.\r
138\r
139**/\r
140EFI_STATUS\r
141PeiUsbClearEndpointHalt (\r
142 IN EFI_PEI_SERVICES **PeiServices,\r
143 IN PEI_USB_IO_PPI *UsbIoPpi,\r
144 IN UINT8 EndpointAddress\r
145 );\r
146\r
4b1bf81c 147\r
4b1bf81c 148\r
4b1bf81c 149\r
4b1bf81c 150#endif\r