os/kernelhwsrv/kernel/eka/nkernsmp/arm/ncirq.cpp
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\ncirq.cpp
sl@0
    15
//
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalTechnology
sl@0
    21
*/
sl@0
    22
sl@0
    23
#include "nk_priv.h"
sl@0
    24
#include "nk_plat.h"
sl@0
    25
#include <nk_irq.h>
sl@0
    26
#include <arm.h>
sl@0
    27
#include <arm_gic.h>
sl@0
    28
#include <arm_scu.h>
sl@0
    29
#include <arm_tmr.h>
sl@0
    30
sl@0
    31
#ifdef _DEBUG
sl@0
    32
#define DMEMDUMP(base,size)	DbgMemDump((TLinAddr)base,size)
sl@0
    33
void DbgMemDump(TLinAddr aBase, TInt aSize)
sl@0
    34
	{
sl@0
    35
	TInt off;
sl@0
    36
	const TUint8* p=(const TUint8*)aBase;
sl@0
    37
	NKern::Lock();
sl@0
    38
	for (off=0; off<aSize; off+=16, p+=16)
sl@0
    39
		{
sl@0
    40
		DEBUGPRINT("%08x: %02x %02x %02x %02x  %02x %02x %02x %02x | %02x %02x %02x %02x  %02x %02x %02x %02x",
sl@0
    41
			p,		p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7],
sl@0
    42
					p[8], p[9], p[10], p[11], p[12], p[13], p[14], p[15]);
sl@0
    43
		}
sl@0
    44
	NKern::Unlock();
sl@0
    45
	}
sl@0
    46
#else
sl@0
    47
#define DMEMDUMP(base,size)
sl@0
    48
#endif
sl@0
    49
sl@0
    50
/******************************************************************************
sl@0
    51
 * ARM Generic Interrupt Controller
sl@0
    52
 ******************************************************************************/
sl@0
    53
sl@0
    54
class ArmGic
sl@0
    55
	{
sl@0
    56
public:
sl@0
    57
	static void Enable(TInt aIndex);
sl@0
    58
	static void Disable(TInt aIndex);
sl@0
    59
	static TBool IsEnabled(TInt aIndex);
sl@0
    60
	static void SetPending(TInt aIndex);
sl@0
    61
	static void ClearPending(TInt aIndex);
sl@0
    62
	static TBool IsPending(TInt aIndex);
sl@0
    63
	static TBool IsActive(TInt aIndex);
sl@0
    64
	static TBool SetNonSecure(TInt aIndex, TBool aNonSecure);
sl@0
    65
	static TUint32 Priority(TInt aIndex);
sl@0
    66
	static TUint32 SetPriority(TInt aIndex, TUint32 aPri);
sl@0
    67
	static TUint32 Dest(TInt aIndex);
sl@0
    68
	static TUint32 ModifyDest(TInt aIndex, TUint32 aClear, TUint32 aSet);
sl@0
    69
	static TUint32 Config(TInt aIndex);
sl@0
    70
	static TUint32 ModifyConfig(TInt aIndex, TUint32 aClear, TUint32 aSet);
sl@0
    71
sl@0
    72
	static void Dump();
sl@0
    73
	static void DumpCpuIfc();
sl@0
    74
public:
sl@0
    75
	static TSpinLock	ArmGicLock;
sl@0
    76
	static TInt			LSPI;
sl@0
    77
	static TInt			Domains;
sl@0
    78
	static TInt			NumCpus;
sl@0
    79
	static TInt			NumLines;
sl@0
    80
	static TUint32		PriMask;
sl@0
    81
	static TUint32		PriSpc;
sl@0
    82
	static TUint32		MinPri;
sl@0
    83
	};
sl@0
    84
sl@0
    85
TSpinLock ArmGic::ArmGicLock(TSpinLock::EOrderBTrace);
sl@0
    86
TInt ArmGic::LSPI;
sl@0
    87
TInt ArmGic::Domains;
sl@0
    88
