/* * Copyright (c) 2006 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ #include #include #include #include #include #include #include .data .align 3 .globl EXT(gdtptr64) /* align below right */ .word 0 LEXT(gdtptr64) .word Times(8,GDTSZ)-1 /* XXX really want .quad here */ .long EXT(master_gdt) .long KERNEL_UBER_BASE_HI32 /* must be in uber-space */ .align 3 .globl EXT(idtptr64) /* align below right */ .word 0 LEXT(idtptr64) .word Times(16,IDTSZ)-1 /* XXX really want .quad here */ .long EXT(master_idt64) .long KERNEL_UBER_BASE_HI32 /* must be in uber-space */ .text Entry(ml_load_desc64) ENTER_64BIT_MODE() POSTCODE(ML_LOAD_DESC64_ENTRY) lgdt EXT(gdtptr64) /* load GDT */ POSTCODE(ML_LOAD_DESC64_GDT) lidt EXT(idtptr64) /* load IDT */ POSTCODE(ML_LOAD_DESC64_IDT) movw $(KERNEL_LDT),%ax /* get LDT segment */ lldt %ax /* load LDT */ POSTCODE(ML_LOAD_DESC64_LDT) movw $(KERNEL_TSS),%ax ltr %ax /* set up KTSS */ POSTCODE(ML_LOAD_DESC64_EXIT) ENTER_COMPAT_MODE() ret Entry(ml_64bit_wrmsr64) /* (uint32_t msr, uint64_t value) */ /* (uint32_t msr, uint32_t lo, uint32_t hi) */ FRAME ENTER_64BIT_MODE() movl B_ARG0, %ecx movl B_ARG1, %eax movl B_ARG2, %edx wrmsr ENTER_COMPAT_MODE() EMARF ret Entry(ml_64bit_lldt) /* (int32_t selector) */ FRAME ENTER_64BIT_MODE() movl B_ARG0, %eax lldt %ax ENTER_COMPAT_MODE() EMARF ret Entry(set_64bit_debug_regs) /* x86_debug_state64_t *ds */ FRAME ENTER_64BIT_MODE() mov B_ARG0, %edx mov DS64_DR0(%edx), %rax mov %rax, %dr0 mov DS64_DR1(%edx), %rax mov %rax, %dr1 mov DS64_DR2(%edx), %rax mov %rax, %dr2 mov DS64_DR3(%edx), %rax mov %rax, %dr3 ENTER_COMPAT_MODE() EMARF ret Entry(flush_tlb64) FRAME ENTER_64BIT_MODE() mov %cr3, %rax mov %rax, %cr3 ENTER_COMPAT_MODE() EMARF ret /* FXSAVE and FXRSTOR operate in a mode dependent fashion, hence these variants. * Must be called with interrupts disabled. * We clear pending x87 exceptions here; this is technically incorrect, since we should * propagate those to the user, but the compatibility mode kernel is currently not * prepared to handle exceptions originating in 64-bit kernel mode. However, it may be possible * to work around this should it prove necessary. */ Entry(fxsave64) movl S_ARG0,%eax ENTER_64BIT_MODE() fnclex fxsave 0(%eax) ENTER_COMPAT_MODE() ret Entry(fxrstor64) movl S_ARG0,%eax ENTER_64BIT_MODE() fnclex fxrstor 0(%rax) ENTER_COMPAT_MODE() ret