mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-16 15:18:10 +02:00
Signed-off-by: Sheng Wei <w.sheng@intel.com> Cc: Eric Dong <eric.dong@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Wu Jiaxin <jiaxin.wu@intel.com> Cc: Tan Dun <dun.tan@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
35 lines
814 B
NASM
35 lines
814 B
NASM
;------------------------------------------------------------------------------ ;
|
|
; Copyright (c) 2019 - 2023, Intel Corporation. All rights reserved.<BR>
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
;
|
|
;-------------------------------------------------------------------------------
|
|
|
|
%include "Nasm.inc"
|
|
%include "Cet.inc"
|
|
|
|
SECTION .text
|
|
|
|
global ASM_PFX(DisableCet)
|
|
ASM_PFX(DisableCet):
|
|
|
|
; Skip the pushed data for call
|
|
mov eax, 1
|
|
incsspd eax
|
|
|
|
mov eax, cr4
|
|
btr eax, CR4_CET_BIT ; clear CET
|
|
mov cr4, eax
|
|
ret
|
|
|
|
global ASM_PFX(EnableCet)
|
|
ASM_PFX(EnableCet):
|
|
|
|
mov eax, cr4
|
|
bts eax, CR4_CET_BIT ; set CET
|
|
mov cr4, eax
|
|
|
|
; use jmp to skip the check for ret
|
|
pop eax
|
|
jmp eax
|
|
|