x86, apic: remove genapic.h
[deliverable/linux.git] / arch / x86 / kernel / vmi_32.c
CommitLineData
7ce0bcfd
ZA
1/*
2 * VMI specific paravirt-ops implementation
3 *
4 * Copyright (C) 2005, VMware, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
14 * NON INFRINGEMENT. See the GNU General Public License for more
15 * details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 * Send feedback to zach@vmware.com
22 *
23 */
24
25#include <linux/module.h>
7ce0bcfd
ZA
26#include <linux/cpu.h>
27#include <linux/bootmem.h>
28#include <linux/mm.h>
eeef9c68 29#include <linux/highmem.h>
fa0aa866 30#include <linux/sched.h>
7ce0bcfd
ZA
31#include <asm/vmi.h>
32#include <asm/io.h>
33#include <asm/fixmap.h>
34#include <asm/apicdef.h>
7b6aa335 35#include <asm/apic.h>
7ce0bcfd
ZA
36#include <asm/processor.h>
37#include <asm/timer.h>
bbab4f3b 38#include <asm/vmi_time.h>
8f485612 39#include <asm/kmap_types.h>
31343d8a 40#include <asm/setup.h>
7ce0bcfd
ZA
41
42/* Convenient for calling VMI functions indirectly in the ROM */
43typedef u32 __attribute__((regparm(1))) (VROMFUNC)(void);
44typedef u64 __attribute__((regparm(2))) (VROMLONGFUNC)(int);
45
46#define call_vrom_func(rom,func) \
47 (((VROMFUNC *)(rom->func))())
48
49#define call_vrom_long_func(rom,func,arg) \
50 (((VROMLONGFUNC *)(rom->func)) (arg))
51
52static struct vrom_header *vmi_rom;
7ce0bcfd
ZA
53static int disable_pge;
54static int disable_pse;
55static int disable_sep;
56static int disable_tsc;
57static int disable_mtrr;
7507ba34 58static int disable_noidle;
772205f6 59static int disable_vmi_timer;
7ce0bcfd
ZA
60
61/* Cached VMI operations */
30a1528d 62static struct {
7ce0bcfd
ZA
63 void (*cpuid)(void /* non-c */);
64 void (*_set_ldt)(u32 selector);
65 void (*set_tr)(u32 selector);
8d947344 66 void (*write_idt_entry)(struct desc_struct *, int, u32, u32);
014b15be 67 void (*write_gdt_entry)(struct desc_struct *, int, u32, u32);
75b8bb3e 68 void (*write_ldt_entry)(struct desc_struct *, int, u32, u32);
faca6227 69 void (*set_kernel_stack)(u32 selector, u32 sp0);
7ce0bcfd
ZA
70 void (*allocate_page)(u32, u32, u32, u32, u32);
71 void (*release_page)(u32, u32);
72 void (*set_pte)(pte_t, pte_t *, unsigned);
73 void (*update_pte)(pte_t *, unsigned);
eeef9c68
ZA
74 void (*set_linear_mapping)(int, void *, u32, u32);
75 void (*_flush_tlb)(int);
7ce0bcfd 76 void (*set_initial_ap_state)(int, int);
bbab4f3b 77 void (*halt)(void);
49f19710 78 void (*set_lazy_mode)(int mode);
7ce0bcfd
ZA
79} vmi_ops;
80
e0bb8643
ZA
81/* Cached VMI operations */
82struct vmi_timer_ops vmi_timer_ops;
83
7ce0bcfd
ZA
84/*
85 * VMI patching routines.
86 */
87#define MNEM_CALL 0xe8
88#define MNEM_JMP 0xe9
89#define MNEM_RET 0xc3
90
7ce0bcfd
ZA
91#define IRQ_PATCH_INT_MASK 0
92#define IRQ_PATCH_DISABLE 5
93
ab144f5e 94static inline void patch_offset(void *insnbuf,
65ea5b03 95 unsigned long ip, unsigned long dest)
7ce0bcfd 96{
65ea5b03 97 *(unsigned long *)(insnbuf+1) = dest-ip-5;
7ce0bcfd
ZA
98}
99
ab144f5e 100static unsigned patch_internal(int call, unsigned len, void *insnbuf,
65ea5b03 101 unsigned long ip)
7ce0bcfd
ZA
102{
103 u64 reloc;
104 struct vmi_relocation_info *const rel = (struct vmi_relocation_info *)&reloc;
105 reloc = call_vrom_long_func(vmi_rom, get_reloc, call);
106 switch(rel->type) {
107 case VMI_RELOCATION_CALL_REL:
108 BUG_ON(len < 5);
ab144f5e 109 *(char *)insnbuf = MNEM_CALL;
65ea5b03 110 patch_offset(insnbuf, ip, (unsigned long)rel->eip);
7ce0bcfd
ZA
111 return 5;
112
113 case VMI_RELOCATION_JUMP_REL:
114 BUG_ON(len < 5);
ab144f5e 115 *(char *)insnbuf = MNEM_JMP;
65ea5b03 116 patch_offset(insnbuf, ip, (unsigned long)rel->eip);
7ce0bcfd
ZA
117 return 5;
118
119 case VMI_RELOCATION_NOP:
120 /* obliterate the whole thing */
121 return 0;
122
123 case VMI_RELOCATION_NONE:
124 /* leave native code in place */
125 break;
126
127 default:
128 BUG();
129 }
130 return len;
131}
132
133/*
134 * Apply patch if appropriate, return length of new instruction
135 * sequence. The callee does nop padding for us.
136 */
ab144f5e 137static unsigned vmi_patch(u8 type, u16 clobbers, void *insns,
65ea5b03 138 unsigned long ip, unsigned len)
7ce0bcfd
ZA
139{
140 switch (type) {
93b1eab3 141 case PARAVIRT_PATCH(pv_irq_ops.irq_disable):
ab144f5e 142 return patch_internal(VMI_CALL_DisableInterrupts, len,
65ea5b03 143 insns, ip);
93b1eab3 144 case PARAVIRT_PATCH(pv_irq_ops.irq_enable):
ab144f5e 145 return patch_internal(VMI_CALL_EnableInterrupts, len,
65ea5b03 146 insns, ip);
93b1eab3 147 case PARAVIRT_PATCH(pv_irq_ops.restore_fl):
ab144f5e 148 return patch_internal(VMI_CALL_SetInterruptMask, len,
65ea5b03 149 insns, ip);
93b1eab3 150 case PARAVIRT_PATCH(pv_irq_ops.save_fl):
ab144f5e 151 return patch_internal(VMI_CALL_GetInterruptMask, len,
65ea5b03 152 insns, ip);
93b1eab3 153 case PARAVIRT_PATCH(pv_cpu_ops.iret):
65ea5b03 154 return patch_internal(VMI_CALL_IRET, len, insns, ip);
d75cd22f 155 case PARAVIRT_PATCH(pv_cpu_ops.irq_enable_sysexit):
65ea5b03 156 return patch_internal(VMI_CALL_SYSEXIT, len, insns, ip);
7ce0bcfd
ZA
157 default:
158 break;
159 }
160 return len;
161}
162
163/* CPUID has non-C semantics, and paravirt-ops API doesn't match hardware ISA */
65ea5b03
PA
164static void vmi_cpuid(unsigned int *ax, unsigned int *bx,
165 unsigned int *cx, unsigned int *dx)
7ce0bcfd
ZA
166{
167 int override = 0;
65ea5b03 168 if (*ax == 1)
7ce0bcfd
ZA
169 override = 1;
170 asm volatile ("call *%6"
65ea5b03
PA
171 : "=a" (*ax),
172 "=b" (*bx),
173 "=c" (*cx),
174 "=d" (*dx)
175 : "0" (*ax), "2" (*cx), "r" (vmi_ops.cpuid));
7ce0bcfd
ZA
176 if (override) {
177 if (disable_pse)
65ea5b03 178 *dx &= ~X86_FEATURE_PSE;
7ce0bcfd 179 if (disable_pge)
65ea5b03 180 *dx &= ~X86_FEATURE_PGE;
7ce0bcfd 181 if (disable_sep)
65ea5b03 182 *dx &= ~X86_FEATURE_SEP;
7ce0bcfd 183 if (disable_tsc)
65ea5b03 184 *dx &= ~X86_FEATURE_TSC;
7ce0bcfd 185 if (disable_mtrr)
65ea5b03 186 *dx &= ~X86_FEATURE_MTRR;
7ce0bcfd
ZA
187 }
188}
189
190static inline void vmi_maybe_load_tls(struct desc_struct *gdt, int nr, struct desc_struct *new)
191{
192 if (gdt[nr].a != new->a || gdt[nr].b != new->b)
014b15be 193 write_gdt_entry(gdt, nr, new, 0);
7ce0bcfd
ZA
194}
195
196static void vmi_load_tls(struct thread_struct *t, unsigned int cpu)
197{
198 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
199 vmi_maybe_load_tls(gdt, GDT_ENTRY_TLS_MIN + 0, &t->tls_array[0]);
200 vmi_maybe_load_tls(gdt, GDT_ENTRY_TLS_MIN + 1, &t->tls_array[1]);
201 vmi_maybe_load_tls(gdt, GDT_ENTRY_TLS_MIN + 2, &t->tls_array[2]);
202}
203
204static void vmi_set_ldt(const void *addr, unsigned entries)
205{
206 unsigned cpu = smp_processor_id();
014b15be 207 struct desc_struct desc;
7ce0bcfd 208
014b15be 209 pack_descriptor(&desc, (unsigned long)addr,
7ce0bcfd 210 entries * sizeof(struct desc_struct) - 1,
014b15be
GOC
211 DESC_LDT, 0);
212 write_gdt_entry(get_cpu_gdt_table(cpu), GDT_ENTRY_LDT, &desc, DESC_LDT);
7ce0bcfd
ZA
213 vmi_ops._set_ldt(entries ? GDT_ENTRY_LDT*sizeof(struct desc_struct) : 0);
214}
215
216static void vmi_set_tr(void)
217{
218 vmi_ops.set_tr(GDT_ENTRY_TSS*sizeof(struct desc_struct));
219}
220
8d947344
GOC
221static void vmi_write_idt_entry(gate_desc *dt, int entry, const gate_desc *g)
222{
223 u32 *idt_entry = (u32 *)g;
262d5ee2 224 vmi_ops.write_idt_entry(dt, entry, idt_entry[0], idt_entry[1]);
8d947344
GOC
225}
226
014b15be
GOC
227static void vmi_write_gdt_entry(struct desc_struct *dt, int entry,
228 const void *desc, int type)
229{
230 u32 *gdt_entry = (u32 *)desc;
262d5ee2 231 vmi_ops.write_gdt_entry(dt, entry, gdt_entry[0], gdt_entry[1]);
014b15be
GOC
232}
233
75b8bb3e
GOC
234static void vmi_write_ldt_entry(struct desc_struct *dt, int entry,
235 const void *desc)
236{
237 u32 *ldt_entry = (u32 *)desc;
de59985e 238 vmi_ops.write_ldt_entry(dt, entry, ldt_entry[0], ldt_entry[1]);
75b8bb3e
GOC
239}
240
faca6227 241static void vmi_load_sp0(struct tss_struct *tss,
7ce0bcfd
ZA
242 struct thread_struct *thread)
243{
faca6227 244 tss->x86_tss.sp0 = thread->sp0;
7ce0bcfd
ZA
245
246 /* This can only happen when SEP is enabled, no need to test "SEP"arately */
a75c54f9
RR
247 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
248 tss->x86_tss.ss1 = thread->sysenter_cs;
7ce0bcfd
ZA
249 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
250 }
faca6227 251 vmi_ops.set_kernel_stack(__KERNEL_DS, tss->x86_tss.sp0);
7ce0bcfd
ZA
252}
253
254static void vmi_flush_tlb_user(void)
255{
eeef9c68 256 vmi_ops._flush_tlb(VMI_FLUSH_TLB);
7ce0bcfd
ZA
257}
258
259static void vmi_flush_tlb_kernel(void)
260{
eeef9c68 261 vmi_ops._flush_tlb(VMI_FLUSH_TLB | VMI_FLUSH_GLOBAL);
7ce0bcfd
ZA
262}
263
264/* Stub to do nothing at all; used for delays and unimplemented calls */
265static void vmi_nop(void)
266{
267}
268
eeef9c68
ZA
269#ifdef CONFIG_HIGHPTE
270static void *vmi_kmap_atomic_pte(struct page *page, enum km_type type)
9a1c13e9 271{
eeef9c68
ZA
272 void *va = kmap_atomic(page, type);
273
9a1c13e9
ZA
274 /*
275 * Internally, the VMI ROM must map virtual addresses to physical
276 * addresses for processing MMU updates. By the time MMU updates
277 * are issued, this information is typically already lost.
278 * Fortunately, the VMI provides a cache of mapping slots for active
279 * page tables.
280 *
281 * We use slot zero for the linear mapping of physical memory, and
282 * in HIGHPTE kernels, slot 1 and 2 for KM_PTE0 and KM_PTE1.
283 *
284 * args: SLOT VA COUNT PFN
285 */
286 BUG_ON(type != KM_PTE0 && type != KM_PTE1);
eeef9c68
ZA
287 vmi_ops.set_linear_mapping((type - KM_PTE0)+1, va, 1, page_to_pfn(page));
288
289 return va;
9a1c13e9 290}
eeef9c68 291#endif
9a1c13e9 292
f8639939 293static void vmi_allocate_pte(struct mm_struct *mm, unsigned long pfn)
7ce0bcfd 294{
7ce0bcfd
ZA
295 vmi_ops.allocate_page(pfn, VMI_PAGE_L1, 0, 0, 0);
296}
297
f8639939 298static void vmi_allocate_pmd(struct mm_struct *mm, unsigned long pfn)
7ce0bcfd
ZA
299{
300 /*
301 * This call comes in very early, before mem_map is setup.
302 * It is called only for swapper_pg_dir, which already has
303 * data on it.
304 */
7ce0bcfd
ZA
305 vmi_ops.allocate_page(pfn, VMI_PAGE_L2, 0, 0, 0);
306}
307
f8639939 308static void vmi_allocate_pmd_clone(unsigned long pfn, unsigned long clonepfn, unsigned long start, unsigned long count)
7ce0bcfd 309{
7ce0bcfd
ZA
310 vmi_ops.allocate_page(pfn, VMI_PAGE_L2 | VMI_PAGE_CLONE, clonepfn, start, count);
311}
312
f8639939 313static void vmi_release_pte(unsigned long pfn)
7ce0bcfd
ZA
314{
315 vmi_ops.release_page(pfn, VMI_PAGE_L1);
7ce0bcfd
ZA
316}
317
f8639939 318static void vmi_release_pmd(unsigned long pfn)
7ce0bcfd
ZA
319{
320 vmi_ops.release_page(pfn, VMI_PAGE_L2);
7ce0bcfd
ZA
321}
322
55a8ba4b
AK
323/*
324 * We use the pgd_free hook for releasing the pgd page:
325 */
326static void vmi_pgd_free(struct mm_struct *mm, pgd_t *pgd)
327{
328 unsigned long pfn = __pa(pgd) >> PAGE_SHIFT;
329
330 vmi_ops.release_page(pfn, VMI_PAGE_L2);
331}
332
7ce0bcfd
ZA
333/*
334 * Helper macros for MMU update flags. We can defer updates until a flush
335 * or page invalidation only if the update is to the current address space
336 * (otherwise, there is no flush). We must check against init_mm, since
337 * this could be a kernel update, which usually passes init_mm, although
338 * sometimes this check can be skipped if we know the particular function
339 * is only called on user mode PTEs. We could change the kernel to pass
340 * current->active_mm here, but in particular, I was unsure if changing
341 * mm/highmem.c to do this would still be correct on other architectures.
342 */
343#define is_current_as(mm, mustbeuser) ((mm) == current->active_mm || \
344 (!mustbeuser && (mm) == &init_mm))
345#define vmi_flags_addr(mm, addr, level, user) \
346 ((level) | (is_current_as(mm, user) ? \
347 (VMI_PAGE_CURRENT_AS | ((addr) & VMI_PAGE_VA_MASK)) : 0))
348#define vmi_flags_addr_defer(mm, addr, level, user) \
349 ((level) | (is_current_as(mm, user) ? \
350 (VMI_PAGE_DEFER | VMI_PAGE_CURRENT_AS | ((addr) & VMI_PAGE_VA_MASK)) : 0))
351
3dc494e8 352static void vmi_update_pte(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
7ce0bcfd 353{
7ce0bcfd
ZA
354 vmi_ops.update_pte(ptep, vmi_flags_addr(mm, addr, VMI_PAGE_PT, 0));
355}
356
3dc494e8 357static void vmi_update_pte_defer(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
7ce0bcfd 358{
7ce0bcfd
ZA
359 vmi_ops.update_pte(ptep, vmi_flags_addr_defer(mm, addr, VMI_PAGE_PT, 0));
360}
361
362static void vmi_set_pte(pte_t *ptep, pte_t pte)
363{
364 /* XXX because of set_pmd_pte, this can be called on PT or PD layers */
7ce0bcfd
ZA
365 vmi_ops.set_pte(pte, ptep, VMI_PAGE_PT);
366}
367
3dc494e8 368static void vmi_set_pte_at(struct mm_struct *mm, unsigned long addr, pte_t *ptep, pte_t pte)
7ce0bcfd 369{
7ce0bcfd
ZA
370 vmi_ops.set_pte(pte, ptep, vmi_flags_addr(mm, addr, VMI_PAGE_PT, 0));
371}
372
373static void vmi_set_pmd(pmd_t *pmdp, pmd_t pmdval)
374{
375#ifdef CONFIG_X86_PAE
e3328701 376 const pte_t pte = { .pte = pmdval.pmd };
7ce0bcfd
ZA
377#else
378 const pte_t pte = { pmdval.pud.pgd.pgd };
7ce0bcfd
ZA
379#endif
380 vmi_ops.set_pte(pte, (pte_t *)pmdp, VMI_PAGE_PD);
381}
382
383#ifdef CONFIG_X86_PAE
384
385static void vmi_set_pte_atomic(pte_t *ptep, pte_t pteval)
386{
387 /*
388 * XXX This is called from set_pmd_pte, but at both PT
389 * and PD layers so the VMI_PAGE_PT flag is wrong. But
390 * it is only called for large page mapping changes,
391 * the Xen backend, doesn't support large pages, and the
392 * ESX backend doesn't depend on the flag.
393 */
394 set_64bit((unsigned long long *)ptep,pte_val(pteval));
395 vmi_ops.update_pte(ptep, VMI_PAGE_PT);
396}
397
398static void vmi_set_pte_present(struct mm_struct *mm, unsigned long addr, pte_t *ptep, pte_t pte)
399{
7ce0bcfd
ZA
400 vmi_ops.set_pte(pte, ptep, vmi_flags_addr_defer(mm, addr, VMI_PAGE_PT, 1));
401}
402
403static void vmi_set_pud(pud_t *pudp, pud_t pudval)
404{
405 /* Um, eww */
e3328701 406 const pte_t pte = { .pte = pudval.pgd.pgd };
7ce0bcfd
ZA
407 vmi_ops.set_pte(pte, (pte_t *)pudp, VMI_PAGE_PDP);
408}
409
410static void vmi_pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
411{
e3328701 412 const pte_t pte = { .pte = 0 };
7ce0bcfd
ZA
413 vmi_ops.set_pte(pte, ptep, vmi_flags_addr(mm, addr, VMI_PAGE_PT, 0));
414}
415
8eb68fae 416static void vmi_pmd_clear(pmd_t *pmd)
7ce0bcfd 417{
e3328701 418 const pte_t pte = { .pte = 0 };
7ce0bcfd
ZA
419 vmi_ops.set_pte(pte, (pte_t *)pmd, VMI_PAGE_PD);
420}
421#endif
422
423#ifdef CONFIG_SMP
c6b36e9a 424static void __devinit
7ce0bcfd
ZA
425vmi_startup_ipi_hook(int phys_apicid, unsigned long start_eip,
426 unsigned long start_esp)
427{
c6b36e9a
ZA
428 struct vmi_ap_state ap;
429
7ce0bcfd
ZA
430 /* Default everything to zero. This is fine for most GPRs. */
431 memset(&ap, 0, sizeof(struct vmi_ap_state));
432
433 ap.gdtr_limit = GDT_SIZE - 1;
434 ap.gdtr_base = (unsigned long) get_cpu_gdt_table(phys_apicid);
435
436 ap.idtr_limit = IDT_ENTRIES * 8 - 1;
437 ap.idtr_base = (unsigned long) idt_table;
438
439 ap.ldtr = 0;
440
441 ap.cs = __KERNEL_CS;
442 ap.eip = (unsigned long) start_eip;
443 ap.ss = __KERNEL_DS;
444 ap.esp = (unsigned long) start_esp;
445
446 ap.ds = __USER_DS;
447 ap.es = __USER_DS;
7c3576d2 448 ap.fs = __KERNEL_PERCPU;
7ce0bcfd
ZA
449 ap.gs = 0;
450
451 ap.eflags = 0;
452
7ce0bcfd
ZA
453#ifdef CONFIG_X86_PAE
454 /* efer should match BSP efer. */
455 if (cpu_has_nx) {
456 unsigned l, h;
457 rdmsr(MSR_EFER, l, h);
458 ap.efer = (unsigned long long) h << 32 | l;
459 }
460#endif
461
462 ap.cr3 = __pa(swapper_pg_dir);
463 /* Protected mode, paging, AM, WP, NE, MP. */
464 ap.cr0 = 0x80050023;
465 ap.cr4 = mmu_cr4_features;
c6b36e9a 466 vmi_ops.set_initial_ap_state((u32)&ap, phys_apicid);
7ce0bcfd
ZA
467}
468#endif
469
8965c1c0 470static void vmi_enter_lazy_cpu(void)
49f19710 471{
8965c1c0
JF
472 paravirt_enter_lazy_cpu();
473 vmi_ops.set_lazy_mode(2);
474}
49f19710 475
8965c1c0
JF
476static void vmi_enter_lazy_mmu(void)
477{
478 paravirt_enter_lazy_mmu();
479 vmi_ops.set_lazy_mode(1);
480}
49f19710 481
8965c1c0
JF
482static void vmi_leave_lazy(void)
483{
484 paravirt_leave_lazy(paravirt_get_lazy_mode());
485 vmi_ops.set_lazy_mode(0);
49f19710
ZA
486}
487
7ce0bcfd
ZA
488static inline int __init check_vmi_rom(struct vrom_header *rom)
489{
490 struct pci_header *pci;
491 struct pnp_header *pnp;
492 const char *manufacturer = "UNKNOWN";
493 const char *product = "UNKNOWN";
494 const char *license = "unspecified";
495
496 if (rom->rom_signature != 0xaa55)
497 return 0;
498 if (rom->vrom_signature != VMI_SIGNATURE)
499 return 0;
500 if (rom->api_version_maj != VMI_API_REV_MAJOR ||
501 rom->api_version_min+1 < VMI_API_REV_MINOR+1) {
502 printk(KERN_WARNING "VMI: Found mismatched rom version %d.%d\n",
503 rom->api_version_maj,
504 rom->api_version_min);
505 return 0;
506 }
507
508 /*
509 * Relying on the VMI_SIGNATURE field is not 100% safe, so check
510 * the PCI header and device type to make sure this is really a
511 * VMI device.
512 */
513 if (!rom->pci_header_offs) {
514 printk(KERN_WARNING "VMI: ROM does not contain PCI header.\n");
515 return 0;
516 }
517
518 pci = (struct pci_header *)((char *)rom+rom->pci_header_offs);
519 if (pci->vendorID != PCI_VENDOR_ID_VMWARE ||
520 pci->deviceID != PCI_DEVICE_ID_VMWARE_VMI) {
521 /* Allow it to run... anyways, but warn */
522 printk(KERN_WARNING "VMI: ROM from unknown manufacturer\n");
523 }
524
525 if (rom->pnp_header_offs) {
526 pnp = (struct pnp_header *)((char *)rom+rom->pnp_header_offs);
527 if (pnp->manufacturer_offset)
528 manufacturer = (const char *)rom+pnp->manufacturer_offset;
529 if (pnp->product_offset)
530 product = (const char *)rom+pnp->product_offset;
531 }
532
533 if (rom->license_offs)
534 license = (char *)rom+rom->license_offs;
535
536 printk(KERN_INFO "VMI: Found %s %s, API version %d.%d, ROM version %d.%d\n",
537 manufacturer, product,
538 rom->api_version_maj, rom->api_version_min,
539 pci->rom_version_maj, pci->rom_version_min);
540
302cf930
AK
541 /* Don't allow BSD/MIT here for now because we don't want to end up
542 with any binary only shim layers */
543 if (strcmp(license, "GPL") && strcmp(license, "GPL v2")) {
544 printk(KERN_WARNING "VMI: Non GPL license `%s' found for ROM. Not used.\n",
545 license);
546 return 0;
547 }
548
7ce0bcfd
ZA
549 return 1;
550}
551
552/*
553 * Probe for the VMI option ROM
554 */
555static inline int __init probe_vmi_rom(void)
556{
557 unsigned long base;
558
559 /* VMI ROM is in option ROM area, check signature */
560 for (base = 0xC0000; base < 0xE0000; base += 2048) {
561 struct vrom_header *romstart;
562 romstart = (struct vrom_header *)isa_bus_to_virt(base);
563 if (check_vmi_rom(romstart)) {
564 vmi_rom = romstart;
565 return 1;
566 }
567 }
568 return 0;
569}
570
571/*
572 * VMI setup common to all processors
573 */
574void vmi_bringup(void)
575{
576 /* We must establish the lowmem mapping for MMU ops to work */
772205f6 577 if (vmi_ops.set_linear_mapping)
31343d8a 578 vmi_ops.set_linear_mapping(0, (void *)__PAGE_OFFSET, MAXMEM_PFN, 0);
7ce0bcfd
ZA
579}
580
581/*
772205f6 582 * Return a pointer to a VMI function or NULL if unimplemented
7ce0bcfd
ZA
583 */
584static void *vmi_get_function(int vmicall)
585{
586 u64 reloc;
587 const struct vmi_relocation_info *rel = (struct vmi_relocation_info *)&reloc;
588 reloc = call_vrom_long_func(vmi_rom, get_reloc, vmicall);
589 BUG_ON(rel->type == VMI_RELOCATION_JUMP_REL);
590 if (rel->type == VMI_RELOCATION_CALL_REL)
591 return (void *)rel->eip;
592 else
772205f6 593 return NULL;
7ce0bcfd
ZA
594}
595
596/*
597 * Helper macro for making the VMI paravirt-ops fill code readable.
772205f6
ZA
598 * For unimplemented operations, fall back to default, unless nop
599 * is returned by the ROM.
7ce0bcfd
ZA
600 */
601#define para_fill(opname, vmicall) \
602do { \
603 reloc = call_vrom_long_func(vmi_rom, get_reloc, \
604 VMI_CALL_##vmicall); \
0492c371 605 if (rel->type == VMI_RELOCATION_CALL_REL) \
93b1eab3 606 opname = (void *)rel->eip; \
0492c371 607 else if (rel->type == VMI_RELOCATION_NOP) \
93b1eab3 608 opname = (void *)vmi_nop; \
0492c371
ZA
609 else if (rel->type != VMI_RELOCATION_NONE) \
610 printk(KERN_WARNING "VMI: Unknown relocation " \
611 "type %d for " #vmicall"\n",\
612 rel->type); \
772205f6
ZA
613} while (0)
614
615/*
616 * Helper macro for making the VMI paravirt-ops fill code readable.
617 * For cached operations which do not match the VMI ROM ABI and must
618 * go through a tranlation stub. Ignore NOPs, since it is not clear
619 * a NOP * VMI function corresponds to a NOP paravirt-op when the
620 * functions are not in 1-1 correspondence.
621 */
622#define para_wrap(opname, wrapper, cache, vmicall) \
623do { \
624 reloc = call_vrom_long_func(vmi_rom, get_reloc, \
625 VMI_CALL_##vmicall); \
626 BUG_ON(rel->type == VMI_RELOCATION_JUMP_REL); \
627 if (rel->type == VMI_RELOCATION_CALL_REL) { \
93b1eab3 628 opname = wrapper; \
772205f6 629 vmi_ops.cache = (void *)rel->eip; \
7ce0bcfd
ZA
630 } \
631} while (0)
632
633/*
634 * Activate the VMI interface and switch into paravirtualized mode
635 */
636static inline int __init activate_vmi(void)
637{
638 short kernel_cs;
639 u64 reloc;
640 const struct vmi_relocation_info *rel = (struct vmi_relocation_info *)&reloc;
641
642 if (call_vrom_func(vmi_rom, vmi_init) != 0) {
643 printk(KERN_ERR "VMI ROM failed to initialize!");
644 return 0;
645 }
646 savesegment(cs, kernel_cs);
647
93b1eab3
JF
648 pv_info.paravirt_enabled = 1;
649 pv_info.kernel_rpl = kernel_cs & SEGMENT_RPL_MASK;
650 pv_info.name = "vmi";
7ce0bcfd 651
93b1eab3 652 pv_init_ops.patch = vmi_patch;
7ce0bcfd
ZA
653
654 /*
655 * Many of these operations are ABI compatible with VMI.
656 * This means we can fill in the paravirt-ops with direct
657 * pointers into the VMI ROM. If the calling convention for
658 * these operations changes, this code needs to be updated.
659 *
660 * Exceptions
661 * CPUID paravirt-op uses pointers, not the native ISA
662 * halt has no VMI equivalent; all VMI halts are "safe"
663 * no MSR support yet - just trap and emulate. VMI uses the
664 * same ABI as the native ISA, but Linux wants exceptions
665 * from bogus MSR read / write handled
666 * rdpmc is not yet used in Linux
667 */
668
772205f6 669 /* CPUID is special, so very special it gets wrapped like a present */
93b1eab3
JF
670 para_wrap(pv_cpu_ops.cpuid, vmi_cpuid, cpuid, CPUID);
671
672 para_fill(pv_cpu_ops.clts, CLTS);
673 para_fill(pv_cpu_ops.get_debugreg, GetDR);
674 para_fill(pv_cpu_ops.set_debugreg, SetDR);
675 para_fill(pv_cpu_ops.read_cr0, GetCR0);
676 para_fill(pv_mmu_ops.read_cr2, GetCR2);
677 para_fill(pv_mmu_ops.read_cr3, GetCR3);
678 para_fill(pv_cpu_ops.read_cr4, GetCR4);
679 para_fill(pv_cpu_ops.write_cr0, SetCR0);
680 para_fill(pv_mmu_ops.write_cr2, SetCR2);
681 para_fill(pv_mmu_ops.write_cr3, SetCR3);
682 para_fill(pv_cpu_ops.write_cr4, SetCR4);
664c7954
JF
683
684 para_fill(pv_irq_ops.save_fl.func, GetInterruptMask);
685 para_fill(pv_irq_ops.restore_fl.func, SetInterruptMask);
686 para_fill(pv_irq_ops.irq_disable.func, DisableInterrupts);
687 para_fill(pv_irq_ops.irq_enable.func, EnableInterrupts);
93b1eab3
JF
688
689 para_fill(pv_cpu_ops.wbinvd, WBINVD);
690 para_fill(pv_cpu_ops.read_tsc, RDTSC);
772205f6
ZA
691
692 /* The following we emulate with trap and emulate for now */
7ce0bcfd
ZA
693 /* paravirt_ops.read_msr = vmi_rdmsr */
694 /* paravirt_ops.write_msr = vmi_wrmsr */
7ce0bcfd
ZA
695 /* paravirt_ops.rdpmc = vmi_rdpmc */
696
772205f6 697 /* TR interface doesn't pass TR value, wrap */
93b1eab3 698 para_wrap(pv_cpu_ops.load_tr_desc, vmi_set_tr, set_tr, SetTR);
7ce0bcfd
ZA
699
700 /* LDT is special, too */
93b1eab3
JF
701 para_wrap(pv_cpu_ops.set_ldt, vmi_set_ldt, _set_ldt, SetLDT);
702
703 para_fill(pv_cpu_ops.load_gdt, SetGDT);
704 para_fill(pv_cpu_ops.load_idt, SetIDT);
705 para_fill(pv_cpu_ops.store_gdt, GetGDT);
706 para_fill(pv_cpu_ops.store_idt, GetIDT);
707 para_fill(pv_cpu_ops.store_tr, GetTR);
708 pv_cpu_ops.load_tls = vmi_load_tls;
75b8bb3e
GOC
709 para_wrap(pv_cpu_ops.write_ldt_entry, vmi_write_ldt_entry,
710 write_ldt_entry, WriteLDTEntry);
014b15be
GOC
711 para_wrap(pv_cpu_ops.write_gdt_entry, vmi_write_gdt_entry,
712 write_gdt_entry, WriteGDTEntry);
8d947344
GOC
713 para_wrap(pv_cpu_ops.write_idt_entry, vmi_write_idt_entry,
714 write_idt_entry, WriteIDTEntry);
faca6227 715 para_wrap(pv_cpu_ops.load_sp0, vmi_load_sp0, set_kernel_stack, UpdateKernelStack);
93b1eab3
JF
716 para_fill(pv_cpu_ops.set_iopl_mask, SetIOPLMask);
717 para_fill(pv_cpu_ops.io_delay, IODelay);
8965c1c0
JF
718
719 para_wrap(pv_cpu_ops.lazy_mode.enter, vmi_enter_lazy_cpu,
720 set_lazy_mode, SetLazyMode);
721 para_wrap(pv_cpu_ops.lazy_mode.leave, vmi_leave_lazy,
722 set_lazy_mode, SetLazyMode);
723
724 para_wrap(pv_mmu_ops.lazy_mode.enter, vmi_enter_lazy_mmu,
725 set_lazy_mode, SetLazyMode);
726 para_wrap(pv_mmu_ops.lazy_mode.leave, vmi_leave_lazy,
727 set_lazy_mode, SetLazyMode);
7ce0bcfd 728
772205f6 729 /* user and kernel flush are just handled with different flags to FlushTLB */
93b1eab3
JF
730 para_wrap(pv_mmu_ops.flush_tlb_user, vmi_flush_tlb_user, _flush_tlb, FlushTLB);
731 para_wrap(pv_mmu_ops.flush_tlb_kernel, vmi_flush_tlb_kernel, _flush_tlb, FlushTLB);
732 para_fill(pv_mmu_ops.flush_tlb_single, InvalPage);
7ce0bcfd
ZA
733
734 /*
735 * Until a standard flag format can be agreed on, we need to
736 * implement these as wrappers in Linux. Get the VMI ROM
737 * function pointers for the two backend calls.
738 */
739#ifdef CONFIG_X86_PAE
740 vmi_ops.set_pte = vmi_get_function(VMI_CALL_SetPxELong);
741 vmi_ops.update_pte = vmi_get_function(VMI_CALL_UpdatePxELong);
742#else
743 vmi_ops.set_pte = vmi_get_function(VMI_CALL_SetPxE);
744 vmi_ops.update_pte = vmi_get_function(VMI_CALL_UpdatePxE);
745#endif
7ce0bcfd 746
772205f6 747 if (vmi_ops.set_pte) {
93b1eab3
JF
748 pv_mmu_ops.set_pte = vmi_set_pte;
749 pv_mmu_ops.set_pte_at = vmi_set_pte_at;
750 pv_mmu_ops.set_pmd = vmi_set_pmd;
7ce0bcfd 751#ifdef CONFIG_X86_PAE
93b1eab3
JF
752 pv_mmu_ops.set_pte_atomic = vmi_set_pte_atomic;
753 pv_mmu_ops.set_pte_present = vmi_set_pte_present;
754 pv_mmu_ops.set_pud = vmi_set_pud;
755 pv_mmu_ops.pte_clear = vmi_pte_clear;
756 pv_mmu_ops.pmd_clear = vmi_pmd_clear;
7ce0bcfd 757#endif
772205f6
ZA
758 }
759
760 if (vmi_ops.update_pte) {
93b1eab3
JF
761 pv_mmu_ops.pte_update = vmi_update_pte;
762 pv_mmu_ops.pte_update_defer = vmi_update_pte_defer;
772205f6
ZA
763 }
764
765 vmi_ops.allocate_page = vmi_get_function(VMI_CALL_AllocatePage);
766 if (vmi_ops.allocate_page) {
6944a9c8
JF
767 pv_mmu_ops.alloc_pte = vmi_allocate_pte;
768 pv_mmu_ops.alloc_pmd = vmi_allocate_pmd;
769 pv_mmu_ops.alloc_pmd_clone = vmi_allocate_pmd_clone;
772205f6
ZA
770 }
771
772 vmi_ops.release_page = vmi_get_function(VMI_CALL_ReleasePage);
773 if (vmi_ops.release_page) {
6944a9c8
JF
774 pv_mmu_ops.release_pte = vmi_release_pte;
775 pv_mmu_ops.release_pmd = vmi_release_pmd;
55a8ba4b 776 pv_mmu_ops.pgd_free = vmi_pgd_free;
772205f6 777 }
eeef9c68
ZA
778
779 /* Set linear is needed in all cases */
780 vmi_ops.set_linear_mapping = vmi_get_function(VMI_CALL_SetLinearMapping);
781#ifdef CONFIG_HIGHPTE
782 if (vmi_ops.set_linear_mapping)
93b1eab3 783 pv_mmu_ops.kmap_atomic_pte = vmi_kmap_atomic_pte;
a27fe809 784#endif
772205f6 785
7ce0bcfd
ZA
786 /*
787 * These MUST always be patched. Don't support indirect jumps
788 * through these operations, as the VMI interface may use either
789 * a jump or a call to get to these operations, depending on
790 * the backend. They are performance critical anyway, so requiring
791 * a patch is not a big problem.
792 */
d75cd22f 793 pv_cpu_ops.irq_enable_sysexit = (void *)0xfeedbab0;
93b1eab3 794 pv_cpu_ops.iret = (void *)0xbadbab0;
7ce0bcfd
ZA
795
796#ifdef CONFIG_SMP
93b1eab3 797 para_wrap(pv_apic_ops.startup_ipi_hook, vmi_startup_ipi_hook, set_initial_ap_state, SetInitialAPState);
7ce0bcfd
ZA
798#endif
799
800#ifdef CONFIG_X86_LOCAL_APIC
c1eeb2de
YL
801 para_fill(apic->read, APICRead);
802 para_fill(apic->write, APICWrite);
7ce0bcfd
ZA
803#endif
804
bbab4f3b
ZA
805 /*
806 * Check for VMI timer functionality by probing for a cycle frequency method
807 */
808 reloc = call_vrom_long_func(vmi_rom, get_reloc, VMI_CALL_GetCycleFrequency);
772205f6 809 if (!disable_vmi_timer && rel->type != VMI_RELOCATION_NONE) {
bbab4f3b
ZA
810 vmi_timer_ops.get_cycle_frequency = (void *)rel->eip;
811 vmi_timer_ops.get_cycle_counter =
812 vmi_get_function(VMI_CALL_GetCycleCounter);
813 vmi_timer_ops.get_wallclock =
814 vmi_get_function(VMI_CALL_GetWallclockTime);
815 vmi_timer_ops.wallclock_updated =
816 vmi_get_function(VMI_CALL_WallclockUpdated);
817 vmi_timer_ops.set_alarm = vmi_get_function(VMI_CALL_SetAlarm);
818 vmi_timer_ops.cancel_alarm =
819 vmi_get_function(VMI_CALL_CancelAlarm);
93b1eab3
JF
820 pv_time_ops.time_init = vmi_time_init;
821 pv_time_ops.get_wallclock = vmi_get_wallclock;
822 pv_time_ops.set_wallclock = vmi_set_wallclock;
bbab4f3b 823#ifdef CONFIG_X86_LOCAL_APIC
93b1eab3
JF
824 pv_apic_ops.setup_boot_clock = vmi_time_bsp_init;
825 pv_apic_ops.setup_secondary_clock = vmi_time_ap_init;
bbab4f3b 826#endif
93b1eab3 827 pv_time_ops.sched_clock = vmi_sched_clock;
e93ef949 828 pv_time_ops.get_tsc_khz = vmi_tsc_khz;
772205f6
ZA
829
830 /* We have true wallclock functions; disable CMOS clock sync */
831 no_sync_cmos_clock = 1;
832 } else {
833 disable_noidle = 1;
834 disable_vmi_timer = 1;
bbab4f3b 835 }
772205f6 836
93b1eab3 837 para_fill(pv_irq_ops.safe_halt, Halt);
bbab4f3b 838
7ce0bcfd
ZA
839 /*
840 * Alternative instruction rewriting doesn't happen soon enough
841 * to convert VMI_IRET to a call instead of a jump; so we have
842 * to do this before IRQs get reenabled. Fortunately, it is
843 * idempotent.
844 */
441d40dc 845 apply_paravirt(__parainstructions, __parainstructions_end);
7ce0bcfd
ZA
846
847 vmi_bringup();
848
849 return 1;
850}
851
852#undef para_fill
853
854void __init vmi_init(void)
855{
7ce0bcfd
ZA
856 if (!vmi_rom)
857 probe_vmi_rom();
858 else
859 check_vmi_rom(vmi_rom);
860
861 /* In case probing for or validating the ROM failed, basil */
862 if (!vmi_rom)
863 return;
864
865 reserve_top_address(-vmi_rom->virtual_top);
866
7507ba34 867#ifdef CONFIG_X86_IO_APIC
772205f6 868 /* This is virtual hardware; timer routing is wired correctly */
7ce0bcfd
ZA
869 no_timer_check = 1;
870#endif
ae8d04e2
ZA
871}
872
659d2618 873void __init vmi_activate(void)
ae8d04e2
ZA
874{
875 unsigned long flags;
876
877 if (!vmi_rom)
878 return;
879
880 local_irq_save(flags);
881 activate_vmi();
7ce0bcfd
ZA
882 local_irq_restore(flags & X86_EFLAGS_IF);
883}
884
885static int __init parse_vmi(char *arg)
886{
887 if (!arg)
888 return -EINVAL;
889
eda08b1b 890 if (!strcmp(arg, "disable_pge")) {
53756d37 891 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_PGE);
7ce0bcfd
ZA
892 disable_pge = 1;
893 } else if (!strcmp(arg, "disable_pse")) {
53756d37 894 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_PSE);
7ce0bcfd
ZA
895 disable_pse = 1;
896 } else if (!strcmp(arg, "disable_sep")) {
53756d37 897 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_SEP);
7ce0bcfd
ZA
898 disable_sep = 1;
899 } else if (!strcmp(arg, "disable_tsc")) {
53756d37 900 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_TSC);
7ce0bcfd
ZA
901 disable_tsc = 1;
902 } else if (!strcmp(arg, "disable_mtrr")) {
53756d37 903 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_MTRR);
7ce0bcfd 904 disable_mtrr = 1;
772205f6
ZA
905 } else if (!strcmp(arg, "disable_timer")) {
906 disable_vmi_timer = 1;
907 disable_noidle = 1;
7507ba34
ZA
908 } else if (!strcmp(arg, "disable_noidle"))
909 disable_noidle = 1;
7ce0bcfd
ZA
910 return 0;
911}
912
913early_param("vmi", parse_vmi);
This page took 0.348668 seconds and 5 git commands to generate.