diff options
author | rsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-08-27 03:46:18 +0000 |
---|---|---|
committer | rsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-08-27 03:46:18 +0000 |
commit | b1b8c631f613084d43d64d0b9e1d27337d4d8b5a (patch) | |
tree | f017aa293e3eba38be46d8c1731b003070a52f61 /UefiCpuPkg/Include | |
parent | 9a43bc39a9b038523a9c5678f05cc31c62640bf0 (diff) | |
download | edk2-platforms-b1b8c631f613084d43d64d0b9e1d27337d4d8b5a.tar.xz |
Add DisableLvtInterrupts() for the Local APIC library class.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10827 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UefiCpuPkg/Include')
-rw-r--r-- | UefiCpuPkg/Include/Library/LocalApicLib.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/UefiCpuPkg/Include/Library/LocalApicLib.h b/UefiCpuPkg/Include/Library/LocalApicLib.h index d565dad96c..d68e0e48b9 100644 --- a/UefiCpuPkg/Include/Library/LocalApicLib.h +++ b/UefiCpuPkg/Include/Library/LocalApicLib.h @@ -213,6 +213,17 @@ ProgramVirtualWireMode ( );
/**
+ Disable LINT0 & LINT1 interrupts.
+
+ This function sets the mask flag in the LVT LINT0 & LINT1 registers.
+**/
+VOID
+EFIAPI
+DisableLvtInterrupts (
+ VOID
+ );
+
+/**
Read the initial count value from the init-count register.
@return The initial count value read from the init-count register.
|