1 /******************************************************************************
2 * arch/ia64/kernel/paravirt.c
4 * Copyright (c) 2008 Isaku Yamahata <yamahata at valinux co jp>
5 * VA Linux Systems Japan K.K.
6 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/init.h>
26 #include <linux/compiler.h>
28 #include <linux/irq.h>
29 #include <linux/module.h>
30 #include <linux/types.h>
32 #include <asm/iosapic.h>
33 #include <asm/paravirt.h>
35 /***************************************************************************
38 struct pv_info pv_info
= {
40 .paravirt_enabled
= 0,
41 .name
= "bare hardware"
44 /***************************************************************************
46 * initialization hooks.
50 ia64_native_patch_branch(unsigned long tag
, unsigned long type
);
52 struct pv_init_ops pv_init_ops
=
55 .patch_bundle
= ia64_native_patch_bundle
,
57 .patch_branch
= ia64_native_patch_branch
,
60 /***************************************************************************
66 /* ia64_native_xxx are macros so that we have to make them real functions */
68 #define DEFINE_VOID_FUNC1(name) \
70 ia64_native_ ## name ## _func(unsigned long arg) \
72 ia64_native_ ## name(arg); \
75 #define DEFINE_VOID_FUNC1_VOID(name) \
77 ia64_native_ ## name ## _func(void *arg) \
79 ia64_native_ ## name(arg); \
82 #define DEFINE_VOID_FUNC2(name) \
84 ia64_native_ ## name ## _func(unsigned long arg0, \
87 ia64_native_ ## name(arg0, arg1); \
90 #define DEFINE_FUNC0(name) \
91 static unsigned long \
92 ia64_native_ ## name ## _func(void) \
94 return ia64_native_ ## name(); \
97 #define DEFINE_FUNC1(name, type) \
98 static unsigned long \
99 ia64_native_ ## name ## _func(type arg) \
101 return ia64_native_ ## name(arg); \
104 DEFINE_VOID_FUNC1_VOID(fc);
105 DEFINE_VOID_FUNC1(intrin_local_irq_restore
);
107 DEFINE_VOID_FUNC2(ptcga
);
108 DEFINE_VOID_FUNC2(set_rr
);
110 DEFINE_FUNC0(get_psr_i
);
112 DEFINE_FUNC1(thash
, unsigned long);
113 DEFINE_FUNC1(get_cpuid
, int);
114 DEFINE_FUNC1(get_pmd
, int);
115 DEFINE_FUNC1(get_rr
, unsigned long);
118 ia64_native_ssm_i_func(void)
120 ia64_native_ssm(IA64_PSR_I
);
124 ia64_native_rsm_i_func(void)
126 ia64_native_rsm(IA64_PSR_I
);
130 ia64_native_set_rr0_to_rr4_func(unsigned long val0
, unsigned long val1
,
131 unsigned long val2
, unsigned long val3
,
134 ia64_native_set_rr0_to_rr4(val0
, val1
, val2
, val3
, val4
);
137 #define CASE_GET_REG(id) \
138 case _IA64_REG_ ## id: \
139 res = ia64_native_getreg(_IA64_REG_ ## id); \
141 #define CASE_GET_AR(id) CASE_GET_REG(AR_ ## id)
142 #define CASE_GET_CR(id) CASE_GET_REG(CR_ ## id)
145 ia64_native_getreg_func(int regnum
)
147 unsigned long res
= -1;
150 /*CASE_GET_REG(IP);*/ /* returned ip value shouldn't be constant */
165 CASE_GET_AR(BSPSTORE
);
211 printk(KERN_CRIT
"wrong_getreg %d\n", regnum
);
217 #define CASE_SET_REG(id) \
218 case _IA64_REG_ ## id: \
219 ia64_native_setreg(_IA64_REG_ ## id, val); \
221 #define CASE_SET_AR(id) CASE_SET_REG(AR_ ## id)
222 #define CASE_SET_CR(id) CASE_SET_REG(CR_ ## id)
225 ia64_native_setreg_func(int regnum
, unsigned long val
)
228 case _IA64_REG_PSR_L
:
229 ia64_native_setreg(_IA64_REG_PSR_L
, val
);
230 ia64_dv_serialize_data();
245 CASE_SET_AR(BSPSTORE
);
290 printk(KERN_CRIT
"wrong setreg %d\n", regnum
);
296 #define __DEFINE_FUNC(name, code) \
297 extern const char ia64_native_ ## name ## _direct_start[]; \
298 extern const char ia64_native_ ## name ## _direct_end[]; \
300 ".proc ia64_native_" #name "_func\n" \
301 "ia64_native_" #name "_func:\n" \
302 "ia64_native_" #name "_direct_start:\n" \
304 "ia64_native_" #name "_direct_end:\n" \
305 "br.cond.sptk.many b6\n" \
306 ".endp ia64_native_" #name "_func\n")
308 #define DEFINE_VOID_FUNC0(name, code) \
310 ia64_native_ ## name ## _func(void); \
311 __DEFINE_FUNC(name, code)
313 #define DEFINE_VOID_FUNC1(name, code) \
315 ia64_native_ ## name ## _func(unsigned long arg); \
316 __DEFINE_FUNC(name, code)
318 #define DEFINE_VOID_FUNC1_VOID(name, code) \
320 ia64_native_ ## name ## _func(void *arg); \
321 __DEFINE_FUNC(name, code)
323 #define DEFINE_VOID_FUNC2(name, code) \
325 ia64_native_ ## name ## _func(unsigned long arg0, \
326 unsigned long arg1); \
327 __DEFINE_FUNC(name, code)
329 #define DEFINE_FUNC0(name, code) \
330 extern unsigned long \
331 ia64_native_ ## name ## _func(void); \
332 __DEFINE_FUNC(name, code)
334 #define DEFINE_FUNC1(name, type, code) \
335 extern unsigned long \
336 ia64_native_ ## name ## _func(type arg); \
337 __DEFINE_FUNC(name, code)
339 DEFINE_VOID_FUNC1_VOID(fc
,
341 DEFINE_VOID_FUNC1(intrin_local_irq_restore
,
343 " cmp.ne p6, p7 = r8, r0\n"
350 DEFINE_VOID_FUNC2(ptcga
,
352 DEFINE_VOID_FUNC2(set_rr
,
353 "mov rr[r8] = r9\n");
355 /* ia64_native_getreg(_IA64_REG_PSR) & IA64_PSR_I */
356 DEFINE_FUNC0(get_psr_i
,
357 "mov r2 = " __stringify(1 << IA64_PSR_I_BIT
) "\n"
360 "and r8 = r2, r8\n");
362 DEFINE_FUNC1(thash
, unsigned long,
364 DEFINE_FUNC1(get_cpuid
, int,
365 "mov r8 = cpuid[r8]\n");
366 DEFINE_FUNC1(get_pmd
, int,
367 "mov r8 = pmd[r8]\n");
368 DEFINE_FUNC1(get_rr
, unsigned long,
369 "mov r8 = rr[r8]\n");
371 DEFINE_VOID_FUNC0(ssm_i
,
373 DEFINE_VOID_FUNC0(rsm_i
,
377 ia64_native_set_rr0_to_rr4_func(unsigned long val0
, unsigned long val1
,
378 unsigned long val2
, unsigned long val3
,
380 __DEFINE_FUNC(set_rr0_to_rr4
,
382 "movl r2 = 0x2000000000000000\n"
385 "shl r3 = r2, 1\n" /* movl r3 = 0x4000000000000000 */
387 "add r2 = r2, r3\n" /* movl r2 = 0x6000000000000000 */
391 "shl r3 = r3, 1\n" /* movl r3 = 0x8000000000000000 */
393 "mov rr[r3] = r14\n");
395 extern unsigned long ia64_native_getreg_func(int regnum
);
396 asm(".global ia64_native_getreg_func\n");
397 #define __DEFINE_GET_REG(id, reg) \
398 "mov r2 = " __stringify(_IA64_REG_ ## id) "\n" \
400 "cmp.eq p6, p0 = r2, r8\n" \
402 "(p6) mov r8 = " #reg "\n" \
403 "(p6) br.cond.sptk.many b6\n" \
405 #define __DEFINE_GET_AR(id, reg) __DEFINE_GET_REG(AR_ ## id, ar.reg)
406 #define __DEFINE_GET_CR(id, reg) __DEFINE_GET_REG(CR_ ## id, cr.reg)
408 __DEFINE_FUNC(getreg
,
409 __DEFINE_GET_REG(GP
, gp
)
410 /*__DEFINE_GET_REG(IP, ip)*/ /* returned ip value shouldn't be constant */
411 __DEFINE_GET_REG(PSR
, psr
)
412 __DEFINE_GET_REG(TP
, tp
)
413 __DEFINE_GET_REG(SP
, sp
)
415 __DEFINE_GET_REG(AR_KR0
, ar0
)
416 __DEFINE_GET_REG(AR_KR1
, ar1
)
417 __DEFINE_GET_REG(AR_KR2
, ar2
)
418 __DEFINE_GET_REG(AR_KR3
, ar3
)
419 __DEFINE_GET_REG(AR_KR4
, ar4
)
420 __DEFINE_GET_REG(AR_KR5
, ar5
)
421 __DEFINE_GET_REG(AR_KR6
, ar6
)
422 __DEFINE_GET_REG(AR_KR7
, ar7
)
423 __DEFINE_GET_AR(RSC
, rsc
)
424 __DEFINE_GET_AR(BSP
, bsp
)
425 __DEFINE_GET_AR(BSPSTORE
, bspstore
)
426 __DEFINE_GET_AR(RNAT
, rnat
)
427 __DEFINE_GET_AR(FCR
, fcr
)
428 __DEFINE_GET_AR(EFLAG
, eflag
)
429 __DEFINE_GET_AR(CSD
, csd
)
430 __DEFINE_GET_AR(SSD
, ssd
)
431 __DEFINE_GET_REG(AR_CFLAG
, ar27
)
432 __DEFINE_GET_AR(FSR
, fsr
)
433 __DEFINE_GET_AR(FIR
, fir
)
434 __DEFINE_GET_AR(FDR
, fdr
)
435 __DEFINE_GET_AR(CCV
, ccv
)
436 __DEFINE_GET_AR(UNAT
, unat
)
437 __DEFINE_GET_AR(FPSR
, fpsr
)
438 __DEFINE_GET_AR(ITC
, itc
)
439 __DEFINE_GET_AR(PFS
, pfs
)
440 __DEFINE_GET_AR(LC
, lc
)
441 __DEFINE_GET_AR(EC
, ec
)
443 __DEFINE_GET_CR(DCR
, dcr
)
444 __DEFINE_GET_CR(ITM
, itm
)
445 __DEFINE_GET_CR(IVA
, iva
)
446 __DEFINE_GET_CR(PTA
, pta
)
447 __DEFINE_GET_CR(IPSR
, ipsr
)
448 __DEFINE_GET_CR(ISR
, isr
)
449 __DEFINE_GET_CR(IIP
, iip
)
450 __DEFINE_GET_CR(IFA
, ifa
)
451 __DEFINE_GET_CR(ITIR
, itir
)
452 __DEFINE_GET_CR(IIPA
, iipa
)
453 __DEFINE_GET_CR(IFS
, ifs
)
454 __DEFINE_GET_CR(IIM
, iim
)
455 __DEFINE_GET_CR(IHA
, iha
)
456 __DEFINE_GET_CR(LID
, lid
)
457 __DEFINE_GET_CR(IVR
, ivr
)
458 __DEFINE_GET_CR(TPR
, tpr
)
459 __DEFINE_GET_CR(EOI
, eoi
)
460 __DEFINE_GET_CR(IRR0
, irr0
)
461 __DEFINE_GET_CR(IRR1
, irr1
)
462 __DEFINE_GET_CR(IRR2
, irr2
)
463 __DEFINE_GET_CR(IRR3
, irr3
)
464 __DEFINE_GET_CR(ITV
, itv
)
465 __DEFINE_GET_CR(PMV
, pmv
)
466 __DEFINE_GET_CR(CMCV
, cmcv
)
467 __DEFINE_GET_CR(LRR0
, lrr0
)
468 __DEFINE_GET_CR(LRR1
, lrr1
)
470 "mov r8 = -1\n" /* unsupported case */
473 extern void ia64_native_setreg_func(int regnum
, unsigned long val
);
474 asm(".global ia64_native_setreg_func\n");
475 #define __DEFINE_SET_REG(id, reg) \
476 "mov r2 = " __stringify(_IA64_REG_ ## id) "\n" \
478 "cmp.eq p6, p0 = r2, r9\n" \
480 "(p6) mov " #reg " = r8\n" \
481 "(p6) br.cond.sptk.many b6\n" \
483 #define __DEFINE_SET_AR(id, reg) __DEFINE_SET_REG(AR_ ## id, ar.reg)
484 #define __DEFINE_SET_CR(id, reg) __DEFINE_SET_REG(CR_ ## id, cr.reg)
485 __DEFINE_FUNC(setreg
,
486 "mov r2 = " __stringify(_IA64_REG_PSR_L
) "\n"
488 "cmp.eq p6, p0 = r2, r9\n"
490 "(p6) mov psr.l = r8\n"
491 #ifdef HAVE_SERIALIZE_DIRECTIVE
494 "(p6) br.cond.sptk.many b6\n"
495 __DEFINE_SET_REG(GP
, gp
)
496 __DEFINE_SET_REG(SP
, sp
)
498 __DEFINE_SET_REG(AR_KR0
, ar0
)
499 __DEFINE_SET_REG(AR_KR1
, ar1
)
500 __DEFINE_SET_REG(AR_KR2
, ar2
)
501 __DEFINE_SET_REG(AR_KR3
, ar3
)
502 __DEFINE_SET_REG(AR_KR4
, ar4
)
503 __DEFINE_SET_REG(AR_KR5
, ar5
)
504 __DEFINE_SET_REG(AR_KR6
, ar6
)
505 __DEFINE_SET_REG(AR_KR7
, ar7
)
506 __DEFINE_SET_AR(RSC
, rsc
)
507 __DEFINE_SET_AR(BSP
, bsp
)
508 __DEFINE_SET_AR(BSPSTORE
, bspstore
)
509 __DEFINE_SET_AR(RNAT
, rnat
)
510 __DEFINE_SET_AR(FCR
, fcr
)
511 __DEFINE_SET_AR(EFLAG
, eflag
)
512 __DEFINE_SET_AR(CSD
, csd
)
513 __DEFINE_SET_AR(SSD
, ssd
)
514 __DEFINE_SET_REG(AR_CFLAG
, ar27
)
515 __DEFINE_SET_AR(FSR
, fsr
)
516 __DEFINE_SET_AR(FIR
, fir
)
517 __DEFINE_SET_AR(FDR
, fdr
)
518 __DEFINE_SET_AR(CCV
, ccv
)
519 __DEFINE_SET_AR(UNAT
, unat
)
520 __DEFINE_SET_AR(FPSR
, fpsr
)
521 __DEFINE_SET_AR(ITC
, itc
)
522 __DEFINE_SET_AR(PFS
, pfs
)
523 __DEFINE_SET_AR(LC
, lc
)
524 __DEFINE_SET_AR(EC
, ec
)
526 __DEFINE_SET_CR(DCR
, dcr
)
527 __DEFINE_SET_CR(ITM
, itm
)
528 __DEFINE_SET_CR(IVA
, iva
)
529 __DEFINE_SET_CR(PTA
, pta
)
530 __DEFINE_SET_CR(IPSR
, ipsr
)
531 __DEFINE_SET_CR(ISR
, isr
)
532 __DEFINE_SET_CR(IIP
, iip
)
533 __DEFINE_SET_CR(IFA
, ifa
)
534 __DEFINE_SET_CR(ITIR
, itir
)
535 __DEFINE_SET_CR(IIPA
, iipa
)
536 __DEFINE_SET_CR(IFS
, ifs
)
537 __DEFINE_SET_CR(IIM
, iim
)
538 __DEFINE_SET_CR(IHA
, iha
)
539 __DEFINE_SET_CR(LID
, lid
)
540 __DEFINE_SET_CR(IVR
, ivr
)
541 __DEFINE_SET_CR(TPR
, tpr
)
542 __DEFINE_SET_CR(EOI
, eoi
)
543 __DEFINE_SET_CR(IRR0
, irr0
)
544 __DEFINE_SET_CR(IRR1
, irr1
)
545 __DEFINE_SET_CR(IRR2
, irr2
)
546 __DEFINE_SET_CR(IRR3
, irr3
)
547 __DEFINE_SET_CR(ITV
, itv
)
548 __DEFINE_SET_CR(PMV
, pmv
)
549 __DEFINE_SET_CR(CMCV
, cmcv
)
550 __DEFINE_SET_CR(LRR0
, lrr0
)
551 __DEFINE_SET_CR(LRR1
, lrr1
)
555 struct pv_cpu_ops pv_cpu_ops
= {
556 .fc
= ia64_native_fc_func
,
557 .thash
= ia64_native_thash_func
,
558 .get_cpuid
= ia64_native_get_cpuid_func
,
559 .get_pmd
= ia64_native_get_pmd_func
,
560 .ptcga
= ia64_native_ptcga_func
,
561 .get_rr
= ia64_native_get_rr_func
,
562 .set_rr
= ia64_native_set_rr_func
,
563 .set_rr0_to_rr4
= ia64_native_set_rr0_to_rr4_func
,
564 .ssm_i
= ia64_native_ssm_i_func
,
565 .getreg
= ia64_native_getreg_func
,
566 .setreg
= ia64_native_setreg_func
,
567 .rsm_i
= ia64_native_rsm_i_func
,
568 .get_psr_i
= ia64_native_get_psr_i_func
,
569 .intrin_local_irq_restore
570 = ia64_native_intrin_local_irq_restore_func
,
572 EXPORT_SYMBOL(pv_cpu_ops
);
574 /******************************************************************************
575 * replacement of hand written assembly codes.
579 paravirt_cpu_asm_init(const struct pv_cpu_asm_switch
*cpu_asm_switch
)
581 extern unsigned long paravirt_switch_to_targ
;
582 extern unsigned long paravirt_leave_syscall_targ
;
583 extern unsigned long paravirt_work_processed_syscall_targ
;
584 extern unsigned long paravirt_leave_kernel_targ
;
586 paravirt_switch_to_targ
= cpu_asm_switch
->switch_to
;
587 paravirt_leave_syscall_targ
= cpu_asm_switch
->leave_syscall
;
588 paravirt_work_processed_syscall_targ
=
589 cpu_asm_switch
->work_processed_syscall
;
590 paravirt_leave_kernel_targ
= cpu_asm_switch
->leave_kernel
;
593 /***************************************************************************
595 * iosapic read/write hooks.
599 ia64_native_iosapic_read(char __iomem
*iosapic
, unsigned int reg
)
601 return __ia64_native_iosapic_read(iosapic
, reg
);
605 ia64_native_iosapic_write(char __iomem
*iosapic
, unsigned int reg
, u32 val
)
607 __ia64_native_iosapic_write(iosapic
, reg
, val
);
610 struct pv_iosapic_ops pv_iosapic_ops
= {
611 .pcat_compat_init
= ia64_native_iosapic_pcat_compat_init
,
612 .__get_irq_chip
= ia64_native_iosapic_get_irq_chip
,
614 .__read
= ia64_native_iosapic_read
,
615 .__write
= ia64_native_iosapic_write
,
618 /***************************************************************************
623 struct pv_irq_ops pv_irq_ops
= {
624 .register_ipi
= ia64_native_register_ipi
,
626 .assign_irq_vector
= ia64_native_assign_irq_vector
,
627 .free_irq_vector
= ia64_native_free_irq_vector
,
628 .register_percpu_irq
= ia64_native_register_percpu_irq
,
630 .resend_irq
= ia64_native_resend_irq
,
633 /***************************************************************************
639 ia64_native_do_steal_accounting(unsigned long *new_itm
)
644 struct pv_time_ops pv_time_ops
= {
645 .do_steal_accounting
= ia64_native_do_steal_accounting
,
646 .sched_clock
= ia64_native_sched_clock
,
649 /***************************************************************************
651 * pv_init_ops.patch_bundle
655 #define IA64_NATIVE_PATCH_DEFINE_GET_REG(name, reg) \
656 __DEFINE_FUNC(get_ ## name, \
658 "mov r8 = " #reg "\n" \
661 #define IA64_NATIVE_PATCH_DEFINE_SET_REG(name, reg) \
662 __DEFINE_FUNC(set_ ## name, \
664 "mov " #reg " = r8\n" \
667 #define IA64_NATIVE_PATCH_DEFINE_REG(name, reg) \
668 IA64_NATIVE_PATCH_DEFINE_GET_REG(name, reg); \
669 IA64_NATIVE_PATCH_DEFINE_SET_REG(name, reg) \
671 #define IA64_NATIVE_PATCH_DEFINE_AR(name, reg) \
672 IA64_NATIVE_PATCH_DEFINE_REG(ar_ ## name, ar.reg)
674 #define IA64_NATIVE_PATCH_DEFINE_CR(name, reg) \
675 IA64_NATIVE_PATCH_DEFINE_REG(cr_ ## name, cr.reg)
678 IA64_NATIVE_PATCH_DEFINE_GET_REG(psr
, psr
);
679 IA64_NATIVE_PATCH_DEFINE_GET_REG(tp
, tp
);
681 /* IA64_NATIVE_PATCH_DEFINE_SET_REG(psr_l, psr.l); */
682 __DEFINE_FUNC(set_psr_l
,
685 #ifdef HAVE_SERIALIZE_DIRECTIVE
690 IA64_NATIVE_PATCH_DEFINE_REG(gp
, gp
);
691 IA64_NATIVE_PATCH_DEFINE_REG(sp
, sp
);
693 IA64_NATIVE_PATCH_DEFINE_REG(kr0
, ar0
);
694 IA64_NATIVE_PATCH_DEFINE_REG(kr1
, ar1
);
695 IA64_NATIVE_PATCH_DEFINE_REG(kr2
, ar2
);
696 IA64_NATIVE_PATCH_DEFINE_REG(kr3
, ar3
);
697 IA64_NATIVE_PATCH_DEFINE_REG(kr4
, ar4
);
698 IA64_NATIVE_PATCH_DEFINE_REG(kr5
, ar5
);
699 IA64_NATIVE_PATCH_DEFINE_REG(kr6
, ar6
);
700 IA64_NATIVE_PATCH_DEFINE_REG(kr7
, ar7
);
702 IA64_NATIVE_PATCH_DEFINE_AR(rsc
, rsc
);
703 IA64_NATIVE_PATCH_DEFINE_AR(bsp
, bsp
);
704 IA64_NATIVE_PATCH_DEFINE_AR(bspstore
, bspstore
);
705 IA64_NATIVE_PATCH_DEFINE_AR(rnat
, rnat
);
706 IA64_NATIVE_PATCH_DEFINE_AR(fcr
, fcr
);
707 IA64_NATIVE_PATCH_DEFINE_AR(eflag
, eflag
);
708 IA64_NATIVE_PATCH_DEFINE_AR(csd
, csd
);
709 IA64_NATIVE_PATCH_DEFINE_AR(ssd
, ssd
);
710 IA64_NATIVE_PATCH_DEFINE_REG(ar27
, ar27
);
711 IA64_NATIVE_PATCH_DEFINE_AR(fsr
, fsr
);
712 IA64_NATIVE_PATCH_DEFINE_AR(fir
, fir
);
713 IA64_NATIVE_PATCH_DEFINE_AR(fdr
, fdr
);
714 IA64_NATIVE_PATCH_DEFINE_AR(ccv
, ccv
);
715 IA64_NATIVE_PATCH_DEFINE_AR(unat
, unat
);
716 IA64_NATIVE_PATCH_DEFINE_AR(fpsr
, fpsr
);
717 IA64_NATIVE_PATCH_DEFINE_AR(itc
, itc
);
718 IA64_NATIVE_PATCH_DEFINE_AR(pfs
, pfs
);
719 IA64_NATIVE_PATCH_DEFINE_AR(lc
, lc
);
720 IA64_NATIVE_PATCH_DEFINE_AR(ec
, ec
);
722 IA64_NATIVE_PATCH_DEFINE_CR(dcr
, dcr
);
723 IA64_NATIVE_PATCH_DEFINE_CR(itm
, itm
);
724 IA64_NATIVE_PATCH_DEFINE_CR(iva
, iva
);
725 IA64_NATIVE_PATCH_DEFINE_CR(pta
, pta
);
726 IA64_NATIVE_PATCH_DEFINE_CR(ipsr
, ipsr
);
727 IA64_NATIVE_PATCH_DEFINE_CR(isr
, isr
);
728 IA64_NATIVE_PATCH_DEFINE_CR(iip
, iip
);
729 IA64_NATIVE_PATCH_DEFINE_CR(ifa
, ifa
);
730 IA64_NATIVE_PATCH_DEFINE_CR(itir
, itir
);
731 IA64_NATIVE_PATCH_DEFINE_CR(iipa
, iipa
);
732 IA64_NATIVE_PATCH_DEFINE_CR(ifs
, ifs
);
733 IA64_NATIVE_PATCH_DEFINE_CR(iim
, iim
);
734 IA64_NATIVE_PATCH_DEFINE_CR(iha
, iha
);
735 IA64_NATIVE_PATCH_DEFINE_CR(lid
, lid
);
736 IA64_NATIVE_PATCH_DEFINE_CR(ivr
, ivr
);
737 IA64_NATIVE_PATCH_DEFINE_CR(tpr
, tpr
);
738 IA64_NATIVE_PATCH_DEFINE_CR(eoi
, eoi
);
739 IA64_NATIVE_PATCH_DEFINE_CR(irr0
, irr0
);
740 IA64_NATIVE_PATCH_DEFINE_CR(irr1
, irr1
);
741 IA64_NATIVE_PATCH_DEFINE_CR(irr2
, irr2
);
742 IA64_NATIVE_PATCH_DEFINE_CR(irr3
, irr3
);
743 IA64_NATIVE_PATCH_DEFINE_CR(itv
, itv
);
744 IA64_NATIVE_PATCH_DEFINE_CR(pmv
, pmv
);
745 IA64_NATIVE_PATCH_DEFINE_CR(cmcv
, cmcv
);
746 IA64_NATIVE_PATCH_DEFINE_CR(lrr0
, lrr0
);
747 IA64_NATIVE_PATCH_DEFINE_CR(lrr1
, lrr1
);
749 static const struct paravirt_patch_bundle_elem ia64_native_patch_bundle_elems
[]
750 __initdata_or_module
=
752 #define IA64_NATIVE_PATCH_BUNDLE_ELEM(name, type) \
754 (void*)ia64_native_ ## name ## _direct_start, \
755 (void*)ia64_native_ ## name ## _direct_end, \
756 PARAVIRT_PATCH_TYPE_ ## type, \
759 IA64_NATIVE_PATCH_BUNDLE_ELEM(fc
, FC
),
760 IA64_NATIVE_PATCH_BUNDLE_ELEM(thash
, THASH
),
761 IA64_NATIVE_PATCH_BUNDLE_ELEM(get_cpuid
, GET_CPUID
),
762 IA64_NATIVE_PATCH_BUNDLE_ELEM(get_pmd
, GET_PMD
),
763 IA64_NATIVE_PATCH_BUNDLE_ELEM(ptcga
, PTCGA
),
764 IA64_NATIVE_PATCH_BUNDLE_ELEM(get_rr
, GET_RR
),
765 IA64_NATIVE_PATCH_BUNDLE_ELEM(set_rr
, SET_RR
),
766 IA64_NATIVE_PATCH_BUNDLE_ELEM(set_rr0_to_rr4
, SET_RR0_TO_RR4
),
767 IA64_NATIVE_PATCH_BUNDLE_ELEM(ssm_i
, SSM_I
),
768 IA64_NATIVE_PATCH_BUNDLE_ELEM(rsm_i
, RSM_I
),
769 IA64_NATIVE_PATCH_BUNDLE_ELEM(get_psr_i
, GET_PSR_I
),
770 IA64_NATIVE_PATCH_BUNDLE_ELEM(intrin_local_irq_restore
,
771 INTRIN_LOCAL_IRQ_RESTORE
),
773 #define IA64_NATIVE_PATCH_BUNDLE_ELEM_GETREG(name, reg) \
775 (void*)ia64_native_get_ ## name ## _direct_start, \
776 (void*)ia64_native_get_ ## name ## _direct_end, \
777 PARAVIRT_PATCH_TYPE_GETREG + _IA64_REG_ ## reg, \
780 #define IA64_NATIVE_PATCH_BUNDLE_ELEM_SETREG(name, reg) \
782 (void*)ia64_native_set_ ## name ## _direct_start, \
783 (void*)ia64_native_set_ ## name ## _direct_end, \
784 PARAVIRT_PATCH_TYPE_SETREG + _IA64_REG_ ## reg, \
787 #define IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(name, reg) \
788 IA64_NATIVE_PATCH_BUNDLE_ELEM_GETREG(name, reg), \
789 IA64_NATIVE_PATCH_BUNDLE_ELEM_SETREG(name, reg) \
791 #define IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(name, reg) \
792 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(ar_ ## name, AR_ ## reg)
794 #define IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(name, reg) \
795 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(cr_ ## name, CR_ ## reg)
797 IA64_NATIVE_PATCH_BUNDLE_ELEM_GETREG(psr
, PSR
),
798 IA64_NATIVE_PATCH_BUNDLE_ELEM_GETREG(tp
, TP
),
800 IA64_NATIVE_PATCH_BUNDLE_ELEM_SETREG(psr_l
, PSR_L
),
802 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(gp
, GP
),
803 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(sp
, SP
),
805 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(kr0
, AR_KR0
),
806 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(kr1
, AR_KR1
),
807 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(kr2
, AR_KR2
),
808 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(kr3
, AR_KR3
),
809 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(kr4
, AR_KR4
),
810 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(kr5
, AR_KR5
),
811 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(kr6
, AR_KR6
),
812 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(kr7
, AR_KR7
),
814 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(rsc
, RSC
),
815 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(bsp
, BSP
),
816 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(bspstore
, BSPSTORE
),
817 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(rnat
, RNAT
),
818 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(fcr
, FCR
),
819 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(eflag
, EFLAG
),
820 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(csd
, CSD
),
821 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(ssd
, SSD
),
822 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(ar27
, AR_CFLAG
),
823 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(fsr
, FSR
),
824 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(fir
, FIR
),
825 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(fdr
, FDR
),
826 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(ccv
, CCV
),
827 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(unat
, UNAT
),
828 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(fpsr
, FPSR
),
829 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(itc
, ITC
),
830 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(pfs
, PFS
),
831 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(lc
, LC
),
832 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(ec
, EC
),
834 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(dcr
, DCR
),
835 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(itm
, ITM
),
836 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(iva
, IVA
),
837 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(pta
, PTA
),
838 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(ipsr
, IPSR
),
839 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(isr
, ISR
),
840 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(iip
, IIP
),
841 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(ifa
, IFA
),
842 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(itir
, ITIR
),
843 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(iipa
, IIPA
),
844 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(ifs
, IFS
),
845 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(iim
, IIM
),
846 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(iha
, IHA
),
847 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(lid
, LID
),
848 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(ivr
, IVR
),
849 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(tpr
, TPR
),
850 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(eoi
, EOI
),
851 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(irr0
, IRR0
),
852 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(irr1
, IRR1
),
853 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(irr2
, IRR2
),
854 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(irr3
, IRR3
),
855 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(itv
, ITV
),
856 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(pmv
, PMV
),
857 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(cmcv
, CMCV
),
858 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(lrr0
, LRR0
),
859 IA64_NATIVE_PATCH_BUNDLE_ELEM_CR(lrr1
, LRR1
),
862 unsigned long __init_or_module
863 ia64_native_patch_bundle(void *sbundle
, void *ebundle
, unsigned long type
)
865 const unsigned long nelems
= sizeof(ia64_native_patch_bundle_elems
) /
866 sizeof(ia64_native_patch_bundle_elems
[0]);
868 return __paravirt_patch_apply_bundle(sbundle
, ebundle
, type
,
869 ia64_native_patch_bundle_elems
,
872 #endif /* ASM_SUPPOTED */
874 extern const char ia64_native_switch_to
[];
875 extern const char ia64_native_leave_syscall
[];
876 extern const char ia64_native_work_processed_syscall
[];
877 extern const char ia64_native_leave_kernel
[];
879 const struct paravirt_patch_branch_target ia64_native_branch_target
[]
881 #define PARAVIRT_BR_TARGET(name, type) \
883 ia64_native_ ## name, \
884 PARAVIRT_PATCH_TYPE_BR_ ## type, \
886 PARAVIRT_BR_TARGET(switch_to
, SWITCH_TO
),
887 PARAVIRT_BR_TARGET(leave_syscall
, LEAVE_SYSCALL
),
888 PARAVIRT_BR_TARGET(work_processed_syscall
, WORK_PROCESSED_SYSCALL
),
889 PARAVIRT_BR_TARGET(leave_kernel
, LEAVE_KERNEL
),
893 ia64_native_patch_branch(unsigned long tag
, unsigned long type
)
895 const unsigned long nelem
=
896 sizeof(ia64_native_branch_target
) /
897 sizeof(ia64_native_branch_target
[0]);
898 __paravirt_patch_apply_branch(tag
, type
,
899 ia64_native_branch_target
, nelem
);