]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Library/PeiPciSegmentLibPciCfg2/PciSegmentLib.c
Update the copyright notice format
[mirror_edk2.git] / MdePkg / Library / PeiPciSegmentLibPciCfg2 / PciSegmentLib.c
... / ...
CommitLineData
1/** @file\r
2 PCI Segment Library implementation using PCI CFG2 PPI.\r
3\r
4 Copyright (c) 2007 - 2009, Intel Corporation All rights\r
5 reserved. This program and the accompanying materials are\r
6 licensed and made available under the terms and conditions of\r
7 the BSD License which accompanies this distribution. The full\r
8 text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10 \r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#include <PiPei.h>\r
17\r
18#include <Ppi/PciCfg2.h>\r
19\r
20#include <Library/PciSegmentLib.h>\r
21#include <Library/BaseLib.h>\r
22#include <Library/PeiServicesTablePointerLib.h>\r
23#include <Library/DebugLib.h>\r
24#include <Library/PeiServicesLib.h>\r
25\r
26/**\r
27 Assert the validity of a PCI Segment address.\r
28 A valid PCI Segment address should not contain 1's in bits 28..31 and 48..63\r
29\r
30 @param A The address to validate.\r
31 @param M Additional bits to assert to be zero.\r
32\r
33**/\r
34#define ASSERT_INVALID_PCI_SEGMENT_ADDRESS(A,M) \\r
35 ASSERT (((A) & (0xffff0000f0000000ULL | (M))) == 0)\r
36\r
37/**\r
38 Translate PCI Lib address into format of PCI CFG2 PPI.\r
39\r
40 @param A Address that encodes the PCI Bus, Device, Function and\r
41 Register.\r
42\r
43**/\r
44#define PCI_TO_PCICFG2_ADDRESS(A) \\r
45 ((((UINT32)(A) << 4) & 0xff000000) | (((UINT32)(A) >> 4) & 0x00000700) | (((UINT32)(A) << 1) & 0x001f0000) | (LShiftU64((A) & 0xfff, 32)))\r
46\r
47/**\r
48 Gets PCI CFG2 PPI.\r
49\r
50 This internal function retrieves PCI CFG2 PPI from PPI database.\r
51\r
52 @param Address Address that encodes the PCI Segment, Bus, Device, Function and Register.\r
53\r
54 @return The pointer to PCI CFG2 PPI.\r
55\r
56**/\r
57EFI_PEI_PCI_CFG2_PPI *\r
58InternalGetPciCfg2Ppi (\r
59 IN UINT64 Address\r
60 )\r
61{\r
62 EFI_STATUS Status;\r
63 UINTN Instance;\r
64 EFI_PEI_PCI_CFG2_PPI *PciCfg2Ppi;\r
65 UINT64 SegmentNumber;\r
66\r
67 Instance = 0;\r
68 PciCfg2Ppi = NULL;\r
69 SegmentNumber = BitFieldRead64 (Address, 32, 63);\r
70\r
71 //\r
72 // Loop through all instances of the PPI and match segment number\r
73 //\r
74 do {\r
75 Status = PeiServicesLocatePpi(\r
76 &gEfiPciCfg2PpiGuid,\r
77 Instance,\r
78 NULL,\r
79 (VOID**) &PciCfg2Ppi\r
80 );\r
81 ASSERT_EFI_ERROR (Status);\r
82 Instance++;\r
83 } while (PciCfg2Ppi->Segment != SegmentNumber);\r
84\r
85 return PciCfg2Ppi;\r
86}\r
87\r
88/**\r
89 Internal worker function to read a PCI configuration register.\r
90\r
91 This function wraps EFI_PEI_PCI_CFG2_PPI.Read() service.\r
92 It reads and returns the PCI configuration register specified by Address,\r
93 the width of data is specified by Width.\r
94\r
95 @param Address Address that encodes the PCI Bus, Device, Function and\r
96 Register.\r
97 @param Width Width of data to read\r
98\r
99 @return The value read from the PCI configuration register.\r
100\r
101**/\r
102UINT32\r
103PeiPciSegmentLibPciCfg2ReadWorker (\r
104 IN UINT64 Address,\r
105 IN EFI_PEI_PCI_CFG_PPI_WIDTH Width\r
106 )\r
107{\r
108 UINT32 Data;\r
109 CONST EFI_PEI_PCI_CFG2_PPI *PciCfg2Ppi;\r
110 UINT64 PciCfg2Address;\r
111\r
112 PciCfg2Ppi = InternalGetPciCfg2Ppi (Address);\r
113 PciCfg2Address = PCI_TO_PCICFG2_ADDRESS (Address);\r
114 PciCfg2Ppi->Read (\r
115 GetPeiServicesTablePointer (),\r
116 PciCfg2Ppi,\r
117 Width,\r
118 PciCfg2Address,\r
119 &Data\r
120 );\r
121\r
122 return Data;\r
123}\r
124\r
125/**\r
126 Internal worker function to writes a PCI configuration register.\r
127\r
128 This function wraps EFI_PEI_PCI_CFG2_PPI.Write() service.\r
129 It writes the PCI configuration register specified by Address with the\r
130 value specified by Data. The width of data is specifed by Width.\r
131 Data is returned.\r
132\r
133 @param Address Address that encodes the PCI Bus, Device, Function and\r
134 Register.\r
135 @param Width Width of data to write\r
136 @param Data The value to write.\r
137\r
138 @return The value written to the PCI configuration register.\r
139\r
140**/\r
141UINT32\r
142PeiPciSegmentLibPciCfg2WriteWorker (\r
143 IN UINT64 Address,\r
144 IN EFI_PEI_PCI_CFG_PPI_WIDTH Width,\r
145 IN UINT32 Data\r
146 )\r
147{\r
148 CONST EFI_PEI_PCI_CFG2_PPI *PciCfg2Ppi;\r
149 UINT64 PciCfg2Address;\r
150\r
151 PciCfg2Ppi = InternalGetPciCfg2Ppi (Address);\r
152 PciCfg2Address = PCI_TO_PCICFG2_ADDRESS (Address);\r
153 PciCfg2Ppi->Write (\r
154 GetPeiServicesTablePointer (),\r
155 PciCfg2Ppi,\r
156 Width,\r
157 PciCfg2Address,\r
158 &Data\r
159 );\r
160\r
161 return Data;\r
162}\r
163\r
164/**\r
165 Register a PCI device so PCI configuration registers may be accessed after \r
166 SetVirtualAddressMap().\r
167 \r
168 If any reserved bits in Address are set, then ASSERT().\r
169\r
170 @param Address Address that encodes the PCI Bus, Device, Function and\r
171 Register.\r
172 \r
173 @retval RETURN_SUCCESS The PCI device was registered for runtime access.\r
174 @retval RETURN_UNSUPPORTED An attempt was made to call this function \r
175 after ExitBootServices().\r
176 @retval RETURN_UNSUPPORTED The resources required to access the PCI device\r
177 at runtime could not be mapped.\r
178 @retval RETURN_OUT_OF_RESOURCES There are not enough resources available to\r
179 complete the registration.\r
180\r
181**/\r
182RETURN_STATUS\r
183EFIAPI\r
184PciSegmentRegisterForRuntimeAccess (\r
185 IN UINTN Address\r
186 )\r
187{\r
188 ASSERT_INVALID_PCI_SEGMENT_ADDRESS (Address, 0);\r
189 return RETURN_UNSUPPORTED;\r
190}\r
191\r
192/**\r
193 Reads an 8-bit PCI configuration register.\r
194\r
195 Reads and returns the 8-bit PCI configuration register specified by Address.\r
196 This function must guarantee that all PCI read and write operations are serialized.\r
197 \r
198 If any reserved bits in Address are set, then ASSERT().\r
199 \r
200 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
201\r
202 @return The 8-bit PCI configuration register specified by Address.\r
203\r
204**/\r
205UINT8\r
206EFIAPI\r
207PciSegmentRead8 (\r
208 IN UINT64 Address\r
209 )\r
210{\r
211 ASSERT_INVALID_PCI_SEGMENT_ADDRESS (Address, 0);\r
212\r
213 return (UINT8) PeiPciSegmentLibPciCfg2ReadWorker (Address, EfiPeiPciCfgWidthUint8);\r
214}\r
215\r
216/**\r
217 Writes an 8-bit PCI configuration register.\r
218\r
219 Writes the 8-bit PCI configuration register specified by Address with the value specified by Value.\r
220 Value is returned. This function must guarantee that all PCI read and write operations are serialized.\r
221 \r
222 If any reserved bits in Address are set, then ASSERT().\r
223\r
224 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
225 @param Value The value to write.\r
226\r
227 @return The value written to the PCI configuration register.\r
228\r
229**/\r
230UINT8\r
231EFIAPI\r
232PciSegmentWrite8 (\r
233 IN UINT64 Address,\r
234 IN UINT8 Value\r
235 )\r
236{\r
237 ASSERT_INVALID_PCI_SEGMENT_ADDRESS (Address, 0);\r
238\r
239 return (UINT8) PeiPciSegmentLibPciCfg2WriteWorker (Address, EfiPeiPciCfgWidthUint8, Value);\r
240}\r
241\r
242/**\r
243 Performs a bitwise OR of an 8-bit PCI configuration register with an 8-bit value.\r
244\r
245 Reads the 8-bit PCI configuration register specified by Address,\r
246 performs a bitwise OR between the read result and the value specified by OrData,\r
247 and writes the result to the 8-bit PCI configuration register specified by Address.\r
248 The value written to the PCI configuration register is returned.\r
249 This function must guarantee that all PCI read and write operations are serialized.\r
250 \r
251 If any reserved bits in Address are set, then ASSERT().\r
252\r
253 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
254 @param OrData The value to OR with the PCI configuration register.\r
255\r
256 @return The value written to the PCI configuration register.\r
257\r
258**/\r
259UINT8\r
260EFIAPI\r
261PciSegmentOr8 (\r
262 IN UINT64 Address,\r
263 IN UINT8 OrData\r
264 )\r
265{\r
266 return PciSegmentWrite8 (Address, (UINT8) (PciSegmentRead8 (Address) | OrData));\r
267}\r
268\r
269/**\r
270 Performs a bitwise AND of an 8-bit PCI configuration register with an 8-bit value.\r
271\r
272 Reads the 8-bit PCI configuration register specified by Address,\r
273 performs a bitwise AND between the read result and the value specified by AndData,\r
274 and writes the result to the 8-bit PCI configuration register specified by Address.\r
275 The value written to the PCI configuration register is returned.\r
276 This function must guarantee that all PCI read and write operations are serialized.\r
277 If any reserved bits in Address are set, then ASSERT().\r
278\r
279 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
280 @param AndData The value to AND with the PCI configuration register.\r
281\r
282 @return The value written to the PCI configuration register.\r
283\r
284**/\r
285UINT8\r
286EFIAPI\r
287PciSegmentAnd8 (\r
288 IN UINT64 Address,\r
289 IN UINT8 AndData\r
290 )\r
291{\r
292 return PciSegmentWrite8 (Address, (UINT8) (PciSegmentRead8 (Address) & AndData));\r
293}\r
294\r
295/**\r
296 Performs a bitwise AND of an 8-bit PCI configuration register with an 8-bit value,\r
297 followed a bitwise OR with another 8-bit value.\r
298 \r
299 Reads the 8-bit PCI configuration register specified by Address,\r
300 performs a bitwise AND between the read result and the value specified by AndData,\r
301 performs a bitwise OR between the result of the AND operation and the value specified by OrData,\r
302 and writes the result to the 8-bit PCI configuration register specified by Address.\r
303 The value written to the PCI configuration register is returned.\r
304 This function must guarantee that all PCI read and write operations are serialized.\r
305 \r
306 If any reserved bits in Address are set, then ASSERT().\r
307\r
308 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
309 @param AndData The value to AND with the PCI configuration register.\r
310 @param OrData The value to OR with the PCI configuration register.\r
311\r
312 @return The value written to the PCI configuration register.\r
313\r
314**/\r
315UINT8\r
316EFIAPI\r
317PciSegmentAndThenOr8 (\r
318 IN UINT64 Address,\r
319 IN UINT8 AndData,\r
320 IN UINT8 OrData\r
321 )\r
322{\r
323 return PciSegmentWrite8 (Address, (UINT8) ((PciSegmentRead8 (Address) & AndData) | OrData));\r
324}\r
325\r
326/**\r
327 Reads a bit field of a PCI configuration register.\r
328\r
329 Reads the bit field in an 8-bit PCI configuration register. The bit field is\r
330 specified by the StartBit and the EndBit. The value of the bit field is\r
331 returned.\r
332\r
333 If any reserved bits in Address are set, then ASSERT().\r
334 If StartBit is greater than 7, then ASSERT().\r
335 If EndBit is greater than 7, then ASSERT().\r
336 If EndBit is less than StartBit, then ASSERT().\r
337\r
338 @param Address PCI configuration register to read.\r
339 @param StartBit The ordinal of the least significant bit in the bit field.\r
340 Range 0..7.\r
341 @param EndBit The ordinal of the most significant bit in the bit field.\r
342 Range 0..7.\r
343\r
344 @return The value of the bit field read from the PCI configuration register.\r
345\r
346**/\r
347UINT8\r
348EFIAPI\r
349PciSegmentBitFieldRead8 (\r
350 IN UINT64 Address,\r
351 IN UINTN StartBit,\r
352 IN UINTN EndBit\r
353 )\r
354{\r
355 return BitFieldRead8 (PciSegmentRead8 (Address), StartBit, EndBit);\r
356}\r
357\r
358/**\r
359 Writes a bit field to a PCI configuration register.\r
360\r
361 Writes Value to the bit field of the PCI configuration register. The bit\r
362 field is specified by the StartBit and the EndBit. All other bits in the\r
363 destination PCI configuration register are preserved. The new value of the\r
364 8-bit register is returned.\r
365\r
366 If any reserved bits in Address are set, then ASSERT().\r
367 If StartBit is greater than 7, then ASSERT().\r
368 If EndBit is greater than 7, then ASSERT().\r
369 If EndBit is less than StartBit, then ASSERT().\r
370\r
371 @param Address PCI configuration register to write.\r
372 @param StartBit The ordinal of the least significant bit in the bit field.\r
373 Range 0..7.\r
374 @param EndBit The ordinal of the most significant bit in the bit field.\r
375 Range 0..7.\r
376 @param Value New value of the bit field.\r
377\r
378 @return The value written back to the PCI configuration register.\r
379\r
380**/\r
381UINT8\r
382EFIAPI\r
383PciSegmentBitFieldWrite8 (\r
384 IN UINT64 Address,\r
385 IN UINTN StartBit,\r
386 IN UINTN EndBit,\r
387 IN UINT8 Value\r
388 )\r
389{\r
390 return PciSegmentWrite8 (\r
391 Address,\r
392 BitFieldWrite8 (PciSegmentRead8 (Address), StartBit, EndBit, Value)\r
393 );\r
394}\r
395\r
396/**\r
397 Reads a bit field in an 8-bit PCI configuration, performs a bitwise OR, and\r
398 writes the result back to the bit field in the 8-bit port.\r
399\r
400 Reads the 8-bit PCI configuration register specified by Address, performs a\r
401 bitwise OR between the read result and the value specified by\r
402 OrData, and writes the result to the 8-bit PCI configuration register\r
403 specified by Address. The value written to the PCI configuration register is\r
404 returned. This function must guarantee that all PCI read and write operations\r
405 are serialized. Extra left bits in OrData are stripped.\r
406\r
407 If any reserved bits in Address are set, then ASSERT().\r
408 If StartBit is greater than 7, then ASSERT().\r
409 If EndBit is greater than 7, then ASSERT().\r
410 If EndBit is less than StartBit, then ASSERT().\r
411\r
412 @param Address PCI configuration register to write.\r
413 @param StartBit The ordinal of the least significant bit in the bit field.\r
414 Range 0..7.\r
415 @param EndBit The ordinal of the most significant bit in the bit field.\r
416 Range 0..7.\r
417 @param OrData The value to OR with the PCI configuration register.\r
418\r
419 @return The value written back to the PCI configuration register.\r
420\r
421**/\r
422UINT8\r
423EFIAPI\r
424PciSegmentBitFieldOr8 (\r
425 IN UINT64 Address,\r
426 IN UINTN StartBit,\r
427 IN UINTN EndBit,\r
428 IN UINT8 OrData\r
429 )\r
430{\r
431 return PciSegmentWrite8 (\r
432 Address,\r
433 BitFieldOr8 (PciSegmentRead8 (Address), StartBit, EndBit, OrData)\r
434 );\r
435}\r
436\r
437/**\r
438 Reads a bit field in an 8-bit PCI configuration register, performs a bitwise\r
439 AND, and writes the result back to the bit field in the 8-bit register.\r
440\r
441 Reads the 8-bit PCI configuration register specified by Address, performs a\r
442 bitwise AND between the read result and the value specified by AndData, and\r
443 writes the result to the 8-bit PCI configuration register specified by\r
444 Address. The value written to the PCI configuration register is returned.\r
445 This function must guarantee that all PCI read and write operations are\r
446 serialized. Extra left bits in AndData are stripped.\r
447\r
448 If any reserved bits in Address are set, then ASSERT().\r
449 If StartBit is greater than 7, then ASSERT().\r
450 If EndBit is greater than 7, then ASSERT().\r
451 If EndBit is less than StartBit, then ASSERT().\r
452\r
453 @param Address PCI configuration register to write.\r
454 @param StartBit The ordinal of the least significant bit in the bit field.\r
455 Range 0..7.\r
456 @param EndBit The ordinal of the most significant bit in the bit field.\r
457 Range 0..7.\r
458 @param AndData The value to AND with the PCI configuration register.\r
459\r
460 @return The value written back to the PCI configuration register.\r
461\r
462**/\r
463UINT8\r
464EFIAPI\r
465PciSegmentBitFieldAnd8 (\r
466 IN UINT64 Address,\r
467 IN UINTN StartBit,\r
468 IN UINTN EndBit,\r
469 IN UINT8 AndData\r
470 )\r
471{\r
472 return PciSegmentWrite8 (\r
473 Address,\r
474 BitFieldAnd8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData)\r
475 );\r
476}\r
477\r
478/**\r
479 Reads a bit field in an 8-bit port, performs a bitwise AND followed by a\r
480 bitwise OR, and writes the result back to the bit field in the\r
481 8-bit port.\r
482\r
483 Reads the 8-bit PCI configuration register specified by Address, performs a\r
484 bitwise AND followed by a bitwise OR between the read result and\r
485 the value specified by AndData, and writes the result to the 8-bit PCI\r
486 configuration register specified by Address. The value written to the PCI\r
487 configuration register is returned. This function must guarantee that all PCI\r
488 read and write operations are serialized. Extra left bits in both AndData and\r
489 OrData are stripped.\r
490\r
491 If any reserved bits in Address are set, then ASSERT().\r
492 If StartBit is greater than 7, then ASSERT().\r
493 If EndBit is greater than 7, then ASSERT().\r
494 If EndBit is less than StartBit, then ASSERT().\r
495\r
496 @param Address PCI configuration register to write.\r
497 @param StartBit The ordinal of the least significant bit in the bit field.\r
498 Range 0..7.\r
499 @param EndBit The ordinal of the most significant bit in the bit field.\r
500 Range 0..7.\r
501 @param AndData The value to AND with the PCI configuration register.\r
502 @param OrData The value to OR with the result of the AND operation.\r
503\r
504 @return The value written back to the PCI configuration register.\r
505\r
506**/\r
507UINT8\r
508EFIAPI\r
509PciSegmentBitFieldAndThenOr8 (\r
510 IN UINT64 Address,\r
511 IN UINTN StartBit,\r
512 IN UINTN EndBit,\r
513 IN UINT8 AndData,\r
514 IN UINT8 OrData\r
515 )\r
516{\r
517 return PciSegmentWrite8 (\r
518 Address,\r
519 BitFieldAndThenOr8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData, OrData)\r
520 );\r
521}\r
522\r
523/**\r
524 Reads a 16-bit PCI configuration register.\r
525\r
526 Reads and returns the 16-bit PCI configuration register specified by Address.\r
527 This function must guarantee that all PCI read and write operations are serialized.\r
528 \r
529 If any reserved bits in Address are set, then ASSERT().\r
530 If Address is not aligned on a 16-bit boundary, then ASSERT().\r
531 \r
532 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
533\r
534 @return The 16-bit PCI configuration register specified by Address.\r
535\r
536**/\r
537UINT16\r
538EFIAPI\r
539PciSegmentRead16 (\r
540 IN UINT64 Address\r
541 )\r
542{\r
543 ASSERT_INVALID_PCI_SEGMENT_ADDRESS (Address, 1);\r
544\r
545 return (UINT16) PeiPciSegmentLibPciCfg2ReadWorker (Address, EfiPeiPciCfgWidthUint16);\r
546}\r
547\r
548/**\r
549 Writes a 16-bit PCI configuration register.\r
550\r
551 Writes the 16-bit PCI configuration register specified by Address with the value specified by Value.\r
552 Value is returned. This function must guarantee that all PCI read and write operations are serialized.\r
553 \r
554 If any reserved bits in Address are set, then ASSERT().\r
555 If Address is not aligned on a 16-bit boundary, then ASSERT().\r
556\r
557 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
558 @param Value The value to write.\r
559\r
560 @return The parameter of Value.\r
561\r
562**/\r
563UINT16\r
564EFIAPI\r
565PciSegmentWrite16 (\r
566 IN UINT64 Address,\r
567 IN UINT16 Value\r
568 )\r
569{\r
570 ASSERT_INVALID_PCI_SEGMENT_ADDRESS (Address, 1);\r
571\r
572 return (UINT16) PeiPciSegmentLibPciCfg2WriteWorker (Address, EfiPeiPciCfgWidthUint16, Value);\r
573}\r
574\r
575/**\r
576 Performs a bitwise OR of a 16-bit PCI configuration register with\r
577 a 16-bit value.\r
578\r
579 Reads the 16-bit PCI configuration register specified by Address, performs a\r
580 bitwise OR between the read result and the value specified by\r
581 OrData, and writes the result to the 16-bit PCI configuration register\r
582 specified by Address. The value written to the PCI configuration register is\r
583 returned. This function must guarantee that all PCI read and write operations\r
584 are serialized.\r
585\r
586 If any reserved bits in Address are set, then ASSERT().\r
587 If Address is not aligned on a 16-bit boundary, then ASSERT().\r
588\r
589 @param Address Address that encodes the PCI Segment, Bus, Device, Function and\r
590 Register.\r
591 @param OrData The value to OR with the PCI configuration register.\r
592\r
593 @return The value written back to the PCI configuration register.\r
594\r
595**/\r
596UINT16\r
597EFIAPI\r
598PciSegmentOr16 (\r
599 IN UINT64 Address,\r
600 IN UINT16 OrData\r
601 )\r
602{\r
603 return PciSegmentWrite16 (Address, (UINT16) (PciSegmentRead16 (Address) | OrData));\r
604}\r
605\r
606/**\r
607 Performs a bitwise AND of a 16-bit PCI configuration register with a 16-bit value.\r
608\r
609 Reads the 16-bit PCI configuration register specified by Address,\r
610 performs a bitwise AND between the read result and the value specified by AndData,\r
611 and writes the result to the 16-bit PCI configuration register specified by Address.\r
612 The value written to the PCI configuration register is returned.\r
613 This function must guarantee that all PCI read and write operations are serialized.\r
614 \r
615 If any reserved bits in Address are set, then ASSERT().\r
616 If Address is not aligned on a 16-bit boundary, then ASSERT().\r
617 \r
618 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
619 @param AndData The value to AND with the PCI configuration register.\r
620\r
621 @return The value written to the PCI configuration register.\r
622\r
623**/\r
624UINT16\r
625EFIAPI\r
626PciSegmentAnd16 (\r
627 IN UINT64 Address,\r
628 IN UINT16 AndData\r
629 )\r
630{\r
631 return PciSegmentWrite16 (Address, (UINT16) (PciSegmentRead16 (Address) & AndData));\r
632}\r
633\r
634/**\r
635 Performs a bitwise AND of a 16-bit PCI configuration register with a 16-bit value,\r
636 followed a bitwise OR with another 16-bit value.\r
637 \r
638 Reads the 16-bit PCI configuration register specified by Address,\r
639 performs a bitwise AND between the read result and the value specified by AndData,\r
640 performs a bitwise OR between the result of the AND operation and the value specified by OrData,\r
641 and writes the result to the 16-bit PCI configuration register specified by Address.\r
642 The value written to the PCI configuration register is returned.\r
643 This function must guarantee that all PCI read and write operations are serialized.\r
644 \r
645 If any reserved bits in Address are set, then ASSERT().\r
646 If Address is not aligned on a 16-bit boundary, then ASSERT().\r
647\r
648 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
649 @param AndData The value to AND with the PCI configuration register.\r
650 @param OrData The value to OR with the PCI configuration register.\r
651\r
652 @return The value written to the PCI configuration register.\r
653\r
654**/\r
655UINT16\r
656EFIAPI\r
657PciSegmentAndThenOr16 (\r
658 IN UINT64 Address,\r
659 IN UINT16 AndData,\r
660 IN UINT16 OrData\r
661 )\r
662{\r
663 return PciSegmentWrite16 (Address, (UINT16) ((PciSegmentRead16 (Address) & AndData) | OrData));\r
664}\r
665\r
666/**\r
667 Reads a bit field of a PCI configuration register.\r
668\r
669 Reads the bit field in a 16-bit PCI configuration register. The bit field is\r
670 specified by the StartBit and the EndBit. The value of the bit field is\r
671 returned.\r
672\r
673 If any reserved bits in Address are set, then ASSERT().\r
674 If Address is not aligned on a 16-bit boundary, then ASSERT().\r
675 If StartBit is greater than 15, then ASSERT().\r
676 If EndBit is greater than 15, then ASSERT().\r
677 If EndBit is less than StartBit, then ASSERT().\r
678\r
679 @param Address PCI configuration register to read.\r
680 @param StartBit The ordinal of the least significant bit in the bit field.\r
681 Range 0..15.\r
682 @param EndBit The ordinal of the most significant bit in the bit field.\r
683 Range 0..15.\r
684\r
685 @return The value of the bit field read from the PCI configuration register.\r
686\r
687**/\r
688UINT16\r
689EFIAPI\r
690PciSegmentBitFieldRead16 (\r
691 IN UINT64 Address,\r
692 IN UINTN StartBit,\r
693 IN UINTN EndBit\r
694 )\r
695{\r
696 return BitFieldRead16 (PciSegmentRead16 (Address), StartBit, EndBit);\r
697}\r
698\r
699/**\r
700 Writes a bit field to a PCI configuration register.\r
701\r
702 Writes Value to the bit field of the PCI configuration register. The bit\r
703 field is specified by the StartBit and the EndBit. All other bits in the\r
704 destination PCI configuration register are preserved. The new value of the\r
705 16-bit register is returned.\r
706\r
707 If any reserved bits in Address are set, then ASSERT().\r
708 If Address is not aligned on a 16-bit boundary, then ASSERT().\r
709 If StartBit is greater than 15, then ASSERT().\r
710 If EndBit is greater than 15, then ASSERT().\r
711 If EndBit is less than StartBit, then ASSERT().\r
712\r
713 @param Address PCI configuration register to write.\r
714 @param StartBit The ordinal of the least significant bit in the bit field.\r
715 Range 0..15.\r
716 @param EndBit The ordinal of the most significant bit in the bit field.\r
717 Range 0..15.\r
718 @param Value New value of the bit field.\r
719\r
720 @return The value written back to the PCI configuration register.\r
721\r
722**/\r
723UINT16\r
724EFIAPI\r
725PciSegmentBitFieldWrite16 (\r
726 IN UINT64 Address,\r
727 IN UINTN StartBit,\r
728 IN UINTN EndBit,\r
729 IN UINT16 Value\r
730 )\r
731{\r
732 return PciSegmentWrite16 (\r
733 Address,\r
734 BitFieldWrite16 (PciSegmentRead16 (Address), StartBit, EndBit, Value)\r
735 );\r
736}\r
737\r
738/**\r
739 Reads the 16-bit PCI configuration register specified by Address,\r
740 performs a bitwise OR between the read result and the value specified by OrData,\r
741 and writes the result to the 16-bit PCI configuration register specified by Address. \r
742\r
743 If any reserved bits in Address are set, then ASSERT().\r
744 If Address is not aligned on a 16-bit boundary, then ASSERT().\r
745 If StartBit is greater than 15, then ASSERT().\r
746 If EndBit is greater than 15, then ASSERT().\r
747 If EndBit is less than StartBit, then ASSERT().\r
748\r
749 @param Address PCI configuration register to write.\r
750 @param StartBit The ordinal of the least significant bit in the bit field.\r
751 Range 0..15.\r
752 @param EndBit The ordinal of the most significant bit in the bit field.\r
753 Range 0..15.\r
754 @param OrData The value to OR with the PCI configuration register.\r
755\r
756 @return The value written back to the PCI configuration register.\r
757\r
758**/\r
759UINT16\r
760EFIAPI\r
761PciSegmentBitFieldOr16 (\r
762 IN UINT64 Address,\r
763 IN UINTN StartBit,\r
764 IN UINTN EndBit,\r
765 IN UINT16 OrData\r
766 )\r
767{\r
768 return PciSegmentWrite16 (\r
769 Address,\r
770 BitFieldOr16 (PciSegmentRead16 (Address), StartBit, EndBit, OrData)\r
771 );\r
772}\r
773\r
774/**\r
775 Reads a bit field in a 16-bit PCI configuration, performs a bitwise OR,\r
776 and writes the result back to the bit field in the 16-bit port.\r
777\r
778 Reads the 16-bit PCI configuration register specified by Address,\r
779 performs a bitwise OR between the read result and the value specified by OrData,\r
780 and writes the result to the 16-bit PCI configuration register specified by Address.\r
781 The value written to the PCI configuration register is returned.\r
782 This function must guarantee that all PCI read and write operations are serialized.\r
783 Extra left bits in OrData are stripped.\r
784 \r
785 If any reserved bits in Address are set, then ASSERT().\r
786 If Address is not aligned on a 16-bit boundary, then ASSERT().\r
787 If StartBit is greater than 7, then ASSERT().\r
788 If EndBit is greater than 7, then ASSERT().\r
789 If EndBit is less than StartBit, then ASSERT().\r
790\r
791 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
792 @param StartBit The ordinal of the least significant bit in the bit field.\r
793 The ordinal of the least significant bit in a byte is bit 0.\r
794 @param EndBit The ordinal of the most significant bit in the bit field.\r
795 The ordinal of the most significant bit in a byte is bit 7.\r
796 @param AndData The value to AND with the read value from the PCI configuration register.\r
797\r
798 @return The value written to the PCI configuration register.\r
799\r
800**/\r
801UINT16\r
802EFIAPI\r
803PciSegmentBitFieldAnd16 (\r
804 IN UINT64 Address,\r
805 IN UINTN StartBit,\r
806 IN UINTN EndBit,\r
807 IN UINT16 AndData\r
808 )\r
809{\r
810 return PciSegmentWrite16 (\r
811 Address,\r
812 BitFieldAnd16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData)\r
813 );\r
814}\r
815\r
816/**\r
817 Reads a bit field in a 16-bit port, performs a bitwise AND followed by a\r
818 bitwise OR, and writes the result back to the bit field in the\r
819 16-bit port.\r
820\r
821 Reads the 16-bit PCI configuration register specified by Address, performs a\r
822 bitwise AND followed by a bitwise OR between the read result and\r
823 the value specified by AndData, and writes the result to the 16-bit PCI\r
824 configuration register specified by Address. The value written to the PCI\r
825 configuration register is returned. This function must guarantee that all PCI\r
826 read and write operations are serialized. Extra left bits in both AndData and\r
827 OrData are stripped.\r
828\r
829 If any reserved bits in Address are set, then ASSERT().\r
830 If StartBit is greater than 15, then ASSERT().\r
831 If EndBit is greater than 15, then ASSERT().\r
832 If EndBit is less than StartBit, then ASSERT().\r
833\r
834 @param Address PCI configuration register to write.\r
835 @param StartBit The ordinal of the least significant bit in the bit field.\r
836 Range 0..15.\r
837 @param EndBit The ordinal of the most significant bit in the bit field.\r
838 Range 0..15.\r
839 @param AndData The value to AND with the PCI configuration register.\r
840 @param OrData The value to OR with the result of the AND operation.\r
841\r
842 @return The value written back to the PCI configuration register.\r
843\r
844**/\r
845UINT16\r
846EFIAPI\r
847PciSegmentBitFieldAndThenOr16 (\r
848 IN UINT64 Address,\r
849 IN UINTN StartBit,\r
850 IN UINTN EndBit,\r
851 IN UINT16 AndData,\r
852 IN UINT16 OrData\r
853 )\r
854{\r
855 return PciSegmentWrite16 (\r
856 Address,\r
857 BitFieldAndThenOr16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData, OrData)\r
858 );\r
859}\r
860\r
861/**\r
862 Reads a 32-bit PCI configuration register.\r
863\r
864 Reads and returns the 32-bit PCI configuration register specified by Address.\r
865 This function must guarantee that all PCI read and write operations are serialized.\r
866 \r
867 If any reserved bits in Address are set, then ASSERT().\r
868 If Address is not aligned on a 32-bit boundary, then ASSERT().\r
869\r
870 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
871\r
872 @return The 32-bit PCI configuration register specified by Address.\r
873\r
874**/\r
875UINT32\r
876EFIAPI\r
877PciSegmentRead32 (\r
878 IN UINT64 Address\r
879 )\r
880{\r
881 ASSERT_INVALID_PCI_SEGMENT_ADDRESS (Address, 3);\r
882\r
883 return PeiPciSegmentLibPciCfg2ReadWorker (Address, EfiPeiPciCfgWidthUint32);\r
884}\r
885\r
886/**\r
887 Writes a 32-bit PCI configuration register.\r
888\r
889 Writes the 32-bit PCI configuration register specified by Address with the value specified by Value.\r
890 Value is returned. This function must guarantee that all PCI read and write operations are serialized.\r
891 \r
892 If any reserved bits in Address are set, then ASSERT().\r
893 If Address is not aligned on a 32-bit boundary, then ASSERT().\r
894\r
895 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
896 @param Value The value to write.\r
897\r
898 @return The parameter of Value.\r
899\r
900**/\r
901UINT32\r
902EFIAPI\r
903PciSegmentWrite32 (\r
904 IN UINT64 Address,\r
905 IN UINT32 Value\r
906 )\r
907{\r
908 ASSERT_INVALID_PCI_SEGMENT_ADDRESS (Address, 3);\r
909\r
910 return PeiPciSegmentLibPciCfg2WriteWorker (Address, EfiPeiPciCfgWidthUint32, Value);\r
911}\r
912\r
913/**\r
914 Performs a bitwise OR of a 32-bit PCI configuration register with a 32-bit value.\r
915\r
916 Reads the 32-bit PCI configuration register specified by Address,\r
917 performs a bitwise OR between the read result and the value specified by OrData,\r
918 and writes the result to the 32-bit PCI configuration register specified by Address.\r
919 The value written to the PCI configuration register is returned.\r
920 This function must guarantee that all PCI read and write operations are serialized.\r
921 \r
922 If any reserved bits in Address are set, then ASSERT().\r
923 If Address is not aligned on a 32-bit boundary, then ASSERT().\r
924\r
925 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
926 @param OrData The value to OR with the PCI configuration register.\r
927\r
928 @return The value written to the PCI configuration register.\r
929\r
930**/\r
931UINT32\r
932EFIAPI\r
933PciSegmentOr32 (\r
934 IN UINT64 Address,\r
935 IN UINT32 OrData\r
936 )\r
937{\r
938 return PciSegmentWrite32 (Address, PciSegmentRead32 (Address) | OrData);\r
939}\r
940\r
941/**\r
942 Performs a bitwise AND of a 32-bit PCI configuration register with a 32-bit value.\r
943\r
944 Reads the 32-bit PCI configuration register specified by Address,\r
945 performs a bitwise AND between the read result and the value specified by AndData,\r
946 and writes the result to the 32-bit PCI configuration register specified by Address.\r
947 The value written to the PCI configuration register is returned.\r
948 This function must guarantee that all PCI read and write operations are serialized.\r
949 \r
950 If any reserved bits in Address are set, then ASSERT().\r
951 If Address is not aligned on a 32-bit boundary, then ASSERT().\r
952\r
953 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
954 @param AndData The value to AND with the PCI configuration register.\r
955\r
956 @return The value written to the PCI configuration register.\r
957\r
958**/\r
959UINT32\r
960EFIAPI\r
961PciSegmentAnd32 (\r
962 IN UINT64 Address,\r
963 IN UINT32 AndData\r
964 )\r
965{\r
966 return PciSegmentWrite32 (Address, PciSegmentRead32 (Address) & AndData);\r
967}\r
968\r
969/**\r
970 Performs a bitwise AND of a 32-bit PCI configuration register with a 32-bit value,\r
971 followed a bitwise OR with another 32-bit value.\r
972 \r
973 Reads the 32-bit PCI configuration register specified by Address,\r
974 performs a bitwise AND between the read result and the value specified by AndData,\r
975 performs a bitwise OR between the result of the AND operation and the value specified by OrData,\r
976 and writes the result to the 32-bit PCI configuration register specified by Address.\r
977 The value written to the PCI configuration register is returned.\r
978 This function must guarantee that all PCI read and write operations are serialized.\r
979 \r
980 If any reserved bits in Address are set, then ASSERT().\r
981 If Address is not aligned on a 32-bit boundary, then ASSERT().\r
982\r
983 @param Address Address that encodes the PCI Segment, Bus, Device, Function, and Register.\r
984 @param AndData The value to AND with the PCI configuration register.\r
985 @param OrData The value to OR with the PCI configuration register.\r
986\r
987 @return The value written to the PCI configuration register.\r
988\r
989**/\r
990UINT32\r
991EFIAPI\r
992PciSegmentAndThenOr32 (\r
993 IN UINT64 Address,\r
994 IN UINT32 AndData,\r
995 IN UINT32 OrData\r
996 )\r
997{\r
998 return PciSegmentWrite32 (Address, (PciSegmentRead32 (Address) & AndData) | OrData);\r
999}\r
1000\r
1001/**\r
1002 Reads a bit field of a PCI configuration register.\r
1003\r
1004 Reads the bit field in a 32-bit PCI configuration register. The bit field is\r
1005 specified by the StartBit and the EndBit. The value of the bit field is\r
1006 returned.\r
1007\r
1008 If any reserved bits in Address are set, then ASSERT().\r
1009 If Address is not aligned on a 32-bit boundary, then ASSERT().\r
1010 If StartBit is greater than 31, then ASSERT().\r
1011 If EndBit is greater than 31, then ASSERT().\r
1012 If EndBit is less than StartBit, then ASSERT().\r
1013\r
1014 @param Address PCI configuration register to read.\r
1015 @param StartBit The ordinal of the least significant bit in the bit field.\r
1016 Range 0..31.\r
1017 @param EndBit The ordinal of the most significant bit in the bit field.\r
1018 Range 0..31.\r
1019\r
1020 @return The value of the bit field read from the PCI configuration register.\r
1021\r
1022**/\r
1023UINT32\r
1024EFIAPI\r
1025PciSegmentBitFieldRead32 (\r
1026 IN UINT64 Address,\r
1027 IN UINTN StartBit,\r
1028 IN UINTN EndBit\r
1029 )\r
1030{\r
1031 return BitFieldRead32 (PciSegmentRead32 (Address), StartBit, EndBit);\r
1032}\r
1033\r
1034/**\r
1035 Writes a bit field to a PCI configuration register.\r
1036\r
1037 Writes Value to the bit field of the PCI configuration register. The bit\r
1038 field is specified by the StartBit and the EndBit. All other bits in the\r
1039 destination PCI configuration register are preserved. The new value of the\r
1040 32-bit register is returned.\r
1041\r
1042 If any reserved bits in Address are set, then ASSERT().\r
1043 If Address is not aligned on a 32-bit boundary, then ASSERT().\r
1044 If StartBit is greater than 31, then ASSERT().\r
1045 If EndBit is greater than 31, then ASSERT().\r
1046 If EndBit is less than StartBit, then ASSERT().\r
1047\r
1048 @param Address PCI configuration register to write.\r
1049 @param StartBit The ordinal of the least significant bit in the bit field.\r
1050 Range 0..31.\r
1051 @param EndBit The ordinal of the most significant bit in the bit field.\r
1052 Range 0..31.\r
1053 @param Value New value of the bit field.\r
1054\r
1055 @return The value written back to the PCI configuration register.\r
1056\r
1057**/\r
1058UINT32\r
1059EFIAPI\r
1060PciSegmentBitFieldWrite32 (\r
1061 IN UINT64 Address,\r
1062 IN UINTN StartBit,\r
1063 IN UINTN EndBit,\r
1064 IN UINT32 Value\r
1065 )\r
1066{\r
1067 return PciSegmentWrite32 (\r
1068 Address,\r
1069 BitFieldWrite32 (PciSegmentRead32 (Address), StartBit, EndBit, Value)\r
1070 );\r
1071}\r
1072\r
1073/**\r
1074 Reads a bit field in a 32-bit PCI configuration, performs a bitwise OR, and\r
1075 writes the result back to the bit field in the 32-bit port.\r
1076\r
1077 Reads the 32-bit PCI configuration register specified by Address, performs a\r
1078 bitwise OR between the read result and the value specified by\r
1079 OrData, and writes the result to the 32-bit PCI configuration register\r
1080 specified by Address. The value written to the PCI configuration register is\r
1081 returned. This function must guarantee that all PCI read and write operations\r
1082 are serialized. Extra left bits in OrData are stripped.\r
1083\r
1084 If any reserved bits in Address are set, then ASSERT().\r
1085 If StartBit is greater than 31, then ASSERT().\r
1086 If EndBit is greater than 31, then ASSERT().\r
1087 If EndBit is less than StartBit, then ASSERT().\r
1088\r
1089 @param Address PCI configuration register to write.\r
1090 @param StartBit The ordinal of the least significant bit in the bit field.\r
1091 Range 0..31.\r
1092 @param EndBit The ordinal of the most significant bit in the bit field.\r
1093 Range 0..31.\r
1094 @param OrData The value to OR with the PCI configuration register.\r
1095\r
1096 @return The value written back to the PCI configuration register.\r
1097\r
1098**/\r
1099UINT32\r
1100EFIAPI\r
1101PciSegmentBitFieldOr32 (\r
1102 IN UINT64 Address,\r
1103 IN UINTN StartBit,\r
1104 IN UINTN EndBit,\r
1105 IN UINT32 OrData\r
1106 )\r
1107{\r
1108 return PciSegmentWrite32 (\r
1109 Address,\r
1110 BitFieldOr32 (PciSegmentRead32 (Address), StartBit, EndBit, OrData)\r
1111 );\r
1112}\r
1113\r
1114/**\r
1115 Reads a bit field in a 32-bit PCI configuration register, performs a bitwise\r
1116 AND, and writes the result back to the bit field in the 32-bit register.\r
1117\r
1118 \r
1119 Reads the 32-bit PCI configuration register specified by Address, performs a bitwise\r
1120 AND between the read result and the value specified by AndData, and writes the result\r
1121 to the 32-bit PCI configuration register specified by Address. The value written to\r
1122 the PCI configuration register is returned. This function must guarantee that all PCI\r
1123 read and write operations are serialized. Extra left bits in AndData are stripped.\r
1124 If any reserved bits in Address are set, then ASSERT().\r
1125 If Address is not aligned on a 32-bit boundary, then ASSERT().\r
1126 If StartBit is greater than 31, then ASSERT().\r
1127 If EndBit is greater than 31, then ASSERT().\r
1128 If EndBit is less than StartBit, then ASSERT().\r
1129 \r
1130\r
1131 @param Address PCI configuration register to write.\r
1132 @param StartBit The ordinal of the least significant bit in the bit field.\r
1133 Range 0..31.\r
1134 @param EndBit The ordinal of the most significant bit in the bit field.\r
1135 Range 0..31.\r
1136 @param AndData The value to AND with the PCI configuration register.\r
1137\r
1138 @return The value written back to the PCI configuration register.\r
1139\r
1140**/\r
1141UINT32\r
1142EFIAPI\r
1143PciSegmentBitFieldAnd32 (\r
1144 IN UINT64 Address,\r
1145 IN UINTN StartBit,\r
1146 IN UINTN EndBit,\r
1147 IN UINT32 AndData\r
1148 )\r
1149{\r
1150 return PciSegmentWrite32 (\r
1151 Address,\r
1152 BitFieldAnd32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData)\r
1153 );\r
1154}\r
1155\r
1156/**\r
1157 Reads a bit field in a 32-bit port, performs a bitwise AND followed by a\r
1158 bitwise OR, and writes the result back to the bit field in the\r
1159 32-bit port.\r
1160\r
1161 Reads the 32-bit PCI configuration register specified by Address, performs a\r
1162 bitwise AND followed by a bitwise OR between the read result and\r
1163 the value specified by AndData, and writes the result to the 32-bit PCI\r
1164 configuration register specified by Address. The value written to the PCI\r
1165 configuration register is returned. This function must guarantee that all PCI\r
1166 read and write operations are serialized. Extra left bits in both AndData and\r
1167 OrData are stripped.\r
1168\r
1169 If any reserved bits in Address are set, then ASSERT().\r
1170 If StartBit is greater than 31, then ASSERT().\r
1171 If EndBit is greater than 31, then ASSERT().\r
1172 If EndBit is less than StartBit, then ASSERT().\r
1173\r
1174 @param Address PCI configuration register to write.\r
1175 @param StartBit The ordinal of the least significant bit in the bit field.\r
1176 Range 0..31.\r
1177 @param EndBit The ordinal of the most significant bit in the bit field.\r
1178 Range 0..31.\r
1179 @param AndData The value to AND with the PCI configuration register.\r
1180 @param OrData The value to OR with the result of the AND operation.\r
1181\r
1182 @return The value written back to the PCI configuration register.\r
1183\r
1184**/\r
1185UINT32\r
1186EFIAPI\r
1187PciSegmentBitFieldAndThenOr32 (\r
1188 IN UINT64 Address,\r
1189 IN UINTN StartBit,\r
1190 IN UINTN EndBit,\r
1191 IN UINT32 AndData,\r
1192 IN UINT32 OrData\r
1193 )\r
1194{\r
1195 return PciSegmentWrite32 (\r
1196 Address,\r
1197 BitFieldAndThenOr32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData, OrData)\r
1198 );\r
1199}\r
1200\r
1201/**\r
1202 Reads a range of PCI configuration registers into a caller supplied buffer.\r
1203\r
1204 Reads the range of PCI configuration registers specified by StartAddress and\r
1205 Size into the buffer specified by Buffer. This function only allows the PCI\r
1206 configuration registers from a single PCI function to be read. Size is\r
1207 returned. When possible 32-bit PCI configuration read cycles are used to read\r
1208 from StartAdress to StartAddress + Size. Due to alignment restrictions, 8-bit\r
1209 and 16-bit PCI configuration read cycles may be used at the beginning and the\r
1210 end of the range.\r
1211\r
1212 If any reserved bits in StartAddress are set, then ASSERT().\r
1213 If ((StartAddress & 0xFFF) + Size) > 0x1000, then ASSERT().\r
1214 If Size > 0 and Buffer is NULL, then ASSERT().\r
1215\r
1216 @param StartAddress Starting address that encodes the PCI Segment, Bus, Device,\r
1217 Function and Register.\r
1218 @param Size Size in bytes of the transfer.\r
1219 @param Buffer Pointer to a buffer receiving the data read.\r
1220\r
1221 @return Size\r
1222\r
1223**/\r
1224UINTN\r
1225EFIAPI\r
1226PciSegmentReadBuffer (\r
1227 IN UINT64 StartAddress,\r
1228 IN UINTN Size,\r
1229 OUT VOID *Buffer\r
1230 )\r
1231{\r
1232 UINTN ReturnValue;\r
1233\r
1234 ASSERT_INVALID_PCI_SEGMENT_ADDRESS (StartAddress, 0);\r
1235 ASSERT (((StartAddress & 0xFFF) + Size) <= 0x1000);\r
1236\r
1237 if (Size == 0) {\r
1238 return Size;\r
1239 }\r
1240\r
1241 ASSERT (Buffer != NULL);\r
1242\r
1243 //\r
1244 // Save Size for return\r
1245 //\r
1246 ReturnValue = Size;\r
1247\r
1248 if ((StartAddress & BIT0) != 0) {\r
1249 //\r
1250 // Read a byte if StartAddress is byte aligned\r
1251 //\r
1252 *(volatile UINT8 *)Buffer = PciSegmentRead8 (StartAddress);\r
1253 StartAddress += sizeof (UINT8);\r
1254 Size -= sizeof (UINT8);\r
1255 Buffer = (UINT8*)Buffer + 1;\r
1256 }\r
1257\r
1258 if (Size >= sizeof (UINT16) && (StartAddress & BIT1) != 0) {\r
1259 //\r
1260 // Read a word if StartAddress is word aligned\r
1261 //\r
1262 WriteUnaligned16 (Buffer, PciSegmentRead16 (StartAddress));\r
1263 StartAddress += sizeof (UINT16);\r
1264 Size -= sizeof (UINT16);\r
1265 Buffer = (UINT16*)Buffer + 1;\r
1266 }\r
1267\r
1268 while (Size >= sizeof (UINT32)) {\r
1269 //\r
1270 // Read as many double words as possible\r
1271 //\r
1272 WriteUnaligned32 (Buffer, PciSegmentRead32 (StartAddress));\r
1273 StartAddress += sizeof (UINT32);\r
1274 Size -= sizeof (UINT32);\r
1275 Buffer = (UINT32*)Buffer + 1;\r
1276 }\r
1277\r
1278 if (Size >= sizeof (UINT16)) {\r
1279 //\r
1280 // Read the last remaining word if exist\r
1281 //\r
1282 WriteUnaligned16 (Buffer, PciSegmentRead16 (StartAddress));\r
1283 StartAddress += sizeof (UINT16);\r
1284 Size -= sizeof (UINT16);\r
1285 Buffer = (UINT16*)Buffer + 1;\r
1286 }\r
1287\r
1288 if (Size >= sizeof (UINT8)) {\r
1289 //\r
1290 // Read the last remaining byte if exist\r
1291 //\r
1292 *(volatile UINT8 *)Buffer = PciSegmentRead8 (StartAddress);\r
1293 }\r
1294\r
1295 return ReturnValue;\r
1296}\r
1297\r
1298\r
1299/**\r
1300 Copies the data in a caller supplied buffer to a specified range of PCI\r
1301 configuration space.\r
1302\r
1303 Writes the range of PCI configuration registers specified by StartAddress and\r
1304 Size from the buffer specified by Buffer. This function only allows the PCI\r
1305 configuration registers from a single PCI function to be written. Size is\r
1306 returned. When possible 32-bit PCI configuration write cycles are used to\r
1307 write from StartAdress to StartAddress + Size. Due to alignment restrictions,\r
1308 8-bit and 16-bit PCI configuration write cycles may be used at the beginning\r
1309 and the end of the range.\r
1310\r
1311 If any reserved bits in StartAddress are set, then ASSERT().\r
1312 If ((StartAddress & 0xFFF) + Size) > 0x1000, then ASSERT().\r
1313 If Size > 0 and Buffer is NULL, then ASSERT().\r
1314\r
1315 @param StartAddress Starting address that encodes the PCI Segment, Bus, Device,\r
1316 Function and Register.\r
1317 @param Size Size in bytes of the transfer.\r
1318 @param Buffer Pointer to a buffer containing the data to write.\r
1319\r
1320 @return The parameter of Size.\r
1321\r
1322**/\r
1323UINTN\r
1324EFIAPI\r
1325PciSegmentWriteBuffer (\r
1326 IN UINT64 StartAddress,\r
1327 IN UINTN Size,\r
1328 IN VOID *Buffer\r
1329 )\r
1330{\r
1331 UINTN ReturnValue;\r
1332\r
1333 ASSERT_INVALID_PCI_SEGMENT_ADDRESS (StartAddress, 0);\r
1334 ASSERT (((StartAddress & 0xFFF) + Size) <= 0x1000);\r
1335\r
1336 if (Size == 0) {\r
1337 return 0;\r
1338 }\r
1339\r
1340 ASSERT (Buffer != NULL);\r
1341\r
1342 //\r
1343 // Save Size for return\r
1344 //\r
1345 ReturnValue = Size;\r
1346\r
1347 if ((StartAddress & BIT0) != 0) {\r
1348 //\r
1349 // Write a byte if StartAddress is byte aligned\r
1350 //\r
1351 PciSegmentWrite8 (StartAddress, *(UINT8*)Buffer);\r
1352 StartAddress += sizeof (UINT8);\r
1353 Size -= sizeof (UINT8);\r
1354 Buffer = (UINT8*)Buffer + 1;\r
1355 }\r
1356\r
1357 if (Size >= sizeof (UINT16) && (StartAddress & BIT1) != 0) {\r
1358 //\r
1359 // Write a word if StartAddress is word aligned\r
1360 //\r
1361 PciSegmentWrite16 (StartAddress, ReadUnaligned16 (Buffer));\r
1362 StartAddress += sizeof (UINT16);\r
1363 Size -= sizeof (UINT16);\r
1364 Buffer = (UINT16*)Buffer + 1;\r
1365 }\r
1366\r
1367 while (Size >= sizeof (UINT32)) {\r
1368 //\r
1369 // Write as many double words as possible\r
1370 //\r
1371 PciSegmentWrite32 (StartAddress, ReadUnaligned32 (Buffer));\r
1372 StartAddress += sizeof (UINT32);\r
1373 Size -= sizeof (UINT32);\r
1374 Buffer = (UINT32*)Buffer + 1;\r
1375 }\r
1376\r
1377 if (Size >= sizeof (UINT16)) {\r
1378 //\r
1379 // Write the last remaining word if exist\r
1380 //\r
1381 PciSegmentWrite16 (StartAddress, ReadUnaligned16 (Buffer));\r
1382 StartAddress += sizeof (UINT16);\r
1383 Size -= sizeof (UINT16);\r
1384 Buffer = (UINT16*)Buffer + 1;\r
1385 }\r
1386\r
1387 if (Size >= sizeof (UINT8)) {\r
1388 //\r
1389 // Write the last remaining byte if exist\r
1390 //\r
1391 PciSegmentWrite8 (StartAddress, *(UINT8*)Buffer);\r
1392 }\r
1393\r
1394 return ReturnValue;\r
1395}\r