Update contrib.
1 // Copyright (c) 2008-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\nkernsmp\arm\nk_entry.cia
24 #ifndef EKA2_ENTRY_POINT_VERSION_IDENTIFIER
25 #define EKA2_ENTRY_POINT_VERSION_IDENTIFIER \
26 asm("tst pc, #%a0" : : "i" ((TInt)0) )
31 extern void HwInit0();
32 extern void KernelMain();
33 extern TLinAddr RomHeaderAddress;
34 extern TLinAddr SuperPageAddress;
37 * The main startup program
38 * aRomHeader is address of ROM header passed in by bootstrap
39 * aSuperPage is address of super page passed in by bootstrap
42 * This is written in assembler in order that nk_exe.lib can be built entirely
43 * from one source file. This is necessary to ensure that the vector table above
44 * appears at the very beginning of the ekern.exe code section.
47 #if defined(__GCC32__)
48 GLDEF_C __NAKED__ void _E32Startup(TLinAddr /*aRomHeader*/, TLinAddr /*aSuperPage*/)
50 EKA2_ENTRY_POINT_VERSION_IDENTIFIER; // DUMMY INSTRUCTION TO INDICATE EKA2 ENTRY POINT
51 asm("ldr r2, __RomHeaderAddress ");
52 asm("b 1f "); // branch over space for unique ID
54 asm(".word 0 "); // loader will replace with code seg unique ID
55 // for RAM-loaded code segment
56 // MUST BE AT OFFSET 12 FROM ENTRY POINT
59 asm("ldr r3, __SuperPage ");
63 #ifdef __CPU_HAS_CP15_THREAD_ID_REG
65 SET_RWNO_TID(,r0); // initialise SubScheduler() pointer to 0
72 asm("ldr r4, __CtorList ");
75 asm("ldr r0, [r4, #4]! ");
79 ASM_DEBUG2(GlobalCtor,r0,r1);
84 asm("__RomHeaderAddress: ");
85 asm(".word RomHeaderAddress ");
87 asm(".word SuperPageAddress ");
89 asm(".word __CTOR_LIST__ ");
91 #elif defined(__ARMCC__)
92 void __DLL_Export_Table__(void);
93 void __cpp_initialize__aeabi_();
95 // The compiler generates calls to this when it reckons a top-level construction
96 // needs destruction. But the kernel never will need this so, define it as a nop
97 void __record_needed_destruction (void * d){}
98 // 2.1 calls __aeabi_atexit passing __dso_handle. This can be a dummy (i.e. just a label)
100 __asm void __dso_handle(void) {}
101 void __aeabi_atexit(void *object, void (*dtor)(void *), void *handle){}
103 void _E32Startup_Body(TLinAddr aRomHeader, TLinAddr aSuperPage);
105 __NAKED__ void _E32Startup(TLinAddr aRomHeader, TLinAddr aSuperPage)
107 EKA2_ENTRY_POINT_VERSION_IDENTIFIER; // DUMMY INSTRUCTION TO INDICATE EKA2 ENTRY POINT
109 asm(".word 0 "); // padding
111 asm(".word 0 "); // loader will replace with code seg unique ID
112 // for RAM-loaded code segment
113 // MUST BE AT OFFSET 12 FROM ENTRY POINT
115 #ifdef __CPU_HAS_CP15_THREAD_ID_REG
117 SET_RWNO_TID(,r12); // initialise SubScheduler() pointer to 0
122 SET_RWNO_TID(,r12); // initialise SubScheduler() pointer to 0
123 asm("b _E32Startup_Body ");
127 GLDEF_C void _E32Startup_Body(TLinAddr aRomHeader, TLinAddr aSuperPage)
129 RomHeaderAddress = aRomHeader;
130 SuperPageAddress = aSuperPage;
133 // RVCT specific initialization
135 // Make sure we get an export table
136 __DLL_Export_Table__();
138 // Initialise static data
139 __cpp_initialize__aeabi_();