hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
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
/** @file
Header file for the PCH SPI Runtime Driver.
 
Copyright (c) 2013-2015 Intel Corporation.
 
SPDX-License-Identifier: BSD-2-Clause-Patent
 
**/
 
#ifndef _PCH_SPI_H_
#define _PCH_SPI_H_
 
#include <Library/PcdLib.h>
#include <Library/UefiLib.h>
#include <Library/DebugLib.h>
#include <Library/UefiRuntimeLib.h>
#include <Library/S3BootScriptLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/DxeServicesTableLib.h>
#include <Library/UefiRuntimeServicesTableLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Protocol/Spi.h>
#include "SpiCommon.h"
#include <Library/PciExpressLib.h>
#include <IntelQNCRegs.h>
#include <Library/IntelQNCLib.h>
#include <Library/QNCAccessLib.h>
#include <Library/TimerLib.h>
 
#define EFI_INTERNAL_POINTER  0x00000004
 
 
//
// Function prototypes used by the SPI protocol.
//
VOID
PchSpiVirtualddressChangeEvent (
  IN EFI_EVENT              Event,
  IN VOID                   *Context
  )
/*++
 
Routine Description:
 
  Fixup internal data pointers so that the services can be called in virtual mode.
 
Arguments:
 
  Event     The event registered.
  Context   Event context. Not used in this event handler.
 
Returns:
 
  None.
 
--*/
;
 
VOID
EFIAPI
SpiPhaseInit (
  VOID
  )
/*++
Routine Description:
 
  This function is a hook for Spi Dxe phase specific initialization
 
Arguments:
 
  None
 
Returns:
 
  None
 
--*/
;
#endif