]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Ppi/PciCfg.h
Remove blank for function typedef, it will break generating doxygen document.
[mirror_edk2.git] / IntelFrameworkPkg / Include / Ppi / PciCfg.h
CommitLineData
caf45c98 1/** @file\r
2 This file declares PciCfg PPI used to access PCI configuration space in PEI\r
3\r
4 Copyright (c) 2006, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13 Module Name: PciCfg.h\r
14\r
15 @par Revision Reference:\r
16 This PPI is defined in PEI CIS\r
17 Version 0.91.\r
18\r
19**/\r
20\r
21#ifndef __PEI_PCI_CFG_H__\r
22#define __PEI_PCI_CFG_H__\r
23\r
7459094d 24#include <Pi/PiPeiCis.h>\r
24980534 25//\r
26// Get the common definitions for EFI_PEI_PCI_CFG_PPI_WIDTH.\r
27//\r
28#include <Ppi/PciCfg2.h>\r
7459094d 29\r
caf45c98 30#define EFI_PEI_PCI_CFG_PPI_INSTALLED_GUID \\r
31 { \\r
32 0xe1f2eba0, 0xf7b9, 0x4a26, {0x86, 0x20, 0x13, 0x12, 0x21, 0x64, 0x2a, 0x90 } \\r
33 }\r
34\r
35typedef struct _EFI_PEI_PCI_CFG_PPI EFI_PEI_PCI_CFG_PPI;\r
36\r
37#define PEI_PCI_CFG_ADDRESS(bus, dev, func, reg) ( \\r
38 (UINT64) ((((UINTN) bus) << 24) + (((UINTN) dev) << 16) + (((UINTN) func) << 8) + ((UINTN) reg)) \\r
39 ) & 0x00000000ffffffff\r
40\r
41/**\r
42 PCI read and write operation.\r
43\r
44 @param PeiServices An indirect pointer to the PEI Services Table\r
45 published by the PEI Foundation.\r
46 @param This Pointer to local data for the interface.\r
47 @param Width The width of the access. Enumerated in bytes.\r
48 @param Address The physical address of the access.\r
49 @param Buffer A pointer to the buffer of data.\r
50\r
51 @retval EFI_SUCCESS The function completed successfully.\r
52 @retval EFI_NOT_YET_AVAILABLE The service has not been installed.\r
53\r
54**/\r
55typedef\r
56EFI_STATUS\r
69686d56 57(EFIAPI *EFI_PEI_PCI_CFG_PPI_IO)(\r
caf45c98 58 IN EFI_PEI_SERVICES **PeiServices,\r
59 IN EFI_PEI_PCI_CFG_PPI *This,\r
60 IN EFI_PEI_PCI_CFG_PPI_WIDTH Width,\r
61 IN UINT64 Address,\r
62 IN OUT VOID *Buffer\r
63 );\r
64\r
65/**\r
66 PCI read-modify-write operation.\r
67\r
68 @param PeiServices An indirect pointer to the PEI Services Table\r
69 published by the PEI Foundation.\r
70 @param This Pointer to local data for the interface.\r
71 @param Width The width of the access. Enumerated in bytes.\r
72 @param Address The physical address of the access.\r
73 @param SetBits Value of the bits to set.\r
74 @param ClearBits Value of the bits to clear.\r
75\r
76 @retval EFI_SUCCESS The function completed successfully.\r
77\r
78**/\r
79typedef\r
80EFI_STATUS\r
69686d56 81(EFIAPI *EFI_PEI_PCI_CFG_PPI_RW)(\r
caf45c98 82 IN EFI_PEI_SERVICES **PeiServices,\r
83 IN EFI_PEI_PCI_CFG_PPI *This,\r
84 IN EFI_PEI_PCI_CFG_PPI_WIDTH Width,\r
85 IN UINT64 Address,\r
86 IN UINTN SetBits,\r
87 IN UINTN ClearBits\r
88 );\r
89\r
90/**\r
caf45c98 91 The EFI_PEI_PCI_CFG_PPI interfaces are used to abstract accesses to PCI \r
92 controllers behind a PCI root bridge controller.\r
93\r
94 @param Read\r
95 PCI read services. See the Read() function description.\r
96\r
97 @param Write\r
98 PCI write services. See the Write() function description.\r
99\r
100 @param Modify\r
101 PCI read-modify-write services. See the Modify() function description.\r
102\r
103**/\r
104struct _EFI_PEI_PCI_CFG_PPI {\r
105 EFI_PEI_PCI_CFG_PPI_IO Read;\r
106 EFI_PEI_PCI_CFG_PPI_IO Write;\r
107 EFI_PEI_PCI_CFG_PPI_RW Modify;\r
108};\r
109\r
110extern EFI_GUID gEfiPciCfgPpiInServiceTableGuid;\r
111\r
112#endif\r