git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@238 6f19259b-4bc3-4df7-8a09-765794883524
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*++
 | |
| 
 | |
| 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 <IndustryStandard/Usb.h>
 | |
| 
 | |
| #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)
 | |
| 
 | |
| #endif
 |