TInt ArmGic::NumCpus;
sl@0
    89
TInt ArmGic::NumLines;
sl@0
    90
TUint32 ArmGic::PriMask;
sl@0
    91
TUint32 ArmGic::PriSpc;
sl@0
    92
TUint32	ArmGic::MinPri;
sl@0
    93
sl@0
    94
void ArmGic::Enable(TInt aIndex)
sl@0
    95
	{
sl@0
    96
	TUint32 mask = 1u << (aIndex&31);
sl@0
    97
	GIC_DIST.iEnableSet[aIndex>>5] = mask;
sl@0
    98
	arm_dsb();
sl@0
    99
	}
sl@0
   100
sl@0
   101
void ArmGic::Disable(TInt aIndex)
sl@0
   102
	{
sl@0
   103
	TUint32 mask = 1u << (aIndex&31);
sl@0
   104
	GIC_DIST.iEnableClear[aIndex>>5] = mask;
sl@0
   105
	arm_dsb();
sl@0
   106
	}
sl@0
   107
sl@0
   108
TBool ArmGic::IsEnabled(TInt aIndex)
sl@0
   109
	{
sl@0
   110
	TUint32 mask = 1u << (aIndex&31);
sl@0
   111
	return GIC_DIST.iEnableSet[aIndex>>5] & mask;
sl@0
   112
	}
sl@0
   113
sl@0
   114
void ArmGic::SetPending(TInt aIndex)
sl@0
   115
	{
sl@0
   116
	TUint32 mask = 1u << (aIndex&31);
sl@0
   117
	GIC_DIST.iPendingSet[aIndex>>5] = mask;
sl@0
   118
	arm_dsb();
sl@0
   119
	}
sl@0
   120
sl@0
   121
void ArmGic::ClearPending(TInt aIndex)
sl@0
   122
	{
sl@0
   123
	TUint32 mask = 1u << (aIndex&31);
sl@0
   124
	GIC_DIST.iPendingClear[aIndex>>5] = mask;
sl@0
   125
	arm_dsb();
sl@0
   126
	}
sl@0
   127
sl@0
   128
TBool ArmGic::IsPending(TInt aIndex)
sl@0
   129
	{
sl@0
   130
	TUint32 mask = 1u << (aIndex&31);
sl@0
   131
	return GIC_DIST.iPendingSet[aIndex>>5] & mask;
sl@0
   132
	}
sl@0
   133
sl@0
   134
TBool ArmGic::IsActive(TInt aIndex)
sl@0
   135
	{
sl@0
   136
	TUint32 mask = 1u << (aIndex&31);
sl@0
   137
	return GIC_DIST.iActive[aIndex>>5] & mask;
sl@0
   138
	}
sl@0
   139
sl@0
   140
TUint32 ArmGic::Dest(TInt aIndex)
sl@0
   141
	{
sl@0
   142
	TUint32 reg = GIC_DIST.iTarget[aIndex>>2];
sl@0
   143
	reg >>= ((aIndex&3)<<3);
sl@0
   144
	reg &= 0xff;
sl@0
   145
	return reg;
sl@0
   146
	}
sl@0
   147
sl@0
   148
TUint32 ArmGic::ModifyDest(TInt aIndex, TUint32 aClear, TUint32 aSet)
sl@0
   149
	{
sl@0
   150
	aClear &= 0xff;
sl@0
   151
	aSet &= 0xff;
sl@0
   152
	TInt shift = (aIndex&3)<<3;
sl@0
   153
	aClear <<= shift;
sl@0
   154
	aSet <<= shift;
sl@0
   155
	volatile TUint32& reg = GIC_DIST.iTarget[aIndex>>2];
sl@0
   156
	TInt irq = __SPIN_LOCK_IRQSAVE(ArmGicLock);
sl@0
   157
	TUint32 old = reg;
sl@0
   158
	reg = (old &~ aClear) | aSet;
sl@0
   159
	arm_dsb();
sl@0
   160
	__SPIN_UNLOCK_IRQRESTORE(ArmGicLock, irq);
sl@0
   161
	old >>= shift;
sl@0
   162
	return old & 0xff;
sl@0
   163
	}
