REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the MdePkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /** @file
 | |
|   AsmFlushCacheLine function
 | |
| 
 | |
|   Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
 | |
|   SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| 
 | |
| **/
 | |
| 
 | |
| /**
 | |
|   Flushes a cache line from all the instruction and data caches within the
 | |
|   coherency domain of the CPU.
 | |
| 
 | |
|   Flushed the cache line specified by LinearAddress, and returns LinearAddress.
 | |
|   This function is only available on IA-32 and x64.
 | |
| 
 | |
|   @param  LinearAddress The address of the cache line to flush. If the CPU is
 | |
|                         in a physical addressing mode, then LinearAddress is a
 | |
|                         physical address. If the CPU is in a virtual
 | |
|                         addressing mode, then LinearAddress is a virtual
 | |
|                         address.
 | |
| 
 | |
|   @return LinearAddress
 | |
| **/
 | |
| VOID *
 | |
| EFIAPI
 | |
| AsmFlushCacheLine (
 | |
|   IN      VOID  *LinearAddress
 | |
|   )
 | |
| {
 | |
|   //
 | |
|   // If the CPU does not support CLFLUSH instruction,
 | |
|   // then promote flush range to flush entire cache.
 | |
|   //
 | |
|   _asm {
 | |
|     mov     eax, 1
 | |
|     cpuid
 | |
|     test    edx, BIT19
 | |
|     jz      NoClflush
 | |
|     mov     eax, dword ptr [LinearAddress]
 | |
|     clflush [eax]
 | |
|     jmp     Done
 | |
| NoClflush:
 | |
|     wbinvd
 | |
| Done:
 | |
|   }
 | |
| 
 | |
|   return LinearAddress;
 | |
| }
 |