]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciCommand.c
Retired PciIncompatibleDeviceSupportLib from IntelFrameworkModulePkg.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Pci / PciBusDxe / PciCommand.c
CommitLineData
97404058 1/** @file\r
8e8227d1 2 PCI command register operations supporting functions implementation for PCI Bus module.\r
ead42efc 3\r
8e8227d1 4Copyright (c) 2006 - 2009, Intel Corporation\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
ead42efc 12\r
8e8227d1 13**/\r
ead42efc 14\r
19efd9ec 15#include "PciBus.h"\r
ead42efc 16\r
a3b8e257 17/**\r
18 Operate the PCI register via PciIo function interface.\r
8e8227d1 19\r
20 @param PciIoDevice Pointer to instance of PCI_IO_DEVICE.\r
21 @param Command Operator command.\r
a3b8e257 22 @param Offset The address within the PCI configuration space for the PCI controller.\r
8e8227d1 23 @param Operation Type of Operation.\r
24 @param PtrCommand Return buffer holding old PCI command, if operation is not EFI_SET_REGISTER.\r
25\r
26 @return Status of PciIo operation.\r
27\r
a3b8e257 28**/\r
ead42efc 29EFI_STATUS\r
30PciOperateRegister (\r
31 IN PCI_IO_DEVICE *PciIoDevice,\r
32 IN UINT16 Command,\r
33 IN UINT8 Offset,\r
34 IN UINT8 Operation,\r
35 OUT UINT16 *PtrCommand\r
36 )\r
ead42efc 37{\r
38 UINT16 OldCommand;\r
39 EFI_STATUS Status;\r
40 EFI_PCI_IO_PROTOCOL *PciIo;\r
41\r
42 OldCommand = 0;\r
43 PciIo = &PciIoDevice->PciIo;\r
44\r
45 if (Operation != EFI_SET_REGISTER) {\r
9eb130ff 46 Status = PciIo->Pci.Read (\r
47 PciIo,\r
48 EfiPciIoWidthUint16,\r
49 Offset,\r
50 1,\r
51 &OldCommand\r
52 );\r
ead42efc 53\r
54 if (Operation == EFI_GET_REGISTER) {\r
55 *PtrCommand = OldCommand;\r
56 return Status;\r
57 }\r
58 }\r
59\r
60 if (Operation == EFI_ENABLE_REGISTER) {\r
61 OldCommand = (UINT16) (OldCommand | Command);\r
62 } else if (Operation == EFI_DISABLE_REGISTER) {\r
63 OldCommand = (UINT16) (OldCommand & ~(Command));\r
64 } else {\r
65 OldCommand = Command;\r
66 }\r
67\r
9eb130ff 68 return PciIo->Pci.Write (\r
69 PciIo,\r
70 EfiPciIoWidthUint16,\r
71 Offset,\r
72 1,\r
73 &OldCommand\r
74 );\r
ead42efc 75}\r
76\r
a3b8e257 77/**\r
8e8227d1 78 Check the cpability supporting by given device.\r
79\r
80 @param PciIoDevice Pointer to instance of PCI_IO_DEVICE.\r
81\r
82 @retval TRUE Cpability supportted.\r
83 @retval FALSE Cpability not supportted.\r
84\r
a3b8e257 85**/\r
ead42efc 86BOOLEAN\r
87PciCapabilitySupport (\r
88 IN PCI_IO_DEVICE *PciIoDevice\r
89 )\r
ead42efc 90{\r
5326528b 91 if ((PciIoDevice->Pci.Hdr.Status & EFI_PCI_STATUS_CAPABILITY) != 0) {\r
ead42efc 92 return TRUE;\r
93 }\r
94\r
95 return FALSE;\r
96}\r
97\r
a3b8e257 98/**\r
8e8227d1 99 Locate capability register block per capability ID.\r
100\r
101 @param PciIoDevice A pointer to the PCI_IO_DEVICE.\r
102 @param CapId The capability ID.\r
103 @param Offset A pointer to the offset returned.\r
104 @param NextRegBlock A pointer to the next block returned.\r
105\r
106 @retval EFI_SUCCESS Successfuly located capability register block.\r
107 @retval EFI_UNSUPPORTED Pci device does not support capability.\r
a3b8e257 108 @retval EFI_NOT_FOUND Pci device support but can not find register block.\r
8e8227d1 109\r
a3b8e257 110**/\r
ead42efc 111EFI_STATUS\r
112LocateCapabilityRegBlock (\r
113 IN PCI_IO_DEVICE *PciIoDevice,\r
114 IN UINT8 CapId,\r
115 IN OUT UINT8 *Offset,\r
116 OUT UINT8 *NextRegBlock OPTIONAL\r
117 )\r
ead42efc 118{\r
119 UINT8 CapabilityPtr;\r
120 UINT16 CapabilityEntry;\r
121 UINT8 CapabilityID;\r
122\r
123 //\r
124 // To check the cpability of this device supports\r
125 //\r
126 if (!PciCapabilitySupport (PciIoDevice)) {\r
127 return EFI_UNSUPPORTED;\r
128 }\r
129\r
130 if (*Offset != 0) {\r
131 CapabilityPtr = *Offset;\r
132 } else {\r
133\r
134 CapabilityPtr = 0;\r
135 if (IS_CARDBUS_BRIDGE (&PciIoDevice->Pci)) {\r
136\r
9eb130ff 137 PciIoDevice->PciIo.Pci.Read (\r
138 &PciIoDevice->PciIo,\r
139 EfiPciIoWidthUint8,\r
140 EFI_PCI_CARDBUS_BRIDGE_CAPABILITY_PTR,\r
141 1,\r
142 &CapabilityPtr\r
143 );\r
ead42efc 144 } else {\r
145\r
9eb130ff 146 PciIoDevice->PciIo.Pci.Read (\r
147 &PciIoDevice->PciIo,\r
148 EfiPciIoWidthUint8,\r
149 PCI_CAPBILITY_POINTER_OFFSET,\r
150 1,\r
151 &CapabilityPtr\r
152 );\r
ead42efc 153 }\r
154 }\r
155\r
f680f867 156 while ((CapabilityPtr >= 0x40) && ((CapabilityPtr & 0x03) == 0x00)) {\r
9eb130ff 157 PciIoDevice->PciIo.Pci.Read (\r
158 &PciIoDevice->PciIo,\r
159 EfiPciIoWidthUint16,\r
160 CapabilityPtr,\r
161 1,\r
162 &CapabilityEntry\r
163 );\r
ead42efc 164\r
165 CapabilityID = (UINT8) CapabilityEntry;\r
166\r
167 if (CapabilityID == CapId) {\r
168 *Offset = CapabilityPtr;\r
169 if (NextRegBlock != NULL) {\r
170 *NextRegBlock = (UINT8) (CapabilityEntry >> 8);\r
171 }\r
172\r
173 return EFI_SUCCESS;\r
174 }\r
175\r
176 CapabilityPtr = (UINT8) (CapabilityEntry >> 8);\r
177 }\r
178\r
179 return EFI_NOT_FOUND;\r
180}\r
a3b8e257 181\r