mirror of
				https://git.proxmox.com/git/mirror_edk2
				synced 2025-10-31 05:28:13 +00:00 
			
		
		
		
	 5f0a17d83a
			
		
	
	
		5f0a17d83a
		
	
	
	
	
		
			
			From Intel(R) 64 and IA-32 Architectures Software Developer's Manual, one lock or semaphore is suggested to be present within a cache line. If the processors are based on Intel NetBurst microarchitecture, two cache lines are suggested. This could minimize the bus traffic required to service locks. Cc: Michael Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <liming.gao@intel.com> Cc: Star Zeng <star.zeng@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan <jeff.fan@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com>
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /** @file
 | |
|   Internal function to get spin lock alignment.
 | |
| 
 | |
|   Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
 | |
|   This program and the accompanying materials
 | |
|   are licensed and made available under the terms and conditions of the BSD License
 | |
|   which accompanies this distribution.  The full text of the license may be found at
 | |
|   http://opensource.org/licenses/bsd-license.php.
 | |
| 
 | |
|   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
 | |
|   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 | |
| 
 | |
| **/
 | |
| 
 | |
| #include "BaseSynchronizationLibInternals.h"
 | |
| 
 | |
| /**
 | |
|   Internal function to retrieve the architecture specific spin lock alignment
 | |
|   requirements for optimal spin lock performance.
 | |
| 
 | |
|   @return The architecture specific spin lock alignment.
 | |
|   
 | |
| **/
 | |
| UINTN
 | |
| InternalGetSpinLockProperties (
 | |
|   VOID
 | |
|   )
 | |
| {
 | |
|   UINT32  RegEax;
 | |
|   UINT32  RegEbx;
 | |
|   UINTN   FamilyId;
 | |
|   UINTN   ModelId;
 | |
|   UINTN   CacheLineSize;
 | |
| 
 | |
|   //
 | |
|   // Retrieve CPUID Version Information
 | |
|   //
 | |
|   AsmCpuid (0x01, &RegEax, &RegEbx, NULL, NULL);
 | |
|   //
 | |
|   // EBX: Bits 15 - 08: CLFLUSH line size (Value * 8 = cache line size)
 | |
|   //
 | |
|   CacheLineSize = ((RegEbx >> 8) & 0xff) * 8;
 | |
|   //
 | |
|   // Retrieve CPU Family and Model
 | |
|   //
 | |
|   FamilyId = (RegEax >> 8) & 0xf;
 | |
|   ModelId  = (RegEax >> 4) & 0xf;
 | |
|   if (FamilyId == 0x0f) {
 | |
|     //
 | |
|     // In processors based on Intel NetBurst microarchitecture, use two cache lines
 | |
|     // 
 | |
|     ModelId = ModelId | ((RegEax >> 12) & 0xf0);
 | |
|     if (ModelId <= 0x04 || ModelId == 0x06) {
 | |
|       CacheLineSize *= 2;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   return CacheLineSize;
 | |
| }
 | |
| 
 |