Searched defs:Ep (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciPei/
H A DEhciSched.c34 USB_ENDPOINT Ep; local
55 Ep.DevAddr = 0;
56 Ep.EpAddr = 1;
57 Ep.Direction = EfiUsbDataIn;
58 Ep.DevSpeed = EFI_USB_SPEED_HIGH;
59 Ep.MaxPacket = 64;
60 Ep.HubAddr = 0;
61 Ep.HubPort = 0;
62 Ep.Toggle = 0;
63 Ep
[all...]
H A DEhciUrb.c124 @param Ep The queue head's related endpoint.
130 IN USB_ENDPOINT *Ep,
141 if (Ep->DevSpeed == EFI_USB_SPEED_HIGH) {
165 @param Ep The endpoint to create queue head for.
173 IN USB_ENDPOINT *Ep
187 Qh->Interval = Ep->PollRate;
193 QhHw->DeviceAddr = Ep->DevAddr;
195 QhHw->EpNum = Ep->EpAddr;
196 QhHw->EpSpeed = Ep->DevSpeed;
199 QhHw->MaxPacketLen = (UINT32) Ep
129 EhcInitIntQh( IN USB_ENDPOINT *Ep, IN QH_HW *QhHw ) argument
347 USB_ENDPOINT *Ep; local
528 USB_ENDPOINT *Ep; local
[all...]
H A DEhciUrb.h213 USB_ENDPOINT Ep; member in struct:_PEI_URB
266 @param Ep The endpoint to create queue head for.
274 IN USB_ENDPOINT *Ep
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciDxe/
H A DEhciSched.c33 USB_ENDPOINT Ep; local
55 Ep.DevAddr = 0;
56 Ep.EpAddr = 1;
57 Ep.Direction = EfiUsbDataIn;
58 Ep.DevSpeed = EFI_USB_SPEED_HIGH;
59 Ep.MaxPacket = 64;
60 Ep.HubAddr = 0;
61 Ep.HubPort = 0;
62 Ep.Toggle = 0;
63 Ep
[all...]
H A DEhciUrb.c128 @param Ep The queue head's related endpoint.
134 IN USB_ENDPOINT *Ep,
145 if (Ep->DevSpeed == EFI_USB_SPEED_HIGH) {
171 @param Ep The endpoint to create queue head for.
179 IN USB_ENDPOINT *Ep
193 Qh->Interval = Ep->PollRate;
199 QhHw->DeviceAddr = Ep->DevAddr;
201 QhHw->EpNum = Ep->EpAddr;
202 QhHw->EpSpeed = Ep->DevSpeed;
205 QhHw->MaxPacketLen = (UINT32) Ep
133 EhcInitIntQh( IN USB_ENDPOINT *Ep, IN QH_HW *QhHw ) argument
371 USB_ENDPOINT *Ep; local
559 USB_ENDPOINT *Ep; local
[all...]
H A DEhciUrb.h215 USB_ENDPOINT Ep; member in struct:_URB
272 @param Ep The endpoint to create queue head for.
280 IN USB_ENDPOINT *Ep
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbBusDxe/
H A DUsbDesc.c30 USB_ENDPOINT_DESC *Ep; local
38 Ep = Setting->Endpoints[Index];
40 if (Ep != NULL) {
41 FreePool (Ep);
231 USB_ENDPOINT_DESC *Ep; local
269 Ep = UsbCreateDesc (DescBuf + Offset, Len - Offset, USB_DESC_TYPE_ENDPOINT, &Used);
271 if (Ep == NULL) {
276 Setting->Endpoints[Index] = Ep;
/vbox/src/VBox/Devices/EFI/Firmware/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/
H A DDebugCommunicationLibUsb.c242 @param Ep The endpoint for usb transaction.
258 IN UINT8 Ep,
277 DebugPortRegister->UsbEndPoint = (UINT8)(Ep & 0xF);
327 @param Ep The endpoint for usb transaction.
343 IN UINT8 Ep,
360 DebugPortRegister->UsbEndPoint = (UINT8)(Ep & 0xF);
408 @param Ep The endpoint for usb transaction.
423 IN UINT8 Ep,
435 Status = UsbDebugPortOut(DebugPortRegister, (UINT8 *)SetupPacket, (UINT8)sizeof(USB_DEVICE_REQUEST), SETUP_PID, Addr, Ep, 0);
448 Status = UsbDebugPortIn(DebugPortRegister, Data, DataLength, INPUT_PID, Addr, Ep,
252 UsbDebugPortIn( IN USB_DEBUG_PORT_REGISTER *DebugPortRegister, IN OUT UINT8 *Buffer, OUT UINT8 *Length, IN UINT8 Token, IN UINT8 Addr, IN UINT8 Ep, IN UINT8 DataToggle ) argument
337 UsbDebugPortOut( IN USB_DEBUG_PORT_REGISTER *DebugPortRegister, IN UINT8 *Buffer, IN UINT8 Length, IN UINT8 Token, IN UINT8 Addr, IN UINT8 Ep, IN UINT8 DataToggle ) argument
419 UsbDebugPortControlTransfer( IN USB_DEBUG_PORT_REGISTER *DebugPortRegister, IN USB_DEVICE_REQUEST *SetupPacket, IN UINT8 Addr, IN UINT8 Ep, OUT UINT8 *Data, IN OUT UINT8 *DataLength ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/XhciDxe/
H A DXhciSched.c151 USB_ENDPOINT *Ep; local
163 Ep = &Urb->Ep;
164 Ep->BusAddr = BusAddr;
165 Ep->EpAddr = (UINT8)(EpAddr & 0x0F);
166 Ep->Direction = ((EpAddr & 0x80) != 0) ? EfiUsbDataIn : EfiUsbDataOut;
167 Ep->DevSpeed = DevSpeed;
168 Ep->MaxPacket = MaxPacket;
169 Ep->Type = Type;
208 SlotId = XhcBusDevAddrToSlotId (Xhc, Urb->Ep
[all...]
H A DXhciSched.h171 USB_ENDPOINT Ep; member in struct:_URB

Completed in 50 milliseconds