/*++ Copyright (c) 2006, Intel Corporation All rights reserved. This program and the accompanying materials 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. Module Name: cbi.h Abstract: USB CBI transportation protocol definitions. --*/ #ifndef _CBI_H #define _CBI_H #include #define bit(a) (1 << (a)) #define MASS_STORAGE_CLASS 0x08 #define CBI0_INTERFACE_PROTOCOL 0x00 #define CBI1_INTERFACE_PROTOCOL 0x01 // // in millisecond unit // #define STALL_1_SECOND 1000 #pragma pack(1) // // Data block definition for transportation through interrupt endpoint // typedef struct { UINT8 bType; UINT8 bValue; } INTERRUPT_DATA_BLOCK; #pragma pack() #define USB_CBI_DEVICE_SIGNATURE EFI_SIGNATURE_32 ('u', 'c', 'b', 'i') // // Device structure for CBI, interrupt endpoint may be not used in // CBI1 Protocol // typedef struct { UINT32 Signature; EFI_DEVICE_PATH_PROTOCOL *DevicePath; EFI_USB_ATAPI_PROTOCOL UsbAtapiProtocol; EFI_USB_IO_PROTOCOL *UsbIo; EFI_USB_INTERFACE_DESCRIPTOR InterfaceDescriptor; EFI_USB_ENDPOINT_DESCRIPTOR BulkInEndpointDescriptor; EFI_USB_ENDPOINT_DESCRIPTOR BulkOutEndpointDescriptor; EFI_USB_ENDPOINT_DESCRIPTOR InterruptEndpointDescriptor; EFI_UNICODE_STRING_TABLE *ControllerNameTable; } USB_CBI_DEVICE; #define USB_CBI_DEVICE_FROM_THIS(a) \ CR(a, USB_CBI_DEVICE, UsbAtapiProtocol, USB_CBI_DEVICE_SIGNATURE) extern EFI_DRIVER_BINDING_PROTOCOL gUsbCbi1DriverBinding; extern EFI_COMPONENT_NAME_PROTOCOL gUsbCbi1ComponentName; // // EFI Component Name Functions // EFI_STATUS EFIAPI UsbCbi1ComponentNameGetDriverName ( IN EFI_COMPONENT_NAME_PROTOCOL *This, IN CHAR8 *Language, OUT CHAR16 **DriverName ); EFI_STATUS EFIAPI UsbCbi1ComponentNameGetControllerName ( IN EFI_COMPONENT_NAME_PROTOCOL *This, IN EFI_HANDLE ControllerHandle, IN EFI_HANDLE ChildHandle OPTIONAL, IN CHAR8 *Language, OUT CHAR16 **ControllerName ); #endif