os/kernelhwsrv/kernel/eka/nkernsmp/x86/ncutils.cia
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // e32\nkernsmp\x86\ncutils.cia
    15 // 
    16 //
    17 
    18 #include <x86.h>
    19 #include <apic.h>
    20 
    21 extern "C" __NAKED__ void NKIdle(TInt)
    22 	{
    23 	asm("sti");
    24 	asm("hlt");
    25 	asm("ret");
    26 	}
    27 
    28 __NAKED__ void InitFpu()
    29 	{
    30 	asm("mov eax, cr0");
    31 	asm("and al, 0xf7");	// enable access to FPU
    32 	asm("mov cr0, eax");
    33 	asm("fninit");
    34 	asm("lea ecx, %a0": : "i"(DefaultCoprocessorState));
    35 	asm("fwait");
    36 	asm("fnsave [ecx]");	// save clean coprocessor state
    37 	asm("fwait");
    38 	asm("or al, 8");
    39 	asm("mov cr0, eax");	// disable access to coprocessor
    40 	asm("ret");
    41 	}
    42 
    43 
    44 const TLinAddr addressof_CrashState = (TLinAddr)&::CrashState;
    45 
    46 /** @internalTechnology
    47 
    48 	Called to indicate that the system has crashed and all CPUs should be
    49 	halted and should dump their registers.
    50 
    51 	Doesn't return
    52 */
    53 __NAKED__ void NKern::NotifyCrash(const TAny* /*a0*/, TInt /*a1*/)
    54 	{
    55 	asm("pushfd ");
    56 	asm("cli ");
    57 	asm("push ecx ");
    58 	asm("push edx ");
    59 	asm("push eax ");
    60 	asm("push ebp ");
    61 	asm("push esi ");
    62 	asm("mov ecx, %0": :"i" (addressof_CrashState)); 
    63 	asm("mov esi, ds:[%0]" : : "i"(X86_LOCAL_APIC_BASE + X86_LOCAL_APIC_OFFSET_ID));
    64 	asm("shr esi, 24");
    65 	asm("mov esi, [esi*4+%0]" : : "i"(&SubSchedulerLookupTable));
    66 	asm("mov eax, [ecx] ");
    67 	asm("atomic_set: ");
    68 	asm("mov edx, eax ");
    69 	asm("cmp eax, 0 ");
    70 	asm("jnz short atomic_set_1 ");
    71 	asm("mov edx, [%a0]" : : "i" (&TheScheduler.iActiveCpus1));
    72 	asm("shl edx, 16 ");
    73 	asm("atomic_set_1: ");
    74 	asm("or edx, [esi+%0]" : : "i" _FOFF(TSubScheduler,iCpuMask));
    75 	asm("lock cmpxchg [ecx], edx ");
    76 	asm("jne short atomic_set ");
    77 
    78 	asm("cmp eax, 0 ");								// were we first to crash?
    79 	asm("jz first_to_crash ");
    80 
    81 	// not the first to crash - wait for NMI
    82 	asm("cli ");
    83 	asm("pushfd ");
    84 	asm("push cs ");
    85 	asm("lea eax, crash_halt ");
    86 	asm("push eax ");
    87 	asm("iretd ");				// return to next instruction, allowing further NMIs
    88 	asm("crash_halt: ");
    89 	asm("hlt ");
    90 	asm("jmp short crash_halt ");
    91 
    92 	asm("first_to_crash: ");
    93 	asm("mov ebp, [esi+60+%0]" : : "i" _FOFF(TSubScheduler,iExtras));	// points to SCpuData
    94 	asm("lea ebp, [ebp+%0]" : : "i" _FOFF(SCpuData,iRegs));
    95 	asm("pop dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iEsi));
    96 	asm("pop dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iEbp));
    97 	asm("pop dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iEax));
    98 	asm("pop dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iEdx));
    99 	asm("pop dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iEcx));
   100 	asm("pop dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iEflags));
   101 	asm("pop dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iEip));
   102 	asm("pop dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iFaultCategory));
   103 	asm("pop dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iFaultReason));
   104 	asm("mov [ebp+%0], ebx" : : "i" _FOFF(SFullX86RegSet,iEbx));
   105 	asm("mov [ebp+%0], edi" : : "i" _FOFF(SFullX86RegSet,iEdi));
   106 	asm("mov [ebp+%0], esp" : : "i" _FOFF(SFullX86RegSet,iEsp));
   107 	asm("lea eax, [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iCs));
   108 	asm("mov [eax], cs ");
   109 	asm("mov [eax+4], ds ");
   110 	asm("mov [eax+8], es ");
   111 	asm("mov [eax+12], fs ");
   112 	asm("mov [eax+16], gs ");
   113 	asm("mov [eax+20], ss ");
   114 	asm("lea ebx, [esi+52+%0]" : : "i" _FOFF(TSubScheduler,iExtras));	// points to i_IrqNestCount
   115 	asm("mov eax, 0x80000000 ");
   116 	asm("lock xchg eax, [ebx] ");
   117 	asm("mov [ebp+%0], eax" : : "i" _FOFF(SFullX86RegSet,iIrqNestCount));
   118 
   119 	// send NMI to every other processor
   120 	asm("cli ");
   121 	asm("xor eax, eax ");
   122 	asm("mov ds:[%0], eax": :"i"(X86_LOCAL_APIC_BASE + X86_LOCAL_APIC_OFFSET_ICRH));
   123 	asm("mov eax, %0" : : "i" (0x000C4400));
   124 	asm("mov ds:[%0], eax": :"i"(X86_LOCAL_APIC_BASE + X86_LOCAL_APIC_OFFSET_ICRL));
   125 
   126 	asm("xor eax, eax ");
   127 	asm("push eax ");
   128 	asm("push eax ");
   129 	asm("push eax ");
   130 	asm("call %a0" : : "i" (NKCrashHandler));
   131 	asm("pop eax ");
   132 	asm("pop eax ");
   133 	asm("pop eax ");
   134 
   135 	asm("cli ");
   136 	asm("mov eax, [esi+%0] " : : "i" _FOFF(TSubScheduler,iCpuMask));
   137 	asm("not eax ");
   138 	asm("mov edx, %0": :"i" (addressof_CrashState)); 
   139 	asm("lock and [edx+2], ax ");
   140 	asm("mov dword ptr [esi+44+%0], 1" : : "i" _FOFF(TSubScheduler, iExtras));	// flag that this CPU is done
   141 	asm("xor ecx, ecx ");
   142 	asm("wait_other_cpus: ");
   143 	asm("mov ax, [edx+2] ");
   144 	asm("cmp ax, 0 ");
   145 	asm("jz short wait_other_cpus_done ");
   146 	asm("dec ecx ");
   147 	asm("jnz short wait_other_cpus ");
   148 	asm("wait_other_cpus_done: ");
   149 
   150 	asm("push dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iFaultReason));		// a1 parameter
   151 	asm("push dword ptr [ebp+%0]" : : "i" _FOFF(SFullX86RegSet,iFaultCategory));	// a0 parameter
   152 	asm("push 1 ");
   153 	asm("call %a0" : : "i" (NKCrashHandler));
   154 	asm("int 0xff ");	// shouldn't get here
   155 	}
   156