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\ncirq.cpp
32 #define DMEMDUMP(base,size) DbgMemDump((TLinAddr)base,size)
33 void DbgMemDump(TLinAddr aBase, TInt aSize)
36 const TUint8* p=(const TUint8*)aBase;
38 for (off=0; off<aSize; off+=16, p+=16)
40 DEBUGPRINT("%08x: %02x %02x %02x %02x %02x %02x %02x %02x | %02x %02x %02x %02x %02x %02x %02x %02x",
41 p, p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7],
42 p[8], p[9], p[10], p[11], p[12], p[13], p[14], p[15]);
47 #define DMEMDUMP(base,size)
50 /******************************************************************************
51 * ARM Generic Interrupt Controller
52 ******************************************************************************/
57 static void Enable(TInt aIndex);
58 static void Disable(TInt aIndex);
59 static TBool IsEnabled(TInt aIndex);
60 static void SetPending(TInt aIndex);
61 static void ClearPending(TInt aIndex);
62 static TBool IsPending(TInt aIndex);
63 static TBool IsActive(TInt aIndex);
64 static TBool SetNonSecure(TInt aIndex, TBool aNonSecure);
65 static TUint32 Priority(TInt aIndex);
66 static TUint32 SetPriority(TInt aIndex, TUint32 aPri);
67 static TUint32 Dest(TInt aIndex);
68 static TUint32 ModifyDest(TInt aIndex, TUint32 aClear, TUint32 aSet);
69 static TUint32 Config(TInt aIndex);
70 static TUint32 ModifyConfig(TInt aIndex, TUint32 aClear, TUint32 aSet);
73 static void DumpCpuIfc();
75 static TSpinLock ArmGicLock;
80 static TUint32 PriMask;
81 static TUint32 PriSpc;
82 static TUint32 MinPri;
85 TSpinLock ArmGic::ArmGicLock(TSpinLock::EOrderBTrace);
89 TInt ArmGic::NumLines;
90 TUint32 ArmGic::PriMask;
91 TUint32 ArmGic::PriSpc;
92 TUint32 ArmGic::MinPri;
94 void ArmGic::Enable(TInt aIndex)
96 TUint32 mask = 1u << (aIndex&31);
97 GIC_DIST.iEnableSet[aIndex>>5] = mask;
101 void ArmGic::Disable(TInt aIndex)
103 TUint32 mask = 1u << (aIndex&31);
104 GIC_DIST.iEnableClear[aIndex>>5] = mask;
108 TBool ArmGic::IsEnabled(TInt aIndex)
110 TUint32 mask = 1u << (aIndex&31);
111 return GIC_DIST.iEnableSet[aIndex>>5] & mask;
114 void ArmGic::SetPending(TInt aIndex)
116 TUint32 mask = 1u << (aIndex&31);
117 GIC_DIST.iPendingSet[aIndex>>5] = mask;
121 void ArmGic::ClearPending(TInt aIndex)
123 TUint32 mask = 1u << (aIndex&31);
124 GIC_DIST.iPendingClear[aIndex>>5] = mask;
128 TBool ArmGic::IsPending(TInt aIndex)
130 TUint32 mask = 1u << (aIndex&31);
131 return GIC_DIST.iPendingSet[aIndex>>5] & mask;
134 TBool ArmGic::IsActive(TInt aIndex)
136 TUint32 mask = 1u << (aIndex&31);
137 return GIC_DIST.iActive[aIndex>>5] & mask;
140 TUint32 ArmGic::Dest(TInt aIndex)
142 TUint32 reg = GIC_DIST.iTarget[aIndex>>2];
143 reg >>= ((aIndex&3)<<3);
148 TUint32 ArmGic::ModifyDest(TInt aIndex, TUint32 aClear, TUint32 aSet)
152 TInt shift = (aIndex&3)<<3;
155 volatile TUint32& reg = GIC_DIST.iTarget[aIndex>>2];
156 TInt irq = __SPIN_LOCK_IRQSAVE(ArmGicLock);
158 reg = (old &~ aClear) | aSet;
160 __SPIN_UNLOCK_IRQRESTORE(ArmGicLock, irq);
165 TUint32 ArmGic::Config(TInt aIndex)
167 TInt shift = (aIndex&15)<<1;
168 TUint32 x = GIC_DIST.iConfig[aIndex>>4];
173 TUint32 ArmGic::ModifyConfig(TInt aIndex, TUint32 aClear, TUint32 aSet)
177 TInt shift = (aIndex&15)<<1;
180 volatile TUint32& reg = GIC_DIST.iConfig[aIndex>>4];
181 TInt irq = __SPIN_LOCK_IRQSAVE(ArmGicLock);
183 reg = (old &~ aClear) | aSet;
185 __SPIN_UNLOCK_IRQRESTORE(ArmGicLock, irq);
190 TBool ArmGic::SetNonSecure(TInt aIndex, TBool aNonSecure)
192 TUint32 mask = 1u << (aIndex & 31);
193 volatile TUint32& reg = GIC_DIST.iIntSec[aIndex>>5];
194 TInt irq = __SPIN_LOCK_IRQSAVE(ArmGicLock);
196 reg = aNonSecure ? (old | mask) : (old &~ mask);
198 __SPIN_UNLOCK_IRQRESTORE(ArmGicLock, irq);
202 TUint32 ArmGic::Priority(TInt aIndex)
204 TInt shift = (aIndex&3)<<3;
205 TUint32 x = GIC_DIST.iPriority[aIndex>>2];
210 TUint32 ArmGic::SetPriority(TInt aIndex, TUint32 aPri)
213 TInt shift = (aIndex&3)<<3;
214 TUint32 clear = 0xffu << shift;
216 volatile TUint32& reg = GIC_DIST.iPriority[aIndex>>2];
217 TInt irq = __SPIN_LOCK_IRQSAVE(ArmGicLock);
219 reg = (old &~ clear) | aPri;
221 __SPIN_UNLOCK_IRQRESTORE(ArmGicLock, irq);
229 __KTRACE_OPT(KBOOT,DEBUGPRINT("GIC iCtrl=%08x iType=%08x", GIC_DIST.iCtrl, GIC_DIST.iType));
230 TInt n = ArmGic::NumLines;
234 TUint32 cfg = Config(i);
235 TUint32 pri = Priority(i);
236 TUint32 dest = Dest(i);
237 TUint32 enabled = IsEnabled(i) ? 1 : 0;
238 TUint32 pending = IsPending(i) ? 1 : 0;
239 TUint32 active = IsActive(i) ? 1 : 0;
240 const char* cat = (i<16) ? "SW" : (i<32) ? "PP" : "SP";
241 __KTRACE_OPT(KBOOT,DEBUGPRINT("%3d: %2s cfg=%1d pri=%02x dest=%02x E%1d P%1d A%1d",
242 i, cat, cfg, pri, dest, enabled, pending, active));
247 void ArmGic::DumpCpuIfc()
250 GicCpuIfc& C = GIC_CPU_IFC;
251 __KTRACE_OPT(KBOOT,DEBUGPRINT("IFC iCtrl=%08x iPriMask=%08x iBinaryPoint=%08x", C.iCtrl, C.iPriMask, C.iBinaryPoint));
252 __KTRACE_OPT(KBOOT,DEBUGPRINT("IFC Running=%08x HighestP=%08x", C.iRunningPri, C.iHighestPending));
259 if (iX && iX->iEoiFn)
263 GIC_CPU_IFC.iEoi = iVector;
265 #if defined(SMP_CRAZY_INTERRUPTS) && !defined(__STANDALONE_NANOKERNEL__)
266 // change the target CPU for the next Interrupt
267 if ((TInt)TheSuperPage().KernelConfigFlags() & EKernelConfigSMPCrazyInterrupts)
269 TInt cpu = NKern::CurrentCpu() + 1;
270 if(cpu >= NKern::NumberOfCpus())
272 ArmGic::ModifyDest(iVector, 0xffu, 1u << cpu);
283 void NIrq::HwEnable()
285 if (iX && iX->iEnableFn)
286 (*iX->iEnableFn)(this);
289 ArmGic::Enable(iVector);
293 void NIrq::HwDisable()
295 if (iX && iX->iDisableFn)
296 (*iX->iDisableFn)(this);
299 ArmGic::Disable(iVector);
303 void NIrq::HwSetCpu(TInt aCpu)
305 if (iX && iX->iSetCpuFn)
306 (*iX->iSetCpuFn)(this, 1u<<aCpu);
309 ArmGic::ModifyDest(iVector, 0xffu, 1u<<aCpu);
313 void NIrq::HwSetCpuMask(TUint32 aMask)
315 if (iX && iX->iSetCpuFn)
316 (*iX->iSetCpuFn)(this, aMask);
319 ArmGic::ModifyDest(iVector, 0xffu, aMask);
325 if (iX && iX->iInitFn)
326 (*iX->iInitFn)(this);
329 __KTRACE_OPT(KBOOT,DEBUGPRINT("NIrq %02x HwInit", iIndex));
330 TUint32 clear = E_GicDistICfgEdge;
332 if (!(iStaticFlags & ELevel))
333 set = E_GicDistICfgEdge;
334 ArmGic::ModifyConfig(iVector, clear, set);
338 TBool NIrq::HwPending()
340 if (iX && iX->iPendingFn)
341 return (*iX->iPendingFn)(this);
342 return ArmGic::IsPending(iVector) || ArmGic::IsActive(iVector);
345 void NIrq::HwWaitCpus()
347 if (iX && iX->iWaitFn)
348 (*iX->iWaitFn)(this);
353 __KTRACE_OPT(KBOOT, DEBUGPRINT("NIrq::HwInit0"));
355 // Need to set up addresses of GIC_DIST, GIC_CPU_IFC, SCU and LOCAL_TIMER
357 GicDistributor& D = GIC_DIST;
358 GicCpuIfc& C = GIC_CPU_IFC;
362 TUint32 type = D.iType;
363 __KTRACE_OPT(KBOOT, DEBUGPRINT("GIC iType = %08x", type));
364 ArmGic::LSPI = (type & E_GicDistType_LSPIMask) >> E_GicDistType_LSPIShift;
365 ArmGic::Domains = (type & E_GicDistType_Domains) ? 2 : 1;
366 ArmGic::NumCpus = ((type & E_GicDistType_CPUNMask) >> E_GicDistType_CPUNShift) + 1;
367 ArmGic::NumLines = ((type & E_GicDistType_ITMask) + 1) << 5;
368 __KTRACE_OPT(KBOOT, DEBUGPRINT("GIC LSPI=%d Domains=%d NumCpus=%d NumLines=%d",
369 ArmGic::LSPI, ArmGic::Domains, ArmGic::NumCpus, ArmGic::NumLines));
372 D.iEnableClear[i] = 0xffffffffu; // disable all interrupts
375 D.iPendingClear[i] = 0xffffffffu; // clear any pending interrupts
377 D.iPriority[0] = 0xffffffffu;
378 ArmGic::PriMask = D.iPriority[0] & 0xffu;
379 ArmGic::PriSpc = (~ArmGic::PriMask + 1) & 0xffu;
380 ArmGic::MinPri = ArmGic::PriMask - ArmGic::PriSpc;
381 __KTRACE_OPT(KBOOT, DEBUGPRINT("PriMask=%02x PriSpc=%02x MinPri=%02x", ArmGic::PriMask, ArmGic::PriSpc, ArmGic::MinPri));
382 TUint32 x = ArmGic::MinPri;
385 for (i=0; i<256; ++i)
386 D.iPriority[i] = x; // set all interrupts to minimum active priority
388 for (i=0; i<256; ++i)
389 D.iTarget[i] = x; // set all interrupts to target this CPU
390 x = 0xAAAAAAAAu; // config value for SW interrupts (rising edge, N-N)
391 D.iConfig[0] = x; // set config for 0-15
392 x = 0x28000000u; // 31=0b00, 30=29=0b10
393 D.iConfig[1] = x; // set config for 16-31
394 x = 0xAAAAAAAAu; // config value for SW interrupts (rising edge, N-N)
396 D.iConfig[i] = x; // set default value for other interrupts
403 __KTRACE_OPT(KBOOT, DEBUGPRINT("NIrq::HwInit1"));
405 // elevate priority of CRASH_IPI to highest level
406 ArmGic::SetPriority(CRASH_IPI_VECTOR, 0);
408 GicDistributor& D = GIC_DIST;
409 GicCpuIfc& C = GIC_CPU_IFC;
411 C.iPriMask = ArmGic::PriMask; // unmask all interrupts
414 C.iCtrl = E_GicDistCtrl_Enable; // enable this CPU's interrupt controller interface
416 D.iCtrl = E_GicDistCtrl_Enable; // enable the global interrupt distributor
419 // Enable timeslice timer interrupt
420 ArmLocalTimer& T = LOCAL_TIMER;
422 T.iTimerIntStatus = E_ArmTmrIntStatus_Event;
423 ArmGic::ClearPending(TIMESLICE_VECTOR);
425 ArmGic::Enable(TIMESLICE_VECTOR);
427 T.iTimerLoad = KMaxTUint32; // timer wraps to 0xffffffff after reaching 0
429 T.iTimerCount = (TUint32)KMaxTInt32; // timer starts at 0x7fffffff (initial thread doesn't timeslice)
432 ArmGic::DumpCpuIfc();
435 void NIrq::HwInit2AP()
437 __KTRACE_OPT(KBOOT, DEBUGPRINT("NIrq::HwInit2AP"));
439 // Must set up interrupts 0-31 separately for each CPU
440 GicDistributor& D = GIC_DIST;
442 TUint32 x = ArmGic::MinPri;
446 D.iPriority[i] = x; // set all interrupts to minimum active priority
447 x = 0xAAAAAAAAu; // config value for SW interrupts (rising edge, N-N)
448 D.iConfig[0] = x; // set config for 0-15
449 x = 0x28000000u; // 31=0b00, 30=29=0b10
450 D.iConfig[1] = x; // set config for 16-31
454 // elevate priority of CRASH_IPI to highest level
455 ArmGic::SetPriority(CRASH_IPI_VECTOR, 0);
457 GicCpuIfc& C = GIC_CPU_IFC;
459 C.iPriMask = ArmGic::PriMask; // unmask all interrupts
462 C.iCtrl = E_GicDistCtrl_Enable;
465 // Enable timeslice timer interrupt
466 ArmLocalTimer& T = LOCAL_TIMER;
468 T.iTimerIntStatus = E_ArmTmrIntStatus_Event;
469 ArmGic::ClearPending(TIMESLICE_VECTOR);
471 ArmGic::Enable(TIMESLICE_VECTOR);
473 T.iTimerLoad = KMaxTUint32; // timer wraps to 0xffffffff after reaching 0
475 T.iTimerCount = (TUint32)KMaxTInt32; // timer starts at 0x7fffffff (initial thread doesn't timeslice)
478 ArmGic::DumpCpuIfc();