1 /* hvtramp.S: Hypervisor start-cpu trampoline code.
3 * Copyright (C) 2007, 2008 David S. Miller <davem@davemloft.net>
7 #include <asm/thread_info.h>
8 #include <asm/hypervisor.h>
9 #include <asm/scratchpad.h>
10 #include <asm/spitfire.h>
11 #include <asm/hvtramp.h>
12 #include <asm/pstate.h>
13 #include <asm/ptrace.h>
19 .globl hv_cpu_startup, hv_cpu_startup_end
21 /* This code executes directly out of the hypervisor
22 * with physical addressing (va==pa). %o0 contains
23 * our client argument which for Linux points to
24 * a descriptor data structure which defines the
25 * MMU entries we need to load up.
27 * After we set things up we enable the MMU and call
30 * First setup basic privileged cpu state.
34 wrpr %g0, PIL_NORMAL_MAX, %pil
35 wrpr %g0, 0, %canrestore
36 wrpr %g0, 0, %otherwin
38 wrpr %g0, 6, %cleanwin
43 sethi %hi(sparc64_ttable_tl0), %g1
48 lduw [%l0 + HVTRAMP_DESCR_CPU], %g1
49 mov SCRATCHPAD_CPUID, %g2
50 stxa %g1, [%g2] ASI_SCRATCHPAD
52 ldx [%l0 + HVTRAMP_DESCR_FAULT_INFO_VA], %g2
53 stxa %g2, [%g0] ASI_SCRATCHPAD
56 lduw [%l0 + HVTRAMP_DESCR_NUM_MAPPINGS], %l2
57 add %l0, HVTRAMP_DESCR_MAPS, %l3
59 1: ldx [%l3 + HVTRAMP_MAPPING_VADDR], %o0
61 ldx [%l3 + HVTRAMP_MAPPING_TTE], %o2
62 mov HV_MMU_IMMU | HV_MMU_DMMU, %o3
63 mov HV_FAST_MMU_MAP_PERM_ADDR, %o5
72 add %l3, HVTRAMP_MAPPING_SIZE, %l3
74 ldx [%l0 + HVTRAMP_DESCR_FAULT_INFO_PA], %o0
75 mov HV_FAST_MMU_FAULT_AREA_CONF, %o5
81 wrpr %g0, (PSTATE_PRIV | PSTATE_PEF), %pstate
83 ldx [%l0 + HVTRAMP_DESCR_THREAD_REG], %l6
87 mov HV_FAST_MMU_ENABLE, %o5
97 mov PRIMARY_CONTEXT, %g7
98 stxa %g0, [%g7] ASI_MMU
101 mov SECONDARY_CONTEXT, %g7
102 stxa %g0, [%g7] ASI_MMU
106 ldx [%g6 + TI_TASK], %g4
109 sllx %g5, THREAD_SHIFT, %g5
110 sub %g5, (STACKFRAME_SZ + STACK_BIAS), %g5
113 call init_irqwork_curcpu
115 call hard_smp_processor_id
118 call sun4v_register_mondo_queues
121 call init_cur_cpu_trap
124 wrpr %g0, (PSTATE_PRIV | PSTATE_PEF | PSTATE_IE), %pstate