sl@0
   164
sl@0
   165
TUint32 ArmGic::Config(TInt aIndex)
sl@0
   166
	{
sl@0
   167
	TInt shift = (aIndex&15)<<1;
sl@0
   168
	TUint32 x = GIC_DIST.iConfig[aIndex>>4];
sl@0
   169
	x >>= shift;
sl@0
   170
	return x & 3;
sl@0
   171
	}
sl@0
   172
sl@0
   173
TUint32 ArmGic::ModifyConfig(TInt aIndex, TUint32 aClear, TUint32 aSet)
sl@0
   174
	{
sl@0
   175
	aClear &= 3;
sl@0
   176
	aSet &= 3;
sl@0
   177
	TInt shift = (aIndex&15)<<1;
sl@0
   178
	aClear <<= shift;
sl@0
   179
	aSet <<= shift;
sl@0
   180
	volatile TUint32& reg = GIC_DIST.iConfig[aIndex>>4];
sl@0
   181
	TInt irq = __SPIN_LOCK_IRQSAVE(ArmGicLock);
sl@0
   182
	TUint32 old = reg;
sl@0
   183
	reg = (old &~ aClear) | aSet;
sl@0
   184
	arm_dsb();
sl@0
   185
	__SPIN_UNLOCK_IRQRESTORE(ArmGicLock, irq);
sl@0
   186
	old >>= shift;
sl@0
   187
	return old & 3;
sl@0
   188
	}
sl@0
   189
sl@0
   190
TBool ArmGic::SetNonSecure(TInt aIndex, TBool aNonSecure)
sl@0
   191
	{
sl@0
   192
	TUint32 mask = 1u << (aIndex & 31);
sl@0
   193
	volatile TUint32& reg = GIC_DIST.iIntSec[aIndex>>5];
sl@0
   194
	TInt irq = __SPIN_LOCK_IRQSAVE(ArmGicLock);
sl@0
   195
	TUint32 old = reg;
sl@0
   196
	reg = aNonSecure ? (old | mask) : (old &~ mask);
sl@0
   197
	arm_dsb();
sl@0
   198
	__SPIN_UNLOCK_IRQRESTORE(ArmGicLock, irq);
sl@0
   199
	return old & mask;
sl@0
   200
	}
sl@0
   201
sl@0
   202
TUint32 ArmGic::Priority(TInt aIndex)
sl@0
   203
	{
sl@0
   204
	TInt shift = (aIndex&3)<<3;
sl@0
   205
	TUint32 x = GIC_DIST.iPriority[aIndex>>2];
sl@0
   206
	x >>= shift;
sl@0
   207
	return x & 0xff;
sl@0
   208
	}
sl@0
   209
sl@0
   210
TUint32 ArmGic::SetPriority(TInt aIndex, TUint32 aPri)
sl@0
   211
	{
sl@0
   212
	aPri &= 0xff;
sl@0
   213
	TInt shift = (aIndex&3)<<3;
sl@0
   214
	TUint32 clear = 0xffu << shift;
sl@0
   215
	aPri <<= shift;
sl@0
   216
	volatile TUint32& reg = GIC_DIST.iPriority[aIndex>>2];
sl@0
   217
	TInt irq = __SPIN_LOCK_IRQSAVE(ArmGicLock);
sl@0
   218
	TUint32 old = reg;
sl@0
   219
	reg = (old &~ clear) | aPri;
sl@0
   220
	arm_dsb();
sl@0
   221
	__SPIN_UNLOCK_IRQRESTORE(ArmGicLock, irq);
sl@0
   222
	old >>= shift;
sl@0
   223
	return old & 0xff;
sl@0
   224
	}
sl@0
   225
sl@0
   226
