UefiCpuPkg: Add PiSmmCpuDxeSmm module IA32 files
Add module that initializes a CPU for the SMM environment and installs the first level SMI handler. This module along with the SMM IPL and SMM Core provide the services required for DXE_SMM_DRIVERS to register hardware and software SMI handlers. CPU specific features are abstracted through the SmmCpuFeaturesLib Platform specific features are abstracted through the SmmCpuPlatformHookLib Several PCDs are added to enable/disable features and configure settings for the PiSmmCpuDxeSmm module [jeff.fan@intel.com: Fix code style issues reported by ECC] Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael Kinney <michael.d.kinney@intel.com> Reviewed-by: Jeff Fan <jeff.fan@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18646 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
191
UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/SmiEntry.S
Normal file
191
UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/SmiEntry.S
Normal file
@@ -0,0 +1,191 @@
|
||||
#------------------------------------------------------------------------------
|
||||
#
|
||||
# Copyright (c) 2009 - 2015, 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.
|
||||
#
|
||||
# Module Name:
|
||||
#
|
||||
# SmiEntry.S
|
||||
#
|
||||
# Abstract:
|
||||
#
|
||||
# Code template of the SMI handler for a particular processor
|
||||
#
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
ASM_GLOBAL ASM_PFX(gcSmiHandlerTemplate)
|
||||
ASM_GLOBAL ASM_PFX(gcSmiHandlerSize)
|
||||
ASM_GLOBAL ASM_PFX(gSmiCr3)
|
||||
ASM_GLOBAL ASM_PFX(gSmiStack)
|
||||
ASM_GLOBAL ASM_PFX(gSmbase)
|
||||
ASM_GLOBAL ASM_PFX(FeaturePcdGet (PcdCpuSmmDebug))
|
||||
ASM_GLOBAL ASM_PFX(FeaturePcdGet (PcdCpuSmmStackGuard))
|
||||
ASM_GLOBAL ASM_PFX(gSmiHandlerIdtr)
|
||||
|
||||
.equ DSC_OFFSET, 0xfb00
|
||||
.equ DSC_GDTPTR, 0x30
|
||||
.equ DSC_GDTSIZ, 0x38
|
||||
.equ DSC_CS, 14
|
||||
.equ DSC_DS, 16
|
||||
.equ DSC_SS, 18
|
||||
.equ DSC_OTHERSEG, 20
|
||||
|
||||
.equ PROTECT_MODE_CS, 0x08
|
||||
.equ PROTECT_MODE_DS, 0x20
|
||||
.equ TSS_SEGMENT, 0x40
|
||||
|
||||
.text
|
||||
|
||||
ASM_PFX(gcSmiHandlerTemplate):
|
||||
|
||||
_SmiEntryPoint:
|
||||
.byte 0xbb # mov bx, imm16
|
||||
.word _GdtDesc - _SmiEntryPoint + 0x8000
|
||||
.byte 0x2e,0xa1 # mov ax, cs:[offset16]
|
||||
.word DSC_OFFSET + DSC_GDTSIZ
|
||||
decl %eax
|
||||
movl %eax, %cs:(%edi) # mov cs:[bx], ax
|
||||
.byte 0x66,0x2e,0xa1 # mov eax, cs:[offset16]
|
||||
.word DSC_OFFSET + DSC_GDTPTR
|
||||
movw %ax, %cs:2(%edi)
|
||||
movw %ax, %bp # ebp = GDT base
|
||||
.byte 0x66
|
||||
lgdt %cs:(%edi)
|
||||
# Patch ProtectedMode Segment
|
||||
.byte 0xb8 # mov ax, imm16
|
||||
.word PROTECT_MODE_CS # set AX for segment directly
|
||||
movl %eax, %cs:-2(%edi) # mov cs:[bx - 2], ax
|
||||
# Patch ProtectedMode entry
|
||||
.byte 0x66, 0xbf # mov edi, SMBASE
|
||||
ASM_PFX(gSmbase): .space 4
|
||||
.byte 0x67
|
||||
lea ((Start32bit - _SmiEntryPoint) + 0x8000)(%edi), %ax
|
||||
movw %ax, %cs:-6(%edi)
|
||||
movl %cr0, %ebx
|
||||
.byte 0x66
|
||||
andl $0x9ffafff3, %ebx
|
||||
.byte 0x66
|
||||
orl $0x23, %ebx
|
||||
movl %ebx, %cr0
|
||||
.byte 0x66,0xea
|
||||
.space 4
|
||||
.space 2
|
||||
_GdtDesc: .space 4
|
||||
.space 2
|
||||
|
||||
Start32bit:
|
||||
movw $PROTECT_MODE_DS, %ax
|
||||
movl %eax,%ds
|
||||
movl %eax,%es
|
||||
movl %eax,%fs
|
||||
movl %eax,%gs
|
||||
movl %eax,%ss
|
||||
.byte 0xbc # mov esp, imm32
|
||||
ASM_PFX(gSmiStack): .space 4
|
||||
movl $ASM_PFX(gSmiHandlerIdtr), %eax
|
||||
lidt (%eax)
|
||||
jmp ProtFlatMode
|
||||
|
||||
ProtFlatMode:
|
||||
.byte 0xb8 # mov eax, imm32
|
||||
ASM_PFX(gSmiCr3): .space 4
|
||||
movl %eax, %cr3
|
||||
#
|
||||
# Need to test for CR4 specific bit support
|
||||
#
|
||||
movl $1, %eax
|
||||
cpuid # use CPUID to determine if specific CR4 bits are supported
|
||||
xorl %eax, %eax # Clear EAX
|
||||
testl $BIT2, %edx # Check for DE capabilities
|
||||
jz L8
|
||||
orl $BIT3, %eax
|
||||
L8:
|
||||
testl $BIT6, %edx # Check for PAE capabilities
|
||||
jz L9
|
||||
orl $BIT5, %eax
|
||||
L9:
|
||||
testl $BIT7, %edx # Check for MCE capabilities
|
||||
jz L10
|
||||
orl $BIT6, %eax
|
||||
L10:
|
||||
testl $BIT24, %edx # Check for FXSR capabilities
|
||||
jz L11
|
||||
orl $BIT9, %eax
|
||||
L11:
|
||||
testl $BIT25, %edx # Check for SSE capabilities
|
||||
jz L12
|
||||
orl $BIT10, %eax
|
||||
L12: # as cr4.PGE is not set here, refresh cr3
|
||||
movl %eax, %cr4 # in PreModifyMtrrs() to flush TLB.
|
||||
movl %cr0, %ebx
|
||||
orl $0x080000000, %ebx # enable paging
|
||||
movl %ebx, %cr0
|
||||
leal DSC_OFFSET(%edi),%ebx
|
||||
movw DSC_DS(%ebx),%ax
|
||||
movl %eax, %ds
|
||||
movw DSC_OTHERSEG(%ebx),%ax
|
||||
movl %eax, %es
|
||||
movl %eax, %fs
|
||||
movl %eax, %gs
|
||||
movw DSC_SS(%ebx),%ax
|
||||
movl %eax, %ss
|
||||
|
||||
cmpb $0, ASM_PFX(FeaturePcdGet (PcdCpuSmmStackGuard))
|
||||
jz L5
|
||||
|
||||
# Load TSS
|
||||
movb $0x89, (TSS_SEGMENT + 5)(%ebp) # clear busy flag
|
||||
movl $TSS_SEGMENT, %eax
|
||||
ltrw %ax
|
||||
L5:
|
||||
|
||||
# jmp _SmiHandler # instruction is not needed
|
||||
|
||||
_SmiHandler:
|
||||
cmpb $0, ASM_PFX(FeaturePcdGet (PcdCpuSmmDebug))
|
||||
jz L3
|
||||
|
||||
L6:
|
||||
call L1
|
||||
L1:
|
||||
popl %ebp
|
||||
movl $0x80000001, %eax
|
||||
cpuid
|
||||
btl $29, %edx # check cpuid to identify X64 or IA32
|
||||
leal (0x7fc8 - (L1 - _SmiEntryPoint))(%ebp), %edi
|
||||
leal 4(%edi), %esi
|
||||
jnc L2
|
||||
addl $4, %esi
|
||||
L2:
|
||||
movl (%esi), %ecx
|
||||
movl (%edi), %edx
|
||||
L7:
|
||||
movl %ecx, %dr6
|
||||
movl %edx, %dr7 # restore DR6 & DR7 before running C code
|
||||
L3:
|
||||
|
||||
pushl (%esp)
|
||||
|
||||
movl $ASM_PFX(SmiRendezvous), %eax
|
||||
call *%eax
|
||||
popl %ecx
|
||||
|
||||
|
||||
cmpb $0, ASM_PFX(FeaturePcdGet (PcdCpuSmmDebug))
|
||||
jz L4
|
||||
|
||||
movl %dr6, %ecx
|
||||
movl %dr7, %edx
|
||||
movl %ecx, (%esi)
|
||||
movl %edx, (%edi)
|
||||
L4:
|
||||
|
||||
rsm
|
||||
|
||||
ASM_PFX(gcSmiHandlerSize): .word . - _SmiEntryPoint
|
Reference in New Issue
Block a user