From: Juergen Gross <jgross@suse.com>
To: minios-devel@lists.xenproject.org, xen-devel@lists.xenproject.org
Cc: Juergen Gross <jgross@suse.com>,
samuel.thibault@ens-lyon.org, wei.liu2@citrix.com
Subject: [PATCH v2 08/22] mini-os: initialize trap handling for HVMlite
Date: Wed, 24 Aug 2016 12:11:30 +0200 [thread overview]
Message-ID: <1472033504-23180-9-git-send-email-jgross@suse.com> (raw)
In-Reply-To: <1472033504-23180-1-git-send-email-jgross@suse.com>
Trap handling for HVMlite domains requires an initialized IDT.
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
---
arch/x86/setup.c | 15 ----------
arch/x86/traps.c | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
arch/x86/x86_64.S | 4 +++
include/x86/os.h | 1 +
4 files changed, 93 insertions(+), 15 deletions(-)
diff --git a/arch/x86/setup.c b/arch/x86/setup.c
index edc4ca4..efecefb 100644
--- a/arch/x86/setup.c
+++ b/arch/x86/setup.c
@@ -52,10 +52,6 @@ char stack[2*STACK_SIZE];
extern char shared_info[PAGE_SIZE];
-/* Assembler interface fns in entry.S. */
-void hypervisor_callback(void);
-void failsafe_callback(void);
-
#if defined(__x86_64__)
#define __pte(x) ((pte_t) { (x) } )
#else
@@ -162,17 +158,6 @@ arch_init(void *par)
/* Grab the shared_info pointer and put it in a safe place. */
HYPERVISOR_shared_info = map_shared_info(start_info.shared_info);
- /* Set up event and failsafe callback addresses. */
-#ifdef __i386__
- HYPERVISOR_set_callbacks(
- __KERNEL_CS, (unsigned long)hypervisor_callback,
- __KERNEL_CS, (unsigned long)failsafe_callback);
-#else
- HYPERVISOR_set_callbacks(
- (unsigned long)hypervisor_callback,
- (unsigned long)failsafe_callback, 0);
-#endif
-
start_kernel();
}
diff --git a/arch/x86/traps.c b/arch/x86/traps.c
index 307a14c..3b1fffb 100644
--- a/arch/x86/traps.c
+++ b/arch/x86/traps.c
@@ -1,10 +1,12 @@
#include <mini-os/os.h>
#include <mini-os/traps.h>
+#include <mini-os/desc.h>
#include <mini-os/hypervisor.h>
#include <mini-os/mm.h>
#include <mini-os/lib.h>
#include <mini-os/sched.h>
+#include <xen/hvm/params.h>
/*
* These are assembler stubs in entry.S.
@@ -293,6 +295,11 @@ void do_spurious_interrupt_bug(struct pt_regs * regs)
{
}
+/* Assembler interface fns in entry.S. */
+void hypervisor_callback(void);
+void failsafe_callback(void);
+
+#ifdef CONFIG_PARAVIRT
/*
* Submit a virtual IDT to teh hypervisor. This consists of tuples
* (interrupt vector, privilege ring, CS:EIP of handler).
@@ -325,9 +332,90 @@ static trap_info_t trap_table[] = {
void trap_init(void)
{
HYPERVISOR_set_trap_table(trap_table);
+
+#ifdef __i386__
+ HYPERVISOR_set_callbacks(
+ __KERNEL_CS, (unsigned long)hypervisor_callback,
+ __KERNEL_CS, (unsigned long)failsafe_callback);
+#else
+ HYPERVISOR_set_callbacks(
+ (unsigned long)hypervisor_callback,
+ (unsigned long)failsafe_callback, 0);
+#endif
}
void trap_fini(void)
{
HYPERVISOR_set_trap_table(NULL);
}
+#else
+
+#define INTR_STACK_SIZE PAGE_SIZE
+static uint8_t intr_stack[INTR_STACK_SIZE] __attribute__((aligned(16)));
+
+hw_tss tss __attribute__((aligned(16))) =
+{
+#if defined(__i386__)
+ .esp0 = (unsigned long)&intr_stack[INTR_STACK_SIZE],
+ .ss0 = __KERN_DS,
+#elif defined(__x86_64__)
+ .rsp0 = (unsigned long)&intr_stack[INTR_STACK_SIZE],
+#endif
+ .iopb = X86_TSS_INVALID_IO_BITMAP,
+};
+
+static void setup_gate(unsigned int entry, void *addr, unsigned int dpl)
+{
+ idt[entry].offset0 = (unsigned long)addr & 0xffff;
+ idt[entry].selector = __KERN_CS;
+ idt[entry]._r0 = 0;
+ idt[entry].type = 14;
+ idt[entry].s = 0;
+ idt[entry].dpl = dpl;
+ idt[entry].p = 1;
+ idt[entry].offset1 = ((unsigned long)addr >> 16) & 0xffff;
+#if defined(__x86_64__)
+ idt[entry].ist = 0;
+ idt[entry].offset2 = ((unsigned long)addr >> 32) & 0xffffffffu;
+ idt[entry]._r1 = 0;
+#endif
+}
+
+void trap_init(void)
+{
+ setup_gate(TRAP_divide_error, ÷_error, 0);
+ setup_gate(TRAP_debug, &debug, 0);
+ setup_gate(TRAP_int3, &int3, 3);
+ setup_gate(TRAP_overflow, &overflow, 3);
+ setup_gate(TRAP_bounds, &bounds, 0);
+ setup_gate(TRAP_invalid_op, &invalid_op, 0);
+ setup_gate(TRAP_no_device, &device_not_available, 0);
+ setup_gate(TRAP_copro_seg, &coprocessor_segment_overrun, 0);
+ setup_gate(TRAP_invalid_tss, &invalid_TSS, 0);
+ setup_gate(TRAP_no_segment, &segment_not_present, 0);
+ setup_gate(TRAP_stack_error, &stack_segment, 0);
+ setup_gate(TRAP_gp_fault, &general_protection, 0);
+ setup_gate(TRAP_page_fault, &page_fault, 0);
+ setup_gate(TRAP_spurious_int, &spurious_interrupt_bug, 0);
+ setup_gate(TRAP_copro_error, &coprocessor_error, 0);
+ setup_gate(TRAP_alignment_check, &alignment_check, 0);
+ setup_gate(TRAP_simd_error, &simd_coprocessor_error, 0);
+ setup_gate(TRAP_xen_callback, hypervisor_callback, 0);
+
+ asm volatile ("lidt idt_ptr");
+
+ gdt[GDTE_TSS] = (typeof(*gdt))INIT_GDTE((unsigned long)&tss, 0x67, 0x89);
+ asm volatile ("ltr %w0" :: "rm" (GDTE_TSS * 8));
+
+ if ( hvm_set_parameter(HVM_PARAM_CALLBACK_IRQ,
+ (2ULL << 56) | TRAP_xen_callback) )
+ {
+ xprintk("Request for Xen HVM callback vector failed\n");
+ do_exit();
+ }
+}
+
+void trap_fini(void)
+{
+}
+#endif
diff --git a/arch/x86/x86_64.S b/arch/x86/x86_64.S
index 373f400..e725c63 100644
--- a/arch/x86/x86_64.S
+++ b/arch/x86/x86_64.S
@@ -130,18 +130,22 @@ KERNEL_CS_MASK = 0xfc
.endm
.macro HYPERVISOR_IRET flag
+#ifdef CONFIG_PARAVIRT
testl $NMI_MASK,2*8(%rsp)
jnz 2f
+#endif
/* Direct iret to kernel space. Correct CS and SS. */
orb $3,1*8(%rsp)
orb $3,4*8(%rsp)
iretq
+#ifdef CONFIG_PARAVIRT
2: /* Slow iret via hypervisor. */
andl $~NMI_MASK, 16(%rsp)
pushq $\flag
jmp hypercall_page + (__HYPERVISOR_iret * 32)
+#endif
.endm
diff --git a/include/x86/os.h b/include/x86/os.h
index 7b7869a..db1389a 100644
--- a/include/x86/os.h
+++ b/include/x86/os.h
@@ -56,6 +56,7 @@
#define TRAP_machine_check 18
#define TRAP_simd_error 19
#define TRAP_deferred_nmi 31
+#define TRAP_xen_callback 32
/* Everything below this point is not included by assembler (.S) files. */
#ifndef __ASSEMBLY__
--
2.6.6
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-08-24 10:11 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-24 10:11 [PATCH v2 00/22] mini-os: support HVMlite mode Juergen Gross
2016-08-24 10:11 ` [PATCH v2 01/22] mini-os: resync xen headers Juergen Gross
2016-08-24 10:11 ` [PATCH v2 02/22] mini-os: make dump_regs() work in early boot Juergen Gross
2016-08-24 10:11 ` [PATCH v2 03/22] mini-os: add CONFIG_PARAVIRT Juergen Gross
2016-08-24 10:11 ` [PATCH v2 04/22] mini-os: make some memory management related macros usable from assembler Juergen Gross
2016-08-24 10:11 ` [PATCH v2 05/22] mini-os: add boot code for HVMlite support Juergen Gross
2016-08-24 10:21 ` Samuel Thibault
2016-08-24 10:11 ` [PATCH v2 06/22] mini-os: setup hypercall page for HVMlite Juergen Gross
2016-08-24 10:11 ` [PATCH v2 07/22] mini-os: support hvm_op hypercall Juergen Gross
2016-08-24 10:11 ` Juergen Gross [this message]
2016-08-24 10:11 ` [PATCH v2 09/22] mini-os: support HVMlite traps Juergen Gross
2016-08-24 10:11 ` [PATCH v2 10/22] mini-os: make p2m related code depend on CONFIG_PARAVIRT Juergen Gross
2016-08-24 10:11 ` [PATCH v2 11/22] mini-os: add static page tables for virtual kernel area for HVMlite Juergen Gross
2016-08-24 10:11 ` [PATCH v2 12/22] mini-os: add x86 native page table handling Juergen Gross
2016-08-24 10:11 ` [PATCH v2 13/22] mini-os: correct wrong calculation of alloc bitmap size Juergen Gross
2016-08-24 10:11 ` [PATCH v2 14/22] mini-os: add map_frame_virt() function Juergen Gross
2016-08-24 10:11 ` [PATCH v2 15/22] mini-os: setup console interface parameters Juergen Gross
2016-08-24 10:11 ` [PATCH v2 16/22] mini-os: setup xenbus " Juergen Gross
2016-08-24 10:11 ` [PATCH v2 17/22] mini-os: add get_cmdline() function Juergen Gross
2016-08-24 10:11 ` [PATCH v2 18/22] mini-os: map shared info page for HVMlite Juergen Gross
2016-08-24 10:11 ` [PATCH v2 19/22] mini-os: remove using start_info in architecture independent code Juergen Gross
2016-08-24 10:11 ` [PATCH v2 20/22] mini-os: print start of day messages depending on domain type Juergen Gross
2016-08-24 10:11 ` [PATCH v2 21/22] mini-os: get physical memory map Juergen Gross
2016-08-24 10:11 ` [PATCH v2 22/22] mini-os: support idle for HVMlite Juergen Gross
2016-08-24 10:38 ` [PATCH v2 00/22] mini-os: support HVMlite mode Wei Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1472033504-23180-9-git-send-email-jgross@suse.com \
--to=jgross@suse.com \
--cc=minios-devel@lists.xenproject.org \
--cc=samuel.thibault@ens-lyon.org \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).