void ArmGic::Dump()
sl@0
   227
	{
sl@0
   228
#ifdef KBOOT
sl@0
   229
	__KTRACE_OPT(KBOOT,DEBUGPRINT("GIC iCtrl=%08x iType=%08x", GIC_DIST.iCtrl, GIC_DIST.iType));
sl@0
   230
	TInt n = ArmGic::NumLines;
sl@0
   231
	TInt i;
sl@0
   232
	for (i=0; i<n; i++)
sl@0
   233
		{
sl@0
   234
		TUint32 cfg = Config(i);
sl@0
   235
		TUint32 pri = Priority(i);
sl@0
   236
		TUint32 dest = Dest(i);
sl@0
   237
		TUint32 enabled = IsEnabled(i) ? 1 : 0;
sl@0
   238
		TUint32 pending = IsPending(i) ? 1 : 0;
sl@0
   239
		TUint32 active = IsActive(i) ? 1 : 0;
sl@0
   240
		const char* cat = (i<16) ? "SW" : (i<32) ? "PP" : "SP";
sl@0
   241
		__KTRACE_OPT(KBOOT,DEBUGPRINT("%3d: %2s cfg=%1d pri=%02x dest=%02x E%1d P%1d A%1d",
sl@0
   242
			i, cat, cfg, pri, dest, enabled, pending, active));
sl@0
   243
		}
sl@0
   244
#endif
sl@0
   245
	}
sl@0
   246
sl@0
   247
void ArmGic::DumpCpuIfc()
sl@0
   248
	{
sl@0
   249
#ifdef KBOOT
sl@0
   250
	GicCpuIfc& C = GIC_CPU_IFC;
sl@0
   251
	__KTRACE_OPT(KBOOT,DEBUGPRINT("IFC iCtrl=%08x iPriMask=%08x iBinaryPoint=%08x", C.iCtrl, C.iPriMask, C.iBinaryPoint));
sl@0
   252
	__KTRACE_OPT(KBOOT,DEBUGPRINT("IFC Running=%08x HighestP=%08x", C.iRunningPri, C.iHighestPending));
sl@0
   253
#endif
sl@0
   254
	}
sl@0
   255
sl@0
   256
sl@0
   257
void NIrq::HwEoi()
sl@0
   258
	{
sl@0
   259
	if (iX && iX->iEoiFn)
sl@0
   260
		(*iX->iEoiFn)(this);
sl@0
   261
	else
sl@0
   262
		{
sl@0
   263
		GIC_CPU_IFC.iEoi = iVector;
sl@0
   264
sl@0
   265
#if defined(SMP_CRAZY_INTERRUPTS) && !defined(__STANDALONE_NANOKERNEL__)
sl@0
   266
		// change the target CPU for the next Interrupt
sl@0
   267
		if ((TInt)TheSuperPage().KernelConfigFlags() & EKernelConfigSMPCrazyInterrupts)
sl@0
   268
			{
sl@0
   269
			TInt cpu = NKern::CurrentCpu() + 1;
sl@0
   270
			if(cpu >= NKern::NumberOfCpus())
sl@0
   271
				cpu = 0;
sl@0
   272
			ArmGic::ModifyDest(iVector, 0xffu, 1u << cpu);
sl@0
   273
			}
sl@0
   274
		else
sl@0
   275
			arm_dsb();
sl@0
   276
sl@0
   277
#else
sl@0
   278
		arm_dsb();
sl@0
   279
#endif
sl@0
   280
		}
sl@0
   281
	}
sl@0
   282
sl@0
   283
void NIrq::HwEnable()
sl@0
   284
	{
sl@0
   285
	if (iX && iX->iEnableFn)
sl@0
   286
		(*iX->iEnableFn)(this);
sl@0
   287
	else
sl@0
   288
		{
sl@0
   289
		ArmGic::Enable(iVector);
sl@0
   290
		}
sl@0
   291
	}
sl@0
   292
sl@0
   293
