2019-06-04 08:11:30 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2007-07-11 19:18:53 +00:00
|
|
|
/* ----------------------------------------------------------------------- *
|
|
|
|
*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
* Copyright 2007 rPath, Inc. - All Rights Reserved
|
|
|
|
*
|
|
|
|
* ----------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The actual transition into protected mode
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm/boot.h>
|
2008-01-30 12:33:02 +00:00
|
|
|
#include <asm/processor-flags.h>
|
2007-07-11 19:18:53 +00:00
|
|
|
#include <asm/segment.h>
|
2009-02-13 21:50:21 +00:00
|
|
|
#include <linux/linkage.h>
|
2007-07-11 19:18:53 +00:00
|
|
|
|
|
|
|
.text
|
|
|
|
.code16
|
|
|
|
|
|
|
|
/*
|
|
|
|
* void protected_mode_jump(u32 entrypoint, u32 bootparams);
|
|
|
|
*/
|
2019-10-11 11:50:56 +00:00
|
|
|
SYM_FUNC_START_NOALIGN(protected_mode_jump)
|
2007-07-11 19:18:53 +00:00
|
|
|
movl %edx, %esi # Pointer to boot_params table
|
2008-01-30 12:33:01 +00:00
|
|
|
|
|
|
|
xorl %ebx, %ebx
|
|
|
|
movw %cs, %bx
|
|
|
|
shll $4, %ebx
|
|
|
|
addl %ebx, 2f
|
2008-06-30 22:42:47 +00:00
|
|
|
jmp 1f # Short jump to serialize on 386/486
|
|
|
|
1:
|
2007-07-11 19:18:53 +00:00
|
|
|
|
|
|
|
movw $__BOOT_DS, %cx
|
2008-01-30 12:33:02 +00:00
|
|
|
movw $__BOOT_TSS, %di
|
2007-07-11 19:18:53 +00:00
|
|
|
|
|
|
|
movl %cr0, %edx
|
2008-01-30 12:33:02 +00:00
|
|
|
orb $X86_CR0_PE, %dl # Protected mode
|
2007-07-11 19:18:53 +00:00
|
|
|
movl %edx, %cr0
|
|
|
|
|
2008-01-30 12:33:01 +00:00
|
|
|
# Transition to 32-bit mode
|
2007-07-11 19:18:53 +00:00
|
|
|
.byte 0x66, 0xea # ljmpl opcode
|
2019-10-11 09:22:13 +00:00
|
|
|
2: .long .Lin_pm32 # offset
|
2007-07-11 19:18:53 +00:00
|
|
|
.word __BOOT_CS # segment
|
2019-10-11 11:50:56 +00:00
|
|
|
SYM_FUNC_END(protected_mode_jump)
|
2008-01-30 12:33:01 +00:00
|
|
|
|
|
|
|
.code32
|
2009-03-17 22:26:06 +00:00
|
|
|
.section ".text32","ax"
|
2019-10-11 11:50:47 +00:00
|
|
|
SYM_FUNC_START_LOCAL_NOALIGN(.Lin_pm32)
|
2008-01-30 12:33:01 +00:00
|
|
|
# Set up data segments for flat 32-bit mode
|
|
|
|
movl %ecx, %ds
|
|
|
|
movl %ecx, %es
|
|
|
|
movl %ecx, %fs
|
|
|
|
movl %ecx, %gs
|
|
|
|
movl %ecx, %ss
|
|
|
|
# The 32-bit code sets up its own stack, but this way we do have
|
|
|
|
# a valid stack if some debugging hack wants to use it.
|
|
|
|
addl %ebx, %esp
|
|
|
|
|
2008-01-30 12:33:02 +00:00
|
|
|
# Set up TR to make Intel VT happy
|
|
|
|
ltr %di
|
|
|
|
|
2008-01-30 12:33:01 +00:00
|
|
|
# Clear registers to allow for future extensions to the
|
|
|
|
# 32-bit boot protocol
|
|
|
|
xorl %ecx, %ecx
|
|
|
|
xorl %edx, %edx
|
|
|
|
xorl %ebx, %ebx
|
|
|
|
xorl %ebp, %ebp
|
|
|
|
xorl %edi, %edi
|
|
|
|
|
2008-01-30 12:33:02 +00:00
|
|
|
# Set up LDTR to make Intel VT happy
|
|
|
|
lldt %cx
|
|
|
|
|
2008-01-30 12:33:01 +00:00
|
|
|
jmpl *%eax # Jump to the 32-bit entrypoint
|
2019-10-11 11:50:47 +00:00
|
|
|
SYM_FUNC_END(.Lin_pm32)
|