https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /** @file
 | |
|   Instance of Base PCI Segment Library that support multi-segment PCI configuration access.
 | |
| 
 | |
|   PCI Segment Library that consumes segment information provided by PciSegmentInfoLib to
 | |
|    support multi-segment PCI configuration access through enhanced configuration access mechanism.
 | |
| 
 | |
|   Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
 | |
|   SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| 
 | |
| **/
 | |
| 
 | |
| #include "PciSegmentLibCommon.h"
 | |
| 
 | |
| /**
 | |
|   Return the virtual address for the physical address.
 | |
| 
 | |
|   @param  Address  The physical address.
 | |
| 
 | |
|   @retval The virtual address.
 | |
| **/
 | |
| UINTN
 | |
| PciSegmentLibVirtualAddress (
 | |
|   IN UINTN                     Address
 | |
|   )
 | |
| {
 | |
|   return Address;
 | |
| }
 | |
| 
 | |
| /**
 | |
|   Register a PCI device so PCI configuration registers may be accessed after
 | |
|   SetVirtualAddressMap().
 | |
| 
 | |
|   If any reserved bits in Address are set, then ASSERT().
 | |
| 
 | |
|   @param  Address The address that encodes the PCI Bus, Device, Function and
 | |
|                   Register.
 | |
| 
 | |
|   @retval RETURN_SUCCESS           The PCI device was registered for runtime access.
 | |
|   @retval RETURN_UNSUPPORTED       An attempt was made to call this function
 | |
|                                    after ExitBootServices().
 | |
|   @retval RETURN_UNSUPPORTED       The resources required to access the PCI device
 | |
|                                    at runtime could not be mapped.
 | |
|   @retval RETURN_OUT_OF_RESOURCES  There are not enough resources available to
 | |
|                                    complete the registration.
 | |
| 
 | |
| **/
 | |
| RETURN_STATUS
 | |
| EFIAPI
 | |
| PciSegmentRegisterForRuntimeAccess (
 | |
|   IN UINTN  Address
 | |
|   )
 | |
| {
 | |
|   //
 | |
|   // Use PciSegmentLibGetEcamAddress() to validate the Address.
 | |
|   //
 | |
|   DEBUG_CODE (
 | |
|     UINTN                        Count;
 | |
|     PCI_SEGMENT_INFO             *SegmentInfo;
 | |
| 
 | |
|     SegmentInfo = GetPciSegmentInfo (&Count);
 | |
|     PciSegmentLibGetEcamAddress (Address, SegmentInfo, Count);
 | |
|   );
 | |
|   return RETURN_SUCCESS;
 | |
| }
 |