void NIrq::HwDisable()
sl@0
   294
	{
sl@0
   295
	if (iX && iX->iDisableFn)
sl@0
   296
		(*iX->iDisableFn)(this);
sl@0
   297
	else
sl@0
   298
		{
sl@0
   299
		ArmGic::Disable(iVector);
sl@0
   300
		}
sl@0
   301
	}
sl@0
   302
sl@0
   303
void NIrq::HwSetCpu(TInt aCpu)
sl@0
   304
	{
sl@0
   305
	if (iX && iX->iSetCpuFn)
sl@0
   306
		(*iX->iSetCpuFn)(this, 1u<<aCpu);
sl@0
   307
	else
sl@0
   308
		{
sl@0
   309
		ArmGic::ModifyDest(iVector, 0xffu, 1u<<aCpu);
sl@0
   310
		}
sl@0
   311
	}
sl@0
   312
sl@0
   313
void NIrq::HwSetCpuMask(TUint32 aMask)
sl@0
   314
	{
sl@0
   315
	if (iX && iX->iSetCpuFn)
sl@0
   316
		(*iX->iSetCpuFn)(this, aMask);
sl@0
   317
	else
sl@0
   318
		{
sl@0
   319
		ArmGic::ModifyDest(iVector, 0xffu, aMask);
sl@0
   320
		}
sl@0
   321
	}
sl@0
   322
sl@0
   323
void NIrq::HwInit()
sl@0
   324
	{
sl@0
   325
	if (iX && iX->iInitFn)
sl@0
   326
		(*iX->iInitFn)(this);
sl@0
   327
	else
sl@0
   328
		{
sl@0
   329
		__KTRACE_OPT(KBOOT,DEBUGPRINT("NIrq %02x HwInit", iIndex));
sl@0
   330
		TUint32 clear = E_GicDistICfgEdge;
sl@0
   331
		TUint32 set = 0;
sl@0
   332
		if (!(iStaticFlags & ELevel))
sl@0
   333
			set = E_GicDistICfgEdge;
sl@0
   334
		ArmGic::ModifyConfig(iVector, clear, set);
sl@0
   335
		}
sl@0
   336
	}
sl@0
   337
sl@0
   338
TBool NIrq::HwPending()
sl@0
   339
	{
sl@0
   340
	if (iX && iX->iPendingFn)
sl@0
   341
		return (*iX->iPendingFn)(this);
sl@0
   342
	return ArmGic::IsPending(iVector) || ArmGic::IsActive(iVector);
sl@0
   343
	}
sl@0
   344
sl@0
   345
void NIrq::HwWaitCpus()
sl@0
   346
	{
sl@0
   347
	if (iX && iX->iWaitFn)
sl@0
   348
		(*iX->iWaitFn)(this);
sl@0
   349
	}
sl@0
   350
sl@0
   351
