Home | History | Annotate | Download | only in BasePciLibPciExpress

Lines Matching refs:Address

28   Reads and returns the 8-bit PCI configuration register specified by Address.

32 If Address > 0x0FFFFFFF, then ASSERT().
34 @param Address Address that encodes the PCI Bus, Device, Function and
43 IN UINTN Address
46 return PciExpressRead8 (Address);
52 Writes the 8-bit PCI configuration register specified by Address with the
56 If Address > 0x0FFFFFFF, then ASSERT().
58 @param Address Address that encodes the PCI Bus, Device, Function and
68 IN UINTN Address,
72 return PciExpressWrite8 (Address, Data);
79 Reads the 8-bit PCI configuration register specified by Address, performs a
82 specified by Address. The value written to the PCI configuration register is
86 If Address > 0x0FFFFFFF, then ASSERT().
88 @param Address Address that encodes the PCI Bus, Device, Function and
98 IN UINTN Address,
102 return PciExpressOr8 (Address, OrData);
109 Reads the 8-bit PCI configuration register specified by Address, performs a
112 Address. The value written to the PCI configuration register is returned.
116 If Address > 0x0FFFFFFF, then ASSERT().
118 @param Address Address that encodes the PCI Bus, Device, Function and
128 IN UINTN Address,
132 return PciExpressAnd8 (Address, AndData);
139 Reads the 8-bit PCI configuration register specified by Address, performs a
143 configuration register specified by Address. The value written to the PCI
147 If Address > 0x0FFFFFFF, then ASSERT().
149 @param Address Address that encodes the PCI Bus, Device, Function and
160 IN UINTN Address,
165 return PciExpressAndThenOr8 (Address, AndData, OrData);
175 If Address > 0x0FFFFFFF, then ASSERT().
180 @param Address PCI configuration register to read.
192 IN UINTN Address,
197 return PciExpressBitFieldRead8 (Address, StartBit, EndBit);
208 If Address > 0x0FFFFFFF, then ASSERT().
213 @param Address PCI configuration register to write.
226 IN UINTN Address,
232 return PciExpressBitFieldWrite8 (Address, StartBit, EndBit, Value);
239 Reads the 8-bit PCI configuration register specified by Address, performs a
242 specified by Address. The value written to the PCI configuration register is
246 If Address > 0x0FFFFFFF, then ASSERT().
251 @param Address PCI configuration register to write.
264 IN UINTN Address,
270 return PciExpressBitFieldOr8 (Address, StartBit, EndBit, OrData);
277 Reads the 8-bit PCI configuration register specified by Address, performs a
280 Address. The value written to the PCI configuration register is returned.
284 If Address > 0x0FFFFFFF, then ASSERT().
289 @param Address PCI configuration register to write.
302 IN UINTN Address,
308 return PciExpressBitFieldAnd8 (Address, StartBit, EndBit, AndData);
316 Reads the 8-bit PCI configuration register specified by Address, performs a
319 configuration register specified by Address. The value written to the PCI
324 If Address > 0x0FFFFFFF, then ASSERT().
329 @param Address PCI configuration register to write.
343 IN UINTN Address,
350 return PciExpressBitFieldAndThenOr8 (Address, StartBit, EndBit, AndData, OrData);
356 Reads and returns the 16-bit PCI configuration register specified by Address.
360 If Address > 0x0FFFFFFF, then ASSERT().
362 @param Address Address that encodes the PCI Bus, Device, Function and
371 IN UINTN Address
374 return PciExpressRead16 (Address);
380 Writes the 16-bit PCI configuration register specified by Address with the
384 If Address > 0x0FFFFFFF, then ASSERT().
386 @param Address Address that encodes the PCI Bus, Device, Function and
396 IN UINTN Address,
400 return PciExpressWrite16 (Address, Data);
407 Reads the 16-bit PCI configuration register specified by Address, performs a
410 specified by Address. The value written to the PCI configuration register is
414 If Address > 0x0FFFFFFF, then ASSERT().
416 @param Address Address that encodes the PCI Bus, Device, Function and
426 IN UINTN Address,
430 return PciExpressOr16 (Address, OrData);
437 Reads the 16-bit PCI configuration register specified by Address, performs a
440 Address. The value written to the PCI configuration register is returned.
444 If Address > 0x0FFFFFFF, then ASSERT().
446 @param Address Address that encodes the PCI Bus, Device, Function and
456 IN UINTN Address,
460 return PciExpressAnd16 (Address, AndData);
467 Reads the 16-bit PCI configuration register specified by Address, performs a
471 configuration register specified by Address. The value written to the PCI
475 If Address > 0x0FFFFFFF, then ASSERT().
477 @param Address Address
488 IN UINTN Address,
493 return PciExpressAndThenOr16 (Address, AndData, OrData);
503 If Address > 0x0FFFFFFF, then ASSERT().
508 @param Address PCI configuration register to read.
520 IN UINTN Address,
525 return PciExpressBitFieldRead16 (Address, StartBit, EndBit);
536 If Address > 0x0FFFFFFF, then ASSERT().
541 @param Address PCI configuration register to write.
554 IN UINTN Address,
560 return PciExpressBitFieldWrite16 (Address, StartBit, EndBit, Value);
567 Reads the 16-bit PCI configuration register specified by Address, performs a
570 specified by Address. The value written to the PCI configuration register is
574 If Address > 0x0FFFFFFF, then ASSERT().
579 @param Address PCI configuration register to write.
592 IN UINTN Address,
598 return PciExpressBitFieldOr16 (Address, StartBit, EndBit, OrData);
605 Reads the 16-bit PCI configuration register specified by Address, performs a
608 Address. The value written to the PCI configuration register is returned.
612 If Address > 0x0FFFFFFF, then ASSERT().
617 @param Address PCI configuration register to write.
630 IN UINTN Address,
636 return PciExpressBitFieldAnd16 (Address, StartBit, EndBit, AndData);
644 Reads the 16-bit PCI configuration register specified by Address, performs a
647 configuration register specified by Address. The value written to the PCI
652 If Address > 0x0FFFFFFF, then ASSERT().
657 @param Address PCI configuration register to write.
671 IN UINTN Address,
678 return PciExpressBitFieldAndThenOr16 (Address, StartBit, EndBit, AndData, OrData);
684 Reads and returns the 32-bit PCI configuration register specified by Address.
688 If Address > 0x0FFFFFFF, then ASSERT().
690 @param Address Address that encodes the PCI Bus, Device, Function and
699 IN UINTN Address
702 return PciExpressRead32 (Address);
708 Writes the 32-bit PCI configuration register specified by Address with the
712 If Address > 0x0FFFFFFF, then ASSERT().
714 @param Address Address that encodes the PCI Bus, Device, Function and
724 IN UINTN Address,
728 return PciExpressWrite32 (Address, Data);
735 Reads the 32-bit PCI configuration register specified by Address, performs a
738 specified by Address. The value written to the PCI configuration register is
742 If Address > 0x0FFFFFFF, then ASSERT().
744 @param Address Address that encodes the PCI Bus, Device, Function and
754 IN UINTN Address,
758 return PciExpressOr32 (Address, OrData);
765 Reads the 32-bit PCI configuration register specified by Address, performs a
768 Address. The value written to the PCI configuration register is returned.
772 If Address > 0x0FFFFFFF, then ASSERT().
774 @param Address Address that encodes the PCI Bus, Device, Function and
784 IN UINTN Address,
788 return PciExpressAnd32 (Address, AndData);
795 Reads the 32-bit PCI configuration register specified by Address, performs a
799 configuration register specified by Address. The value written to the PCI
803 If Address > 0x0FFFFFFF, then ASSERT().
805 @param Address Address that encodes the PCI Bus, Device, Function and
816 IN UINTN Address,
821 return PciExpressAndThenOr32 (Address, AndData, OrData);
831 If Address > 0x0FFFFFFF, then ASSERT().
836 @param Address PCI configuration register to read.
848 IN UINTN Address,
853 return PciExpressBitFieldRead32 (Address, StartBit, EndBit);
864 If Address > 0x0FFFFFFF, then ASSERT().
869 @param Address PCI configuration register to write.
882 IN UINTN Address,
888 return PciExpressBitFieldWrite32 (Address, StartBit, EndBit, Value);
895 Reads the 32-bit PCI configuration register specified by Address, performs a
898 specified by Address. The value written to the PCI configuration register is
902 If Address > 0x0FFFFFFF, then ASSERT().
907 @param Address PCI configuration register to write.
920 IN UINTN Address,
926 return PciExpressBitFieldOr32 (Address, StartBit, EndBit, OrData);
933 Reads the 32-bit PCI configuration register specified by Address, performs a
936 Address
940 If Address > 0x0FFFFFFF, then ASSERT().
945 @param Address PCI configuration register to write.
958 IN UINTN Address,
964 return PciExpressBitFieldAnd32 (Address, StartBit, EndBit, AndData);
972 Reads the 32-bit PCI configuration register specified by Address, performs a
975 configuration register specified by Address. The value written to the PCI
980 If Address > 0x0FFFFFFF, then ASSERT().
985 @param Address PCI configuration register to write.
999 IN UINTN Address,
1006 return PciExpressBitFieldAndThenOr32 (Address, StartBit, EndBit, AndData, OrData);
1024 @param StartAddress Starting address that encodes the PCI Bus, Device,
1059 @param StartAddress Starting address that encodes the PCI Bus, Device,