2007-11-29 07:17:53 +01:00
|
|
|
/** @file
|
2008-12-31 08:32:33 +01:00
|
|
|
USB Mouse Driver that manages USB mouse and produces Absolute Pointer Protocol.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2010-04-24 11:49:11 +02:00
|
|
|
Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-11-29 07:17:53 +01:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "UsbMouseAbsolutePointer.h"
|
|
|
|
|
|
|
|
EFI_DRIVER_BINDING_PROTOCOL gUsbMouseAbsolutePointerDriverBinding = {
|
|
|
|
USBMouseAbsolutePointerDriverBindingSupported,
|
|
|
|
USBMouseAbsolutePointerDriverBindingStart,
|
|
|
|
USBMouseAbsolutePointerDriverBindingStop,
|
|
|
|
0x1,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
/**
|
|
|
|
Entrypoint of USB Mouse Absolute Pointer Driver.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
This function is the entrypoint of USB Mouse Driver. It installs Driver Binding
|
|
|
|
Protocols together with Component Name Protocols.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param ImageHandle The firmware allocated handle for the EFI image.
|
|
|
|
@param SystemTable A pointer to the EFI System Table.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@retval EFI_SUCCESS The entry point is executed successfully.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
**/
|
2007-11-29 07:17:53 +01:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
USBMouseAbsolutePointerDriverBindingEntryPoint (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
2008-12-31 08:32:33 +01:00
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
Status = EfiLibInstallDriverBindingComponentName2 (
|
|
|
|
ImageHandle,
|
|
|
|
SystemTable,
|
|
|
|
&gUsbMouseAbsolutePointerDriverBinding,
|
|
|
|
ImageHandle,
|
|
|
|
&gUsbMouseAbsolutePointerComponentName,
|
|
|
|
&gUsbMouseAbsolutePointerComponentName2
|
|
|
|
);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
return EFI_SUCCESS;
|
2007-11-29 07:17:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Check whether USB Mouse Absolute Pointer Driver supports this device.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param This The driver binding protocol.
|
|
|
|
@param Controller The controller handle to check.
|
|
|
|
@param RemainingDevicePath The remaining device path.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@retval EFI_SUCCESS The driver supports this controller.
|
|
|
|
@retval other This device isn't supported.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
USBMouseAbsolutePointerDriverBindingSupported (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
2008-12-31 08:32:33 +01:00
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
(VOID **) &UsbIo,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_DRIVER
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
2007-11-29 07:17:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// Use the USB I/O Protocol interface to check whether Controller is
|
|
|
|
// a mouse device that can be managed by this driver.
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
|
|
|
Status = EFI_SUCCESS;
|
2008-12-31 08:32:33 +01:00
|
|
|
if (!IsUsbMouse (UsbIo)) {
|
2007-11-29 07:17:53 +01:00
|
|
|
Status = EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller
|
|
|
|
);
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Starts the mouse device with this driver.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
This function consumes USB I/O Portocol, intializes USB mouse device,
|
|
|
|
installs Absolute Pointer Protocol, and submits Asynchronous Interrupt
|
|
|
|
Transfer to manage the USB mouse device.
|
|
|
|
|
|
|
|
@param This The driver binding instance.
|
|
|
|
@param Controller Handle of device to bind driver to.
|
|
|
|
@param RemainingDevicePath Optional parameter use to pick a specific child
|
|
|
|
device to start.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
@retval EFI_SUCCESS This driver supports this device.
|
|
|
|
@retval EFI_UNSUPPORTED This driver does not support this device.
|
2008-12-31 08:32:33 +01:00
|
|
|
@retval EFI_DEVICE_ERROR This driver cannot be started due to device Error.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Can't allocate memory resources.
|
|
|
|
@retval EFI_ALREADY_STARTED This driver has been started.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
USBMouseAbsolutePointerDriverBindingStart (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
|
|
|
|
)
|
|
|
|
{
|
2008-12-31 08:32:33 +01:00
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
|
|
|
USB_MOUSE_ABSOLUTE_POINTER_DEV *UsbMouseAbsolutePointerDevice;
|
|
|
|
UINT8 EndpointNumber;
|
|
|
|
EFI_USB_ENDPOINT_DESCRIPTOR EndpointDescriptor;
|
|
|
|
UINT8 Index;
|
|
|
|
UINT8 EndpointAddr;
|
|
|
|
UINT8 PollingInterval;
|
|
|
|
UINT8 PacketSize;
|
|
|
|
BOOLEAN Found;
|
2010-05-05 07:21:38 +02:00
|
|
|
EFI_TPL OldTpl;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2010-05-05 07:21:38 +02:00
|
|
|
OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Open USB I/O Protocol
|
|
|
|
//
|
2007-11-29 07:17:53 +01:00
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
(VOID **) &UsbIo,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_DRIVER
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
2010-05-05 07:21:38 +02:00
|
|
|
goto ErrorExit1;
|
2007-11-29 07:17:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
UsbMouseAbsolutePointerDevice = AllocateZeroPool (sizeof (USB_MOUSE_ABSOLUTE_POINTER_DEV));
|
2008-12-31 08:32:33 +01:00
|
|
|
ASSERT (UsbMouseAbsolutePointerDevice != NULL);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->UsbIo = UsbIo;
|
|
|
|
UsbMouseAbsolutePointerDevice->Signature = USB_MOUSE_ABSOLUTE_POINTER_DEV_SIGNATURE;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Get the Device Path Protocol on Controller's handle
|
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
(VOID **) &UsbMouseAbsolutePointerDevice->DevicePath,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Get interface & endpoint descriptor
|
|
|
|
//
|
|
|
|
UsbIo->UsbGetInterfaceDescriptor (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbIo,
|
|
|
|
&UsbMouseAbsolutePointerDevice->InterfaceDescriptor
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
EndpointNumber = UsbMouseAbsolutePointerDevice->InterfaceDescriptor.NumEndpoints;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Traverse endpoints to find interrupt endpoint
|
|
|
|
//
|
|
|
|
Found = FALSE;
|
2007-11-29 07:17:53 +01:00
|
|
|
for (Index = 0; Index < EndpointNumber; Index++) {
|
|
|
|
UsbIo->UsbGetEndpointDescriptor (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbIo,
|
|
|
|
Index,
|
|
|
|
&EndpointDescriptor
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
if ((EndpointDescriptor.Attributes & (BIT0 | BIT1)) == USB_ENDPOINT_INTERRUPT) {
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
|
|
|
// We only care interrupt endpoint here
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
CopyMem (&UsbMouseAbsolutePointerDevice->IntEndpointDescriptor, &EndpointDescriptor, sizeof(EndpointDescriptor));
|
|
|
|
Found = TRUE;
|
|
|
|
break;
|
2007-11-29 07:17:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
if (!Found) {
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// No interrupt endpoint found, then return unsupported.
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
|
|
|
Status = EFI_UNSUPPORTED;
|
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
Status = InitializeUsbMouseDevice (UsbMouseAbsolutePointerDevice);
|
2007-11-29 07:17:53 +01:00
|
|
|
if (EFI_ERROR (Status)) {
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Fail to initialize USB mouse device.
|
|
|
|
//
|
|
|
|
REPORT_STATUS_CODE_WITH_DEVICE_PATH (
|
2007-11-29 07:17:53 +01:00
|
|
|
EFI_ERROR_CODE | EFI_ERROR_MINOR,
|
2010-01-27 05:00:58 +01:00
|
|
|
(EFI_PERIPHERAL_MOUSE | EFI_P_EC_INTERFACE_ERROR),
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->DevicePath
|
2007-11-29 07:17:53 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Initialize and install EFI Absolute Pointer Protocol.
|
|
|
|
//
|
2007-11-29 07:17:53 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol.GetState = GetMouseAbsolutePointerState;
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol.Reset = UsbMouseAbsolutePointerReset;
|
|
|
|
UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol.Mode = &UsbMouseAbsolutePointerDevice->Mode;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
Status = gBS->CreateEvent (
|
2008-12-31 08:32:33 +01:00
|
|
|
EVT_NOTIFY_WAIT,
|
|
|
|
TPL_NOTIFY,
|
|
|
|
UsbMouseAbsolutePointerWaitForInput,
|
|
|
|
UsbMouseAbsolutePointerDevice,
|
|
|
|
&((UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol).WaitForInput)
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = gBS->InstallProtocolInterface (
|
2008-12-31 08:32:33 +01:00
|
|
|
&Controller,
|
|
|
|
&gEfiAbsolutePointerProtocolGuid,
|
|
|
|
EFI_NATIVE_INTERFACE,
|
|
|
|
&UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// The next step would be submitting Asynchronous Interrupt Transfer on this mouse device.
|
|
|
|
// After that we will be able to get key data from it. Thus this is deemed as
|
|
|
|
// the enable action of the mouse, so report status code accordingly.
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
REPORT_STATUS_CODE_WITH_DEVICE_PATH (
|
2007-11-29 07:17:53 +01:00
|
|
|
EFI_PROGRESS_CODE,
|
2010-01-27 05:00:58 +01:00
|
|
|
(EFI_PERIPHERAL_MOUSE | EFI_P_PC_ENABLE),
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->DevicePath
|
2007-11-29 07:17:53 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// Submit Asynchronous Interrupt Transfer to manage this device.
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
EndpointAddr = UsbMouseAbsolutePointerDevice->IntEndpointDescriptor.EndpointAddress;
|
|
|
|
PollingInterval = UsbMouseAbsolutePointerDevice->IntEndpointDescriptor.Interval;
|
|
|
|
PacketSize = (UINT8) (UsbMouseAbsolutePointerDevice->IntEndpointDescriptor.MaxPacketSize);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
Status = UsbIo->UsbAsyncInterruptTransfer (
|
|
|
|
UsbIo,
|
|
|
|
EndpointAddr,
|
|
|
|
TRUE,
|
|
|
|
PollingInterval,
|
|
|
|
PacketSize,
|
2008-12-31 08:32:33 +01:00
|
|
|
OnMouseInterruptComplete,
|
2007-11-29 07:17:53 +01:00
|
|
|
UsbMouseAbsolutePointerDevice
|
|
|
|
);
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
//
|
|
|
|
// If submit error, uninstall that interface
|
|
|
|
//
|
|
|
|
gBS->UninstallProtocolInterface (
|
|
|
|
Controller,
|
|
|
|
&gEfiAbsolutePointerProtocolGuid,
|
|
|
|
&UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol
|
|
|
|
);
|
|
|
|
goto ErrorExit;
|
|
|
|
}
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->ControllerNameTable = NULL;
|
|
|
|
AddUnicodeString2 (
|
|
|
|
"eng",
|
|
|
|
gUsbMouseAbsolutePointerComponentName.SupportedLanguages,
|
|
|
|
&UsbMouseAbsolutePointerDevice->ControllerNameTable,
|
|
|
|
L"Generic Usb Mouse Absolute Pointer",
|
2007-11-29 07:17:53 +01:00
|
|
|
TRUE
|
|
|
|
);
|
2008-12-31 08:32:33 +01:00
|
|
|
AddUnicodeString2 (
|
|
|
|
"en",
|
|
|
|
gUsbMouseAbsolutePointerComponentName2.SupportedLanguages,
|
|
|
|
&UsbMouseAbsolutePointerDevice->ControllerNameTable,
|
|
|
|
L"Generic Usb Mouse Absolute Pointer",
|
|
|
|
FALSE
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2010-05-05 07:21:38 +02:00
|
|
|
gBS->RestoreTPL (OldTpl);
|
2008-12-31 08:32:33 +01:00
|
|
|
return EFI_SUCCESS;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Error handler
|
|
|
|
//
|
2007-11-29 07:17:53 +01:00
|
|
|
ErrorExit:
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller
|
|
|
|
);
|
|
|
|
|
|
|
|
if (UsbMouseAbsolutePointerDevice != NULL) {
|
|
|
|
if ((UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol).WaitForInput != NULL) {
|
|
|
|
gBS->CloseEvent ((UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol).WaitForInput);
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
FreePool (UsbMouseAbsolutePointerDevice);
|
2007-11-29 07:17:53 +01:00
|
|
|
UsbMouseAbsolutePointerDevice = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-05 07:21:38 +02:00
|
|
|
ErrorExit1:
|
|
|
|
gBS->RestoreTPL (OldTpl);
|
|
|
|
|
2007-11-29 07:17:53 +01:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Stop the USB mouse device handled by this driver.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param This The driver binding protocol.
|
|
|
|
@param Controller The controller to release.
|
|
|
|
@param NumberOfChildren The number of handles in ChildHandleBuffer.
|
|
|
|
@param ChildHandleBuffer The array of child handle.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@retval EFI_SUCCESS The device was stopped.
|
|
|
|
@retval EFI_UNSUPPORTED Absolute Pointer Protocol is not installed on Controller.
|
|
|
|
@retval Others Fail to uninstall protocols attached on the device.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
USBMouseAbsolutePointerDriverBindingStop (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
IN UINTN NumberOfChildren,
|
|
|
|
IN EFI_HANDLE *ChildHandleBuffer
|
|
|
|
)
|
|
|
|
{
|
2008-12-31 08:32:33 +01:00
|
|
|
EFI_STATUS Status;
|
|
|
|
USB_MOUSE_ABSOLUTE_POINTER_DEV *UsbMouseAbsolutePointerDevice;
|
|
|
|
EFI_ABSOLUTE_POINTER_PROTOCOL *AbsolutePointerProtocol;
|
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
Status = gBS->OpenProtocol (
|
2008-12-31 08:32:33 +01:00
|
|
|
Controller,
|
|
|
|
&gEfiAbsolutePointerProtocolGuid,
|
|
|
|
(VOID **) &AbsolutePointerProtocol,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-12-31 08:32:33 +01:00
|
|
|
return EFI_UNSUPPORTED;
|
2007-11-29 07:17:53 +01:00
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice = USB_MOUSE_ABSOLUTE_POINTER_DEV_FROM_MOUSE_PROTOCOL (AbsolutePointerProtocol);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
UsbIo = UsbMouseAbsolutePointerDevice->UsbIo;
|
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// The key data input from this device will be disabled.
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
REPORT_STATUS_CODE_WITH_DEVICE_PATH (
|
2007-11-29 07:17:53 +01:00
|
|
|
EFI_PROGRESS_CODE,
|
2010-01-27 05:00:58 +01:00
|
|
|
(EFI_PERIPHERAL_MOUSE | EFI_P_PC_DISABLE),
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->DevicePath
|
2007-11-29 07:17:53 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// Delete the Asynchronous Interrupt Transfer from this device
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
|
|
|
UsbIo->UsbAsyncInterruptTransfer (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbIo,
|
|
|
|
UsbMouseAbsolutePointerDevice->IntEndpointDescriptor.EndpointAddress,
|
|
|
|
FALSE,
|
|
|
|
UsbMouseAbsolutePointerDevice->IntEndpointDescriptor.Interval,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
Status = gBS->UninstallProtocolInterface (
|
|
|
|
Controller,
|
|
|
|
&gEfiAbsolutePointerProtocolGuid,
|
|
|
|
&UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
gBS->CloseProtocol (
|
2008-12-31 08:32:33 +01:00
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Free all resources.
|
|
|
|
//
|
|
|
|
gBS->CloseEvent (UsbMouseAbsolutePointerDevice->AbsolutePointerProtocol.WaitForInput);
|
|
|
|
|
|
|
|
if (UsbMouseAbsolutePointerDevice->DelayedRecoveryEvent != NULL) {
|
|
|
|
gBS->CloseEvent (UsbMouseAbsolutePointerDevice->DelayedRecoveryEvent);
|
|
|
|
UsbMouseAbsolutePointerDevice->DelayedRecoveryEvent = NULL;
|
|
|
|
}
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
if (UsbMouseAbsolutePointerDevice->ControllerNameTable != NULL) {
|
2007-11-29 07:17:53 +01:00
|
|
|
FreeUnicodeStringTable (UsbMouseAbsolutePointerDevice->ControllerNameTable);
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
FreePool (UsbMouseAbsolutePointerDevice);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Uses USB I/O to check whether the device is a USB mouse device.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param UsbIo Pointer to a USB I/O protocol instance.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@retval TRUE Device is a USB mouse device.
|
|
|
|
@retval FALSE Device is a not USB mouse device.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
2008-12-31 08:32:33 +01:00
|
|
|
IsUsbMouse (
|
2007-11-29 07:17:53 +01:00
|
|
|
IN EFI_USB_IO_PROTOCOL *UsbIo
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_USB_INTERFACE_DESCRIPTOR InterfaceDescriptor;
|
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// Get the default interface descriptor
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
|
|
|
Status = UsbIo->UsbGetInterfaceDescriptor (
|
|
|
|
UsbIo,
|
|
|
|
&InterfaceDescriptor
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((InterfaceDescriptor.InterfaceClass == CLASS_HID) &&
|
|
|
|
(InterfaceDescriptor.InterfaceSubClass == SUBCLASS_BOOT) &&
|
|
|
|
(InterfaceDescriptor.InterfaceProtocol == PROTOCOL_MOUSE)
|
|
|
|
) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Initialize the USB mouse device.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
This function retrieves and parses HID report descriptor, and
|
|
|
|
initializes state of USB_MOUSE_ABSOLUTE_POINTER_DEV. Then it sets indefinite idle
|
|
|
|
rate for the device. Finally it creates event for delayed recovery,
|
|
|
|
which deals with device error.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param UsbMouseAbsolutePointerDev Device instance to be initialized.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS USB mouse device successfully initialized.
|
|
|
|
@retval EFI_UNSUPPORTED HID descriptor type is not report descriptor.
|
|
|
|
@retval Other USB mouse device was not initialized successfully.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
2008-12-31 08:32:33 +01:00
|
|
|
InitializeUsbMouseDevice (
|
2007-11-29 07:17:53 +01:00
|
|
|
IN USB_MOUSE_ABSOLUTE_POINTER_DEV *UsbMouseAbsolutePointerDev
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
|
|
|
UINT8 Protocol;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_USB_HID_DESCRIPTOR MouseHidDesc;
|
|
|
|
UINT8 *ReportDesc;
|
2008-12-31 08:32:33 +01:00
|
|
|
UINT8 ReportId;
|
|
|
|
UINT8 Duration;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
UsbIo = UsbMouseAbsolutePointerDev->UsbIo;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get HID descriptor
|
|
|
|
//
|
|
|
|
Status = UsbGetHidDescriptor (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbIo,
|
|
|
|
UsbMouseAbsolutePointerDev->InterfaceDescriptor.InterfaceNumber,
|
|
|
|
&MouseHidDesc
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// Get report descriptor
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
if (MouseHidDesc.HidClassDesc[0].DescriptorType != USB_DESC_TYPE_REPORT) {
|
2007-11-29 07:17:53 +01:00
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReportDesc = AllocateZeroPool (MouseHidDesc.HidClassDesc[0].DescriptorLength);
|
2008-12-31 08:32:33 +01:00
|
|
|
ASSERT (ReportDesc != NULL);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
Status = UsbGetReportDescriptor (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbIo,
|
|
|
|
UsbMouseAbsolutePointerDev->InterfaceDescriptor.InterfaceNumber,
|
|
|
|
MouseHidDesc.HidClassDesc[0].DescriptorLength,
|
|
|
|
ReportDesc
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-12-31 08:32:33 +01:00
|
|
|
FreePool (ReportDesc);
|
2007-11-29 07:17:53 +01:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Parse report descriptor
|
|
|
|
//
|
|
|
|
Status = ParseMouseReportDescriptor (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDev,
|
|
|
|
ReportDesc,
|
|
|
|
MouseHidDesc.HidClassDesc[0].DescriptorLength
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-12-31 08:32:33 +01:00
|
|
|
FreePool (ReportDesc);
|
2007-11-29 07:17:53 +01:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDev->Mode.AbsoluteMaxX = 1024;
|
|
|
|
UsbMouseAbsolutePointerDev->Mode.AbsoluteMaxY = 1024;
|
|
|
|
UsbMouseAbsolutePointerDev->Mode.AbsoluteMaxZ = 0;
|
|
|
|
UsbMouseAbsolutePointerDev->Mode.AbsoluteMinX = 0;
|
|
|
|
UsbMouseAbsolutePointerDev->Mode.AbsoluteMinY = 0;
|
|
|
|
UsbMouseAbsolutePointerDev->Mode.AbsoluteMinZ = 0;
|
|
|
|
UsbMouseAbsolutePointerDev->Mode.Attributes = 0x3;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// Set boot protocol for the USB mouse.
|
|
|
|
// This driver only supports boot protocol.
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
|
|
|
UsbGetProtocolRequest (
|
|
|
|
UsbIo,
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDev->InterfaceDescriptor.InterfaceNumber,
|
2007-11-29 07:17:53 +01:00
|
|
|
&Protocol
|
|
|
|
);
|
|
|
|
if (Protocol != BOOT_PROTOCOL) {
|
|
|
|
Status = UsbSetProtocolRequest (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbIo,
|
2010-10-18 09:54:33 +02:00
|
|
|
UsbMouseAbsolutePointerDev->InterfaceDescriptor.InterfaceNumber,
|
2008-12-31 08:32:33 +01:00
|
|
|
BOOT_PROTOCOL
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-12-31 08:32:33 +01:00
|
|
|
FreePool (ReportDesc);
|
|
|
|
return Status;
|
2007-11-29 07:17:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// ReportId is zero, which means the idle rate applies to all input reports.
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
ReportId = 0;
|
|
|
|
//
|
|
|
|
// Duration is zero, which means the duration is infinite.
|
|
|
|
// so the endpoint will inhibit reporting forever,
|
|
|
|
// and only reporting when a change is detected in the report data.
|
|
|
|
//
|
|
|
|
Duration = 0;
|
2007-11-29 07:17:53 +01:00
|
|
|
UsbSetIdleRequest (
|
|
|
|
UsbIo,
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDev->InterfaceDescriptor.InterfaceNumber,
|
|
|
|
ReportId,
|
|
|
|
Duration
|
2007-11-29 07:17:53 +01:00
|
|
|
);
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
FreePool (ReportDesc);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Create event for delayed recovery, which deals with device error.
|
|
|
|
//
|
|
|
|
if (UsbMouseAbsolutePointerDev->DelayedRecoveryEvent != NULL) {
|
2007-11-29 07:17:53 +01:00
|
|
|
gBS->CloseEvent (UsbMouseAbsolutePointerDev->DelayedRecoveryEvent);
|
|
|
|
UsbMouseAbsolutePointerDev->DelayedRecoveryEvent = 0;
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
gBS->CreateEvent (
|
|
|
|
EVT_TIMER | EVT_NOTIFY_SIGNAL,
|
|
|
|
TPL_NOTIFY,
|
|
|
|
USBMouseRecoveryHandler,
|
|
|
|
UsbMouseAbsolutePointerDev,
|
|
|
|
&UsbMouseAbsolutePointerDev->DelayedRecoveryEvent
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Handler function for USB mouse's asynchronous interrupt transfer.
|
|
|
|
|
|
|
|
This function is the handler function for USB mouse's asynchronous interrupt transfer
|
|
|
|
to manage the mouse. It parses data returned from asynchronous interrupt transfer, and
|
|
|
|
get button and movement state.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param Data A pointer to a buffer that is filled with key data which is
|
|
|
|
retrieved via asynchronous interrupt transfer.
|
|
|
|
@param DataLength Indicates the size of the data buffer.
|
|
|
|
@param Context Pointing to USB_KB_DEV instance.
|
|
|
|
@param Result Indicates the result of the asynchronous interrupt transfer.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@retval EFI_SUCCESS Asynchronous interrupt transfer is handled successfully.
|
|
|
|
@retval EFI_DEVICE_ERROR Hardware error occurs.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2008-12-31 08:32:33 +01:00
|
|
|
OnMouseInterruptComplete (
|
2007-11-29 07:17:53 +01:00
|
|
|
IN VOID *Data,
|
|
|
|
IN UINTN DataLength,
|
|
|
|
IN VOID *Context,
|
|
|
|
IN UINT32 Result
|
|
|
|
)
|
|
|
|
{
|
2008-12-31 08:32:33 +01:00
|
|
|
USB_MOUSE_ABSOLUTE_POINTER_DEV *UsbMouseAbsolutePointerDevice;
|
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
|
|
|
UINT8 EndpointAddr;
|
|
|
|
UINT32 UsbResult;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
UsbMouseAbsolutePointerDevice = (USB_MOUSE_ABSOLUTE_POINTER_DEV *) Context;
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbIo = UsbMouseAbsolutePointerDevice->UsbIo;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
if (Result != EFI_USB_NOERROR) {
|
|
|
|
//
|
|
|
|
// Some errors happen during the process
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
REPORT_STATUS_CODE_WITH_DEVICE_PATH (
|
2007-11-29 07:17:53 +01:00
|
|
|
EFI_ERROR_CODE | EFI_ERROR_MINOR,
|
2010-01-27 05:00:58 +01:00
|
|
|
(EFI_PERIPHERAL_MOUSE | EFI_P_EC_INPUT_ERROR),
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->DevicePath
|
2007-11-29 07:17:53 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
if ((Result & EFI_USB_ERR_STALL) == EFI_USB_ERR_STALL) {
|
2008-12-31 08:32:33 +01:00
|
|
|
EndpointAddr = UsbMouseAbsolutePointerDevice->IntEndpointDescriptor.EndpointAddress;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
UsbClearEndpointHalt (
|
|
|
|
UsbIo,
|
|
|
|
EndpointAddr,
|
|
|
|
&UsbResult
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Delete & Submit this interrupt again
|
|
|
|
// Handler of DelayedRecoveryEvent triggered by timer will re-submit the interrupt.
|
|
|
|
//
|
2007-11-29 07:17:53 +01:00
|
|
|
UsbIo->UsbAsyncInterruptTransfer (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbIo,
|
|
|
|
UsbMouseAbsolutePointerDevice->IntEndpointDescriptor.EndpointAddress,
|
|
|
|
FALSE,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
//
|
|
|
|
// EFI_USB_INTERRUPT_DELAY is defined in USB standard for error handling.
|
|
|
|
//
|
2007-11-29 07:17:53 +01:00
|
|
|
gBS->SetTimer (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->DelayedRecoveryEvent,
|
|
|
|
TimerRelative,
|
|
|
|
EFI_USB_INTERRUPT_DELAY
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// If no error and no data, just return EFI_SUCCESS.
|
|
|
|
//
|
2007-11-29 07:17:53 +01:00
|
|
|
if (DataLength == 0 || Data == NULL) {
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->StateChanged = TRUE;
|
|
|
|
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// Check mouse Data
|
|
|
|
// USB HID Specification specifies following data format:
|
|
|
|
// Byte Bits Description
|
|
|
|
// 0 0 Button 1
|
|
|
|
// 1 Button 2
|
|
|
|
// 2 Button 3
|
|
|
|
// 4 to 7 Device-specific
|
|
|
|
// 1 0 to 7 X displacement
|
|
|
|
// 2 0 to 7 Y displacement
|
|
|
|
// 3 to n 0 to 7 Device specific (optional)
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->State.CurrentX += *((INT8 *) Data + 1);
|
|
|
|
UsbMouseAbsolutePointerDevice->State.CurrentY += *((INT8 *) Data + 2);
|
|
|
|
|
2007-11-29 07:17:53 +01:00
|
|
|
if (DataLength > 3) {
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->State.CurrentZ += *((INT8 *) Data + 3);
|
2007-11-29 07:17:53 +01:00
|
|
|
}
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->State.ActiveButtons = *(UINT8 *) Data & (BIT0 | BIT1);
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Retrieves the current state of a pointer device.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param This A pointer to the EFI_ABSOLUTE_POINTER_PROTOCOL instance.
|
|
|
|
@param MouseState A pointer to the state information on the pointer device.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@retval EFI_SUCCESS The state of the pointer device was returned in State.
|
|
|
|
@retval EFI_NOT_READY The state of the pointer device has not changed since the last call to
|
|
|
|
GetState().
|
|
|
|
@retval EFI_DEVICE_ERROR A device error occurred while attempting to retrieve the pointer device's
|
|
|
|
current state.
|
|
|
|
@retval EFI_INVALID_PARAMETER State is NULL.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
GetMouseAbsolutePointerState (
|
|
|
|
IN EFI_ABSOLUTE_POINTER_PROTOCOL *This,
|
2008-12-31 08:32:33 +01:00
|
|
|
OUT EFI_ABSOLUTE_POINTER_STATE *State
|
2007-11-29 07:17:53 +01:00
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MOUSE_ABSOLUTE_POINTER_DEV *MouseAbsolutePointerDev;
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
if (State == NULL) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-11-29 07:17:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MouseAbsolutePointerDev = USB_MOUSE_ABSOLUTE_POINTER_DEV_FROM_MOUSE_PROTOCOL (This);
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
if (!MouseAbsolutePointerDev->StateChanged) {
|
2007-11-29 07:17:53 +01:00
|
|
|
return EFI_NOT_READY;
|
|
|
|
}
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Retrieve mouse state from USB_MOUSE_ABSOLUTE_POINTER_DEV,
|
|
|
|
// which was filled by OnMouseInterruptComplete()
|
|
|
|
//
|
2007-11-29 07:17:53 +01:00
|
|
|
CopyMem (
|
2008-12-31 08:32:33 +01:00
|
|
|
State,
|
|
|
|
&MouseAbsolutePointerDev->State,
|
2007-11-29 07:17:53 +01:00
|
|
|
sizeof (EFI_ABSOLUTE_POINTER_STATE)
|
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Clear previous move state
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
MouseAbsolutePointerDev->State.CurrentX = 0;
|
|
|
|
MouseAbsolutePointerDev->State.CurrentY = 0;
|
|
|
|
MouseAbsolutePointerDev->State.CurrentZ = 0;
|
|
|
|
MouseAbsolutePointerDev->State.ActiveButtons = 0;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
MouseAbsolutePointerDev->StateChanged = FALSE;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Resets the pointer device hardware.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param This A pointer to the EFI_ABSOLUTE_POINTER_PROTOCOL instance.
|
|
|
|
@param ExtendedVerification Indicates that the driver may perform a more exhaustive
|
|
|
|
verification operation of the device during reset.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@retval EFI_SUCCESS The device was reset.
|
|
|
|
@retval EFI_DEVICE_ERROR The device is not functioning correctly and could not be reset.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
UsbMouseAbsolutePointerReset (
|
2008-12-31 08:32:33 +01:00
|
|
|
IN EFI_ABSOLUTE_POINTER_PROTOCOL *This,
|
2007-11-29 07:17:53 +01:00
|
|
|
IN BOOLEAN ExtendedVerification
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MOUSE_ABSOLUTE_POINTER_DEV *UsbMouseAbsolutePointerDevice;
|
|
|
|
|
|
|
|
UsbMouseAbsolutePointerDevice = USB_MOUSE_ABSOLUTE_POINTER_DEV_FROM_MOUSE_PROTOCOL (This);
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
REPORT_STATUS_CODE_WITH_DEVICE_PATH (
|
2007-11-29 07:17:53 +01:00
|
|
|
EFI_PROGRESS_CODE,
|
2010-01-27 05:00:58 +01:00
|
|
|
(EFI_PERIPHERAL_MOUSE | EFI_P_PC_RESET),
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->DevicePath
|
2007-11-29 07:17:53 +01:00
|
|
|
);
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Clear mouse state.
|
|
|
|
//
|
2007-11-29 07:17:53 +01:00
|
|
|
ZeroMem (
|
2008-12-31 08:32:33 +01:00
|
|
|
&UsbMouseAbsolutePointerDevice->State,
|
2007-11-29 07:17:53 +01:00
|
|
|
sizeof (EFI_ABSOLUTE_POINTER_STATE)
|
|
|
|
);
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbMouseAbsolutePointerDevice->StateChanged = FALSE;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Event notification function for EFI_ABSOLUTE_POINTER_PROTOCOL.WaitForInput event.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param Event Event to be signaled when there's input from mouse.
|
|
|
|
@param Context Points to USB_MOUSE_ABSOLUTE_POINTER_DEV instance.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
UsbMouseAbsolutePointerWaitForInput (
|
|
|
|
IN EFI_EVENT Event,
|
|
|
|
IN VOID *Context
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MOUSE_ABSOLUTE_POINTER_DEV *UsbMouseAbsolutePointerDev;
|
|
|
|
|
|
|
|
UsbMouseAbsolutePointerDev = (USB_MOUSE_ABSOLUTE_POINTER_DEV *) Context;
|
|
|
|
|
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
// If there's input from mouse, signal the event.
|
2007-11-29 07:17:53 +01:00
|
|
|
//
|
2008-12-31 08:32:33 +01:00
|
|
|
if (UsbMouseAbsolutePointerDev->StateChanged) {
|
2007-11-29 07:17:53 +01:00
|
|
|
gBS->SignalEvent (Event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-12-31 08:32:33 +01:00
|
|
|
Handler for Delayed Recovery event.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
This function is the handler for Delayed Recovery event triggered
|
|
|
|
by timer.
|
|
|
|
After a device error occurs, the event would be triggered
|
|
|
|
with interval of EFI_USB_INTERRUPT_DELAY. EFI_USB_INTERRUPT_DELAY
|
|
|
|
is defined in USB standard for error handling.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
@param Event The Delayed Recovery event.
|
|
|
|
@param Context Points to the USB_MOUSE_ABSOLUTE_POINTER_DEV instance.
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
2008-12-31 08:32:33 +01:00
|
|
|
USBMouseRecoveryHandler (
|
2007-11-29 07:17:53 +01:00
|
|
|
IN EFI_EVENT Event,
|
|
|
|
IN VOID *Context
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MOUSE_ABSOLUTE_POINTER_DEV *UsbMouseAbsolutePointerDev;
|
2008-12-31 08:32:33 +01:00
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
2007-11-29 07:17:53 +01:00
|
|
|
|
|
|
|
UsbMouseAbsolutePointerDev = (USB_MOUSE_ABSOLUTE_POINTER_DEV *) Context;
|
|
|
|
|
|
|
|
UsbIo = UsbMouseAbsolutePointerDev->UsbIo;
|
|
|
|
|
2008-12-31 08:32:33 +01:00
|
|
|
//
|
|
|
|
// Re-submit Asynchronous Interrupt Transfer for recovery.
|
|
|
|
//
|
2007-11-29 07:17:53 +01:00
|
|
|
UsbIo->UsbAsyncInterruptTransfer (
|
2008-12-31 08:32:33 +01:00
|
|
|
UsbIo,
|
|
|
|
UsbMouseAbsolutePointerDev->IntEndpointDescriptor.EndpointAddress,
|
|
|
|
TRUE,
|
|
|
|
UsbMouseAbsolutePointerDev->IntEndpointDescriptor.Interval,
|
|
|
|
UsbMouseAbsolutePointerDev->IntEndpointDescriptor.MaxPacketSize,
|
|
|
|
OnMouseInterruptComplete,
|
|
|
|
UsbMouseAbsolutePointerDev
|
|
|
|
);
|
2007-11-29 07:17:53 +01:00
|
|
|
}
|