void NIrq::HwInit0()
sl@0
   352
	{
sl@0
   353
	__KTRACE_OPT(KBOOT, DEBUGPRINT("NIrq::HwInit0"));
sl@0
   354
sl@0
   355
	// Need to set up addresses of GIC_DIST, GIC_CPU_IFC, SCU and LOCAL_TIMER
sl@0
   356
sl@0
   357
	GicDistributor& D = GIC_DIST;
sl@0
   358
	GicCpuIfc& C = GIC_CPU_IFC;
sl@0
   359
	D.iCtrl = 0;
sl@0
   360
	C.iCtrl = 0;
sl@0
   361
	arm_dsb();
sl@0
   362
	TUint32 type = D.iType;
sl@0
   363
	__KTRACE_OPT(KBOOT, DEBUGPRINT("GIC iType = %08x", type));
sl@0
   364
	ArmGic::LSPI = (type & E_GicDistType_LSPIMask) >> E_GicDistType_LSPIShift;
sl@0
   365
	ArmGic::Domains = (type & E_GicDistType_Domains) ? 2 : 1;
sl@0
   366
	ArmGic::NumCpus = ((type & E_GicDistType_CPUNMask) >> E_GicDistType_CPUNShift) + 1;
sl@0
   367
	ArmGic::NumLines = ((type & E_GicDistType_ITMask) + 1) << 5;
sl@0
   368
	__KTRACE_OPT(KBOOT, DEBUGPRINT("GIC LSPI=%d Domains=%d NumCpus=%d NumLines=%d",
sl@0
   369
						ArmGic::LSPI, ArmGic::Domains, ArmGic::NumCpus, ArmGic::NumLines));
sl@0
   370
	TInt i;
sl@0
   371
	for (i=0; i<32; ++i)
sl@0
   372
		D.iEnableClear[i] = 0xffffffffu;	// disable all interrupts
sl@0
   373
	arm_dsb();
sl@0
   374
	for (i=0; i<32; ++i)
sl@0
   375
		D.iPendingClear[i] = 0xffffffffu;	// clear any pending interrupts
sl@0
   376
	arm_dsb();
sl@0
   377
	D.iPriority[0] = 0xffffffffu;
sl@0
   378
	ArmGic::PriMask = D.iPriority[0] & 0xffu;
sl@0
   379
	ArmGic::PriSpc = (~ArmGic::PriMask + 1) & 0xffu;
sl@0
   380
	ArmGic::MinPri = ArmGic::PriMask - ArmGic::PriSpc;
sl@0
   381
	__KTRACE_OPT(KBOOT, DEBUGPRINT("PriMask=%02x PriSpc=%02x MinPri=%02x", ArmGic::PriMask, ArmGic::PriSpc, ArmGic::MinPri));
sl@0
   382
	TUint32 x = ArmGic::MinPri;
sl@0
   383
	x |= (x<<8);
sl@0
   384
	x |= (x<<16);
sl@0
   385
	for (i=0; i<256; ++i)
sl@0
   386
		D.iPriority[i] = x;		// set all interrupts to minimum active priority
sl@0
   387
	x = 0x01010101u;
sl@0
   388
	for (i=0; i<256; ++i)
sl@0
   389
		D.iTarget[i] = x;		// set all interrupts to target this CPU
sl@0
   390
	x = 0xAAAAAAAAu;			// config value for SW interrupts (rising edge, N-N)
sl@0
   391
	D.iConfig[0] = x;			// set config for 0-15
sl@0
   392
	x = 0x28000000u;			// 31=0b00, 30=29=0b10
sl@0
   393
	D.iConfig[1] = x;			// set config for 16-31
sl@0
   394
	x = 0xAAAAAAAAu;			// config value for SW interrupts (rising edge, N-N)
sl@0
   395
	for (i=2; i<64; ++i)
sl@0
   396
		D.iConfig[i] = x;		// set default value for other interrupts
sl@0
   397
	arm_dsb();
sl@0
   398
	ArmGic::Dump();
sl@0
   399
	}
sl@0
   400
sl@0
   401
void NIrq::HwInit1()
sl@0
   402
	{
sl@0
   403
	__KTRACE_OPT(KBOOT, DEBUGPRINT("NIrq::HwInit1"));
sl@0
   404
sl@0
   405
	// elevate priority of CRASH_IPI to highest level
sl@0
   406
	ArmGic::SetPriority(CRASH_IPI_VECTOR, 0);
sl@0
   407
sl@0
   408
	GicDistributor& D = GIC_DIST;
sl@0
   409
	GicCpuIfc& C = GIC_CPU_IFC;
sl@0
   410
	C.iCtrl = 0;
sl@0
   411
	C.iPriMask = ArmGic::PriMask;	// unmask all interrupts
sl@0
   412
	C.iBinaryPoint = 0;
sl@0
   413
	arm_dsb();
sl@0
   414
	C.iCtrl = E_GicDistCtrl_Enable;	// enable this CPU's interrupt controller interface
sl@0
   415
	arm_dsb();
sl@0
   416
	D.iCtrl = E_GicDistCtrl_Enable;	// enable the global interrupt distributor
sl@0
   417
	arm_dsb();
sl@0
   418
sl@0
   419
	// Enable timeslice timer interrupt
sl@0
   420
	ArmLocalTimer& T = LOCAL_TIMER;
sl@0
   421
	T.iTimerCtrl = 0;
sl@0
   422
	T.iTimerIntStatus = E_ArmTmrIntStatus_Event;
sl@0
   423
	ArmGic::ClearPending(TIMESLICE_VECTOR);
sl@0
   424
	arm_dsb();
sl@0
   425
	ArmGic::Enable(TIMESLICE_VECTOR);
sl@0
   426
	arm_dsb();
sl@0
   427
	T.iTimerLoad = KMaxTUint32;				// timer wraps to 0xffffffff after reaching 0
sl@0
   428
	arm_dsb();
sl@0
   429
	T.iTimerCount = (TUint32)KMaxTInt32;	// timer starts at 0x7fffffff (initial thread doesn't timeslice)
sl@0
   430
	arm_dsb();
sl@0
   431
sl@0
   432
	ArmGic::DumpCpuIfc();
sl@0
   433
	}
