summaryrefslogtreecommitdiff
path: root/Core/EM/PS2CTL/hotkey.c
blob: 21ef2b96c54284e1d08701141aa4596485626c37 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1985-2009, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**         5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093        **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************

//**********************************************************************
// $Header: /Alaska/SOURCE/Core/CORE_DXE/PS2CTL/hotkey.c 9     4/27/11 4:38a Lavanyap $
//
// $Revision: 9 $
//
// $Date: 4/27/11 4:38a $
//**********************************************************************
// Revision History
// ----------------
// $Log: /Alaska/SOURCE/Core/CORE_DXE/PS2CTL/hotkey.c $
// 
// 9     4/27/11 4:38a Lavanyap
// [TAG] - EIP49407
// [Category] - IMPROVEMENT
// [Description] - Move the Ps2 driver SDL tokens from Core Source to Core
// Bin,So that we don't need to add Core source for changing the Ps2
// driver SDL tokens.
// [Files] - Ps2Ctl.sdl, ps2kbd.c, ps2main.c, ps2ctl.h, kbc.c, mouse.c,
// hotkey.c, CORE_DXE.sdl, Tokens.c
// 
// 8     12/01/10 6:13a Anandv
// [TAG] - EIP 45947
// [Category]- BUG FIX
// [Severity]- Minor
// [Symptom] - Build Error on disabling INIT_DEFAULT_HOTKEYS SDL Token.
// [RootCause] - KEY_ASSOCIATION structure variable not declared based on
// INIT_DEFAULT_HOTKEYS SDL Token.
// [Solution] - KEY_ASSOCIATION structure variable declared based on
// INIT_DEFAULT_HOTKEYS SDL Token
// [Files] - hotkey.c
// 
// 7     8/23/10 4:31a Rameshr
// Bug Fix: EIP 40818
// Symptoms: Pause/Break function key has no function in logo screen
// FilesModified: HotKey.c
// Details:Pause key doesn't have valid Ps2 SCAN code. ProcesshotKey
// function will get 0 as input for Pause key and it tries to execute the
// invalid function.So getting exception.
// 
// 6     1/06/10 12:09a Rameshr
// Sometimes reset fail in BIOS Setup
// EIP:33327
// Ctrl+alt+del+Shift key also should reset the system
// 
// 5     7/01/09 12:32p Olegi
// Source is corrected according to the coding standard: function headers,
// copyright messages are updated.
// 
// 4     4/21/08 5:48p Olegi
// Bugfix in RegisterHotKey routine for multiple hot keys.
// 
// 3     4/09/08 10:19a Olegi
// Changed the key attributes (modifiers and shift state) reporting.
// 
// 2     4/16/07 6:28p Pats
// Modified to conform with coding standards. No code changes.
// 
// 1     2/01/05 1:11a Felixp
// 
// 2     1/18/05 3:22p Felixp
// PrintDebugMessage renamed to Trace
// 
// 1     10/28/04 10:19a Olegi
// 
// 1     9/30/04 8:07a Olegi
//**********************************************************************

//<AMI_FHDR_START>
//----------------------------------------------------------------------
//
// Name:        hotkeys.c
//
// Description: PS/2 keyboard hotkeys support routines
//
//----------------------------------------------------------------------
//<AMI_FHDR_END>

#include "ps2ctl.h"
#include "kbc.h"
#include <Protocol\HotKeys.h>

EFI_GUID gHotKeysGuid = EFI_HOT_KEYS_PROTOCOL_GUID;

HOT_KEYS_PROTOCOL HotKeysProtocol;
KEY_ASSOCIATION *HotKeys_Table;

extern UINT8   MaxHotKeys;
extern BOOLEAN InitDefaultHotKeys;



//<AMI_PHDR_START>
//----------------------------------------------------------------------
//
// Procedure:       CopyKey
//
// Description:     HotKey helper function - Copies key codes from source to
//                  target buffers
//
// Parameters:      
//    KEY_ASSOCIATION *SrcKey - Pointer to source buffer
//    KEY_ASSOCIATION *TrgKey - Pointer to target buffer
//
// Output:          None
//
//----------------------------------------------------------------------
//<AMI_PHDR_END>

VOID CopyKey (
    IN KEY_ASSOCIATION *SrcKey,
    IN KEY_ASSOCIATION *TrgKey
    )
{
    TrgKey->KeyCode = SrcKey->KeyCode;
    TrgKey->KeyAttrib = SrcKey->KeyAttrib;
    TrgKey->ReportKey = SrcKey->ReportKey;
    TrgKey->KeyExtendedFunc = SrcKey->KeyExtendedFunc;
    TrgKey->FunctionContext = SrcKey->FunctionContext;
}


