]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbBusPei/HubPeim.h
d21057c34995d8a7553dc4c5702e602d8d06adc4
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbBusPei / HubPeim.h
1 /** @file
2 Constants definitions for Usb Hub Peim
3
4 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
5
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions
8 of the BSD License which accompanies this distribution. The
9 full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 **/
16
17 #ifndef _PEI_HUB_PEIM_H_
18 #define _PEI_HUB_PEIM_H_
19
20
21 //
22 // Hub feature numbers
23 //
24 #define C_HUB_LOCAL_POWER 0
25 #define C_HUB_OVER_CURRENT 1
26
27 //
28 // Hub class code & sub class code
29 //
30 #define CLASS_CODE_HUB 0x09
31 #define SUB_CLASS_CODE_HUB 0
32
33 //
34 // Hub Status & Hub Change bit masks
35 //
36 #define HUB_STATUS_LOCAL_POWER 0x0001
37 #define HUB_STATUS_OVERCURRENT 0x0002
38
39 #define HUB_CHANGE_LOCAL_POWER 0x0001
40 #define HUB_CHANGE_OVERCURRENT 0x0002
41
42 //
43 // Hub Characteristics
44 //
45 #define HUB_CHAR_LPSM 0x0003
46 #define HUB_CHAR_COMPOUND 0x0004
47 #define HUB_CHAR_OCPM 0x0018
48
49 //
50 // Standard hub request and request type
51 // By [Spec-USB20/Chapter-11.24]
52 //
53 #define USB_HUB_CLEAR_FEATURE 0x01
54 #define USB_HUB_CLEAR_FEATURE_REQ_TYPE 0x20
55
56 #define USB_HUB_CLEAR_FEATURE_PORT 0x01
57 #define USB_HUB_CLEAR_FEATURE_PORT_REQ_TYPE 0x23
58
59 #define USB_HUB_GET_BUS_STATE 0x02
60 #define USB_HUB_GET_BUS_STATE_REQ_TYPE 0xA3
61
62 #define USB_HUB_GET_DESCRIPTOR 0x06
63 #define USB_HUB_GET_DESCRIPTOR_REQ_TYPE 0xA0
64
65 #define USB_HUB_GET_HUB_STATUS 0x00
66 #define USB_HUB_GET_HUB_STATUS_REQ_TYPE 0xA0
67
68 #define USB_HUB_GET_PORT_STATUS 0x00
69 #define USB_HUB_GET_PORT_STATUS_REQ_TYPE 0xA3
70
71 #define USB_HUB_SET_DESCRIPTOR 0x07
72 #define USB_HUB_SET_DESCRIPTOR_REQ_TYPE 0x20
73
74 #define USB_HUB_SET_HUB_FEATURE 0x03
75 #define USB_HUB_SET_HUB_FEATURE_REQ_TYPE 0x20
76
77 #define USB_HUB_SET_PORT_FEATURE 0x03
78 #define USB_HUB_SET_PORT_FEATURE_REQ_TYPE 0x23
79
80 #define USB_RT_HUB (USB_TYPE_CLASS | USB_RECIP_DEVICE)
81 #define USB_RT_PORT (USB_TYPE_CLASS | USB_RECIP_OTHER)
82
83 #define USB_HUB_REQ_SET_DEPTH 12
84
85 #define MAXBYTES 8
86 #pragma pack(1)
87 //
88 // Hub descriptor, the last two fields are of variable lenght.
89 //
90 typedef struct {
91 UINT8 Length;
92 UINT8 DescriptorType;
93 UINT8 NbrPorts;
94 UINT8 HubCharacteristics[2];
95 UINT8 PwrOn2PwrGood;
96 UINT8 HubContrCurrent;
97 UINT8 Filler[MAXBYTES];
98 } EFI_USB_HUB_DESCRIPTOR;
99
100 typedef struct {
101 UINT16 HubStatus;
102 UINT16 HubChangeStatus;
103 } EFI_USB_HUB_STATUS;
104
105 #pragma pack()
106 /**
107 Get a given hub port status.
108
109 @param PeiServices General-purpose services that are available to every PEIM.
110 @param UsbIoPpi Indicates the PEI_USB_IO_PPI instance.
111 @param Port Usb hub port number (starting from 1).
112 @param PortStatus Current Hub port status and change status.
113
114 @retval EFI_SUCCESS Port status is obtained successfully.
115 @retval EFI_DEVICE_ERROR Cannot get the port status due to a hardware error.
116 @retval Others Other failure occurs.
117
118 **/
119 EFI_STATUS
120 PeiHubGetPortStatus (
121 IN EFI_PEI_SERVICES **PeiServices,
122 IN PEI_USB_IO_PPI *UsbIoPpi,
123 IN UINT8 Port,
124 OUT UINT32 *PortStatus
125 );
126
127 /**
128 Set specified feature to a given hub port.
129
130 @param PeiServices General-purpose services that are available to every PEIM.
131 @param UsbIoPpi Indicates the PEI_USB_IO_PPI instance.
132 @param Port Usb hub port number (starting from 1).
133 @param Value New feature value.
134
135 @retval EFI_SUCCESS Port feature is set successfully.
136 @retval EFI_DEVICE_ERROR Cannot set the port feature due to a hardware error.
137 @retval Others Other failure occurs.
138
139 **/
140 EFI_STATUS
141 PeiHubSetPortFeature (
142 IN EFI_PEI_SERVICES **PeiServices,
143 IN PEI_USB_IO_PPI *UsbIoPpi,
144 IN UINT8 Port,
145 IN UINT8 Value
146 );
147
148
149 /**
150 Get a given hub status.
151
152 @param PeiServices General-purpose services that are available to every PEIM.
153 @param UsbIoPpi Indicates the PEI_USB_IO_PPI instance.
154 @param HubStatus Current Hub status and change status.
155
156 @retval EFI_SUCCESS Hub status is obtained successfully.
157 @retval EFI_DEVICE_ERROR Cannot get the hub status due to a hardware error.
158 @retval Others Other failure occurs.
159
160 **/
161 EFI_STATUS
162 PeiHubGetHubStatus (
163 IN EFI_PEI_SERVICES **PeiServices,
164 IN PEI_USB_IO_PPI *UsbIoPpi,
165 OUT UINT32 *HubStatus
166 );
167
168 /**
169 Clear specified feature on a given hub port.
170
171 @param PeiServices General-purpose services that are available to every PEIM.
172 @param UsbIoPpi Indicates the PEI_USB_IO_PPI instance.
173 @param Port Usb hub port number (starting from 1).
174 @param Value Feature value that will be cleared from the hub port.
175
176 @retval EFI_SUCCESS Port feature is cleared successfully.
177 @retval EFI_DEVICE_ERROR Cannot clear the port feature due to a hardware error.
178 @retval Others Other failure occurs.
179
180 **/
181 EFI_STATUS
182 PeiHubClearPortFeature (
183 IN EFI_PEI_SERVICES **PeiServices,
184 IN PEI_USB_IO_PPI *UsbIoPpi,
185 IN UINT8 Port,
186 IN UINT8 Value
187 );
188
189 /**
190 Clear specified feature on a given hub.
191
192 @param PeiServices General-purpose services that are available to every PEIM.
193 @param UsbIoPpi Indicates the PEI_USB_IO_PPI instance.
194 @param Value Feature value that will be cleared from the hub port.
195
196 @retval EFI_SUCCESS Hub feature is cleared successfully.
197 @retval EFI_DEVICE_ERROR Cannot clear the hub feature due to a hardware error.
198 @retval Others Other failure occurs.
199
200 **/
201 EFI_STATUS
202 PeiHubClearHubFeature (
203 IN EFI_PEI_SERVICES **PeiServices,
204 IN PEI_USB_IO_PPI *UsbIoPpi,
205 IN UINT8 Value
206 );
207
208 /**
209 Get a given hub descriptor.
210
211 @param PeiServices General-purpose services that are available to every PEIM.
212 @param PeiUsbDevice Indicates the hub controller device.
213 @param UsbIoPpi Indicates the PEI_USB_IO_PPI instance.
214 @param DescriptorSize The length of Hub Descriptor buffer.
215 @param HubDescriptor Caller allocated buffer to store the hub descriptor if
216 successfully returned.
217
218 @retval EFI_SUCCESS Hub descriptor is obtained successfully.
219 @retval EFI_DEVICE_ERROR Cannot get the hub descriptor due to a hardware error.
220 @retval Others Other failure occurs.
221
222 **/
223 EFI_STATUS
224 PeiGetHubDescriptor (
225 IN EFI_PEI_SERVICES **PeiServices,
226 IN PEI_USB_DEVICE *PeiUsbDevice,
227 IN PEI_USB_IO_PPI *UsbIoPpi,
228 IN UINTN DescriptorSize,
229 OUT EFI_USB_HUB_DESCRIPTOR *HubDescriptor
230 );
231
232 /**
233 Configure a given hub.
234
235 @param PeiServices General-purpose services that are available to every PEIM.
236 @param PeiUsbDevice Indicating the hub controller device that will be configured
237
238 @retval EFI_SUCCESS Hub configuration is done successfully.
239 @retval EFI_DEVICE_ERROR Cannot configure the hub due to a hardware error.
240
241 **/
242 EFI_STATUS
243 PeiDoHubConfig (
244 IN EFI_PEI_SERVICES **PeiServices,
245 IN PEI_USB_DEVICE *PeiUsbDevice
246 );
247
248 /**
249 Send reset signal over the given root hub port.
250
251 @param PeiServices General-purpose services that are available to every PEIM.
252 @param UsbIoPpi Indicates the PEI_USB_IO_PPI instance.
253 @param PortNum Usb hub port number (starting from 1).
254
255 **/
256 VOID
257 PeiResetHubPort (
258 IN EFI_PEI_SERVICES **PeiServices,
259 IN PEI_USB_IO_PPI *UsbIoPpi,
260 IN UINT8 PortNum
261 );
262
263 #endif
264
265