Trying to figure out how to implement my WINC like compatibility layer. Going the emulation way is probably not so smart. We should not use the kernel but rather hook native functions in the Exec calls.
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// e32\nkernsmp\arm\nccpu.cpp
//
//
#include <arm.h>
#include <arm_gic.h>
#include <arm_scu.h>
#include <arm_tmr.h>
extern "C" {
extern SVariantInterfaceBlock* VIB;
}
struct SAPBootPage : public SFullArmRegSet
{
volatile T_UintPtr iAPBootPtr[KMaxCpus];
volatile T_UintPtr iBootFlags;
volatile T_UintPtr iBootFlags2;
volatile T_UintPtr iBootFlags3;
volatile T_UintPtr iBootFlags4;
volatile TUint64 iBPTimestamp;
volatile TUint64 iAPTimestamp;
};
extern "C" void _ApEntry();
extern "C" void KickCpu(volatile T_UintPtr* aPtr, T_UintPtr aRegsPhys);
extern void DumpFullRegSet(SFullArmRegSet& a);
TInt NKern::BootAP(volatile SAPBootInfo* aInfo)
{
volatile SArmAPBootInfo& a = *(volatile SArmAPBootInfo*)aInfo;
__KTRACE_OPT(KBOOT,DEBUGPRINT("NKern::BootAP %d %08x+%x", a.iCpu, a.iInitStackBase, a.iInitStackSize));
T_UintPtr bp_phys = a.iAPBootPhys;
T_UintPtr BootFlagsPhys = bp_phys + (T_UintPtr)_FOFF(SAPBootPage,iBootFlags);
volatile SAPBootPage& bootPage = *(volatile SAPBootPage*)a.iAPBootLin;
Arm::SaveState((SFullArmRegSet&)bootPage);
NKern::EnableAllInterrupts(); // Arm::SaveState() disables interrupts
TLinAddr BootFlagsLin = (TLinAddr)&bootPage.iBootFlags;
TLinAddr init_sp = a.iInitStackBase + a.iInitStackSize;
volatile T_UintPtr* pB = (volatile T_UintPtr*)BootFlagsLin;
*pB = 0;
pB[1] = 0;
pB[2] = 0;
pB[3] = 0;
__KTRACE_OPT(KBOOT,DEBUGPRINT("BootFlagsPhys=%08x BootFlagsLin=%08x RegsPhys=%08x RegsLin=%08x",
BootFlagsPhys, BootFlagsLin, bp_phys, &bootPage));
__KTRACE_OPT(KBOOT,DEBUGPRINT("SCU: iCtrl=%08x iConfig=%08x iCpuStat=%08x", SCU.iCtrl, SCU.iConfig, SCU.iCpuStatus));
bootPage.iN.iR13Abt = a.iInitR13Abt;
bootPage.iN.iR13Und = a.iInitR13Und;
bootPage.iN.iR13Irq = a.iInitR13Irq;
bootPage.iN.iR13Fiq = a.iInitR13Fiq;
bootPage.iN.iR13Svc = init_sp;
bootPage.iN.iFlags = 0x1D3;
bootPage.iN.iR1 = (TUint32)a.iAPBootPageDirPhys;
bootPage.iN.iR2 = TUint32(a.iAPBootCodeLin) - TUint32(a.iAPBootCodePhys);
bootPage.iN.iR3 = (TUint32)a.iAPBootLin;
bootPage.iN.iR4 = (TUint32)aInfo;
bootPage.iN.iR5 = BootFlagsPhys;
bootPage.iN.iR6 = BootFlagsLin;
bootPage.iN.iR7 = a.iInitStackSize;
bootPage.iN.iR15 = (TLinAddr)&_ApEntry;
bootPage.iB[0].iRWRWTID = 0;
bootPage.iB[0].iRWROTID = 0;
bootPage.iB[0].iRWNOTID = 0;
__KTRACE_OPT(KBOOT,DumpFullRegSet((SFullArmRegSet&)bootPage));
arm_dsb(); // ensure writes to uncached memory visible
KickCpu(&bootPage.iAPBootPtr[a.iCpu], bp_phys);
TUint32 n = TUint32(VIB->iMaxCpuClock >> 3);
n = -n;
TUint32 b = 0;
do {
++n;
b = *pB;
} while(b!=init_sp && n!=0);
arm_dsb();
__KTRACE_OPT(KBOOT,DEBUGPRINT("BootFlag=%08x %08x %08x %08x n=%d", b, n, pB[1], pB[2], pB[3]));
__KTRACE_OPT(KBOOT,DEBUGPRINT("SCU: iCtrl=%08x iConfig=%08x iCpuStat=%08x", SCU.iCtrl, SCU.iConfig, SCU.iCpuStatus));
if (n==0)
return KErrTimedOut;
NKern::DisableAllInterrupts();
arm_dsb();
while (bootPage.iBootFlags2==0)
{}
arm_dsb();
bootPage.iBootFlags2 = 2;
arm_dsb();
bootPage.iBPTimestamp = NKern::Timestamp();
arm_dsb();
while (bootPage.iBootFlags2==2)
{}
arm_dsb();
NKern::EnableAllInterrupts();
return KErrNone;
}
void InitAPTimestamp(SNThreadCreateInfo& aInfo)
{
volatile SArmAPBootInfo& a = *(volatile SArmAPBootInfo*)aInfo.iParameterBlock;
volatile SAPBootPage& bootPage = *(volatile SAPBootPage*)a.iAPBootLin;
NKern::DisableAllInterrupts();
bootPage.iBootFlags2 = 1;
arm_dsb();
while (bootPage.iBootFlags2==1)
{}
arm_dsb();
bootPage.iAPTimestamp = NKern::Timestamp();
arm_dsb();
TUint64 bpt = bootPage.iBPTimestamp;
TUint64 apt = bootPage.iAPTimestamp;
TUint64 delta = bpt - apt;
SubScheduler().iLastTimestamp64 += delta;
__KTRACE_OPT(KBOOT,DEBUGPRINT("APT=0x%lx BPT=0x%lx Delta=0x%lx", apt, bpt, delta));
arm_dsb();
bootPage.iBootFlags2 = 3;
NKern::EnableAllInterrupts();
}