//<AMI_PHDR_START>
//----------------------------------------------------------------------
//
// Procedure:       RegisterHotKey
//
// Description:     This is HotKey protocol API implementation function.
//                  It registers the "extended" key function.
//
// Parameters:      KEY_ASSOCIATION *HotKey - Key code to register
//                  BOOLEAN ReplaceExisting - a rule that tells whether or
//                      not we will replace the existing function; this 
//                      parameter will not be considered in case the function
//                      for a given key is not assigned yet.
//
// Output  :        EFI_SUCCESS if function is successfully registered
//                  EFI_OUT_OF_RESOURCES if we already have reached 
//                      MAX_HOTKEYS registered functions and we are not 
//                      replacing the existing one
//                  EFI_ACCESS_DENIED if requested key has been already
//                      assigned, can be returned only when ReplaceExisting
//                      is FALSE
//
// Modified:        HotKeys_Table
//      
// Referrals:       HotKeys_Table
//
//----------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS RegisterHotKey (
    IN KEY_ASSOCIATION *HotKey,
    IN BOOLEAN ReplaceExisting )
{

    KEY_ASSOCIATION *hk = HotKeys_Table;
    UINT8 i;
    UINT8 emptySpot = 0xFF;
    //
    // See if the key is already registered, at the same time find the empty
    // spot in HotKeys_Table
    //
    for (i = 0; i < MaxHotKeys; i++, hk++) {
        if (!hk->KeyCode) { // empty entry found
            if (emptySpot == 0xff) {
                emptySpot = i;
            }
            continue;
        }
        if ((hk->KeyCode == HotKey->KeyCode) && (hk->KeyAttrib == HotKey->KeyAttrib)) {
            if (ReplaceExisting) {
                CopyKey(HotKey, hk);
                return EFI_SUCCESS;
            }
            else {
                return EFI_ACCESS_DENIED;
            }
        }
    }
    //
    // We are here if the key duplicate is not found
    //
    if (emptySpot == 0xFF) {
        return EFI_OUT_OF_RESOURCES;    // no empty space found either
    }

    CopyKey(HotKey, &HotKeys_Table[emptySpot]); // fill in the new entry
    return EFI_SUCCESS;
}


//<AMI_PHDR_START>
//----------------------------------------------------------------------
//
// Procedure:       UnregisterHotKeys
//
// Description:     This is HotKey protocol API implementation function.
//                  It unregisters all "extended" key functions.
//
// Parameters:      None
//
// Output:          EFI_SUCCESS if functions are successfully unregistered
//                  EFI_ACCESS_DENIED if functions are not unregistered
//
// Modified:        HotKeys_Table
//      
// Referrals:       HotKeys_Table
//
//----------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS UnregisterHotKeys()
{
    UINT8 i;
    KEY_ASSOCIATION ZeroedEntry = {0};

    for (i = 0; i < MaxHotKeys; i++) {
        CopyKey(&ZeroedEntry, &HotKeys_Table[i]);
    }
    return EFI_SUCCESS;
}


//<AMI_PHDR_START>
//----------------------------------------------------------------------
//
// Procedure:       ResetSystem
//
// Description:     This routine performs a warm boot of the system
//
// Parameters:      VOID *Context - Pointer to context
//
// Output:          EFI_SUCCESS
//
//----------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS ResetSystem (
    VOID    *Context )
{
    gSysTable->RuntimeServices->ResetSystem(EfiResetWarm, EFI_SUCCESS, 0, NULL);
    return EFI_SUCCESS;
}