sl@0
   434
sl@0
   435
void NIrq::HwInit2AP()
sl@0
   436
	{
sl@0
   437
	__KTRACE_OPT(KBOOT, DEBUGPRINT("NIrq::HwInit2AP"));
sl@0
   438
sl@0
   439
	// Must set up interrupts 0-31 separately for each CPU
sl@0
   440
	GicDistributor& D = GIC_DIST;
sl@0
   441
	TInt i;
sl@0
   442
	TUint32 x = ArmGic::MinPri;
sl@0
   443
	x |= (x<<8);
sl@0
   444
	x |= (x<<16);
sl@0
   445
	for (i=0; i<32; ++i)
sl@0
   446
		D.iPriority[i] = x;		// set all interrupts to minimum active priority
sl@0
   447
	x = 0xAAAAAAAAu;			// config value for SW interrupts (rising edge, N-N)
sl@0
   448
	D.iConfig[0] = x;			// set config for 0-15
sl@0
   449
	x = 0x28000000u;			// 31=0b00, 30=29=0b10
sl@0
   450
	D.iConfig[1] = x;			// set config for 16-31
sl@0
   451
	arm_dsb();
sl@0
   452
	ArmGic::Dump();
sl@0
   453
sl@0
   454
	// elevate priority of CRASH_IPI to highest level
sl@0
   455
	ArmGic::SetPriority(CRASH_IPI_VECTOR, 0);
sl@0
   456
sl@0
   457
	GicCpuIfc& C = GIC_CPU_IFC;
sl@0
   458
	C.iCtrl = 0;
sl@0
   459
	C.iPriMask = ArmGic::PriMask;	// unmask all interrupts
sl@0
   460
	C.iBinaryPoint = 0;
sl@0
   461
	arm_dsb();
sl@0
   462
	C.iCtrl = E_GicDistCtrl_Enable;
sl@0
   463
	arm_dsb();
sl@0
   464
sl@0
   465
	// Enable timeslice timer interrupt
sl@0
   466
	ArmLocalTimer& T = LOCAL_TIMER;
sl@0
   467
	T.iTimerCtrl = 0;
sl@0
   468
	T.iTimerIntStatus = E_ArmTmrIntStatus_Event;
sl@0
   469
	ArmGic::ClearPending(TIMESLICE_VECTOR);
sl@0
   470
	arm_dsb();
sl@0
   471
	ArmGic::Enable(TIMESLICE_VECTOR);
sl@0
   472
	arm_dsb();
sl@0
   473
	T.iTimerLoad = KMaxTUint32;				// timer wraps to 0xffffffff after reaching 0
sl@0
   474
	arm_dsb();
sl@0
   475
	T.iTimerCount = (TUint32)KMaxTInt32;	// timer starts at 0x7fffffff (initial thread doesn't timeslice)
sl@0
   476
	arm_dsb();
sl@0
   477
sl@0
   478
	ArmGic::DumpCpuIfc();
sl@0
   479
	}
sl@0
   480