summaryrefslogtreecommitdiff
path: root/Board/EM/EcPs2Kbd/EcPs2Kbd.h
blob: 50736e852133dee780512927005daf4c83cb26f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1985-2008, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**             6145-F Northbelt Pkwy, Norcross, GA 30071            **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************
//**********************************************************************
//
// $Header: /Alaska/SOURCE/Modules/EcPs2Kbd/EcPs2Kbd.h 3     7/18/11 5:58p Stacyh $
//
// $Revision: 3 $
//
// $Date: 7/18/11 5:58p $
//
//*****************************************************************************
// Revision History
// ----------------
// $Log: /Alaska/SOURCE/Modules/EcPs2Kbd/EcPs2Kbd.h $
// 
// 3     7/18/11 5:58p Stacyh
// [TAG]  		EIP65200
// [Category]  	Improvement
// [Description]  	Port EcPs2Kbd to be compliant with PI 1.2, and UEFI
// 2.3.1 specifications.
// [Files]  		EcPs2Kbd.h
// 
// 2     6/03/08 10:05a Stacyh
// 
// 1     5/30/08 4:23p Stacyh
// 
//
//*****************************************************************************


//<AMI_FHDR_START>
//----------------------------------------------------------------------------
//
// Name:		EcPs2Kbd.h
//
// Description:	defines needed for EcPs2Kbd.
//
// Notes:		
//
//----------------------------------------------------------------------------
//<AMI_FHDR_END>
#include <GenericSIO.h>
#include <Protocol\DevicePath.h>
#include <AmiDxeLib.h>

#define END_DEVICE_PATH_TYPE			0x7f
#define END_ENTIRE_DEVICE_PATH_SUBTYPE	0xff

typedef struct {
	ACPI_HID_DEVICE_PATH		AcpiDevicePath;
	EFI_DEVICE_PATH_PROTOCOL	EndDevicePath;
} PS2_KBD_DEVICE_PATH;


typedef struct _PS2KBD_DEV {
	EFI_DEVICE_PATH_PROTOCOL	*DevicePath;
	EFI_HANDLE					Handle;
} PS2KBD_DEV;

//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1985-2008, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**             6145-F Northbelt Pkwy, Norcross, GA 30071            **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************