sl@0
|
1 |
// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "arm_mem.h"
|
sl@0
|
17 |
#include "../mmu/mm.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
// Set up virtual addresses used for cache flushing if this is
|
sl@0
|
20 |
// done by data read or line allocate
|
sl@0
|
21 |
void M::SetupCacheFlushPtr(TInt aCache, SCacheInfo& aInfo)
|
sl@0
|
22 |
{
|
sl@0
|
23 |
}
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifdef __SMP__
|
sl@0
|
26 |
extern DMemoryObject* ExceptionStacks;
|
sl@0
|
27 |
|
sl@0
|
28 |
void M::GetAPBootInfo(TInt aCpu, volatile SAPBootInfo* aInfo)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
SArmAPBootInfo* b = (SArmAPBootInfo*)aInfo;
|
sl@0
|
31 |
TInt i;
|
sl@0
|
32 |
for (i=1; i<=7; i+=2)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
TUint ix = (TUint)(aCpu*8+i);
|
sl@0
|
35 |
TInt r = MM::MemoryAlloc(ExceptionStacks, ix, 1);
|
sl@0
|
36 |
__NK_ASSERT_ALWAYS(r==KErrNone);
|
sl@0
|
37 |
TLinAddr addr = KExcptStacksLinearBase + (ix<<KPageShift);
|
sl@0
|
38 |
TLinAddr top = addr + KPageSize;
|
sl@0
|
39 |
TUint8 fill = 0xdd;
|
sl@0
|
40 |
switch (i)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
case 1: b->iInitR13Irq = top; fill=0xaa; break;
|
sl@0
|
43 |
case 3: b->iInitR13Fiq = top; fill=0xbb; break;
|
sl@0
|
44 |
case 5: b->iInitR13Und = top; break;
|
sl@0
|
45 |
case 7: top-=sizeof(SFullArmRegSet); b->iInitR13Abt = top; memclr((TAny*)top,sizeof(SFullArmRegSet)); break;
|
sl@0
|
46 |
default: __NK_ASSERT_ALWAYS(0); break;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
memset((TAny*)addr, fill, top-addr);
|
sl@0
|
49 |
}
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
void M::Init2AP()
|
sl@0
|
53 |
{
|
sl@0
|
54 |
__KTRACE_OPT(KBOOT,Kern::Printf("M::Init2AP()"));
|
sl@0
|
55 |
DThread& t = Kern::CurrentThread();
|
sl@0
|
56 |
SubScheduler().iAddressSpace = t.iOwningProcess;
|
sl@0
|
57 |
t.iNThread.SetAddressSpace(t.iOwningProcess);
|
sl@0
|
58 |
t.iNThread.SetAttributes(KThreadAttAddressSpace);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
#endif
|