//<AMI_PHDR_START>
//----------------------------------------------------------------------
//
// Procedure:       InitHotKeys
//
// Description:     This routine is called from StartKeyboard function,
//                  it initializes the PS/2 keyboard hot keys and produces
//                  HotKeys protocol.
//
// Parameters:      EFI_HANDLE Controller - Handle for this driver
//
// Output:          EFI_STATUS - Status of the operation
//
// Modified:        HotKeysProtocol
//      
//----------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS InitHotKeys (
    EFI_HANDLE Controller )
{
    EFI_STATUS Status;
    KEY_ASSOCIATION hk;
    //
    // Publish the hot key registration interface
    //
    HotKeysProtocol.RegisterHotKey = RegisterHotKey;
    HotKeysProtocol.UnregisterHotKeys = UnregisterHotKeys;
    Status = gSysTable->BootServices->InstallProtocolInterface (
        &Controller,
        &gHotKeysGuid,
        EFI_NATIVE_INTERFACE,
        &HotKeysProtocol
    );
    // 
    // Initialise the hotkeys table list
    //
    Status = pBS->AllocatePool( 
                    EfiBootServicesData,
                    MaxHotKeys * sizeof(KEY_ASSOCIATION),
                    &HotKeys_Table );
    pBS->SetMem( HotKeys_Table, MaxHotKeys * sizeof(KEY_ASSOCIATION), 0);

    if ( InitDefaultHotKeys ) {
        //
        // Register Ctl+Alt+Del combination for Soft Reset
        //
        hk.KeyCode = 0x53;

        hk.ReportKey = TRUE;
        hk.KeyExtendedFunc = ResetSystem;
        hk.FunctionContext = NULL;

        hk.KeyAttrib = LEFT_CONTROL_PRESSED | LEFT_ALT_PRESSED;
        RegisterHotKey(&hk, TRUE);
        hk.KeyAttrib = LEFT_CONTROL_PRESSED | RIGHT_ALT_PRESSED;
        RegisterHotKey(&hk, TRUE);
        hk.KeyAttrib = RIGHT_CONTROL_PRESSED | LEFT_ALT_PRESSED;
        RegisterHotKey(&hk, TRUE);
        hk.KeyAttrib = RIGHT_CONTROL_PRESSED | RIGHT_ALT_PRESSED;
        RegisterHotKey(&hk, TRUE);

        hk.KeyAttrib = LEFT_CONTROL_PRESSED | LEFT_ALT_PRESSED | LEFT_SHIFT_PRESSED;
        RegisterHotKey(&hk, TRUE);
        hk.KeyAttrib = LEFT_CONTROL_PRESSED | RIGHT_ALT_PRESSED | LEFT_SHIFT_PRESSED;
        RegisterHotKey(&hk, TRUE);
        hk.KeyAttrib = RIGHT_CONTROL_PRESSED | LEFT_ALT_PRESSED | LEFT_SHIFT_PRESSED;
        RegisterHotKey(&hk, TRUE);
        hk.KeyAttrib = RIGHT_CONTROL_PRESSED | RIGHT_ALT_PRESSED | LEFT_SHIFT_PRESSED;
        RegisterHotKey(&hk, TRUE);

        hk.KeyAttrib = LEFT_CONTROL_PRESSED | LEFT_ALT_PRESSED | RIGHT_SHIFT_PRESSED;
        RegisterHotKey(&hk, TRUE);
        hk.KeyAttrib = LEFT_CONTROL_PRESSED | RIGHT_ALT_PRESSED | RIGHT_SHIFT_PRESSED;
        RegisterHotKey(&hk, TRUE);
        hk.KeyAttrib = RIGHT_CONTROL_PRESSED | LEFT_ALT_PRESSED | RIGHT_SHIFT_PRESSED;
        RegisterHotKey(&hk, TRUE);
        hk.KeyAttrib = RIGHT_CONTROL_PRESSED | RIGHT_ALT_PRESSED | RIGHT_SHIFT_PRESSED;
        RegisterHotKey(&hk, TRUE);

    }

    return Status;
}


//<AMI_PHDR_START>
//----------------------------------------------------------------------
//
// Procedure:       ProcessHotKey
//
// Description:     This routine searches the HotKey table for the matching
//                  key and executes the corresponding "key extension"
//                  function.
//
// Parameters:      UINT8  Code - key make code
//                  UINT16 KeyShiftState - Shift/Alt/Ctrl modifiers:
//                  RIGHT_SHIFT_PRESSED     0x00000001
//                  LEFT_SHIFT_PRESSED      0x00000002
//                  RIGHT_CONTROL_PRESSED   0x00000004
//                  LEFT_CONTROL_PRESSED    0x00000008
//                  RIGHT_ALT_PRESSED       0x00000010
//                  LEFT_ALT_PRESSED        0x00000020
//                  RIGHT_LOGO_PRESSED      0x00000040
//                  LEFT_LOGO_PRESSED       0x00000080
//
// Output:          EFI_SUCCESS if 1)key is not found or 2)key is found,
//                      function executed and key has to be reported back
//                      to the caller;
//                  EFI_NOT_READY if key is found but is not to be reported
//                      back to the caller.
// Referrals:       HotKeys_Table
//
//----------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS
ProcessHotKey (
    UINT8   Code,
    UINT16  KeyShiftState
)
{
    KEY_ASSOCIATION *hk = HotKeys_Table;
    UINT8 i;

    //
    // Validate the Input Data
    //
    if(Code == 0 && KeyShiftState == 0) {
        return EFI_NOT_READY;
    }

    //
    // Find the match in the table
    //
    for (i = 0; i < MaxHotKeys; i++) {
        if ((hk->KeyCode == Code) && (hk->KeyAttrib == (UINT8)KeyShiftState)) {
            //
            // Match found - execute the function
            //
            hk->KeyExtendedFunc(hk->FunctionContext);
            return (hk->ReportKey)? EFI_SUCCESS: EFI_NOT_READY;
        }
        hk++;
    }
    return EFI_SUCCESS;
}

//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1985-2009, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**         5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093        **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************