os/kernelhwsrv/kernel/eka/nkernsmp/arm/nk_entry.cia
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-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
// e32\nkernsmp\arm\nk_entry.cia
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32cia.h>
sl@0
    19
#include <arm.h>
sl@0
    20
#include "nk_priv.h"
sl@0
    21
sl@0
    22
#include "entry.h"
sl@0
    23
sl@0
    24
#ifndef	EKA2_ENTRY_POINT_VERSION_IDENTIFIER
sl@0
    25
#define	EKA2_ENTRY_POINT_VERSION_IDENTIFIER	\
sl@0
    26
	asm("tst pc, #%a0" : : "i" ((TInt)0) )
sl@0
    27
#endif
sl@0
    28
sl@0
    29
extern "C" {
sl@0
    30
sl@0
    31
extern void HwInit0();
sl@0
    32
extern void KernelMain();
sl@0
    33
extern TLinAddr RomHeaderAddress;
sl@0
    34
extern TLinAddr SuperPageAddress;
sl@0
    35
sl@0
    36
/*
sl@0
    37
 * The main startup program
sl@0
    38
 * aRomHeader is address of ROM header passed in by bootstrap
sl@0
    39
 * aSuperPage is address of super page passed in by bootstrap
sl@0
    40
 *
sl@0
    41
 * *** NOTE ***
sl@0
    42
 * This is written in assembler in order that nk_exe.lib can be built entirely
sl@0
    43
 * from one source file. This is necessary to ensure that the vector table above
sl@0
    44
 * appears at the very beginning of the ekern.exe code section.
sl@0
    45
 * ************
sl@0
    46
 */
sl@0
    47
#if defined(__GCC32__)
sl@0
    48
GLDEF_C __NAKED__ void _E32Startup(TLinAddr /*aRomHeader*/, TLinAddr /*aSuperPage*/)
sl@0
    49
	{
sl@0
    50
	EKA2_ENTRY_POINT_VERSION_IDENTIFIER;	// DUMMY INSTRUCTION TO INDICATE EKA2 ENTRY POINT
sl@0
    51
	asm("ldr r2, __RomHeaderAddress ");
sl@0
    52
	asm("b 1f ");				// branch over space for unique ID
sl@0
    53
sl@0
    54
	asm(".word 0 ");			// loader will replace with code seg unique ID
sl@0
    55
								// for RAM-loaded code segment
sl@0
    56
								// MUST BE AT OFFSET 12 FROM ENTRY POINT
sl@0
    57
sl@0
    58
	asm("1: ");
sl@0
    59
	asm("ldr r3, __SuperPage ");
sl@0
    60
	asm("str r0, [r2] ");
sl@0
    61
	asm("str r1, [r3] ");
sl@0
    62
sl@0
    63
#ifdef	__CPU_HAS_CP15_THREAD_ID_REG
sl@0
    64
	asm("mov	r0, #0 ");
sl@0
    65
	SET_RWNO_TID(,r0);			// initialise SubScheduler() pointer to 0
sl@0
    66
	SET_RWRO_TID(,r0);
sl@0
    67
	SET_RWRW_TID(,r0);
sl@0
    68
#endif
sl@0
    69
sl@0
    70
	asm("bl HwInit0 ");
sl@0
    71
sl@0
    72
	asm("ldr r4, __CtorList ");
sl@0
    73
	
sl@0
    74
	asm("1: ");
sl@0
    75
	asm("ldr r0, [r4, #4]! ");
sl@0
    76
	asm("adr lr, 1b ");
sl@0
    77
	asm("cmp r0, #0 ");
sl@0
    78
	asm("mrs r1, cpsr ");
sl@0
    79
	ASM_DEBUG2(GlobalCtor,r0,r1);
sl@0
    80
	__JUMP(ne,r0);
sl@0
    81
sl@0
    82
	asm("b KernelMain ");
sl@0
    83
sl@0
    84
	asm("__RomHeaderAddress: ");
sl@0
    85
	asm(".word RomHeaderAddress ");
sl@0
    86
	asm("__SuperPage: ");
sl@0
    87
	asm(".word SuperPageAddress ");
sl@0
    88
	asm("__CtorList: ");
sl@0
    89
	asm(".word __CTOR_LIST__ ");
sl@0
    90
	}
sl@0
    91
#elif defined(__ARMCC__)
sl@0
    92
void __DLL_Export_Table__(void);
sl@0
    93
void __cpp_initialize__aeabi_();
sl@0
    94
  
sl@0
    95
// The compiler generates calls to this when it reckons a top-level construction
sl@0
    96
// needs destruction. But the kernel never will need this so, define it as a nop
sl@0
    97
void __record_needed_destruction (void * d){}
sl@0
    98
// 2.1 calls __aeabi_atexit passing __dso_handle. This can be a dummy (i.e. just a label)
sl@0
    99
sl@0
   100
__asm void __dso_handle(void) {}
sl@0
   101
void __aeabi_atexit(void *object, void (*dtor)(void *), void *handle){}
sl@0
   102
sl@0
   103
void _E32Startup_Body(TLinAddr aRomHeader, TLinAddr aSuperPage);
sl@0
   104
sl@0
   105
__NAKED__ void _E32Startup(TLinAddr aRomHeader, TLinAddr aSuperPage)
sl@0
   106
	{
sl@0
   107
	EKA2_ENTRY_POINT_VERSION_IDENTIFIER;	// DUMMY INSTRUCTION TO INDICATE EKA2 ENTRY POINT
sl@0
   108
	asm("b		1f ");
sl@0
   109
	asm(".word	0 ");			// padding
sl@0
   110
sl@0
   111
	asm(".word	0 ");			// loader will replace with code seg unique ID
sl@0
   112
								// for RAM-loaded code segment
sl@0
   113
								// MUST BE AT OFFSET 12 FROM ENTRY POINT
sl@0
   114
	asm("1:		");
sl@0
   115
#ifdef	__CPU_HAS_CP15_THREAD_ID_REG
sl@0
   116
	asm("mov	r12, #0 ");
sl@0
   117
	SET_RWNO_TID(,r12);			// initialise SubScheduler() pointer to 0
sl@0
   118
	SET_RWRO_TID(,r12);
sl@0
   119
	SET_RWRW_TID(,r12);
sl@0
   120
#endif
sl@0
   121
	asm("mov	r12, #0 ");
sl@0
   122
	SET_RWNO_TID(,r12);			// initialise SubScheduler() pointer to 0
sl@0
   123
	asm("b		_E32Startup_Body ");
sl@0
   124
sl@0
   125
	}
sl@0
   126
sl@0
   127
GLDEF_C void _E32Startup_Body(TLinAddr aRomHeader, TLinAddr aSuperPage)
sl@0
   128
	{
sl@0
   129
	RomHeaderAddress = aRomHeader;
sl@0
   130
	SuperPageAddress = aSuperPage;
sl@0
   131
	HwInit0();
sl@0
   132
sl@0
   133
	// RVCT specific initialization
sl@0
   134
sl@0
   135
	// Make sure we get an export table
sl@0
   136
	__DLL_Export_Table__();
sl@0
   137
sl@0
   138
	// Initialise static data
sl@0
   139
	__cpp_initialize__aeabi_();
sl@0
   140
sl@0
   141
	KernelMain();
sl@0
   142
	}
sl@0
   143
#else
sl@0
   144
#error Not supported
sl@0
   145
#endif
sl@0
   146
sl@0
   147
}
sl@0
   148