summaryrefslogtreecommitdiff
path: root/Board/EM/MeWrapper/MeSetup/MebxPrompt.c
blob: aaa26352b038750f29cd0584708e607665c11200 (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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
//*************************************************************************
//*************************************************************************
//**                                                                     **
//**        (C)Copyright 1985-2011, American Megatrends, Inc.            **
//**                                                                     **
//**                       All Rights Reserved.                          **
//**                                                                     **
//**      5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093           **
//**                                                                     **
//**                       Phone: (770)-246-8600                         **
//**                                                                     **
//*************************************************************************
//*************************************************************************

//**********************************************************************
// $Header: /Alaska/SOURCE/Modules/SharkBayRefCodes/ME/MeWrapper/MeSetup/MebxPrompt.c 5     11/06/12 5:34a Klzhan $
//
// $Revision: 5 $
//
// $Date: 11/06/12 5:34a $
//**********************************************************************
// Revision History
// ----------------
// $Log: /Alaska/SOURCE/Modules/SharkBayRefCodes/ME/MeWrapper/MeSetup/MebxPrompt.c $
// 
// 5     11/06/12 5:34a Klzhan
// Improvement : Support MEBX full screen when enable Hot key pressed in
// AMT setup page.
// Fix : Sometimes Mebx not full screen(CreateEvent)
// 
// 4     10/04/12 8:43a Klzhan
// [TAG]  		EIP102464
// [Category]  	Improvement
// [Description]  	Make Mebx setup full screen.
// 
// 3     9/19/12 5:51a Klzhan
// Read MEFwType from Setup Variable.
// 
// 2     4/23/12 11:09p Klzhan
// 
// 1     2/08/12 1:04a Klzhan
// Initial Check in 
// 
// 12    10/04/11 5:22a Klzhan
// Fix build error when iAMT_SUPPORT is disabled.
// 
// 11    9/27/11 5:41a Klzhan
// Add Tokens for Hot key detected.
// 
// 10    9/07/11 4:54a Klzhan
// Remove keynotify when entering Setup.
// 
// 9     9/06/11 3:51a Klzhan
// Read key by RegisterKeyNofity.
// 
// 8     7/19/11 4:41a Klzhan
// Skip MEBX detect when SOL and KVM is running.
// 
// 7     7/19/11 1:49a Klzhan
// [TAG]  		EIP62343
// [Category]  	Bug Fix
// [Severity]  	Important
// [Symptom]  	Can't Enter MEBX when S4 resume
// [RootCause]  	BIOS block CTRL + P
// 
// 6     6/28/11 7:46a Klzhan
// Fix Remote Assistance can't work property.
// 
// 5     6/28/11 2:39a Klzhan
// Fix build error when iAMT_Support is off.
// 
// 4     6/20/11 8:19a Klzhan
// Not Show Remote Assistance message when SOL and KVM.
// 
// 3     6/20/11 4:20a Klzhan
// 1. Support Remote assistance hot key detect.
// 2. Not prompt CTRL + P when S4 resume.
// 
// 2     5/26/11 2:36a Klzhan
// No Prompt Press CTRL + P to enter MEBX message with 1.5M ME.
// 
// 1     5/24/11 4:38a Klzhan
// Support Mebx prompt.
// 
//
//**********************************************************************

//<AMI_FHDR_START>
//---------------------------------------------------------------------------
// Name:        MebxPrompt.c
//
// Description:	AMT TSE Functions.
//
//---------------------------------------------------------------------------
//<AMI_FHDR_END>
#include <Setup.h>
#include "variable.h"
#include "AmiDxeLib.h"
#include "Protocol\ConsoleControl.h"
#include "Protocol\SimpleTextInEx.h"
#include "AmtPlatformPolicy\AmtPlatformPolicy.h"
#include "MeBiosExtensionSetup\MeBiosExtensionSetup.h"
#include "MeBiosPayloadData\MeBiosPayloadData.h"
#include "Heci\Heci.h"

#if defined iAMT_SUPPORT && iAMT_SUPPORT == 1
#include "AmtWrapper\AmtWrapper.h"
#endif
extern EFI_STATUS PostManagerDisplayPostMessage( CHAR16 *message );

extern EFI_BOOT_SERVICES      *gBS;
extern EFI_SYSTEM_TABLE       *gST;
extern EFI_RUNTIME_SERVICES   *gRT;
ME_BIOS_EXTENSION_SETUP       MeBiosExtensionSetupData;

EFI_HANDLE                    MebxKeyHandle[2];
EFI_HANDLE                    CIRAKeyHandle[2];
DXE_AMT_POLICY_PROTOCOL       *mDxePlatformAmtPolicy = NULL;
EFI_GUID      gDxePlatformAmtPolicyGuid = DXE_PLATFORM_AMT_POLICY_GUID;
#define EFI_EVENT_ME_PLATFORM_READY_TO_BOOT \
  { \
    0x3fdf171, 0x1d67, 0x4ace, 0xa9, 0x4, 0x3e, 0x36, 0xd3, 0x38, 0xfa, 0x74 \
  }
EFI_GUID      gMePlatformReadyToBootGuid = EFI_EVENT_ME_PLATFORM_READY_TO_BOOT;
//<AMI_PHDR_START>
//*******************************************************************************
// Procedure:	SetConsoleControlModeBack
//
// Description:	Set to GraphicMode
//
// Input:	Event
//              Context
//
// Output:      VOID
//
//*******************************************************************************
//<AMI_PHDR_END>
EFI_STATUS
SetConsoleControlModeBack(
  EFI_EVENT   Event,
  VOID        *ParentImageHandle
)
{

  EFI_STATUS                        Status;
  EFI_CONSOLE_CONTROL_PROTOCOL      *ConsoleControl;

  Status = gBS->LocateProtocol( &gEfiConsoleControlProtocolGuid, NULL, &ConsoleControl);

  //Set back to Graphics
  Status = ConsoleControl->SetMode( ConsoleControl, EfiConsoleControlScreenGraphics );

  gBS->CloseEvent(Event);
  return Status;
}

//<AMI_PHDR_START>
//*******************************************************************************
// Procedure:	CIRACheckForKey
//
// Description:	
//
// Input:	Event: Timer event.
//              Context: Event context; always NULL
//
// Output:		VOID
//
//*******************************************************************************
//<AMI_PHDR_END>
EFI_STATUS CIRACheckForKey
(
  IN EFI_KEY_DATA *Key
)
{
#if CIRA_SCANCODE
  EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleTextInEX;
  EFI_STATUS                        Status;

  if(mDxePlatformAmtPolicy == NULL)
  {    
    Status = gBS->LocateProtocol (&gDxePlatformAmtPolicyGuid, NULL, &mDxePlatformAmtPolicy);
    if (EFI_ERROR(Status)) return Status;
  }

  Status = gBS->HandleProtocol(gST->ConsoleInHandle, 
                              &gEfiSimpleTextInExProtocolGuid, 
                              (void*)&SimpleTextInEX);

  if (EFI_ERROR(Status)) return Status;

  Status = SimpleTextInEX->UnregisterKeyNotify (SimpleTextInEX, CIRAKeyHandle[0]);
  if((CIRA_UNICODE>0x40 && CIRA_UNICODE<0x5b) || (CIRA_UNICODE>0x60 && CIRA_UNICODE<0x7b)){
    Status = SimpleTextInEX->UnregisterKeyNotify (SimpleTextInEX, CIRAKeyHandle[1]);
  }

  mDxePlatformAmtPolicy->AmtConfig.CiraRequest = 1;
  PostManagerDisplayPostMessage(L"Requesting CIRA ......");
#endif
  return EFI_SUCCESS;
}
//<AMI_PHDR_START>
//*******************************************************************************
// Procedure:	MebxCheckForKey
//
// Description:	
//
// Input:	Event: Timer event.
//              Context: Event context; always NULL
//
// Output:		VOID
//
//*******************************************************************************
//<AMI_PHDR_END>
EFI_STATUS MebxCheckForKey
(
  IN EFI_KEY_DATA *Key
)
{
  EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleTextInEX;
  EFI_STATUS                        Status;
  EFI_CONSOLE_CONTROL_PROTOCOL      *ConsoleControl;
  EFI_EVENT                         SetConsoleControlModeBackEvent;
  EFI_CONSOLE_CONTROL_SCREEN_MODE   ScreenMode;

  if(mDxePlatformAmtPolicy == NULL)
  {    
    Status = gBS->LocateProtocol (&gDxePlatformAmtPolicyGuid, NULL, &mDxePlatformAmtPolicy);
    if (EFI_ERROR(Status)) return Status;
  }

  Status = gBS->HandleProtocol(gST->ConsoleInHandle, 
                               &gEfiSimpleTextInExProtocolGuid, 
                               (void*)&SimpleTextInEX);

  if (EFI_ERROR(Status)) return Status;

  Status = SimpleTextInEX->UnregisterKeyNotify (SimpleTextInEX, MebxKeyHandle[0]);  
  if((MEBX_UNICODE>0x40 && MEBX_UNICODE<0x5b) || (MEBX_UNICODE>0x60 && MEBX_UNICODE<0x7b)){
    Status = SimpleTextInEX->UnregisterKeyNotify (SimpleTextInEX, MebxKeyHandle[1]);
  }

  mDxePlatformAmtPolicy->AmtConfig.iAmtbxHotkeyPressed = 1;
  PostManagerDisplayPostMessage(L"Entering MEBX setup menu ......");

  // Fix Mebx Setup screen not full screen.
  Status = gBS->LocateProtocol( &gEfiConsoleControlProtocolGuid, NULL, &ConsoleControl);

  ConsoleControl->GetMode(ConsoleControl, &ScreenMode, NULL, NULL);

  if (ScreenMode == EfiConsoleControlScreenGraphics) 
  {
    ConsoleControl->SetMode( ConsoleControl, EfiConsoleControlScreenText );
    Status = gBS->CreateEventEx (
                    EFI_EVENT_NOTIFY_SIGNAL,
                    TPL_CALLBACK,
                    SetConsoleControlModeBack,
                    NULL,
                    &gMePlatformReadyToBootGuid,
                    &SetConsoleControlModeBackEvent
                    );
  }

  return EFI_SUCCESS;
}
//<AMI_PHDR_START>
//----------------------------------------------------------------------------
// Procedure:	MebxPromptConInAvailabilityHook
//
// Description:	This function is a hook called when TSE determines
//              that SETUP utility has to be displayed. This function
//              is available as ELINK. In the generic implementation
//              setup password is prompted in this function.
//
// Input:		VOID
//
// Output:		VOID
//
//----------------------------------------------------------------------------
//<AMI_PHDR_END>
BOOLEAN MebxPromptConInAvailabilityHook  (VOID)
{
    EFI_STATUS        Status;
    EFI_GUID          gSetupGuid = SETUP_GUID;
    UINTN             VarSize;
    SETUP_DATA        SetupData;
#if MEBX_UNICODE>0x40 && MEBX_UNICODE<0x5b == 1
                      // ScanCode, UnicodeChar, KeyShiftState, KeyToggleState
    EFI_KEY_DATA      Key[] = {{MEBX_SCANCODE, MEBX_UNICODE, MEBX_KeyShiftState, MEBX_KeyToggleState},
                               {MEBX_SCANCODE, MEBX_UNICODE+0x20, MEBX_KeyShiftState, MEBX_KeyToggleState}};

#else
#if MEBX_UNICODE>0x60 && MEBX_UNICODE<0x7b == 1
    EFI_KEY_DATA      Key[] = {{MEBX_SCANCODE, MEBX_UNICODE-0x20, MEBX_KeyShiftState, MEBX_KeyToggleState},
                               {MEBX_SCANCODE, MEBX_UNICODE, MEBX_KeyShiftState, MEBX_KeyToggleState}};
#else
    EFI_KEY_DATA      Key[] = {{MEBX_SCANCODE, MEBX_UNICODE, MEBX_KeyShiftState, MEBX_KeyToggleState}};
#endif
#endif
    EFI_HECI_PROTOCOL *Heci;
    UINT32            MeMode = ME_MODE_FAILED;
    EFI_GUID          gEfiHeciProtocolGuid = HECI_PROTOCOL_GUID;
    EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleTextInEX;
    EFI_GUID          gMeBiosPayloadDataProtocolGuid = 
                      ME_BIOS_PAYLOAD_DATA_PROTOCOL_GUID;
#if defined iAMT_SUPPORT && iAMT_SUPPORT == 1
    EFI_GUID      gEfiAmtWrapperGuid = EFI_AMT_WRAPPER_PROTOCOL_GUID;
    AMT_WRAPPER_PROTOCOL              *AmtWrapperProtocol;

    Status = gBS->LocateProtocol (&gEfiAmtWrapperGuid, NULL, &AmtWrapperProtocol);
    if (EFI_ERROR(Status)) return FALSE;
    if ((AmtWrapperProtocol->ActiveManagementEnableKvm()) ||
        (AmtWrapperProtocol->ActiveManagementEnableSol()))
        return FALSE;
#endif
    VarSize = sizeof(SETUP_DATA);
    Status = gRT->GetVariable (
                    L"Setup",
                    &gSetupGuid,
                    NULL,
                    &VarSize,
                    &SetupData
                    );

    if (EFI_ERROR(Status)) return FALSE;
    if(SetupData.MeImageType == 3)
      return FALSE;

    Status = pBS->LocateProtocol (
                    &gEfiHeciProtocolGuid,
                    NULL,
                    &Heci
                    );

    if (EFI_ERROR(Status)) return EFI_SUCCESS; 

    Status = Heci->GetMeMode (&MeMode);

    // If not normal mode
    if(MeMode != 0)
      return FALSE;

    if(mDxePlatformAmtPolicy == NULL)
    {    
        Status = gBS->LocateProtocol (&gDxePlatformAmtPolicyGuid, NULL, &mDxePlatformAmtPolicy);

        if (EFI_ERROR(Status)) 
            return FALSE;
    }

    if(mDxePlatformAmtPolicy->AmtConfig.iAmtbxHotkeyPressed == 1)
    {
        EFI_EVENT        SetConsoleControlModeBackEvent;
        EFI_CONSOLE_CONTROL_PROTOCOL      *ConsoleControl;
        EFI_CONSOLE_CONTROL_SCREEN_MODE   ScreenMode;

        // Fix Mebx Setup screen not full screen.
        Status = gBS->LocateProtocol( 
                 &gEfiConsoleControlProtocolGuid, NULL, &ConsoleControl);



        ConsoleControl->GetMode(ConsoleControl, &ScreenMode, NULL, NULL);
        if (ScreenMode == EfiConsoleControlScreenGraphics) {
          ConsoleControl->SetMode( ConsoleControl, EfiConsoleControlScreenText );

          Status = gBS->CreateEventEx (
                          EFI_EVENT_NOTIFY_SIGNAL,
                          TPL_CALLBACK,
                          SetConsoleControlModeBack,
                          NULL,
                          &gMePlatformReadyToBootGuid,
                          &SetConsoleControlModeBackEvent
                          );
        }
        return FALSE;
    }

    PostManagerDisplayPostMessage(L"Press <CTRL + P> to Enter MEBX setup menu ");

    Status = gBS->HandleProtocol(gST->ConsoleInHandle, &gEfiSimpleTextInExProtocolGuid, (void*)&SimpleTextInEX);
    if (EFI_ERROR(Status)) return FALSE;


    Status = SimpleTextInEX->RegisterKeyNotify (SimpleTextInEX, &Key[0], &MebxCheckForKey, &MebxKeyHandle[0]);
    if((MEBX_UNICODE>0x40 && MEBX_UNICODE<0x5b) || (MEBX_UNICODE>0x60 && MEBX_UNICODE<0x7b)){
        Status = SimpleTextInEX->RegisterKeyNotify (SimpleTextInEX, &Key[1], &MebxCheckForKey, &MebxKeyHandle[1]);
    }

    return FALSE;
}
//<AMI_PHDR_START>
//----------------------------------------------------------------------------
// Procedure:	RemoteAssistConInAvailabilityHook
//
// Description:	This function is a hook called when TSE determines
//              that SETUP utility has to be displayed. This function
//              is available as ELINK. In the generic implementation
//              setup password is prompted in this function.
//
// Input:		VOID
//
// Output:		VOID
//
//----------------------------------------------------------------------------
//<AMI_PHDR_END>
BOOLEAN RemoteAssistConInAvailabilityHook  (VOID)
{
#if CIRA_SUPPORT
    EFI_STATUS    Status;
    UINTN         VariableSize = sizeof (ME_BIOS_EXTENSION_SETUP);
    EFI_GUID      gEfiMeBiosExtensionSetupGuid = EFI_ME_BIOS_EXTENSION_SETUP_GUID;
    CHAR16        gEfiMeBiosExtensionSetupName[] = EFI_ME_BIOS_EXTENSION_SETUP_VARIABLE_NAME;
    EFI_GUID      gEfiAmtWrapperGuid = EFI_AMT_WRAPPER_PROTOCOL_GUID;
    AMT_WRAPPER_PROTOCOL              *AmtWrapperProtocol;

    Status = gBS->LocateProtocol (&gDxePlatformAmtPolicyGuid, NULL, &mDxePlatformAmtPolicy);
    if (EFI_ERROR(Status)) return FALSE;

    Status = gBS->LocateProtocol (&gEfiAmtWrapperGuid, NULL, &AmtWrapperProtocol);
    if (EFI_ERROR(Status)) return FALSE;

    Status = gRT->GetVariable (
             gEfiMeBiosExtensionSetupName,
             &gEfiMeBiosExtensionSetupGuid,
             NULL,
             &VariableSize,
             &MeBiosExtensionSetupData);

    if(EFI_ERROR(Status))
        return FALSE;

    if((MeBiosExtensionSetupData.RemoteAssistanceTriggerAvailablilty) &&
       (mDxePlatformAmtPolicy->AmtConfig.iAmtEnabled) &&
       (!AmtWrapperProtocol->ActiveManagementEnableKvm()) &&
       (!AmtWrapperProtocol->ActiveManagementEnableSol()))
    {
#if CIRA_UNICODE>0x40 && CIRA_UNICODE<0x5b == 1
                      // ScanCode, UnicodeChar, KeyShiftState, KeyToggleState
    EFI_KEY_DATA      Key[] = {{CIRA_SCANCODE, CIRA_UNICODE, CIRA_KeyShiftState, CIRA_KeyToggleState},
                               {CIRA_SCANCODE, CIRA_UNICODE+0x20, CIRA_KeyShiftState, CIRA_KeyToggleState}};

#else
#if CIRA_UNICODE>0x60 && CIRA_UNICODE<0x7b == 1
                      // ScanCode, UnicodeChar, KeyShiftState, KeyToggleState
    EFI_KEY_DATA      Key[] = {{CIRA_SCANCODE, CIRA_UNICODE-0x20, CIRA_KeyShiftState, CIRA_KeyToggleState},
                               {CIRA_SCANCODE, CIRA_UNICODE, CIRA_KeyShiftState, CIRA_KeyToggleState}};
#else
    EFI_KEY_DATA      Key[] = {{CIRA_SCANCODE, CIRA_UNICODE, CIRA_KeyShiftState, CIRA_KeyToggleState}};
#endif
#endif

        EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleTextInEX;


        Status = gBS->HandleProtocol(gST->ConsoleInHandle,
                      &gEfiSimpleTextInExProtocolGuid, (void*)&SimpleTextInEX);

        if (EFI_ERROR(Status)) return FALSE;
        PostManagerDisplayPostMessage(L"Press <CTRL + ALT + F1> Remote Assistance");
        Status = SimpleTextInEX->RegisterKeyNotify (SimpleTextInEX, &Key[0], 
                                                    &CIRACheckForKey, &CIRAKeyHandle[0]);
        if((CIRA_UNICODE>0x40 && CIRA_UNICODE<0x5b) || (CIRA_UNICODE>0x60 && CIRA_UNICODE<0x7b)){
            Status = SimpleTextInEX->RegisterKeyNotify (SimpleTextInEX, &Key[1], 
                                                    &CIRACheckForKey, &CIRAKeyHandle[1]);
        }

    }
#endif //CIRA_SUPPORT
    return FALSE;
}
//<AMI_PHDR_START>
//----------------------------------------------------------------------------
// Procedure:	MEProcessEnterSetup
//
// Description:	This function is a hook called when TSE determines
//              that it has to load the boot options in the boot
//              order. This function is available as ELINK.
//
// Input:               VOID
//
// Output:              VOID
//
//----------------------------------------------------------------------------
//<AMI_PHDR_END>
VOID MEProcessEnterSetup(VOID)
{
  EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleTextInEX;
  EFI_STATUS                        Status;

  Status = gBS->HandleProtocol(gST->ConsoleInHandle, 
                              &gEfiSimpleTextInExProtocolGuid, 
                              (void*)&SimpleTextInEX);
  if(EFI_ERROR(Status))
      return;

#if CIRA_SUPPORT
  Status = SimpleTextInEX->UnregisterKeyNotify (SimpleTextInEX, CIRAKeyHandle[0]);
  if((CIRA_UNICODE>0x40 && CIRA_UNICODE<0x5b) || (CIRA_UNICODE>0x60 && CIRA_UNICODE<0x7b)){
    Status = SimpleTextInEX->UnregisterKeyNotify (SimpleTextInEX, CIRAKeyHandle[1]);
  }
#endif

  Status = SimpleTextInEX->UnregisterKeyNotify (SimpleTextInEX, MebxKeyHandle[0]);
  if((MEBX_UNICODE>0x40 && MEBX_UNICODE<0x5b) || (MEBX_UNICODE>0x60 && MEBX_UNICODE<0x7b)){
    Status = SimpleTextInEX->UnregisterKeyNotify (SimpleTextInEX, MebxKeyHandle[1]);
  }
}
//*************************************************************************
//*************************************************************************
//**                                                                     **
//**        (C)Copyright 1985-2010, American Megatrends, Inc.            **
//**                                                                     **
//**                       All Rights Reserved.                          **
//**                                                                     **
//**      5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093           **
//**                                                                     **
//**                       Phone: (770)-246-8600                         **
//**                                                                     **
//*************************************************************************
//*************************************************************************