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
84
|
//**********************************************************************
//**********************************************************************
//** **
//** (C)Copyright 1985-2013, American Megatrends, Inc. **
//** **
//** All Rights Reserved. **
//** **
//** 5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093 **
//** **
//** Phone: (770)-246-8600 **
//** **
//**********************************************************************
//**********************************************************************
//**********************************************************************
// $Header: /Alaska/SOURCE/Modules/HddSecurity/IdeSmm/IDESMM.DXS 4 1/08/13 12:40a Rameshr $
//
// $Revision: 4 $
//
// $Date: 1/08/13 12:40a $
//**********************************************************************
// Revision History
// ----------------
// $Log: /Alaska/SOURCE/Modules/HddSecurity/IdeSmm/IDESMM.DXS $
//
// 4 1/08/13 12:40a Rameshr
// [TAG] EIP109495
// [Category] Improvement
// [Description] HddSecurity driver needs to be updated for PI
// specification 1.2
// [Files] IdeSmm.c, IdeSmm.dxs, IdeSmm.h, IdeSmm.cif
//
// 3 6/01/10 7:11p Krishnakumarg
// Removed Tab spaces
//
// 2 4/28/09 6:56p Rameshr
// HDD password support in RAID mode
// EIP:20421
//
// 1 28/02/08 6:40p Anandakrishnanl
// Created new HddSecurity module. Isolated IdeSecurity and IdeSmm from
// IdeBus driver to be compatable with the AHCI Bus driver.
//
// 2 13/04/07 3:07p Anandakrishnanl
// Ide Bus Module - Update source files to comply with AMI coding
// standard"!!!
//
// 1 12/14/05 2:57p Srinin
//
//
//**********************************************************************
//<AMI_FHDR_START>
//---------------------------------------------------------------------------
//
// Name: IDESMM.DXS
//
// Description: Dependency file for the IDE SMM
//
//---------------------------------------------------------------------------
//<AMI_FHDR_END>
#include "IDESMM.h"
DEPENDENCY_START
#if defined(PI_SPECIFICATION_VERSION)&&(PI_SPECIFICATION_VERSION>=0x0001000A)
EFI_SMM_SW_DISPATCH2_PROTOCOL_GUID
#else
EFI_SMM_SW_DISPATCH_PROTOCOL_GUID
#endif
DEPENDENCY_END
//**********************************************************************
//**********************************************************************
//** **
//** (C)Copyright 1985-2013, American Megatrends, Inc. **
//** **
//** All Rights Reserved. **
//** **
//** 5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093 **
//** **
//** Phone: (770)-246-8600 **
//** **
//**********************************************************************
//**********************************************************************
|